/* =========================================================
   Prior Lake Boat Detailers — design system
   Deep navy + crisp white + cream. Editorial serif headlines,
   modern sans body, mono for metadata.
   ========================================================= */

:root {
  /* Lake Navy palette — default */
  --ink: #061226;
  --navy: #0A2342;
  --navy-2: #14365E;
  --rope: #B8A179;         /* warm brass accent */
  --paper: #FAF6EE;        /* warm cream */
  --paper-2: #F2ECDC;
  --line: rgba(6, 18, 38, 0.12);
  --line-strong: rgba(6, 18, 38, 0.24);
  --foam: #DCE6EC;
  --surface: #FFFFFF;

  /* Type */
  --f-display: "Instrument Serif", "Cormorant Garamond", "Times New Roman", serif;
  --f-body: "Geist", "Söhne", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Scale */
  --maxw: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 9vw, 140px);
  --radius: 2px;
  --radius-lg: 6px;

  color-scheme: light;
}

[data-palette="open-water"] {
  --ink: #08192F;
  --navy: #1A4A7A;
  --navy-2: #2F6FA8;
  --rope: #E7B95A;
  --paper: #F4F8FB;
  --paper-2: #E6EEF5;
  --foam: #CFE0EC;
}

[data-palette="dock-sand"] {
  --ink: #1A1A1A;
  --navy: #142C3E;
  --navy-2: #2C4C66;
  --rope: #C9986A;
  --paper: #EDE4D2;
  --paper-2: #DCCEB1;
  --foam: #B9C9CF;
}

[data-mode="dark"] {
  --ink: #F4EFE3;
  --navy: #FAF6EE;
  --navy-2: #D7CDB6;
  --paper: #061226;
  --paper-2: #0A2342;
  --foam: #14365E;
  --line: rgba(244, 239, 227, 0.14);
  --line-strong: rgba(244, 239, 227, 0.32);
  --surface: #0A2342;
  color-scheme: dark;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

[data-density="airy"] { --section-y: clamp(96px, 11vw, 180px); }
[data-density="compact"] { --section-y: clamp(48px, 6vw, 88px); }

/* Type */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  color: var(--navy);
}

.eyebrow {
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 500;
  color: var(--navy-2);
}

.lede {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  color: var(--navy);
  max-width: 56ch;
}

p { text-wrap: pretty; }

a { color: inherit; }

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

.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section--paper-2 { background: var(--paper-2); }
.section--navy { background: var(--navy); color: var(--paper); }
.section--navy h2, .section--navy h3 { color: var(--paper); }
.section--navy .eyebrow { color: var(--rope); }

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--navy);
  color: var(--paper);
}
.btn--primary:hover { background: var(--ink); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--navy); }
.btn--rope {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.4);
}
.btn--rope:hover { background: rgba(255,255,255,0.08); border-color: var(--rope); color: var(--rope); }

.btn .arrow {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: transform .25s ease;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn:hover .arrow { transform: translateX(4px); }

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease, color .3s ease;
  border-bottom: 1px solid transparent;
  color: var(--paper);
}
.nav.is-scrolled {
  background: color-mix(in oklab, var(--paper) 86%, transparent);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom-color: var(--line);
  color: var(--navy);
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display);
  font-size: 20px;
  color: inherit;
  text-decoration: none;
}
.nav__brand .mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.nav__brand .mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.nav__brand .mark .mark--light { display: block; }
.nav__brand .mark .mark--dark  { display: none; }
.nav.is-scrolled .mark--light  { display: none; }
.nav.is-scrolled .mark--dark   { display: block; }
.nav__brand .word {
  letter-spacing: -0.005em;
}
.nav__brand .word small {
  display: block;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: -2px;
}
@media (max-width: 540px) {
  .nav__brand .word small { display: none; }
}
.nav__links {
  display: flex; gap: 28px;
  font-size: 14px;
  font-weight: 400;
  color: inherit;
}
.nav__links a {
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: currentColor; transition: right .3s ease;
}
.nav__links a:hover::after { right: 0; }
.nav__cta {
  font-size: 13px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.12);
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.28);
}
.nav__cta:hover { background: rgba(255,255,255,0.2); }
.nav.is-scrolled .nav__cta {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}
.nav.is-scrolled .nav__cta:hover { background: var(--ink); border-color: var(--ink); }

@media (max-width: 820px) {
  .nav__links { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  background: linear-gradient(180deg, #1B3A66 0%, #0F2748 40%, #061226 100%);
}
.hero__sky { position: absolute; inset: 0; z-index: -3; }
.hero__sun {
  position: absolute;
  left: 50%; top: 38%;
  transform: translate(-50%, -50%);
  width: clamp(220px, 28vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #F4E2B8 0%, #D9B36A 40%, rgba(217,179,106,0) 70%);
  filter: blur(2px);
  opacity: 0.7;
  z-index: -2;
  animation: sun-breathe 8s ease-in-out infinite;
}
@keyframes sun-breathe {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.75; }
}
.hero__water {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 56%;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,35,66,0.0) 0%, rgba(6,18,38,0.6) 60%, var(--paper) 100%);
}
.hero__waves {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 56%;
  z-index: -1;
  overflow: hidden;
}
.hero__waves svg {
  position: absolute;
  left: -10%;
  width: 120%;
}
.wave-1 { bottom: 42%; opacity: 0.18; animation: wave-drift 18s linear infinite; }
.wave-2 { bottom: 30%; opacity: 0.25; animation: wave-drift 12s linear infinite reverse; }
.wave-3 { bottom: 14%; opacity: 0.35; animation: wave-drift 9s linear infinite; }
.wave-4 { bottom: 0%; opacity: 0.55; animation: wave-drift 6s linear infinite reverse; }
@keyframes wave-drift {
  0% { transform: translateX(0); }
  100% { transform: translateX(-8.33%); }
}

.hero__boat {
  position: absolute;
  left: 50%; bottom: 30%;
  transform: translateX(-50%);
  width: clamp(160px, 18vw, 240px);
  z-index: 0;
  animation: boat-bob 5s ease-in-out infinite;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.35));
}
@keyframes boat-bob {
  0%, 100% { transform: translate(-50%, 0) rotate(-1deg); }
  50% { transform: translate(-50%, -6px) rotate(1deg); }
}
@media (max-width: 700px) {
  .hero__boat { display: none; }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad-x);
  padding-bottom: clamp(60px, 10vh, 140px);
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
}
.hero__eyebrow {
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  opacity: 0.85;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.hero__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--rope);
  box-shadow: 0 0 0 4px rgba(184,161,121,0.2);
}
.hero h1 {
  color: var(--paper);
  font-size: clamp(48px, 8.5vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--rope);
}
.hero__sub {
  margin-top: 28px;
  max-width: 48ch;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  opacity: 0.88;
}
.hero__actions {
  margin-top: 36px;
  display: flex; gap: 12px;
  flex-wrap: wrap;
}

.hero__meta {
  position: absolute;
  top: 50%;
  right: var(--pad-x);
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.7;
  text-align: right;
  z-index: 2;
}
.hero__meta .row { display: flex; flex-direction: column; gap: 4px; }
.hero__meta .row strong {
  font-family: var(--f-display);
  text-transform: none;
  letter-spacing: 0;
  font-size: 18px;
  opacity: 1;
  color: var(--paper);
}
@media (max-width: 900px) { .hero__meta { display: none; } }

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  opacity: 0.7;
  z-index: 3;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 36px; background: currentColor;
  animation: scroll-tick 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-tick {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Section heading patterns */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 820px) {
  .sec-head { grid-template-columns: 1fr; }
}
.sec-head h2 {
  font-size: clamp(42px, 5.5vw, 76px);
  letter-spacing: -0.02em;
}
.sec-head h2 em { font-style: italic; color: var(--navy-2); }
.sec-head .sec-lead { color: var(--navy-2); font-size: 17px; max-width: 52ch; }

/* Services */
.services {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service {
  background: var(--paper);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 28px;
  align-items: start;
  transition: background .3s ease;
}
.service:hover { background: var(--paper-2); }
.service__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--navy-2);
  padding-top: 8px;
}
.service__body h3 {
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.service__body p {
  color: var(--navy-2);
  margin: 0;
  max-width: 56ch;
  font-size: 15.5px;
}
.service__price {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.4vw, 44px);
  color: var(--navy);
  text-align: right;
  white-space: nowrap;
}
.service__price small {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-2);
  margin-top: 4px;
}
.service--featured {
  background: var(--navy);
  color: var(--paper);
}
.service--featured h3 { color: var(--paper); }
.service--featured p { color: rgba(250,246,238,0.78); }
.service--featured .service__num,
.service--featured .service__price { color: var(--paper); }
.service--featured .service__price small { color: var(--rope); }
.service--featured:hover { background: var(--ink); }

@media (max-width: 700px) {
  .service { grid-template-columns: 1fr; gap: 12px; padding: 28px 24px; }
  .service__price { text-align: left; }
}

/* Maintenance packs */
.packs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
@media (max-width: 820px) { .packs { grid-template-columns: 1fr; } }
.pack {
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  transition: border-color .3s ease, transform .3s ease;
}
[data-mode="dark"] .pack { background: var(--paper-2); }
.pack:hover { border-color: var(--navy); transform: translateY(-2px); }
.pack__name {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-2);
}
.pack__discount {
  font-family: var(--f-display);
  font-size: 52px;
  line-height: 1;
  color: var(--navy);
}
.pack p { color: var(--navy-2); font-size: 14.5px; margin: 0; }

/* Calculator */
.calc {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: stretch;
  margin-top: 16px;
}
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } }
.calc__controls {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
[data-mode="dark"] .calc__controls { background: var(--paper-2); }
.field-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-2);
  display: flex; align-items: center; justify-content: space-between;
}
.field-label strong {
  font-family: var(--f-display);
  font-size: 38px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--navy);
  font-weight: 400;
}
.field-label strong small {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  margin-left: 2px;
  color: var(--navy-2);
}

/* Slider */
.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: var(--line-strong);
  outline: none;
  margin: 16px 0 6px;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy);
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 1px var(--navy);
  cursor: grab;
  transition: transform .2s ease;
}
.slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.1); }
.slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy);
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 1px var(--navy);
  cursor: grab;
}
.slider-ticks {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--navy-2);
  opacity: 0.7;
}

/* Segmented condition */
.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line-strong);
}
.segmented button {
  font-family: var(--f-body);
  font-size: 14px;
  background: transparent;
  border: 0;
  padding: 14px 12px;
  color: var(--navy-2);
  cursor: pointer;
  text-align: left;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 2px;
  transition: background .2s ease, color .2s ease;
}
.segmented button:last-child { border-right: 0; }
.segmented button:hover { background: var(--paper-2); }
.segmented button.is-active {
  background: var(--navy);
  color: var(--paper);
}
.segmented button small {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* Calc readout */
.calc__readout {
  background: var(--navy);
  color: var(--paper);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  overflow: hidden;
}
.calc__readout::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(184,161,121,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.calc__readout h3 {
  color: var(--paper);
  font-size: 28px;
  position: relative;
}
.calc__readout .field-label { color: rgba(250,246,238,0.55); }
.readout-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid rgba(250,246,238,0.12);
  font-size: 15px;
  position: relative;
}
.readout-row:last-child { border-bottom: 1px solid rgba(250,246,238,0.12); }
.readout-row .label { opacity: 0.78; }
.readout-row .label .sub {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 2px;
}
.readout-row .price {
  font-family: var(--f-display);
  font-size: 30px;
  color: var(--paper);
}
.readout-row.is-highlight {
  background: rgba(184,161,121,0.1);
  border-color: var(--rope);
  margin: 0 -28px;
  padding: 18px 28px;
}
.readout-row.is-highlight .price { color: var(--rope); }

.calc-note {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
  position: relative;
}

/* Surcharge note in calc controls */
.calc__note {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 18px 20px;
  background: var(--paper-2);
  border-left: 2px solid var(--rope);
}
[data-mode="dark"] .calc__note { background: rgba(184,161,121,0.08); }
.calc__note-mark {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 28px;
  line-height: 1;
  color: var(--rope);
  padding-top: 2px;
}
.calc__note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--navy-2);
}
.calc__note p strong {
  color: var(--navy);
  font-weight: 500;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 40px;
}
@media (max-width: 1000px) { .process { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .process { grid-template-columns: repeat(2, 1fr); } }
.step {
  padding: 28px 22px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 240px;
}
.step:last-child { border-right: 0; }
@media (max-width: 1000px) {
  .step:nth-child(3n) { border-right: 0; }
}
@media (max-width: 600px) {
  .step:nth-child(2n) { border-right: 0; }
}
.step__num {
  font-family: var(--f-display);
  font-size: 56px;
  line-height: 1;
  color: var(--navy);
  font-style: italic;
}
.step h4 {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--navy);
}
.step p {
  margin: 0;
  font-size: 14.5px;
  color: var(--navy-2);
  line-height: 1.5;
}
.step__tag {
  position: absolute;
  top: 28px; right: 22px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-2);
  opacity: 0.7;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(250,246,238,0.12);
}
.section--navy .why-grid { border-top: 1px solid rgba(250,246,238,0.12); border-bottom: 1px solid rgba(250,246,238,0.12); }
@media (max-width: 1000px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }
.why {
  background: var(--navy);
  padding: 36px 26px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 240px;
}
.why__icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(250,246,238,0.4);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--rope);
}
.why h4 {
  color: var(--paper);
  font-size: 22px;
  font-family: var(--f-display);
  letter-spacing: -0.005em;
}
.why p { color: rgba(250,246,238,0.7); font-size: 14.5px; margin: 0; }

/* FAQ */
.faq { margin-top: 40px; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 28px 0;
  display: flex; justify-content: space-between; gap: 24px; align-items: baseline;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--navy);
  letter-spacing: -0.005em;
  transition: color .25s ease;
}
.faq__q:hover { color: var(--navy-2); }
.faq__plus {
  font-family: var(--f-mono);
  font-size: 22px;
  color: var(--navy-2);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq__item.is-open .faq__plus { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  color: var(--navy-2);
}
.faq__a-inner { padding: 0 0 32px; max-width: 64ch; font-size: 16px; line-height: 1.6; }
.faq__item.is-open .faq__a { max-height: 400px; }

/* Footer / Contact */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding-top: var(--section-y);
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.foot__hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 820px) { .foot__hero { grid-template-columns: 1fr; } }
.foot__hero h2 {
  font-size: clamp(48px, 7vw, 96px);
  color: var(--paper);
  letter-spacing: -0.02em;
  line-height: 0.98;
}
.foot__hero h2 em { color: var(--rope); font-style: italic; }
.foot__hero .lede { color: rgba(250,246,238,0.72); font-style: normal; font-family: var(--f-body); font-size: 17px; }
.foot__contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid rgba(250,246,238,0.16);
  border-bottom: 1px solid rgba(250,246,238,0.16);
}
@media (max-width: 700px) { .foot__contact { grid-template-columns: 1fr; } }
.foot__contact .col h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rope);
  font-weight: 500;
  margin: 0 0 12px;
}
.foot__contact .col a, .foot__contact .col p {
  display: block; color: var(--paper);
  text-decoration: none;
  font-family: var(--f-display);
  font-size: 22px;
  margin: 0 0 4px;
}
.foot__bottom {
  margin-top: 36px;
  display: flex; justify-content: space-between; gap: 20px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.5);
  flex-wrap: wrap;
}

/* Marquee / banner */
.marquee {
  background: var(--rope);
  color: var(--ink);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee__track {
  display: inline-block;
  animation: marquee 40s linear infinite;
  padding-left: 0;
}
.marquee__track span { padding: 0 32px; }
.marquee__track span::before {
  content: "✦"; margin-right: 32px; color: var(--ink); opacity: 0.5;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* About / story */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 820px) { .about { grid-template-columns: 1fr; } }
.about__text h2 {
  font-size: clamp(36px, 4.4vw, 60px);
  margin-bottom: 24px;
}
.about__text p { color: var(--navy-2); font-size: 17px; margin: 0 0 14px; max-width: 52ch; }
.about__img {
  aspect-ratio: 4/5;
  background: var(--paper-2);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.about__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: saturate(1.05);
}
.about__img figcaption {
  position: absolute;
  left: 16px; bottom: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  z-index: 2;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-strip--three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 700px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip--three { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .stat-strip--three { grid-template-columns: 1fr; }
}
.stat {
  background: var(--paper);
  padding: 28px 22px;
  display: flex; flex-direction: column; gap: 6px;
}
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1;
  color: var(--navy);
}
.stat__label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-2);
}

/* misc */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-2);
  padding: 6px 10px;
  border: 1px solid var(--line);
}
