/* ============================================================
   Keystone Dental Studio — Design System
   Deep navy · champagne gold · ivory  |  Fraunces + Inter
   ============================================================ */

:root {
  /* palette */
  --ink:        #0b1a2b;   /* deepest navy — text on light */
  --navy:       #0e2138;   /* section navy */
  --navy-2:     #14304f;   /* raised navy */
  --gold:       #c8a15a;   /* champagne gold */
  --gold-2:     #e3c583;   /* light gold highlight */
  --gold-deep:  #9c7a38;   /* gold on ivory (AA) */
  --ivory:      #f7f2e8;   /* page background */
  --paper:      #fdfaf3;   /* raised surfaces */
  --cream:      #efe7d6;   /* soft divider */
  --muted:      #5c6b7a;   /* secondary text on light */
  --muted-lt:   #a9bacb;   /* secondary text on navy */
  --line:       rgba(11,26,43,.10);
  --line-lt:    rgba(255,255,255,.12);

  /* type */
  --serif: "Fraunces", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* spacing / motion */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 24px 60px -28px rgba(11,26,43,.35);
  --shadow-sm: 0 10px 30px -18px rgba(11,26,43,.45);
}

/* ---------- reset-ish ---------- */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.05; margin: 0; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 12vw, 150px); position: relative; }
.eyebrow {
  font-family: var(--sans);
  font-weight: 600; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep); margin: 0 0 18px; display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .7; }
.section--navy .eyebrow { color: var(--gold-2); }

/* fluid display type */
h1.display { font-size: clamp(2.6rem, 7vw, 5.4rem); }
h2.title   { font-size: clamp(2rem, 4.6vw, 3.5rem); }
h3.sub     { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--muted); max-width: 60ch; }
.section--navy { background: var(--navy); color: #eaf1f8; }
.section--navy .lede { color: var(--muted-lt); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.italic { font-style: italic; }
.gold { color: var(--gold-deep); }
.section--navy .gold { color: var(--gold-2); }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--ink); --fg: #fff;
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: 15px 30px; border-radius: 100px; border: 1px solid transparent;
  background: var(--bg); color: var(--fg); cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s, color .3s;
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform .4s var(--ease); }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn:hover svg { transform: translateX(4px); }
.btn--gold { --bg: var(--gold); --fg: var(--ink); }
.btn--gold:hover { --bg: var(--gold-2); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--line); }
.section--navy .btn--ghost { --fg: #fff; border-color: var(--line-lt); }
.btn--ghost:hover { --bg: rgba(11,26,43,.04); }
.section--navy .btn--ghost:hover { --bg: rgba(255,255,255,.06); }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }

/* ---------- nav ---------- */
.nav {
  position: fixed; left: 0; right: 0; top: 39px; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s, top .4s var(--ease);
}
.nav.scrolled { top: 0; }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: 82px; transition: height .4s var(--ease);
}
.nav.scrolled { background: rgba(247,242,232,.82); backdrop-filter: saturate(1.4) blur(16px); box-shadow: 0 1px 0 var(--line); }
.nav.scrolled .nav__inner { height: 68px; }

/* nav colour adapts: light over the dark hero, dark once scrolled */
.nav { color: #fff; }
.nav.scrolled { color: var(--ink); }
body.nav-open .nav { color: var(--ink); }

.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark { width: 26px; height: auto; flex: 0 0 auto; }
.brand__wm { display: flex; flex-direction: column; line-height: 1; }
.brand__wm b { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; letter-spacing: -.01em; color: inherit; }
.brand__wm i { font-style: normal; font-family: var(--sans); font-weight: 600; font-size: .52rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-2); margin-top: 4px; }
.nav.scrolled .brand__wm i, body.nav-open .brand__wm i { color: var(--gold-deep); }
.nav__links { display: flex; align-items: center; gap: 30px; font-size: .95rem; font-weight: 500; }
.nav__links a { position: relative; color: inherit; opacity: .85; transition: opacity .3s; }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-6px; width:100%; height:1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { font-weight: 600; font-size: .95rem; display: inline-flex; align-items: center; gap: 8px; }
.nav__phone svg { width: 16px; height: 16px; color: var(--gold-deep); }
.nav__burger { display: none; }

/* mobile drawer */
@media (max-width: 940px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger {
    display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; color: inherit;
  }
  .nav__burger span { width: 26px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .35s var(--ease), opacity .3s; }
  .nav-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .drawer {
    position: fixed; inset: 0; z-index: 99; background: var(--ivory);
    display: flex; flex-direction: column; justify-content: center; gap: 6px;
    padding: var(--gutter); transform: translateY(-100%); transition: transform .5s var(--ease);
  }
  .nav-open .drawer { transform: translateY(0); }
  .drawer a { font-family: var(--serif); font-size: 2rem; padding: 10px 0; opacity:0; transform: translateY(14px); }
  .nav-open .drawer a { animation: drawerIn .5s var(--ease) forwards; }
  .nav-open .drawer a:nth-child(1){animation-delay:.08s}
  .nav-open .drawer a:nth-child(2){animation-delay:.14s}
  .nav-open .drawer a:nth-child(3){animation-delay:.20s}
  .nav-open .drawer a:nth-child(4){animation-delay:.26s}
  .nav-open .drawer a:nth-child(5){animation-delay:.32s}
  .nav-open .drawer a:nth-child(6){animation-delay:.38s}
  @keyframes drawerIn { to { opacity:1; transform: translateY(0);} }
  .drawer .btn { margin-top: 18px; align-self: flex-start; }
}
@media (min-width: 941px) { .drawer { display: none; } }

/* ---------- scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-reveal="fade"] { transform: none; }
[data-delay="1"]{ transition-delay:.08s } [data-delay="2"]{ transition-delay:.16s }
[data-delay="3"]{ transition-delay:.24s } [data-delay="4"]{ transition-delay:.32s }
[data-delay="5"]{ transition-delay:.40s } [data-delay="6"]{ transition-delay:.48s }

/* ---------- hero (photo-free, designed) ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-bottom: clamp(48px, 8vw, 96px); overflow: hidden; color: #fff;
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(200,161,90,.20), transparent 55%),
    radial-gradient(90% 80% at 8% 100%, rgba(29,95,122,.28), transparent 60%),
    linear-gradient(160deg, #12283f 0%, var(--navy) 40%, var(--ink) 100%);
}
/* faint decorative grid + oversized watermark word */
.hero::before { content:""; position:absolute; inset:0; z-index:0; opacity:.5;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(120% 100% at 50% 30%, #000 40%, transparent 85%); }
.hero::after { content:"Keystone"; position:absolute; right: -3vw; bottom: -6vw; z-index:0;
  font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(9rem, 26vw, 24rem);
  color: rgba(255,255,255,.035); letter-spacing:-.03em; pointer-events:none; white-space:nowrap; }
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero h1 em { font-style: italic; color: var(--gold-2); }
.hero__lede { color: rgba(255,255,255,.86); max-width: 46ch; font-size: clamp(1.05rem,1.5vw,1.25rem); margin-top: 22px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__meta { display:flex; flex-wrap:wrap; gap: 28px 42px; margin-top: 52px; padding-top: 30px; border-top: 1px solid var(--line-lt); }
.hero__meta div span { display:block; font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color: var(--gold-2); margin-bottom:6px; }
.hero__meta div b { font-family: var(--serif); font-weight: 400; font-size: 1.15rem; color: #fff; }
.scroll-cue { position:absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size:.66rem; letter-spacing:.24em; text-transform:uppercase; color: rgba(255,255,255,.6); }
.scroll-cue i { width:1px; height: 42px; background: linear-gradient(var(--gold-2), transparent); animation: cue 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%{transform:scaleY(0);opacity:0} 40%{opacity:1} 100%{transform:scaleY(1);opacity:0} }

/* ---------- marquee strip ---------- */
.strip { background: var(--ink); color: var(--gold-2); overflow: hidden; padding: 18px 0; border-block: 1px solid rgba(255,255,255,.06); }
.strip__row { display: flex; gap: 60px; white-space: nowrap; width: max-content; animation: slide 38s linear infinite; }
.strip:hover .strip__row { animation-play-state: paused; }
.strip span { font-family: var(--serif); font-style: italic; font-size: 1.35rem; display: inline-flex; align-items: center; gap: 60px; }
.strip span::after { content:"✦"; color: var(--gold); font-style: normal; font-size: .7em; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- feature/services grid ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){ .grid--3, .grid--4 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px){ .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr;} }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 32px; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(200,161,90,.5); }
.card__ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(145deg, var(--navy), var(--navy-2)); color: var(--gold-2); margin-bottom: 22px; }
.card__ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }
.card__link { margin-top: 18px; font-weight:600; font-size:.9rem; color: var(--gold-deep); display:inline-flex; align-items:center; gap:6px; }
.card__link svg{ width:15px;height:15px; transition: transform .4s var(--ease);}
.card:hover .card__link svg{ transform: translateX(4px); }
.card--feature { grid-column: span 1; }

/* split feature */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split--rev { direction: rtl; }
.split--rev > * { direction: ltr; }
@media (max-width: 860px){ .split, .split--rev { grid-template-columns: 1fr; } }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; transition: transform 1.4s var(--ease); }
.split__media:hover img { transform: scale(1.05); }
.badge { position: absolute; bottom: 20px; left: 20px; background: rgba(253,250,243,.94); backdrop-filter: blur(6px); border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow-sm); }
.badge b { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); display:block; line-height:1; }
.badge span { font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color: var(--muted); }

/* credential chips */
.creds { list-style:none; display:flex; flex-wrap:wrap; gap:10px; margin: 22px 0 8px; padding:0; }
.creds li { font-size:.86rem; font-weight:500; padding: 9px 15px; border-radius: 100px; background: var(--paper); border:1px solid var(--line); display:inline-flex; gap:8px; align-items:center; }
.creds li b { font-family: var(--serif); color: var(--gold-deep); font-weight:500; }

/* announcement bar */
.topbar { background: var(--ink); color: var(--gold-2); text-align:center; font-size:.86rem; font-weight:500; letter-spacing:.02em; padding: 9px 16px; position: relative; z-index: 101; }
.topbar a { color:#fff; border-bottom:1px solid var(--gold); padding-bottom:1px; }
.topbar b { color:#fff; font-weight:600; }
.topbar { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 560px) { .tb-more { display: none; } }

/* new-patients pill */
.pill { display:inline-flex; align-items:center; gap:9px; padding: 8px 16px 8px 12px; border-radius:100px; background: rgba(200,161,90,.14); border:1px solid rgba(200,161,90,.4); color: var(--gold-2); font-size:.85rem; font-weight:600; letter-spacing:.02em; }
.pill .dot { width:8px; height:8px; border-radius:50%; background: var(--gold-2); box-shadow:0 0 0 0 rgba(227,197,131,.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(227,197,131,.55)} 70%{box-shadow:0 0 0 9px rgba(227,197,131,0)} 100%{box-shadow:0 0 0 0 rgba(227,197,131,0)} }
.section--navy .pill { color: var(--gold-2); }

/* financing logos row */
.finance { display:flex; flex-wrap:wrap; gap:14px; margin-top: 26px; }
.finance span { padding: 12px 22px; border-radius: 12px; background: var(--paper); border:1px solid var(--line); font-weight:600; font-size:.95rem; color: var(--ink); }
.section--navy .finance span { background: rgba(255,255,255,.05); border-color: var(--line-lt); color:#fff; }

/* photo-free feature panel */
.showpanel { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(34px, 5vw, 54px);
  aspect-ratio: 4/3.4; display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(155deg, var(--navy-2), var(--navy) 55%, var(--ink));
  border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); color: #eaf1f8; }
.showpanel--ivory { background: linear-gradient(155deg, var(--paper), var(--cream)); color: var(--ink); border-color: var(--line); }
.showpanel__glow { position:absolute; width: 300px; height:300px; border-radius:50%; filter: blur(70px); top:-90px; right:-70px;
  background: var(--gold); opacity:.28; }
.showpanel--ivory .showpanel__glow { opacity:.35; }
.showpanel > * { position: relative; z-index:1; }
.showpanel__kicker { font-family: var(--sans); font-weight:600; font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; color: var(--gold-2); }
.showpanel--ivory .showpanel__kicker { color: var(--gold-deep); }
.showpanel__big { font-family: var(--serif); font-weight: 300; line-height: .9; letter-spacing:-.03em;
  font-size: clamp(3.4rem, 9vw, 6rem); margin: auto 0; }
.showpanel__big em { font-style: italic; color: var(--gold-2); }
.showpanel--ivory .showpanel__big em { color: var(--gold-deep); }
.showpanel__cap { font-size: 1.02rem; opacity:.85; max-width: 26ch; margin:0; }
.showpanel__tags { list-style:none; display:flex; flex-wrap:wrap; gap:8px; margin: 18px 0 0; padding:0; }
.showpanel__tags li { font-size:.82rem; font-weight:500; padding: 7px 14px; border-radius:100px; border:1px solid rgba(255,255,255,.16); }
.showpanel--ivory .showpanel__tags li { border-color: var(--line); }
.showpanel__rule { height:1px; background: linear-gradient(90deg, var(--gold), transparent); margin: 22px 0; border:0; }

/* checklist */
.checks { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.checks li { display: flex; gap: 14px; align-items: flex-start; }
.checks svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--gold-deep); margin-top: 2px; }
.section--navy .checks svg { color: var(--gold-2); }
.checks b { font-weight: 600; }
.checks p { margin: 2px 0 0; color: var(--muted); font-size: .95rem; }
.section--navy .checks p { color: var(--muted-lt); }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media(max-width:760px){ .stats{ grid-template-columns: repeat(2,1fr);} }
.stat b { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--gold-2); display: block; line-height: 1; }
.stat span { display:block; margin-top: 10px; font-size: .9rem; color: var(--muted-lt); letter-spacing:.02em; }

/* reviews */
.quotes { columns: 3; column-gap: 22px; }
@media(max-width:900px){ .quotes{ columns:2;} }
@media(max-width:600px){ .quotes{ columns:1;} }
.quote { break-inside: avoid; margin: 0 0 22px; background: var(--paper); border:1px solid var(--line); border-radius: var(--radius); padding: 26px 26px 24px; }
.quote__stars { color: var(--gold); letter-spacing: 3px; font-size: .95rem; margin-bottom: 12px; }
.quote p { font-size: 1rem; color: var(--ink); margin: 0 0 16px; }
.quote footer { display:flex; align-items:center; gap: 12px; }
.quote .av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(145deg, var(--navy), var(--gold-deep)); color:#fff; display:grid; place-items:center; font-weight:600; font-size:.9rem; }
.quote cite { font-style: normal; font-weight: 600; font-size: .95rem; }
.quote cite span { display:block; font-weight: 400; font-size:.8rem; color: var(--muted); }

/* doctor */
.doc { display:grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px,6vw,72px); align-items:center; }
@media(max-width:860px){ .doc{ grid-template-columns:1fr;} }
.doc__photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: linear-gradient(160deg, var(--navy-2), var(--navy)); }
.doc__photo img { width:100%; aspect-ratio: 4/4.6; object-fit: cover; object-position: top center; }
.sig { font-family: var(--serif); font-style: italic; font-size: 2rem; color: var(--gold-2); margin-top: 18px; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--ink) 60%, #08131f 100%); color:#fff; text-align:center; border-radius: var(--radius-lg); padding: clamp(48px,8vw,96px) var(--gutter); position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after { content:""; position:absolute; border-radius:50%; filter: blur(60px); opacity:.4; }
.cta-band::before { width: 340px; height:340px; background: var(--gold); top:-140px; right:-80px; }
.cta-band::after { width: 300px; height:300px; background: #1d5f7a; bottom:-150px; left:-60px; opacity:.35; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color:#fff; }
.cta-band .lede { color: rgba(255,255,255,.82); margin-inline:auto; }
.cta-band .hero__cta { justify-content:center; }

/* contact/location */
.info-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media(max-width:760px){ .info-grid{ grid-template-columns:1fr;} }
.info { background: var(--paper); border:1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.info h4 { font-family: var(--sans); font-weight:600; font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; color: var(--gold-deep); margin-bottom: 14px; }
.info p { margin:0; font-size: 1.05rem; }
.info a { border-bottom: 1px solid var(--line); }
.hours { list-style:none; margin:0; padding:0; }
.hours li { display:flex; justify-content:space-between; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size:.98rem; }
.hours li:last-child{ border:0; }
.hours span:last-child{ color: var(--muted); }

/* map */
.map-embed { border:0; width:100%; height: 420px; border-radius: var(--radius-lg); box-shadow: var(--shadow); filter: grayscale(.2) contrast(1.02); }

/* footer */
.footer { background: var(--ink); color: #c6d3e0; padding-block: clamp(56px,8vw,88px) 40px; }
.footer a { color: #c6d3e0; opacity:.8; transition: opacity .3s, color .3s; }
.footer a:hover { opacity:1; color: var(--gold-2); }
.footer__top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media(max-width:820px){ .footer__top{ grid-template-columns:1fr 1fr;} }
@media(max-width:520px){ .footer__top{ grid-template-columns:1fr;} }
.footer__brand .brand__wm b { color:#fff; }
.footer__brand .brand__wm i { color: var(--gold-2); }
.footer__brand .brand__mark { width: 30px; }
.footer h5 { font-family:var(--sans); font-weight:600; font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; color: var(--gold-2); margin:0 0 18px; }
.footer ul { list-style:none; margin:0; padding:0; display:grid; gap: 11px; font-size:.95rem; }
.footer__bar { margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); display:flex; flex-wrap:wrap; justify-content:space-between; gap: 14px; font-size:.85rem; opacity:.7; }

/* sub-hero for interior pages */
.subhero { background: var(--navy); color:#fff; padding-top: 150px; padding-bottom: clamp(48px,7vw,84px); position:relative; overflow:hidden; }
.subhero::after{ content:""; position:absolute; inset:0; background: radial-gradient(120% 120% at 90% 0%, rgba(200,161,90,.16), transparent 55%); }
.subhero .wrap{ position:relative; z-index:1; }
.crumbs { font-size:.85rem; color: var(--muted-lt); margin-bottom: 22px; display:flex; gap:8px; }
.crumbs a:hover{ color: var(--gold-2); }
.subhero h1 { color:#fff; max-width: 18ch; }
.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.6rem,3vw,2.3rem); margin: 48px 0 16px; }
.prose h3 { font-size: 1.35rem; margin: 32px 0 10px; }
.prose p, .prose li { color: #33455a; }
.prose ul { padding-left: 1.1em; }
.prose li { margin-bottom: 8px; }

/* utility */
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-s { margin-top: 18px; } .mt-m { margin-top: 34px; } .mt-l { margin-top: 56px; }
.maxw-head { max-width: 20ch; } .maxw-p { max-width: 62ch; }
.split-head { display:flex; justify-content:space-between; align-items:flex-end; gap:30px; flex-wrap:wrap; margin-bottom: 48px; }
