/* ---------- Design tokens ---------- */
:root {
  --navy-950: #0b1220;
  --navy-900: #0f1b2d;
  --navy-800: #16283f;
  --navy-700: #1f3654;
  --navy-600: #2c4a6e;
  --gold-500: #c9a15a;
  --gold-400: #d9b878;
  --gold-100: #f4e9d4;
  --cream-50: #faf7f1;
  --cream-100: #f2ece0;
  --ink-900: #17181b;
  --ink-600: #4b5058;
  --ink-400: #7a808a;
  --line-200: #e6e0d4;
  --white: #ffffff;
  --success-600: #1f7a4d;
  --danger-600: #b3392c;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(15, 27, 45, 0.08);
  --shadow-md: 0 10px 30px rgba(15, 27, 45, 0.12);
  --shadow-lg: 0 20px 60px rgba(15, 27, 45, 0.18);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;

  /* Theme-aware content tokens (light default). */
  --page-bg: var(--cream-50);
  --surface: var(--white);
  --surface-alt: var(--cream-100);
  --text-heading: var(--navy-950);
  --text-body: var(--ink-900);
  --text-secondary: var(--ink-600);
  --text-muted: var(--ink-400);
  --border-subtle: var(--line-200);
  --icon-fg: var(--navy-800);

  /* Chrome tokens — header, hero, footer, page-header, cta-banner. Light
     mode uses soft white/cream tones with dark text; dark mode keeps the
     navy look these sections always had. */
  --chrome-bg: rgba(255, 255, 255, 0.85);
  --chrome-bg-solid: #ffffff;
  --chrome-grad-a: #ffffff;
  --chrome-grad-b: #f7ecd9;
  --chrome-grad-c: #ffffff;
  --chrome-text: var(--navy-950);
  --chrome-text-secondary: var(--ink-600);
  --chrome-text-muted: var(--ink-400);
  --chrome-border: rgba(15, 27, 45, 0.1);
  --chrome-input-bg: var(--cream-100);
  --chrome-control-bg: rgba(15, 27, 45, 0.05);
  --chrome-control-bg-hover: rgba(15, 27, 45, 0.1);
  --chrome-control-border: rgba(15, 27, 45, 0.15);
  --cta-grad-a: var(--gold-100);
  --cta-grad-b: var(--gold-400);
  --cta-text: var(--navy-950);
  --cta-text-secondary: rgba(11, 18, 32, 0.7);
  --chrome-grid-line: rgba(15, 27, 45, 0.04);
}

html[data-theme="dark"] {
  --page-bg: #0d1420;
  --surface: #17233b;
  --surface-alt: #0a0f1a;
  --text-heading: #f6f3ec;
  --text-body: #e3e0d8;
  --text-secondary: #a9aebc;
  --text-muted: #7c8494;
  --border-subtle: rgba(255, 255, 255, 0.1);
  --icon-fg: var(--gold-400);
  --danger-600: #ff8a75;
  --success-600: #4ade80;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);

  --chrome-bg: rgba(11, 18, 32, 0.92);
  --chrome-bg-solid: var(--navy-950);
  --chrome-grad-a: var(--navy-950);
  --chrome-grad-b: var(--navy-800);
  --chrome-grad-c: var(--navy-700);
  --chrome-text: var(--white);
  --chrome-text-secondary: rgba(255, 255, 255, 0.78);
  --chrome-text-muted: rgba(255, 255, 255, 0.4);
  --chrome-border: rgba(255, 255, 255, 0.08);
  --chrome-input-bg: rgba(255, 255, 255, 0.06);
  --chrome-control-bg: rgba(255, 255, 255, 0.06);
  --chrome-control-bg-hover: rgba(255, 255, 255, 0.14);
  --chrome-control-border: rgba(255, 255, 255, 0.18);
  --cta-grad-a: var(--navy-950);
  --cta-grad-b: var(--navy-700);
  --cta-text: var(--white);
  --cta-text-secondary: rgba(255, 255, 255, 0.75);
  --chrome-grid-line: rgba(255, 255, 255, 0.05);
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--page-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 .5em; line-height: 1.2; color: var(--text-heading); }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.section-head p { color: var(--text-secondary); margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-400); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--chrome-text);
  border-color: var(--chrome-control-border);
}
.btn-outline:hover { background: var(--chrome-control-bg-hover); }
.btn-dark {
  background: var(--navy-950);
  color: var(--white);
  border-color: var(--border-subtle);
}
.btn-dark:hover { background: var(--navy-800); }
.btn-outline-surface {
  background: transparent;
  color: var(--text-heading);
  border-color: var(--border-subtle);
}
.btn-outline-surface:hover { background: var(--surface-alt); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: .85rem; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ---------- Theme toggle ---------- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--chrome-control-border);
  background: var(--chrome-control-bg);
  color: var(--chrome-text);
  transition: background .15s ease;
}
.theme-toggle:hover { background: var(--chrome-control-bg-hover); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--chrome-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--chrome-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--chrome-text);
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .03em;
}
.brand .mark {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-950);
  font-weight: 700;
  font-family: var(--font-body);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--chrome-text-secondary);
  font-size: .95rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--chrome-text); border-color: var(--gold-500); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  color: var(--chrome-text);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--chrome-bg-solid);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    display: none;
    border-bottom: 1px solid var(--chrome-border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--chrome-border); }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn-primary { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 15% -10%, rgba(201,161,90,.25), transparent 60%),
    linear-gradient(160deg, var(--chrome-grad-a), var(--chrome-grad-b) 60%, var(--chrome-grad-c));
  color: var(--chrome-text);
  padding: 96px 0 64px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--chrome-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--chrome-grid-line) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.hero .eyebrow { color: var(--gold-500); }
html[data-theme="dark"] .hero .eyebrow { color: var(--gold-400); }
.hero h1 {
  color: var(--chrome-text);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: .4em;
}
.hero p.lead {
  color: var(--chrome-text-secondary);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

/* Search widget */
.search-widget {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 14px;
  align-items: end;
  text-align: left;
  max-width: 980px;
  margin: 0 auto;
}
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  font-weight: 700;
}
.field input, .field select {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  color: var(--text-body);
  background: var(--page-bg);
}
.field input:focus, .field select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,161,90,.2);
}
@media (max-width: 900px) {
  .search-widget { grid-template-columns: 1fr 1fr; }
  .search-widget .btn { grid-column: 1 / -1; }
}

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -46px;
  position: relative;
  z-index: 2;
}
.stat-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 22px;
  text-align: center;
}
.stat-card .num { font-family: var(--font-display); font-size: 1.8rem; color: var(--text-heading); }
.stat-card .label { color: var(--text-secondary); font-size: .85rem; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; margin-top: 28px; } }

/* ---------- Room cards ---------- */
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .room-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .room-grid { grid-template-columns: 1fr; } }

.room-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.room-thumb {
  height: 190px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.room-thumb .badge {
  background: rgba(11,18,32,.65);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.room-thumb svg { position: absolute; top: 16px; right: 16px; width: 28px; height: 28px; opacity: .85; color: rgba(255,255,255,.9); }
.room-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.room-body h3 { font-size: 1.15rem; margin-bottom: 0; }
.room-tagline { color: var(--gold-500); font-size: .85rem; font-weight: 600; margin: 0; }
.room-meta { display: flex; gap: 14px; color: var(--text-muted); font-size: .82rem; }
.room-meta span { display: flex; align-items: center; gap: 5px; }
.room-desc { color: var(--text-secondary); font-size: .92rem; margin-bottom: 4px; }
.amenity-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.amenity-tags span {
  font-size: .72rem;
  background: var(--surface-alt);
  color: var(--text-secondary);
  padding: 4px 9px;
  border-radius: 999px;
}
.room-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}
.room-price { font-family: var(--font-display); font-size: 1.3rem; color: var(--text-heading); }
.room-price small { font-family: var(--font-body); font-size: .75rem; color: var(--text-muted); font-weight: 400; }

/* gradient themes for room thumbnails */
.grad-1 { background: linear-gradient(135deg, #6a89a8, #16283f); }
.grad-2 { background: linear-gradient(135deg, #8a9aa8, #2c4a6e); }
.grad-3 { background: linear-gradient(135deg, #d9b878, #8a5a2c); }
.grad-4 { background: linear-gradient(135deg, #b98c4f, #6e4a24); }
.grad-5 { background: linear-gradient(135deg, #7a6a8e, #2c1f42); }
.grad-6 { background: linear-gradient(135deg, #4a6e6e, #16283f); }
.grad-7 { background: linear-gradient(135deg, #c9a15a, #16283f); }
.grad-8 { background: linear-gradient(135deg, #6e8a7a, #1f3654); }

/* ---------- Filters (rooms page) ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  border: 1px solid var(--border-subtle);
  background: var(--surface);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all .15s ease;
}
.pill.active, .pill:hover { background: var(--gold-500); color: var(--navy-950); border-color: var(--gold-500); }
.sort-select { border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); padding: 9px 14px; background: var(--surface); color: var(--text-secondary); }

/* ---------- Amenities / icon grid ---------- */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 760px) { .icon-grid { grid-template-columns: 1fr 1fr; } }
.icon-card { text-align: center; padding: 28px 16px; }
.icon-card .icon-wrap {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--icon-fg);
}
.icon-card .icon-wrap svg { width: 28px; height: 28px; }
.icon-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.icon-card p { color: var(--text-secondary); font-size: .9rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.testi-card .stars { color: var(--gold-500); margin-bottom: 10px; letter-spacing: 2px; }
.testi-card p { color: var(--text-secondary); font-style: italic; }
.testi-person { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-900); color: var(--gold-400);
  font-weight: 700; font-family: var(--font-display);
}
.testi-person .name { font-weight: 700; font-size: .9rem; color: var(--text-body); }
.testi-person .loc { font-size: .8rem; color: var(--text-muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--cta-grad-a), var(--cta-grad-b));
  color: var(--cta-text);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  margin: 0 24px;
}
.cta-banner h2 { color: var(--cta-text); }
.cta-banner p { color: var(--cta-text-secondary); }

/* ---------- Footer ---------- */
.site-footer { background: var(--chrome-bg-solid); color: var(--chrome-text-secondary); padding: 64px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--chrome-border);
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 { color: var(--chrome-text); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-grid .brand { margin-bottom: 12px; }
.footer-grid p { font-size: .9rem; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--gold-500); }
html[data-theme="dark"] .footer-links a:hover { color: var(--gold-400); }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--chrome-border);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); }
.social-row svg { width: 16px; height: 16px; }
.newsletter-form { display: flex; gap: 8px; margin-top: 8px; }
.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--chrome-border);
  background: var(--chrome-input-bg);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--chrome-text);
}
.newsletter-form input::placeholder { color: var(--chrome-text-muted); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: linear-gradient(160deg, var(--chrome-grad-a), var(--chrome-grad-c));
  color: var(--chrome-text);
  padding: 64px 0;
  text-align: center;
}
.page-header h1 { color: var(--chrome-text); font-size: clamp(1.9rem, 4vw, 2.6rem); }
.breadcrumb { color: var(--chrome-text-secondary); font-size: .85rem; margin-top: 8px; }
.breadcrumb a:hover { color: var(--gold-500); }
html[data-theme="dark"] .breadcrumb a:hover { color: var(--gold-400); }

/* ---------- Booking page ---------- */
.booking-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) { .booking-layout { grid-template-columns: 1fr; } }
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 30px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field-error { color: var(--danger-600); font-size: .8rem; min-height: 1.1em; }
textarea {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  background: var(--page-bg);
  color: var(--text-body);
  width: 100%;
  resize: vertical;
  min-height: 110px;
}

.summary-card { position: sticky; top: 96px; }
.summary-thumb { height: 130px; border-radius: var(--radius-md); margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: .92rem; color: var(--text-secondary); }
.summary-row.total { border-top: 1px solid var(--border-subtle); margin-top: 8px; padding-top: 14px; font-weight: 700; color: var(--text-heading); font-size: 1.05rem; }
.summary-row strong { color: var(--text-body); }

.confirmation {
  text-align: center;
  padding: 40px 20px;
}
.confirmation .check {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(31,122,77,.12);
  color: var(--success-600);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.confirmation .check svg { width: 34px; height: 34px; }
.confirmation .ref {
  display: inline-block;
  background: var(--surface-alt);
  color: var(--text-heading);
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 10px 0 20px;
  letter-spacing: .05em;
}
.confirmation-details {
  text-align: left;
  max-width: 420px;
  margin: 0 auto 28px;
  background: var(--page-bg);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.confirmation-details .summary-row { color: var(--text-secondary); }

/* ---------- About / contact ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split .visual {
  border-radius: var(--radius-lg);
  min-height: 340px;
  position: relative;
  overflow: hidden;
}
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
@media (max-width: 760px) { .value-grid { grid-template-columns: 1fr; } }
.value-card { background: var(--surface); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); }
.value-card .num { font-family: var(--font-display); color: var(--gold-500); font-size: 1.6rem; }

.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; }
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }
.info-list li { display: flex; gap: 14px; margin-bottom: 22px; }
.info-list .icon-wrap {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--icon-fg);
}
.info-list .icon-wrap svg { width: 20px; height: 20px; }
.info-list h4 { margin-bottom: 2px; font-size: .95rem; }
.info-list p { margin: 0; color: var(--text-secondary); font-size: .9rem; }
.map-placeholder {
  height: 220px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  margin-top: 24px;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.hidden { display: none !important; }
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy-950);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: .9rem;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all .25s ease;
  z-index: 200;
}
.toast.show { transform: translateY(0); opacity: 1; }
