/* ==========================================================================
   INDY FOUNDATION PROS — design system
   Vibe: deep structural black, warm brass/gold accent, quarried-stone
   texture. Signature element: "the grade line" — a thin gold horizontal
   line running through the page representing ground grade, with a
   fracture-line SVG motif that reacts on scroll. Everything reads as
   engineered, load-bearing, permanent — the opposite of a flimsy landing
   page, on purpose, because the thing being sold is structural trust.
   ========================================================================== */

@font-face {
  font-family: "Cormorant Garamond";
  src: local("Cormorant Garamond");
  font-display: swap;
}

:root {
  /* --- palette, calibrated from the client's actual logo file ---
     logo navy core samples: #0c1e30 / #122436 / #182a3c
     logo gold core samples: #a2854e / #ae8a5a / #c6b496 */
  --bg: #0a1420;
  --bg-raised: #0e1a29;
  --bg-card: #10202f;
  --stone-line: #1f3348;
  --accent: #b3925c;
  --accent-dim: #8f764a;
  --accent-bright: #d8bd8c;
  --paper: #f3efe6;
  --paper-dim: #cdc7ba;
  --ink: #e7e3da;
  --ink-dim: #a8b0b9;
  --ink-faint: #6c7a89;
  --danger: #c9704f;
  --ok: #7a9b7e;
  --navy-deep: #071019;
  --navy: #122234;

  /* --- type --- */
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-body: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;

  /* --- motion --- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-soft: cubic-bezier(0.32, 0.72, 0, 1);

  /* --- radii / rhythm --- */
  --r-lg: 1.75rem;
  --r-md: 1.1rem;
  --r-sm: 0.6rem;
  --section-pad: clamp(4.5rem, 9vw, 8rem);
  --edge-pad: clamp(1.25rem, 5vw, 4rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* fixed grain — never on scrolling containers, per perf guardrails */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
  color: var(--paper);
  letter-spacing: -0.01em;
}

p { margin: 0; color: var(--ink-dim); }

.wrap { max-width: 1280px; margin: 0 auto; padding-inline: var(--edge-pad); }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding-inline: var(--edge-pad); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.4em 0.95em;
  border: 1px solid rgba(179, 146, 92, 0.28);
  border-radius: 999px;
  background: rgba(179, 146, 92, 0.06);
}
.eyebrow::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* ---------------- Nav: floating island ---------------- */
.nav-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; justify-content: center; padding-top: 1.1rem; }
.nav {
  width: min(94vw, 1180px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0.7rem 0.6rem 1.3rem;
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(242, 240, 235, 0.08);
  box-shadow: 0 12px 40px -18px rgba(0,0,0,0.7);
  transition: background 0.4s var(--ease-soft), border-color .4s var(--ease-soft);
}
.nav-logo { font-family: var(--font-display); font-size: 1.15rem; color: var(--paper); font-weight: 600; letter-spacing: -0.01em; white-space: nowrap; display: inline-flex; align-items: center; }
.nav-logo span { color: var(--accent); }
.nav-logo img { height: 34px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 1.7rem; font-size: 0.86rem; color: var(--ink-dim); }
.nav-links a { transition: color 0.3s var(--ease-soft); }
.nav-links a:hover { color: var(--paper); }
.nav-cta { display: flex; align-items: center; gap: 0.6rem; }
.nav-phone { display: none; }
@media (min-width: 900px) { .nav-phone { display: inline-flex; font-size: 0.86rem; color: var(--ink); } }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 0.6rem 0.85rem 1.35rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  border: none;
  transition: transform 0.5s var(--ease-spring), background 0.4s var(--ease-soft);
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--accent); color: #0c1520; }
.btn-primary:hover { background: var(--accent-bright); }
.btn-ghost { background: rgba(242,240,235,0.06); color: var(--paper); border: 1px solid rgba(242,240,235,0.14); padding: 0.8rem 1.3rem; }
.btn-ghost:hover { background: rgba(242,240,235,0.11); }
.btn-icon {
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: rgba(10,15,20,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.5s var(--ease-spring);
}
.btn-primary:hover .btn-icon { transform: translate(2px,-2px) scale(1.06); }
.btn-icon svg { width: 15px; height: 15px; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--navy-deep);
  background-image:
    linear-gradient(100deg, rgba(7,16,25,0.94) 0%, rgba(7,16,25,0.82) 32%, rgba(7,16,25,0.4) 62%, rgba(7,16,25,0.72) 100%),
    url("/assets/images/hero-desktop.jpg");
  background-size: cover;
  background-position: center 65%;
}
@media (max-width: 780px) {
  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(7,16,25,0.55) 0%, rgba(7,16,25,0.55) 40%, rgba(7,16,25,0.94) 82%, rgba(7,16,25,0.98) 100%),
      url("/assets/images/hero-mobile.jpg");
    background-position: center 30%;
  }
}
.hero::after {
  content: "";
  position: absolute; inset: -20% -10% auto -10%; height: 60%; z-index: 1;
  background: radial-gradient(ellipse at 30% 0%, rgba(179,146,92,0.16), transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-kicker { margin-bottom: 1.4rem; }
.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  color: var(--paper);
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub { margin-top: 1.5rem; font-size: 1.12rem; color: var(--ink-dim); max-width: 42ch; line-height: 1.65; }
.hero-actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.hero-trust { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1.6rem; font-size: 0.82rem; color: var(--ink-faint); }
.hero-trust b { color: var(--ink); font-weight: 600; }

/* grade-line signature element */
.grade-line { position: relative; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(179,146,92,0.5), transparent); margin: 0; }
.grade-line-wrap { position: relative; margin: var(--section-pad) 0 0; }
.grade-tick { position: absolute; top: -3px; width: 1px; height: 7px; background: var(--accent); opacity: 0.6; }

/* ---------------- Fracture diagnostic card (hero visual) ---------------- */
.diag-card {
  position: relative;
  border-radius: var(--r-lg);
  background: rgba(242,240,235,0.03);
  border: 1px solid rgba(242,240,235,0.09);
  padding: 0.4rem;
}
.diag-card-inner {
  border-radius: calc(var(--r-lg) - 0.4rem);
  background: linear-gradient(165deg, #16283c, #081018);
  padding: 2rem;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.06);
}
.diag-svg { width: 100%; height: auto; }
.diag-caption { margin-top: 1.2rem; font-size: 0.78rem; color: var(--ink-faint); display: flex; justify-content: space-between; }

/* ---------------- Stat row ---------------- */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--stone-line); border: 1px solid var(--stone-line); border-radius: var(--r-md); overflow: hidden; margin-top: var(--section-pad); }
@media (max-width: 700px) { .stat-row { grid-template-columns: 1fr; } }
.stat { background: var(--bg-raised); padding: 1.9rem 1.8rem; }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--accent); font-weight: 500; }
.stat span { font-size: 0.82rem; color: var(--ink-faint); }

/* ---------------- Section scaffolding ---------------- */
section { position: relative; padding-block: var(--section-pad); }
.section-head { max-width: 640px; margin-bottom: 3.2rem; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin-top: 1rem; }
.section-head p { margin-top: 1.1rem; font-size: 1.05rem; max-width: 56ch; }
.section-alt { background: var(--bg-raised); }

/* ---------------- Double-bezel card ---------------- */
.shell { padding: 0.35rem; border-radius: var(--r-lg); background: rgba(242,240,235,0.025); border: 1px solid rgba(242,240,235,0.07); height: 100%; }
.shell-core { border-radius: calc(var(--r-lg) - 0.35rem); background: var(--bg-card); padding: 1.9rem; height: 100%; box-shadow: inset 0 1px 1px rgba(255,255,255,0.045); display: flex; flex-direction: column; gap: 0.9rem; }
.shell-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.7rem; background: rgba(179,146,92,0.1); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.shell-icon svg { width: 20px; height: 20px; stroke-width: 1.3; }
.shell-core h3 { font-size: 1.28rem; color: var(--paper); }
.shell-core p { font-size: 0.94rem; }

/* signs / bento grid */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.bento .shell:nth-child(1) { grid-column: span 3; }
.bento .shell:nth-child(2) { grid-column: span 3; }
.bento .shell:nth-child(3) { grid-column: span 2; }
.bento .shell:nth-child(4) { grid-column: span 2; }
.bento .shell:nth-child(5) { grid-column: span 2; }
.bento .shell:nth-child(6) { grid-column: span 6; }
@media (max-width: 900px) { .bento { grid-template-columns: 1fr; } .bento .shell { grid-column: span 1 !important; } }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* numbered process (real sequence -> numbering is earned, not decorative) */
.process { display: flex; flex-direction: column; }
.process-step { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1.5rem; padding-block: 1.8rem; border-top: 1px solid var(--stone-line); }
.process-step:last-child { border-bottom: 1px solid var(--stone-line); }
.process-num { font-family: var(--font-display); font-size: 1.6rem; color: var(--accent); }
.process-step h4 { font-size: 1.18rem; color: var(--paper); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.95rem; max-width: 60ch; }

/* cost band */
.cost-band { border-radius: var(--r-lg); background: linear-gradient(120deg, rgba(179,146,92,0.09), rgba(179,146,92,0.02)); border: 1px solid rgba(179,146,92,0.18); padding: clamp(1.8rem, 4vw, 3rem); display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (max-width: 760px) { .cost-band { grid-template-columns: 1fr; } }
.cost-figure b { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--accent); font-weight: 500; white-space: nowrap; }
.cost-figure span { display: block; font-size: 0.78rem; color: var(--ink-faint); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.3rem; }
.cost-band p { font-size: 0.98rem; color: var(--ink-dim); }

/* faq accordion */
.faq-item { border-top: 1px solid var(--stone-line); }
.faq-item:last-child { border-bottom: 1px solid var(--stone-line); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; background: none; border: none; color: var(--paper); text-align: left; font-size: 1.05rem; font-family: var(--font-body); font-weight: 500; width: 100%; }
.faq-q .plus { width: 1.6rem; height: 1.6rem; border-radius: 50%; border: 1px solid rgba(242,240,235,0.16); flex-shrink: 0; position: relative; transition: transform 0.5s var(--ease-spring), background 0.4s var(--ease-soft); }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--accent); top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform 0.4s var(--ease-soft), opacity 0.4s var(--ease-soft); }
.faq-q .plus::before { width: 9px; height: 1px; }
.faq-q .plus::after { width: 1px; height: 9px; }
.faq-item.open .plus { background: rgba(179,146,92,0.12); transform: rotate(180deg); }
.faq-item.open .plus::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.55s var(--ease-out); }
.faq-a-inner { padding-bottom: 1.6rem; font-size: 0.97rem; max-width: 66ch; color: var(--ink-dim); }

/* city / service listing chips */
.chip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 0.8rem; }
.chip {
  padding: 1.2rem 1.3rem;
  border-radius: var(--r-sm);
  background: rgba(242,240,235,0.03);
  border: 1px solid rgba(242,240,235,0.07);
  transition: transform 0.5s var(--ease-spring), border-color 0.4s var(--ease-soft), background 0.4s var(--ease-soft);
}
.chip:hover { transform: translateY(-3px); border-color: rgba(179,146,92,0.35); background: rgba(179,146,92,0.05); }
.chip b { display: block; color: var(--paper); font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; }
.chip span { font-size: 0.78rem; color: var(--ink-faint); }

/* ---------------- Lead form ---------------- */
.form-card { border-radius: var(--r-lg); background: var(--bg-card); border: 1px solid rgba(242,240,235,0.08); padding: clamp(1.6rem, 4vw, 2.6rem); }
.form-card h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.form-card > p { margin-bottom: 1.6rem; font-size: 0.92rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 0.9rem; }
.field label { display: block; font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.45rem; }
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(242,240,235,0.035);
  border: 1px solid rgba(242,240,235,0.12);
  border-radius: 0.6rem;
  padding: 0.85rem 1rem;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease-soft), background 0.3s var(--ease-soft);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: rgba(179,146,92,0.06); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.4rem; padding-block: 1rem; }
.form-note { margin-top: 1rem; font-size: 0.76rem; color: var(--ink-faint); text-align: center; }
.form-status { margin-top: 1rem; font-size: 0.88rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: var(--ok); }
.form-status.err { color: var(--danger); }

/* urgency badge on form */
.urgency-note { display: flex; gap: 0.6rem; align-items: flex-start; background: rgba(201,112,79,0.08); border: 1px solid rgba(201,112,79,0.25); border-radius: 0.7rem; padding: 0.9rem 1rem; font-size: 0.85rem; color: #dba896; margin-bottom: 1.2rem; }

/* ---------------- CTA band ---------------- */
.cta-band { border-radius: var(--r-lg); background: linear-gradient(135deg, #182c42, #081018); border: 1px solid rgba(179,146,92,0.2); padding: clamp(2.5rem, 6vw, 5rem); text-align: left; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; right: -10%; top: -30%; width: 60%; height: 160%; background: radial-gradient(ellipse, rgba(179,146,92,0.12), transparent 65%); }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); max-width: 20ch; position: relative; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; position: relative; }

/* ---------------- Footer ---------------- */
footer { border-top: 1px solid var(--stone-line); padding-block: 3.5rem 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr 0.9fr; gap: 2rem; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1rem; font-family: var(--font-body); font-weight: 600; }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; font-size: 0.88rem; color: var(--ink-dim); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { margin-top: 3rem; padding-top: 1.8rem; border-top: 1px solid var(--stone-line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.78rem; color: var(--ink-faint); }
.jdg-credit { color: var(--ink-dim); }
.jdg-credit a { color: var(--accent); font-weight: 500; transition: color 0.3s var(--ease-soft); }
.jdg-credit a:hover { color: var(--accent-bright); }

/* ---------------- breadcrumb ---------------- */
.crumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.8rem; color: var(--ink-faint); margin-bottom: 1.6rem; flex-wrap: wrap; }
.crumb a:hover { color: var(--accent); }
.crumb .sep { opacity: 0.4; }

/* ---------------- inner page hero (service/city/combo pages) ---------------- */
.page-hero { padding-top: 9.5rem; padding-bottom: 3.5rem; position: relative; }
.page-hero::after { content: ""; position: absolute; inset: -10% -10% auto -10%; height: 50%; background: radial-gradient(ellipse at 20% 0%, rgba(179,146,92,0.12), transparent 60%); pointer-events: none; }
.page-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); max-width: 22ch; position: relative; }
.page-hero p.lede { margin-top: 1.3rem; font-size: 1.08rem; max-width: 60ch; color: var(--ink-dim); position: relative; }
.page-hero-actions { margin-top: 2rem; display: flex; gap: 0.9rem; flex-wrap: wrap; position: relative; }

/* related / cross-link cards */
.link-card { display: block; padding: 1.4rem; border-radius: var(--r-md); background: rgba(242,240,235,0.03); border: 1px solid rgba(242,240,235,0.08); transition: transform 0.5s var(--ease-spring), border-color 0.4s var(--ease-soft); }
.link-card:hover { transform: translateY(-3px); border-color: rgba(179,146,92,0.3); }
.link-card b { display: block; color: var(--paper); font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.35rem; }
.link-card span { font-size: 0.8rem; color: var(--ink-faint); }

/* reveal-on-scroll targets (GSAP hooks) */
[data-reveal] { opacity: 0; }

/* mobile nav */
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 2.6rem; height: 2.6rem; border-radius: 50%; background: rgba(242,240,235,0.08); align-items: center; justify-content: center; border: none; position: relative; z-index: 210; }
@media (min-width: 900px) { .hamburger, .mobile-nav { display: none; } }
.hamburger span { width: 16px; height: 1.4px; background: var(--paper); display: block; transition: transform 0.5s var(--ease-soft), opacity 0.3s var(--ease-soft); }
.hamburger.open span:nth-child(1) { transform: translateY(6.4px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.4px) rotate(-45deg); }
.mobile-nav { position: fixed; inset: 0; z-index: 200; background: rgba(6,5,4,0.88); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.6rem; opacity: 0; pointer-events: none; transition: opacity 0.5s var(--ease-soft); }
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a { font-family: var(--font-display); font-size: 1.8rem; color: var(--paper); opacity: 0; transform: translateY(3rem); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
.mobile-nav.open a { opacity: 1; transform: translateY(0); }

@media (min-width: 900px) { .nav-links { display: flex; } }
@media (max-width: 899px) { .nav-links { display: none; } }

.container-narrow { max-width: 760px; }
.divider { height: 1px; background: var(--stone-line); margin-block: var(--section-pad); }
.text-accent { color: var(--accent); }
.text-paper { color: var(--paper); }
.small-caps { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
