/* ════════════════════════════════════════════════════════════════════
   Aura of Heritage — shared design system
   Sandstone-cream dominant · obsidian anchor · burnished gold accent
   Yoruba motifs (adire/ileke/gele) as confident framing devices
   ════════════════════════════════════════════════════════════════════ */

:root {
  --bg:        #f1ebe1;
  --bg-soft:   #e8e0d2;
  --bg-deep:   #ddd2bf;
  --ink:       #1a1714;
  --ink-soft:  #3d3631;
  --ink-muted: #7a6f64;
  --hairline:  #cabba5;
  --gold:      #9a7b3f;
  --gold-deep: #6e572b;
  --gold-soft: #c9a868;
  --emerald:   #9bb89c;
  --diamond:   #e6e2d8;

  --serif: "Fraunces", "EB Garamond", Garamond, "Times New Roman", serif;
  --sans:  "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono:  ui-monospace, "SF Mono", Menlo, monospace;

  --pad-x: clamp(24px, 4vw, 64px);
}

/* ─── Reset & base ────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  background: var(--bg); color: var(--ink);
  font-family: var(--sans);
  font-feature-settings: "ss01", "kern", "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
::selection { background: var(--ink); color: var(--bg); }

/* ─── Typographic primitives ──────────────────────────────────── */

.eyebrow {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  font-weight: 500; color: var(--gold);
}
.eyebrow.on-dark { color: var(--gold-soft); }

.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.012em; }
.italic-gold em { font-style: italic; color: var(--gold); font-weight: 400; }
.italic-gold-soft em { font-style: italic; color: var(--gold-soft); font-weight: 400; }

.crumbs {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-muted);
}
.crumbs .on { color: var(--ink); }

/* ─── Motif borders / dividers ─────────────────────────────────── */

.beads {
  display: flex; align-items: center; gap: 14px; color: var(--gold);
}
.beads .line { flex: 1; height: 1px; background: var(--hairline); }
.beads .row {
  width: 96px; height: 8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='8' viewBox='0 0 24 8'><g fill='%239a7b3f' opacity='0.85'><circle cx='4' cy='4' r='1.4'/><circle cx='12' cy='4' r='1.4'/><circle cx='20' cy='4' r='1.4'/></g></svg>");
  background-repeat: repeat-x; background-position: center;
}

.adire-bg {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%239a7b3f' stroke-width='0.6' opacity='0.12'><path d='M40 4 L76 40 L40 76 L4 40 Z'/><path d='M40 16 L64 40 L40 64 L16 40 Z'/><path d='M40 28 L52 40 L40 52 L28 40 Z'/><path d='M0 40 L80 40 M40 0 L40 80'/><circle cx='40' cy='40' r='2'/><circle cx='0' cy='0' r='2'/><circle cx='80' cy='0' r='2'/><circle cx='0' cy='80' r='2'/><circle cx='80' cy='80' r='2'/></g></svg>");
  background-size: 96px 96px;
}
.adire-bg.on-dark {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23c9a868' stroke-width='0.6' opacity='0.08'><path d='M40 4 L76 40 L40 76 L4 40 Z'/><path d='M40 16 L64 40 L40 64 L16 40 Z'/><path d='M40 28 L52 40 L40 52 L28 40 Z'/><path d='M0 40 L80 40 M40 0 L40 80'/></g></svg>");
}
.adire-bg.dense { background-size: 60px 60px; }

.divider {
  display: flex; align-items: center; gap: 14px;
  margin: 32px 0;
}
.divider .line { flex: 1; height: 1px; background: var(--hairline); }
.divider .diamond {
  width: 14px; height: 14px;
  display: inline-block;
  background: linear-gradient(45deg, transparent 49.5%, var(--gold) 49.5% 50.5%, transparent 50.5%),
              linear-gradient(-45deg, transparent 49.5%, var(--gold) 49.5% 50.5%, transparent 50.5%);
}

/* ─── Buttons & links ──────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; font-size: 11.5px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500;
  border: 1px solid var(--ink); background: var(--ink); color: var(--bg);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
  cursor: pointer; text-align: center; justify-content: center;
}
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn.gold { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.btn.gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn.gold-ghost { background: transparent; color: var(--gold-soft); border-color: var(--gold-soft); }
.btn.gold-ghost:hover { background: var(--gold-soft); color: var(--ink); }
.btn.sm { padding: 9px 16px; font-size: 10.5px; }
.btn.lg { padding: 16px 30px; font-size: 12px; }
.btn.full { width: 100%; }

.btn.text {
  background: transparent; color: var(--ink); border: 0; padding: 8px 0;
  letter-spacing: 0.16em; font-size: 11.5px;
}
.btn.text:hover { color: var(--gold-deep); background: transparent; }

.link {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink); cursor: pointer;
  border-bottom: 1px solid var(--gold); padding-bottom: 4px;
  transition: color .25s, border-color .25s;
  display: inline-block;
}
.link:hover { color: var(--gold-deep); border-color: var(--gold-deep); }
.link.muted { color: var(--ink-muted); border-color: transparent; }

/* ─── Nav ──────────────────────────────────────────────────────── */

.nav {
  position: sticky; top: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 22px var(--pad-x);
  background: rgba(241, 235, 225, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, padding .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--hairline); padding-top: 14px; padding-bottom: 14px; }
.nav.dark {
  background: rgba(26, 23, 20, 0.92); color: var(--bg);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.nav.dark.scrolled { border-bottom-color: rgba(255, 255, 255, 0.12); }

.nav-links, .nav-utility {
  display: flex; gap: 28px; align-items: center;
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500; color: var(--ink);
}
.nav.dark .nav-links, .nav.dark .nav-utility { color: var(--bg); }
.nav-utility { justify-content: flex-end; }
.nav a { position: relative; padding: 4px 0; cursor: pointer; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--ink); }
.nav.dark a.active { color: var(--bg); }

.wordmark {
  font-family: var(--serif);
  font-size: 21px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 500; color: inherit; white-space: nowrap;
  user-select: none;
}

.cart-pill { display: inline-flex; align-items: center; gap: 8px; }
.cart-pill .count {
  display: inline-block; min-width: 18px; height: 18px;
  border-radius: 9px; background: var(--gold); color: var(--bg);
  font-size: 9.5px; line-height: 18px; text-align: center; padding: 0 6px;
  letter-spacing: 0;
}

.nav-mobile-toggle {
  display: none; padding: 6px; background: transparent; border: 0;
  color: inherit;
}

/* ─── Footer ───────────────────────────────────────────────────── */

footer {
  background: var(--ink); color: var(--ink-soft);
  padding: 80px var(--pad-x) 32px;
}
.footer-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .wm {
  font-family: var(--serif); font-size: 26px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--bg); margin-bottom: 20px;
}
.footer-brand p {
  font-family: var(--serif); font-size: 14px; line-height: 1.6;
  color: var(--ink-soft); max-width: 300px; margin: 0 0 24px;
}
.newsletter {
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 0; max-width: 320px;
}
.newsletter input {
  flex: 1; background: transparent; border: 0; outline: 0;
  color: var(--bg); font-family: var(--serif); font-size: 14px;
  padding: 8px 0;
}
.newsletter input::placeholder { color: var(--ink-muted); font-style: italic; }
.newsletter button {
  background: transparent; border: 0; color: var(--gold-soft);
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer;
}
.footer-col h4 {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-soft); margin: 0 0 16px; font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a {
  font-family: var(--serif); font-size: 14px; color: var(--ink-soft);
  transition: color .25s;
}
.footer-col a:hover { color: var(--bg); }
.colophon {
  max-width: 1320px; margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.10); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted);
}

/* ─── Section rhythm ───────────────────────────────────────────── */

.section { padding: 120px var(--pad-x); }
.section.compact { padding: 80px var(--pad-x); }
.section.tight { padding: 56px var(--pad-x); }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin: 0 auto 56px; max-width: 1320px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 400; letter-spacing: -0.012em; line-height: 1.04;
  margin: 14px 0 0; max-width: 720px; color: var(--ink);
}
.section-head h2 em { font-style: italic; color: var(--gold); }
.container { max-width: 1320px; margin: 0 auto; }

/* ─── Jewelry frame & placeholder ──────────────────────────────── */

.frame {
  border: 1px solid var(--hairline);
  background: var(--bg-soft);
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 5;
}
.frame.square { aspect-ratio: 1 / 1; }
.frame.gold { background: var(--gold-soft); }
.frame.dark { background: var(--ink); }
.frame .ph {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.frame .ph svg { width: 64%; height: 64%; }
.frame:hover .ph { transform: scale(1.04); }
.frame .stamp {
  position: absolute; bottom: 10px; left: 12px;
  font-family: var(--mono); font-size: 8.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted);
}

/* tiny corner marks for hero/feature frames */
.frame .corner { position: absolute; width: 18px; height: 18px; border-color: var(--gold); }
.frame .corner.tl { top: 8px; left: 8px; border-top: 1px solid; border-left: 1px solid; }
.frame .corner.tr { top: 8px; right: 8px; border-top: 1px solid; border-right: 1px solid; }
.frame .corner.bl { bottom: 8px; left: 8px; border-bottom: 1px solid; border-left: 1px solid; }
.frame .corner.br { bottom: 8px; right: 8px; border-bottom: 1px solid; border-right: 1px solid; }

/* ─── Product card ─────────────────────────────────────────────── */

.piece { cursor: pointer; display: block; color: inherit; }
.piece .frame { transition: border-color .35s ease; margin-bottom: 18px; }
.piece:hover .frame { border-color: var(--gold); }
.piece .col {
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.piece .name {
  font-family: var(--serif); font-size: 22px; color: var(--ink);
  margin-bottom: 4px; letter-spacing: -0.005em;
}
.piece .row {
  display: flex; justify-content: space-between; align-items: baseline;
}
.piece .row .price {
  font-family: var(--serif); font-size: 16px; color: var(--ink);
}
.piece .mat {
  font-size: 12px; color: var(--ink-muted); letter-spacing: 0.005em;
  margin-top: 4px;
}

/* ─── Tier cards (engraved) ────────────────────────────────────── */

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tier {
  position: relative; padding: 44px 32px 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: transform .4s ease, border-color .4s ease, background .4s ease;
}
.tier::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background-repeat: repeat-x; background-position: center;
  background-size: 24px 8px; opacity: 0.85;
}
.tier.gold-tier::before    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='8' viewBox='0 0 24 8'><g fill='%23c9a868'><circle cx='4' cy='4' r='1.4'/><circle cx='12' cy='4' r='1.4'/><circle cx='20' cy='4' r='1.4'/></g></svg>"); }
.tier.emerald-tier::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='8' viewBox='0 0 24 8'><g fill='%239bb89c'><circle cx='4' cy='4' r='1.4'/><circle cx='12' cy='4' r='1.4'/><circle cx='20' cy='4' r='1.4'/></g></svg>"); }
.tier.diamond-tier::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='8' viewBox='0 0 24 8'><g fill='%23e6e2d8'><circle cx='4' cy='4' r='1.4'/><circle cx='12' cy='4' r='1.4'/><circle cx='20' cy='4' r='1.4'/></g></svg>"); }
.tier.featured { border-color: var(--gold-soft); background: rgba(255, 255, 255, 0.05); }
.tier:hover { transform: translateY(-4px); border-color: var(--gold-soft); }

.tier .badge {
  position: absolute; top: -10px; left: 24px;
  background: var(--ink); padding: 0 10px;
  font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-soft);
}
.tier-head {
  text-align: center; padding-bottom: 24px; margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.tier-head .label {
  font-size: 10px; letter-spacing: 0.30em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 12px;
}
.tier.emerald-tier .tier-head .label { color: var(--emerald); }
.tier.diamond-tier .tier-head .label { color: var(--diamond); }
.tier-head .name {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 40px; letter-spacing: 0.04em; color: var(--bg);
}
.tier-swaps { text-align: center; margin-bottom: 22px; }
.tier-swaps .n {
  font-family: var(--serif); font-size: 64px; line-height: 1;
  color: var(--gold-soft); margin-bottom: 6px; letter-spacing: -0.01em;
}
.tier.emerald-tier .tier-swaps .n { color: var(--emerald); }
.tier.diamond-tier .tier-swaps .n { color: var(--diamond); }
.tier-swaps .lab {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft);
}
.tier-body {
  font-family: var(--serif); font-size: 14.5px; line-height: 1.55;
  color: var(--ink-soft); text-align: center; margin: 0 0 26px;
}
.tier-price { text-align: center; margin-bottom: 22px; }
.tier-price .v { font-family: var(--serif); font-size: 30px; color: var(--bg); letter-spacing: -0.01em; }
.tier-price .u { font-size: 11px; color: var(--ink-soft); margin-left: 6px; }

/* ─── Forms ────────────────────────────────────────────────────── */

.input, textarea.input {
  width: 100%; padding: 14px 16px; border: 1px solid var(--hairline);
  font-family: var(--serif); font-size: 15px; color: var(--ink);
  background: var(--bg); outline: none; transition: border-color .25s;
}
.input:focus { border-color: var(--ink); }
textarea.input { resize: vertical; min-height: 96px; font-style: italic; }
.input::placeholder { font-style: italic; color: var(--ink-muted); }

.field-label {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
  display: block;
}
.field-hint { font-size: 10px; color: var(--ink-muted); }

.chip-row { display: grid; gap: 6px; }
.chip {
  padding: 11px 8px; cursor: pointer; background: transparent;
  border: 1px solid var(--hairline); color: var(--ink);
  font-family: var(--serif); font-size: 14px;
  transition: border-color .2s, background .2s, color .2s;
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.radio-row { display: flex; flex-direction: column; gap: 10px; }
.radio {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  background: transparent; border: 0; padding: 0; text-align: left;
}
.radio .dot {
  width: 11px; height: 11px; border-radius: 6px;
  border: 1px solid var(--hairline); background: transparent; flex-shrink: 0;
}
.radio.active .dot { border-color: var(--ink); background: var(--ink); }
.radio .lab {
  font-family: var(--serif); font-size: 15px; color: var(--ink-soft);
}
.radio.active .lab { color: var(--ink); }

/* pill filter row */
.pill {
  padding: 9px 16px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--hairline); background: transparent; color: var(--ink);
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 500;
  transition: background .2s, color .2s, border-color .2s;
}
.pill:hover { border-color: var(--ink); }
.pill.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ─── Card surfaces ────────────────────────────────────────────── */
.card {
  background: var(--bg-soft); border: 1px solid var(--hairline);
  padding: 24px;
}
.card.bg { background: var(--bg); }
.card.dark { background: var(--ink); color: var(--bg); position: relative; overflow: hidden; }
.card.dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23c9a868' stroke-width='0.6' opacity='0.07'><path d='M40 4 L76 40 L40 76 L4 40 Z'/><path d='M40 16 L64 40 L40 64 L16 40 Z'/></g></svg>");
  background-size: 100px 100px;
}
.card.dark > * { position: relative; }

/* ─── Reveal animations ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }

@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.7); } }
@keyframes ledger { 0% { background-position: 0 0; } 100% { background-position: 100px 0; } }

/* ─── Modal (swap, etc.) ──────────────────────────────────────── */

.modal-veil {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,16,12,0.6);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 32px; opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.modal-veil.open { opacity: 1; pointer-events: auto; }
.modal {
  width: 880px; max-width: 100%; max-height: 92vh; overflow: hidden;
  background: var(--bg); display: grid; grid-template-rows: auto 1fr auto;
  box-shadow: 0 40px 120px rgba(0,0,0,0.4);
  transform: translateY(12px); transition: transform .3s ease;
}
.modal-veil.open .modal { transform: none; }
.modal-head {
  padding: 20px 32px; border-bottom: 1px solid var(--hairline);
  display: flex; justify-content: space-between; align-items: center;
}
.modal-head h3 { font-family: var(--serif); font-size: 22px; margin: 4px 0 0; font-weight: 400; }
.modal-close {
  width: 32px; height: 32px; border-radius: 16px; border: 1px solid var(--hairline);
  background: transparent; color: var(--ink); cursor: pointer; font-size: 18px;
  line-height: 1; padding: 0;
}
.modal-body { overflow: auto; }
.modal-foot {
  padding: 16px 32px; border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-soft); gap: 16px;
}
.modal-foot .actions { display: flex; gap: 10px; }

.steps {
  display: flex; align-items: center; gap: 10px;
  padding: 20px 32px 0;
}
.steps .step { display: flex; align-items: center; gap: 8px; }
.steps .num {
  width: 22px; height: 22px; border-radius: 11px;
  background: transparent; border: 1px solid var(--hairline); color: var(--ink-muted);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
}
.steps .step.active .num { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.steps .step.done .num { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.steps .lab {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-muted);
}
.steps .step.active .lab { color: var(--ink); }
.steps .connector { flex: 1; height: 1px; background: var(--hairline); }
.steps .connector.done { background: var(--gold); }

/* ─── Timeline ─────────────────────────────────────────────────── */

.timeline {
  position: relative; padding-left: 26px;
}
.timeline::before {
  content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px;
  width: 1px; background: var(--hairline);
}
.timeline .row { position: relative; padding-bottom: 18px; }
.timeline .dot {
  position: absolute; left: -26px; top: 4px;
  width: 11px; height: 11px; border-radius: 6px;
  background: var(--bg); border: 2px solid var(--hairline);
}
.timeline .row.now .dot { background: var(--gold); border-color: var(--gold); }
.timeline .row.now .dot.pulse { animation: pulse 1.6s infinite; }
.timeline .d {
  font-family: var(--sans); font-size: 9.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-muted); margin-bottom: 2px;
}
.timeline .t {
  font-family: var(--serif); font-size: 14.5px; color: var(--ink);
}
.timeline .row.now .d { color: var(--gold); }

/* ─── Responsive ───────────────────────────────────────────────── */

@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tiers { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .nav { grid-template-columns: 1fr auto auto; padding: 16px 22px; }
  .nav-links { display: none; }
  .nav-utility .city { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 80px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

@media print {
  .nav, footer, .modal-veil { display: none !important; }
  body { background: white; }
}
