/* =========================================================
   Aurevista Finserv — Boutique Wealth Planning
   Premium design system
   ========================================================= */

:root {
  --bg: #FBFAF7;
  --bg-soft: #F4EFE6;
  --champagne: #EDE5D6;
  --surface: #FFFFFF;

  --ink: #1C1A17;
  --ink-2: #3A3631;
  --ink-3: #6B645A;
  --ink-4: #9A9287;

  --gold: #B08D57;
  --gold-deep: #8E6F3F;
  --gold-soft: #D9C6A4;

  --line: #E5E0D5;
  --line-2: #EFEAE0;

  --shadow-sm: 0 1px 2px rgba(28,26,23,.04), 0 1px 1px rgba(28,26,23,.03);
  --shadow-md: 0 12px 32px -16px rgba(28,26,23,.15), 0 4px 12px -6px rgba(28,26,23,.06);
  --shadow-lg: 0 30px 60px -24px rgba(28,26,23,.18), 0 10px 24px -10px rgba(28,26,23,.08);

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --maxw: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 14px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 5.6vw, 72px); }
h2 { font-size: clamp(32px, 3.8vw, 52px); }
h3 { font-size: clamp(22px, 2vw, 28px); }
h4 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }

p { margin: 0 0 1em 0; text-wrap: pretty; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.lede {
  font-family: var(--sans);
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 62ch;
}

.serif-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.45;
  color: var(--ink-2);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

section { padding: clamp(72px, 9vw, 128px) 0; }
section.tight { padding: clamp(56px, 6vw, 88px) 0; }

.grid { display: grid; gap: clamp(24px, 3vw, 40px); }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

@media (max-width: 900px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
}

.divider {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

.gold-rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 0 0 28px 0;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nav.scrolled {
  background: rgba(251, 250, 247, 0.94);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand--logo { gap: 0; }
.brand-img {
  display: block;
  height: 56px;
  width: auto;
  object-fit: contain;
  /* the source JPEG has a near-white background; multiply blends it into the
     paper-tone nav so there's no visible white card around the lockup */
  mix-blend-mode: multiply;
}
@media (max-width: 600px) {
  .brand-img { height: 48px; }
}
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-deep);
  background: var(--surface);
}
.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-word .name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.brand-word .sub {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  position: relative;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.005em;
  border-radius: var(--radius-sm);
  transition: color .2s ease;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  padding: 0 20px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: #000; transform: translateY(-1px); }
.nav-cta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-soft);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s ease, top .25s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .nav-links, .nav .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--bg);
  z-index: 49;
  padding: 32px var(--pad-x) 48px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  overflow-y: auto;
}
.mobile-drawer.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-drawer a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
}
.mobile-drawer a.is-cta {
  margin-top: 24px;
  border: 0;
  display: inline-flex;
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 24px;
  border-radius: 999px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 52px;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn .arrow {
  width: 16px; height: 16px;
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: #000; }

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: var(--gold-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: gap .2s ease, color .2s ease;
}
.btn-link:hover { gap: 14px; color: var(--gold-deep); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(176,141,87,0.10), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(176,141,87,0.07), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; }

.hero-headline {
  margin-top: 28px;
  max-width: 18ch;
}
.hero-sub {
  margin-top: 28px;
  max-width: 60ch;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.7;
  color: var(--ink-3);
}
.hero-ctas {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero-split { grid-template-columns: 1fr; }
}

/* Sub-hero (interior pages) */
.subhero {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.subhero::after {
  content: "";
  position: absolute;
  left: var(--pad-x);
  bottom: -1px;
  width: 88px;
  height: 1px;
  background: var(--gold);
}
.subhero h1 { max-width: 22ch; margin-top: 24px; }
.subhero p { max-width: 64ch; margin-top: 22px; color: var(--ink-3); font-size: clamp(16px, 1.1vw, 18px); }
.crumbs {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.crumbs a:hover { color: var(--ink); }

/* ---------- Image placeholder ---------- */
.img-ph {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--champagne);
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(176,141,87,0.10) 0px, rgba(176,141,87,0.10) 1px,
      transparent 1px, transparent 14px
    );
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: var(--ink-2);
}
.img-ph.landscape { aspect-ratio: 16 / 10; }
.img-ph.square    { aspect-ratio: 1 / 1; }
.img-ph.portrait  { aspect-ratio: 3 / 4; }

.img-ph .ph-tag {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  background: rgba(28,26,23,0.78);
  color: #F4EFE6;
  padding: 6px 10px;
  border-radius: 4px;
  align-self: flex-start;
}
.img-ph .ph-meta {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  line-height: 1.55;
  color: var(--ink-2);
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 4px;
  max-width: 360px;
}
.img-ph .ph-meta b {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

/* When a real image is present, fill the frame and hide placeholder meta */
.img-ph .ph-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
  background: var(--champagne);
}
.img-ph.has-img { padding: 0; background-image: none; }
.img-ph.has-img > .ph-tag,
.img-ph.has-img > .ph-meta { display: none; }

/* Subtle photo credit chip */
.img-ph .ph-credit {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
  background: rgba(20,19,15,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 5px 10px;
  border-radius: 999px;
  text-decoration: none;
}
.img-ph .ph-credit:hover { color: #fff; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.4vw, 32px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}
.card .card-icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold-deep);
  margin-bottom: 24px;
}
.card h3 { margin-bottom: 12px; }
.card p { color: var(--ink-3); font-size: 15px; }

.card-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
}
.card-list li {
  font-size: 14.5px;
  color: var(--ink-2);
  padding: 10px 0;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-list li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
.card-list li:first-child { border-top: 0; padding-top: 4px; }

/* ---------- Two-column section ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

/* ---------- Trust list ---------- */
.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px 36px;
}
@media (max-width: 700px) { .trust-list { grid-template-columns: 1fr; } }
.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.45;
}
.trust-list li .check {
  flex: none;
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--champagne);
  color: var(--gold-deep);
  margin-top: 2px;
}

/* ---------- Solid sections ---------- */
.section-dark {
  background: var(--ink);
  color: rgba(255,255,255,0.86);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: var(--gold-soft); }
.section-dark .eyebrow::before { background: var(--gold-soft); }
.section-dark .gold-rule { background: var(--gold); }
.section-dark .lede { color: rgba(255,255,255,0.72); }
.section-dark .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.22);
}
.section-dark .btn-ghost:hover { border-color: #fff; }

.section-cream {
  background: var(--bg-soft);
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(176,141,87,0.22), transparent 60%),
    radial-gradient(500px 300px at 0% 100%, rgba(176,141,87,0.14), transparent 60%);
  pointer-events: none;
}
.cta-strip .container { position: relative; }
.cta-strip .stack {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .cta-strip .stack { grid-template-columns: 1fr; } }
.cta-strip h2 { color: #fff; max-width: 18ch; }
.cta-strip p { color: rgba(255,255,255,0.7); max-width: 50ch; margin-top: 18px; }
.cta-strip .actions { justify-self: end; }
@media (max-width: 900px) { .cta-strip .actions { justify-self: start; } }

/* ---------- Founder block ---------- */
.founder {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .founder { grid-template-columns: 1fr; } }
.cert-list {
  list-style: none;
  margin: 24px 0 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.cert-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-2);
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cert-list li .badge {
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--champagne);
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
}

/* ---------- Disclaimer ---------- */
.disclaimer {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-4);
  border-top: 1px solid var(--line);
  padding-top: 32px;
  max-width: 80ch;
}
.disclaimer b { color: var(--ink-3); font-weight: 600; }

/* ---------- Stat row ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
@media (max-width: 800px) {
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line); }
}
.stat .num {
  font-family: var(--serif);
  font-size: clamp(40px, 4.6vw, 56px);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.stat .num sup {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--gold);
}
.stat .lab {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- Process steps ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process { grid-template-columns: 1fr; } }
.process-step {
  padding: 32px 28px 28px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
  counter-increment: step;
}
.process-step:last-child { border-right: 0; }
.process-step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 18px;
}
.process-step h4 { margin-bottom: 10px; }
.process-step p { font-size: 14.5px; color: var(--ink-3); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 44px);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.field input,
.field textarea,
.field select {
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(176,141,87,0.10);
}
.field textarea { min-height: 140px; resize: vertical; }

.form-footnote {
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--ink-4);
}

/* ---------- Contact bar ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-cell {
  padding: 28px 28px;
  border-right: 1px solid var(--line);
}
.contact-cell:last-child { border-right: 0; }
@media (max-width: 800px) {
  .contact-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-cell:last-child { border-bottom: 0; }
}
.contact-cell .lab {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 600;
}
.contact-cell .val {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  line-height: 1.3;
}

/* ---------- Booking placeholder ---------- */
.booking-ph {
  border: 1px dashed var(--gold);
  border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(45deg, rgba(176,141,87,0.04) 0 8px, transparent 8px 16px),
    var(--surface);
  padding: clamp(36px, 5vw, 64px);
  text-align: center;
}
.booking-ph .tag {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--champagne);
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-block;
}
.booking-ph h3 { margin-top: 18px; }
.booking-ph p { color: var(--ink-3); max-width: 50ch; margin: 12px auto 0; }
.booking-ph .slots {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.booking-ph .slot {
  padding: 12px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--bg);
}
.booking-ph .slot.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: #14130F;
  color: rgba(255,255,255,0.72);
  padding: clamp(64px, 8vw, 96px) 0 32px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  display: inline-block;
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
}
.footer-logo img {
  display: block;
  height: 72px;
  width: auto;
  object-fit: contain;
}
.footer-brand .name {
  font-family: var(--serif);
  color: #fff;
  font-size: 28px;
  letter-spacing: 0.005em;
}
.footer-brand .sub {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}
.footer-brand p {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  max-width: 36ch;
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 18px 0;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--gold-soft); }

.footer-legal {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 800px) { .footer-legal { grid-template-columns: 1fr; } }
.footer-legal .disclaim {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}
.footer-legal .copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  text-align: right;
}
@media (max-width: 800px) { .footer-legal .copy { text-align: left; } }

/* ---------- Misc ---------- */
.text-muted { color: var(--ink-3); }
.text-gold  { color: var(--gold-deep); }
.center { text-align: center; }
.flex { display: flex; }
.center-x { display: flex; justify-content: center; }
.col-gap-sm { gap: 12px; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
@media (max-width: 900px) { .section-head { grid-template-columns: 1fr; } }
.section-head h2 { max-width: 18ch; }
.section-head p { color: var(--ink-3); max-width: 50ch; }

/* fade-in on load */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(8px);
    animation: reveal .8s cubic-bezier(.2,.7,.2,1) .1s forwards;
  }
  .reveal.d2 { animation-delay: .2s; }
  .reveal.d3 { animation-delay: .35s; }
  .reveal.d4 { animation-delay: .5s; }
}
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}
