/* ============================================================
   Lakewood Websites — Editorial Light Theme
   Palette: warm ivory, ink black, forest accent, rust pop
   Type:    Instrument Serif (display) + Inter (body)
   ============================================================ */

:root {
  --bg:          #f5f1ea;
  --bg-2:        #ebe6dc;
  --panel:       #ffffff;
  --panel-soft:  #faf7f1;
  --border:      #e3ddd0;
  --border-2:    #d3ccbd;

  --ink:         #14110f;
  --ink-2:       #2c2622;
  --text:        #3a332e;
  --muted:       #756e66;
  --dim:         #a39d93;

  --accent:      #1f4d3a;        /* forest */
  --accent-2:    #2d6a51;
  --accent-soft: #e6efe9;
  --rust:        #b04a2c;         /* used sparingly */
  --gold:        #c89f56;

  --radius:      14px;
  --radius-lg:   24px;
  --radius-pill: 999px;

  --shadow-sm:   0 1px 2px rgba(20,17,15,0.04), 0 1px 3px rgba(20,17,15,0.04);
  --shadow:      0 4px 24px -8px rgba(20,17,15,0.10);
  --shadow-lg:   0 30px 60px -20px rgba(20,17,15,0.18);

  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Lenis smooth-scroll housekeeping */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* ===== Grain overlay (subtle paper feel) ===== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.06  0 0 0 0 0.04  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ===== Decorative blobs (light, low-contrast) ===== */
.glow-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.glow-blobs .b {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  will-change: transform;
}
.glow-blobs .b1 { top: -8%; left: -8%; width: 36rem; height: 36rem; background: radial-gradient(closest-side, #b9c9b9, transparent 70%); }
.glow-blobs .b2 { top: 38%; right: -10%; width: 32rem; height: 32rem; background: radial-gradient(closest-side, #efd9a8, transparent 70%); }
.glow-blobs .b3 { bottom: -10%; left: 25%; width: 28rem; height: 28rem; background: radial-gradient(closest-side, #d9c4b2, transparent 70%); }

/* ===== Selection ===== */
::selection { background: var(--accent); color: #fff; }

/* ===== Container ===== */
.container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container.narrow { max-width: 880px; }

main { position: relative; z-index: 2; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
.display, .display * {
  font-family: 'Instrument Serif', 'Times New Roman', Times, serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 0.98;
  color: var(--ink);
}
.italic { font-style: italic; }
.accent-text { color: var(--accent); }
.rust-text   { color: var(--rust); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow .bar {
  width: 1.5rem; height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(31,77,58,0.12);
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-top: 1.25rem;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
}
.nav-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem 0.6rem 1.25rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: padding 0.3s var(--ease), border-radius 0.3s var(--ease);
}
.navbar.scrolled { padding-top: 0.75rem; }
.navbar.scrolled .nav-shell { box-shadow: var(--shadow); }

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-link .mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--ink);
  color: #f5f1ea;
  display: grid; place-items: center;
  font-family: 'Instrument Serif', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1;
}
.brand-link .name {
  font-family: 'Instrument Serif', serif;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem !important;
  background: var(--ink);
  color: var(--bg) !important;
  border-radius: var(--radius-pill);
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--accent); color: var(--bg) !important; transform: translateY(-1px); }
.nav-cta .arrow { transition: transform 0.25s var(--ease); }
.nav-cta:hover .arrow { transform: translateX(2px); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  padding: 0.25rem;
}

@media (max-width: 800px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 10px;
  }
  .nav-links a:hover { background: var(--panel-soft); }
  .nav-cta { display: inline-block; margin: 0.4rem; }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.4rem;
  border: 0;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
  overflow: hidden;
  isolation: isolate;
}
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 12px 30px -12px rgba(20,17,15,0.4);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(31,77,58,0.45); }

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

.btn-text {
  background: transparent;
  color: var(--ink);
  padding: 0;
  border-radius: 0;
}
.btn-text::after {
  content: "";
  display: block;
  height: 1px;
  background: currentColor;
  margin-top: 0.25rem;
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 0.4s var(--ease);
}
.btn-text:hover::after { transform: scaleX(0); transform-origin: right; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  padding: 9rem 0 6rem;
  overflow: hidden;
}
.hero .container { position: relative; }

.hero-eyebrow { margin-bottom: 2rem; }

.hero-heading {
  font-size: clamp(3rem, 8.5vw, 7rem);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  /* nudge the headline left into the optical edge of the container */
}
.hero-heading .word { display: inline-block; }
.hero-heading .row {
  display: block;
  line-height: 1;                /* even baseline-to-baseline rhythm */
  padding: 0;
  margin: 0;
}
.hero-heading .row .inner { display: inline-block; }
.hero-heading .ornament {
  display: inline-block;
  color: var(--rust);
  font-style: italic;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 5rem;              /* full breathing room below headline descenders */
  max-width: 38rem;
}
.hero-meta .lede {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}
.hero-meta .lede strong {
  color: var(--ink);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-floats .label {
  position: absolute;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  will-change: transform;
  white-space: nowrap;
}
.hero-floats .label::before {
  content: "";
  width: 0.65rem;
  height: 1px;
  background: var(--muted);
  display: inline-block;
}
/* Park labels out near the right edge / corners — out of the headline column */
.hero-floats .l1 { top: 8rem;        right: 2.5rem; }   /* near eyebrow / nav line */
.hero-floats .l2 { top: 50%;         right: 3rem; transform: translateY(-50%); }
.hero-floats .l3 { bottom: 2.5rem;   right: 2.5rem; }
@media (max-width: 1100px) { .hero-floats .label { display: none; } }

/* =====================================================
   MARQUEE
   ===================================================== */
.marquee {
  position: relative;
  z-index: 2;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-track .item {
  font-family: 'Instrument Serif', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink-2);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.marquee-track .item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rust);
  display: inline-block;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =====================================================
   SECTION FRAMING
   ===================================================== */
.section {
  position: relative;
  padding: 7rem 0;
  z-index: 2;
}
.section.tight { padding: 4rem 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 4rem;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 1rem; }
}
.section-head .meta { font-size: 0.85rem; color: var(--muted); }
.section-head h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

/* Number cue (01, 02, 03) */
.num {
  font-family: 'Instrument Serif', serif;
  font-size: 0.95rem;
  color: var(--rust);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.num::before {
  content: "";
  width: 0.6rem;
  height: 1px;
  background: var(--rust);
  display: inline-block;
}

/* =====================================================
   BRAND SHOWCASE
   ===================================================== */
.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 900px) { .brands-grid { grid-template-columns: 1fr; } }

.brand-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  will-change: transform;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ink);
}
.brand-card .deco {
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  opacity: 0.1;
  transition: transform 0.8s var(--ease), opacity 0.5s;
}
.brand-card:hover .deco { transform: scale(1.15); opacity: 0.18; }
.brand-card .deco.green   { background: var(--accent); }
.brand-card .deco.copper  { background: var(--rust); }

.brand-card .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand-card .logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ink);
}
.brand-card .logo .mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: #f8f5ee;
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
}
.brand-card .logo .mark.green  { background: var(--accent); }
.brand-card .logo .mark.copper { background: var(--rust); }

.brand-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.1;
}
.brand-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}
.brand-card .tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-top: 0.5rem;
}
.brand-card .tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink-2);
  border: 1px solid var(--border);
}
.brand-card .visit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.brand-card .visit:hover { color: var(--accent); }
.brand-card .visit .arrow { transition: transform 0.3s var(--ease); }
.brand-card .visit:hover .arrow { transform: translate(3px, -3px); }

/* =====================================================
   ALSO-FROM grid (secondary brands)
   ===================================================== */
.also-from {
  margin-top: 3rem;
}
.also-from .label-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.also-from .label-row::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.brand-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1000px) { .brand-mini-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 740px)  { .brand-mini-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .brand-mini-grid { grid-template-columns: 1fr; } }

.brand-mini {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.1rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 130px;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
  isolation: isolate;
}
.brand-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-soft), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}
.brand-mini:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}
.brand-mini:hover::before { opacity: 1; }

.brand-mini .mini-name {
  font-family: 'Instrument Serif', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.brand-mini .mini-domain {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: -0.01em;
}
.brand-mini .mini-tag {
  font-size: 0.85rem;
  color: var(--text);
  margin-top: 0.2rem;
}
.brand-mini .mini-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--muted);
  transition: transform 0.3s var(--ease), color 0.3s;
}
.brand-mini:hover .mini-arrow {
  color: var(--accent);
  transform: translate(3px, -3px);
}

/* =====================================================
   MANIFESTO (sticky reveal)
   ===================================================== */
.manifesto {
  position: relative;
  padding: 8rem 0 10rem;
  z-index: 2;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .manifesto-grid { grid-template-columns: 1fr; gap: 2rem; } }

.manifesto-side { position: sticky; top: 9rem; }
.manifesto-side .label { font-size: 0.85rem; color: var(--rust); margin-bottom: 1rem; }
.manifesto-side h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
@media (max-width: 900px) { .manifesto-side { position: relative; top: 0; } }

.manifesto-lines {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1.25;
  color: var(--ink-2);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.manifesto-lines p { margin: 0; padding: 0.4rem 0; }
.manifesto-lines em {
  font-style: italic;
  color: var(--accent);
}
.manifesto-lines .pop {
  font-style: italic;
  color: var(--rust);
}

/* Reveal animation (driven by GSAP — fallback when JS is off) */
[data-reveal] { opacity: 0; transform: translate3d(0, 24px, 0); }
.no-js [data-reveal] { opacity: 1; transform: none; }
.is-revealed { opacity: 1; transform: none; }

[data-split] .char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.6em, 0);
}
.no-js [data-split] .char { opacity: 1; transform: none; }

/* =====================================================
   STATS STRIP
   ===================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 800px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat {
  padding: 2.25rem 1.5rem;
  border-right: 1px solid var(--border);
  text-align: left;
}
.stat:last-child { border-right: 0; }
@media (max-width: 800px) {
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}
.stat .value {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}
.stat .value .suffix { font-size: 0.6em; color: var(--rust); }
.stat .label {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =====================================================
   VALUES / PRINCIPLES
   ===================================================== */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
@media (max-width: 900px) { .principles { grid-template-columns: 1fr; } }

.principle {
  position: relative;
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  background: var(--bg);
  transition: background 0.4s var(--ease);
}
.principle:last-child { border-right: 0; }
@media (max-width: 900px) {
  .principle { border-right: 0; border-bottom: 1px solid var(--border); }
  .principle:last-child { border-bottom: 0; }
}
.principle:hover { background: var(--panel-soft); }
.principle .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 1.25rem;
}
.principle h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.principle p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; }

/* =====================================================
   FAT CTA
   ===================================================== */
.cta-section {
  position: relative;
  padding: 8rem 0;
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 20% 20%, rgba(31,77,58,0.5), transparent 60%),
              radial-gradient(60% 60% at 80% 80%, rgba(176,74,44,0.35), transparent 60%);
  pointer-events: none;
}
.cta-section .eyebrow { color: rgba(245,241,234,0.6); }
.cta-section .eyebrow .dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(200,159,86,0.18); }
.cta-section h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 1.75rem 0;
  color: var(--bg);
}
.cta-section h2 em { font-style: italic; color: var(--gold); }
.cta-section p { max-width: 38rem; color: rgba(245,241,234,0.75); font-size: 1.05rem; }
.cta-section .actions { display: flex; gap: 0.75rem; margin-top: 2.25rem; flex-wrap: wrap; }
.cta-section .btn-primary { background: var(--bg); color: var(--ink); box-shadow: 0 14px 30px -10px rgba(0,0,0,0.5); }
.cta-section .btn-primary::before { background: var(--gold); }
.cta-section .btn-primary:hover { color: var(--ink); }
.cta-section .btn-ghost {
  border-color: rgba(245,241,234,0.3);
  color: rgba(245,241,234,0.9);
}
.cta-section .btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(245,241,234,0.6); color: var(--bg); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
.footer-grid h5 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.6rem; }
.footer-grid a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-grid a:hover { color: var(--accent); }
.footer-blurb {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 26ch;
  margin-top: 1rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  color: var(--muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom .legal-links a {
  color: var(--ink-2);
  text-decoration: none;
  margin-left: 1.25rem;
}
.footer-bottom .legal-links a:hover { color: var(--accent); }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-shell {
  padding: 9rem 0 5rem;
  position: relative;
}
.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-intro h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  margin: 1.25rem 0 1.5rem;
}
.contact-intro h1 em { font-style: italic; color: var(--rust); }
.contact-intro p { max-width: 30rem; margin: 0 auto; color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-stack { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  display: flex;
  gap: 1rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.info-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.info-card .ic {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
}
.info-card .ic.rust { background: rgba(176,74,44,0.10); color: var(--rust); }
.info-card .ic.gold { background: rgba(200,159,86,0.18); color: #8a6c30; }
.info-card h4 { font-size: 1rem; color: var(--ink); margin-bottom: 0.25rem; font-weight: 600; }
.info-card p { font-size: 0.92rem; color: var(--muted); }
.info-card a { color: var(--accent); text-decoration: none; font-weight: 500; font-size: 0.92rem; }
.info-card a:hover { text-decoration: underline; }

.form-shell {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 0.45rem;
}
.field label .req { color: var(--rust); margin-left: 0.15rem; }
.field label .opt { color: var(--dim); font-weight: 400; margin-left: 0.25rem; }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31,77,58,0.12);
  background: var(--panel);
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.5; }
.field .err { color: var(--rust); font-size: 0.82rem; margin-top: 0.35rem; min-height: 1.05rem; }
.field.bad input, .field.bad select, .field.bad textarea {
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(176,74,44,0.12);
}

.consent {
  background: var(--accent-soft);
  border: 1px solid rgba(31,77,58,0.18);
  border-radius: var(--radius);
  padding: 1.1rem;
  margin-bottom: 1.4rem;
}
.consent label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  cursor: pointer;
}
.consent input[type=checkbox] {
  width: 1.15rem; height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}
.consent .ctx { font-size: 0.88rem; color: var(--ink-2); line-height: 1.6; }
.consent .ctx strong { color: var(--ink); }
.consent .ctx code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  background: rgba(31,77,58,0.10);
  color: var(--accent);
  padding: 0.05rem 0.35rem;
  border-radius: 4px;
  font-size: 0.85em;
}
.consent .ctx a { color: var(--accent); }

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.2rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--bg);
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.3s, box-shadow 0.3s;
  box-shadow: 0 12px 30px -12px rgba(20,17,15,0.5);
}
.btn-submit:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 20px 40px -16px rgba(31,77,58,0.55); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-foot {
  text-align: center;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.8rem;
}
.form-foot a { color: var(--ink-2); }

.form-error {
  background: rgba(176,74,44,0.08);
  border: 1px solid rgba(176,74,44,0.3);
  color: var(--rust);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.success-card {
  text-align: center;
  padding: 3rem 2rem;
}
.success-card .check {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(31,77,58,0.25);
  color: var(--accent);
  margin: 0 auto 1.5rem;
  display: grid; place-items: center;
}
.success-card h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.success-card .ticket-no {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  color: var(--accent);
  font-weight: 600;
}
.success-card p { color: var(--muted); margin-bottom: 1rem; }
.success-card .restart {
  margin-top: 1.5rem;
  padding: 0.75rem 1.4rem;
  background: var(--bg);
  border: 1px solid var(--border-2);
  color: var(--ink);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  transition: background 0.2s, border-color 0.2s;
}
.success-card .restart:hover { background: var(--panel-soft); border-color: var(--ink); }

.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(245,241,234,0.35);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-shell {
  padding: 9rem 0 5rem;
  position: relative;
}
.legal {
  max-width: 760px;
  margin: 0 auto;
}
.legal h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.legal .updated { color: var(--dim); font-size: 0.88rem; margin-bottom: 0.5rem; }
.legal .companion { color: var(--muted); font-size: 0.92rem; margin-bottom: 2.5rem; }
.legal .companion a { color: var(--accent); }
.legal h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem;
  color: var(--ink);
  font-weight: 400;
  margin-top: 3rem;
  letter-spacing: -0.01em;
}
.legal h3 {
  margin-top: 1.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.legal p, .legal li {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-top: 0.75rem;
}
.legal ul { margin-left: 1.25rem; }
.legal a { color: var(--accent); }
.legal code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.05rem 0.35rem;
  border-radius: 4px;
  font-size: 0.88em;
}

/* =====================================================
   MISC
   ===================================================== */
.icon { width: 20px; height: 20px; stroke-width: 1.75; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  [data-reveal], [data-split] .char { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none !important; }
}
