/* =========================================================
   BROWN CONSULTING ENTERPRISE — styles.css
   Palette: ink / cream / ember
   Type: Instrument Serif (display) · Inter (body) · JetBrains Mono (money)
   ========================================================= */

:root {
  --ink: #0A0A0A;
  --ink-2: #141413;
  --ink-3: #1E1D1B;
  --cream: #F5F1E8;
  --cream-2: #EAE5D7;
  --muted: #908B80;
  --muted-2: #6C6A66;
  --ember: #FF4A1C;
  --ember-glow: rgba(255, 74, 28, 0.35);
  --line: rgba(245, 241, 232, 0.12);
  --line-strong: rgba(245, 241, 232, 0.25);

  --f-display: "Instrument Serif", "Times New Roman", serif;
  --f-sans: "Inter", system-ui, -apple-system, Helvetica, Arial, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --maxw: 1400px;
  --pad: clamp(20px, 4vw, 64px);
  --section-pad: clamp(80px, 12vw, 180px);

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

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
img { image-orientation: from-image; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--ember); color: var(--cream); }

/* ======= TYPOGRAPHY ======= */

.eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.h-display {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(44px, 7.5vw, 120px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  color: var(--cream);
}

.h-display em {
  font-style: italic;
  color: var(--ember);
}

h3 { font-family: var(--f-sans); font-weight: 500; }

p { margin: 0 0 16px; }

/* ======= LAYOUT ======= */

.section, main > section { padding-left: var(--pad); padding-right: var(--pad); }

main { overflow: hidden; }

/* ======= BUTTONS ======= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--ember);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
}

.btn--text {
  padding: 16px 0;
  color: var(--muted);
}
.btn--text:hover { color: var(--cream); }

.btn--block { width: 100%; justify-content: center; }

.btn span[aria-hidden] {
  transition: transform 0.3s var(--ease);
}
.btn:hover span[aria-hidden] {
  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;
  gap: 32px;
  padding: 20px var(--pad);
  transition: all 0.35s var(--ease);
  mix-blend-mode: normal;
}

.nav.is-solid {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.nav__logo {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  mix-blend-mode: screen;
  display: block;
}

.nav.is-solid .nav__logo { height: 38px; }

.nav__links {
  display: flex;
  gap: 36px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav__links a {
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--ember);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta { font-size: 11px; padding: 12px 20px; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__wordmark { font-size: 10px; }
}

/* ======= HERO ======= */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 180px var(--pad) 140px;
  overflow: hidden;
  background: var(--ink);
}

.hero__infinity {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 74, 28, 0.08);
  opacity: 0.9;
}

.hero__infinity svg {
  width: 140%;
  max-width: 2000px;
  height: auto;
}

.hero__infinity-path {
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: drawInfinity 3.2s var(--ease) 0.3s forwards;
}

@keyframes drawInfinity {
  to { stroke-dashoffset: 0; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(52px, 11vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0 0 40px;
}

.hero__title .line {
  display: block;
}

.hero__title .line--italic {
  font-style: italic;
  color: var(--ember);
  padding-left: clamp(20px, 4vw, 80px);
}

.hero__sub {
  max-width: 640px;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--cream-2);
  line-height: 1.5;
  margin: 0 0 48px;
}
.hero__sub em { font-style: italic; color: var(--ember); }

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__meta {
  position: absolute;
  bottom: 40px;
  left: var(--pad);
  right: var(--pad);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__meta-item { display: inline-flex; align-items: center; gap: 10px; }

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 12px var(--ember-glow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ======= TICKER ======= */

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--ink);
  padding: 22px 0;
  font-family: var(--f-display);
  font-size: clamp(20px, 2.6vw, 36px);
  font-style: italic;
}

.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: tickerSlide 45s linear infinite;
  padding-left: 40px;
}

.ticker__track span { color: var(--cream); }
.ticker__dot { color: var(--ember); font-size: 10px; }

@keyframes tickerSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ======= PROBLEM ======= */

.problem {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  max-width: var(--maxw);
  margin: 0 auto;
}

.problem__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.problem__copy { padding-top: 40px; }
.problem__body { color: var(--cream-2); font-size: 18px; max-width: 48ch; line-height: 1.6; }
.problem__body p { margin-bottom: 20px; }
.problem__body strong { color: var(--cream); }

.problem__figure {
  position: relative;
  margin: 0;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ink-2);
}
.problem__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.2s var(--ease);
  will-change: transform;
}

.problem__figure figcaption {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 860px) {
  .problem__grid { grid-template-columns: 1fr; }
  .problem__figure { aspect-ratio: 4/5; }
}

/* ======= SPLIT: WHAT WE DO ======= */

.split {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.split__header {
  margin-bottom: 80px;
  max-width: 900px;
}

.split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}

.split__panel {
  padding: clamp(32px, 5vw, 64px);
  border-right: 1px solid var(--line);
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.split__panel:last-child { border-right: 0; }

.split__panel--alt {
  background: var(--cream);
  color: var(--ink);
}
.split__panel--alt .split__num { color: var(--ember); }
.split__panel--alt .split__lede { color: var(--ink-2); }
.split__panel--alt .split__list li { border-color: rgba(10,10,10,0.12); }

.split__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(48px, 5vw, 80px);
  line-height: 1;
  color: var(--ember);
  margin-bottom: 40px;
}

.split__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.split__lede {
  font-size: 17px;
  line-height: 1.5;
  color: var(--cream-2);
  max-width: 40ch;
  margin: 0 0 32px;
}
.split__lede em { font-style: italic; color: var(--ember); }

.split__list {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.split__list li {
  padding: 16px 0 16px 32px;
  position: relative;
  border-top: 1px solid var(--line);
}

.split__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--ember);
}

@media (max-width: 860px) {
  .split__grid { grid-template-columns: 1fr; }
  .split__panel { border-right: 0; border-bottom: 1px solid var(--line); min-height: 0; }
  .split__panel:last-child { border-bottom: 0; }
}

/* ======= PACKAGES ======= */

.packages {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.packages__header {
  margin-bottom: 80px;
  max-width: 900px;
}

.packages__lede {
  font-size: 17px;
  color: var(--cream-2);
  max-width: 56ch;
  margin: 24px 0 0;
}

.packages__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.pkg {
  display: grid;
  grid-template-columns: 80px 1.2fr 1fr 1.4fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.4s var(--ease);
}

.pkg:hover { background: var(--ink-2); }

.pkg--featured { background: var(--ink-2); }

.pkg__index {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.pkg__meta { max-width: 32ch; }

.pkg__name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.pkg__badge {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  border: 1px solid var(--ember);
  padding: 3px 8px;
}

.pkg__tag {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.pkg__price {
  font-family: var(--f-mono);
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--cream);
}
.pkg__currency {
  font-size: 16px;
  color: var(--muted);
  transform: translateY(-10px);
}
.pkg__amount {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.pkg__cycle {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 12px;
  transform: translateY(-4px);
}

.pkg__features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--cream-2);
  line-height: 1.5;
}

.pkg__features li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
}
.pkg__features li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--ember);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .pkg {
    grid-template-columns: 48px 1fr;
    grid-template-areas:
      "num meta"
      "price price"
      "features features"
      "cta cta";
    gap: 20px;
    padding: 40px 0;
  }
  .pkg__index { grid-area: num; align-self: start; padding-top: 6px; }
  .pkg__meta { grid-area: meta; max-width: 100%; }
  .pkg__price { grid-area: price; padding-left: 48px; }
  .pkg__features { grid-area: features; padding-left: 48px; }
  .pkg__cta { grid-area: cta; margin-left: 48px; justify-self: start; }
}

/* ======= HOW IT WORKS ======= */

.how {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.how__header { margin-bottom: 80px; max-width: 900px; }

.how__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}

.step {
  padding: 48px 32px 48px 0;
  border-left: 1px solid var(--line);
  padding-left: 32px;
  position: relative;
}
.step:first-child { border-left: 0; padding-left: 0; }

.step__num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ember);
  margin-bottom: 24px;
}

.step h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--cream);
}

.step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 28ch;
}

@media (max-width: 860px) {
  .how__steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .how__steps { grid-template-columns: 1fr; }
  .step { border-left: 0; border-top: 1px solid var(--line); padding: 32px 0; }
}

/* ======= FOUNDER ======= */

.founder {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.founder__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.founder__images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  align-items: start;
}

.founder__img {
  margin: 0;
  overflow: hidden;
  background: var(--ink-2);
  position: relative;
}
.founder__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  will-change: transform;
}
.founder__img:hover img { transform: scale(1.03); }

.founder__img--primary {
  grid-column: 1 / span 9;
  aspect-ratio: 4/5;
}
.founder__img--primary img { object-position: center 35%; }

.founder__img--primary figcaption {
  position: absolute;
  left: 20px; bottom: 20px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border: 1px solid rgba(245,241,232,0.2);
}

.founder__img--accent {
  grid-column: 10 / span 3;
  aspect-ratio: 3/5;
  margin-top: 48px;
}
.founder__img--accent img { object-position: center 20%; }

.founder__copy { }
.founder__body {
  color: var(--cream-2);
  font-size: 17px;
  line-height: 1.6;
  max-width: 44ch;
  margin-bottom: 32px;
}

@media (max-width: 860px) {
  .founder__grid { grid-template-columns: 1fr; }
  .founder__images { margin-bottom: 40px; grid-template-columns: 1fr 1fr; gap: 12px; }
  .founder__img--primary { grid-column: span 2; aspect-ratio: 4/5; }
  .founder__img--accent { grid-column: span 2; aspect-ratio: 16/9; margin-top: 0; }
  .founder__img--accent img { object-position: center 30%; }
}

/* ======= DIPTYCH ======= */

.diptych {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden;
}

.diptych__panel {
  margin: 0;
  height: min(75vh, 780px);
  overflow: hidden;
  position: relative;
}

.diptych__panel:first-child {
  border-right: 1px solid var(--line);
}

.diptych__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 30%;
  transition: transform 1.2s var(--ease);
  will-change: transform;
  filter: contrast(1.03);
}

.diptych__panel:nth-child(2) img {
  object-position: right 22%;
}

.diptych__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,0.55) 100%);
  pointer-events: none;
}

.diptych__caption {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 4vw, 56px);
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--f-display);
  font-size: clamp(24px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--cream);
  text-align: center;
  padding: 0 20px;
  white-space: nowrap;
}

.diptych__caption--em {
  font-style: italic;
  color: var(--ember);
}

@media (max-width: 720px) {
  .diptych { grid-template-columns: 1fr; }
  .diptych__panel { height: 60vh; border-right: 0; }
  .diptych__panel:first-child { border-bottom: 1px solid var(--line); }
  .diptych__caption { white-space: normal; font-size: clamp(22px, 6vw, 34px); }
}

/* ======= EDITORIAL REEL ======= */

.reel {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
}

.reel__figure {
  position: relative;
  margin: 0;
  height: min(90vh, 900px);
  overflow: hidden;
}

.reel__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.1) contrast(1.05);
  transition: transform 1.5s var(--ease);
  will-change: transform;
}

.reel__figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.1) 35%, rgba(10,10,10,0.1) 65%, rgba(10,10,10,0.75) 100%);
  pointer-events: none;
}

.reel__figure figcaption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 80px);
  font-family: var(--f-display);
  font-size: clamp(36px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.reel__caption-top { align-self: flex-start; }
.reel__caption-bottom {
  align-self: flex-end;
  font-style: italic;
  color: var(--ember);
}

/* ======= STATS ======= */

.stats {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  text-align: center;
}

.stats__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 64px 24px;
  border-left: 1px solid var(--line);
  text-align: left;
}
.stat:first-child { border-left: 0; }

.stat__num {
  display: block;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 12px;
}

.stat__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.stats__note {
  margin: 32px auto 0;
  max-width: 54ch;
  font-size: 12px;
  color: var(--muted-2);
  font-family: var(--f-mono);
  letter-spacing: 0.02em;
}

@media (max-width: 860px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--line); }
  .stat:nth-child(2) { border-left: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: 0; }
}

/* ======= FAQ ======= */

.faq {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq__header { margin-bottom: 60px; max-width: 900px; }

.faq__list { border-top: 1px solid var(--line); }

.q {
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.q:hover { background: var(--ink-2); }

.q summary {
  list-style: none;
  cursor: pointer;
  padding: 32px 48px 32px 0;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--cream);
  position: relative;
  transition: color 0.3s var(--ease);
}

.q summary::-webkit-details-marker { display: none; }

.q summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-mono);
  font-size: 28px;
  color: var(--ember);
  transition: transform 0.3s var(--ease);
}

.q[open] summary::after {
  content: '−';
}

.q__body {
  padding: 0 64px 32px 0;
  max-width: 72ch;
}
.q__body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream-2);
}
.q__body strong { color: var(--cream); }

/* ======= INQUIRE ======= */

.inquire {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  background: var(--cream);
  color: var(--ink);
}

.inquire__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.inquire .eyebrow { color: var(--muted-2); }
.inquire .h-display { color: var(--ink); }
.inquire .h-display em { color: var(--ember); }

.inquire__lede {
  font-size: 17px;
  line-height: 1.55;
  max-width: 40ch;
  margin: 0 0 32px;
  color: var(--ink-2);
}

.inquire__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(10,10,10,0.12);
}
.inquire__meta li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(10,10,10,0.12);
  font-family: var(--f-mono);
  font-size: 13px;
  gap: 16px;
}
.inquire__meta span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.inquire__meta a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.inquire__form {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(24px, 3vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hp { position: absolute; left: -9999px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: span 2; }

.field label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  font-family: var(--f-sans);
  font-size: 15px;
  background: transparent;
  color: var(--cream);
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--ember); }

.field textarea { resize: vertical; min-height: 100px; }

.field select {
  background: transparent url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="none" stroke="%23F5F1E8" stroke-width="1.5" d="M1 1.5l5 5 5-5"/></svg>') no-repeat right 0 center;
}

.inquire__form .btn--block { grid-column: span 2; }
.inquire__fine {
  grid-column: span 2;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .inquire__grid { grid-template-columns: 1fr; }
  .inquire__form { grid-template-columns: 1fr; }
  .field--full { grid-column: span 1; }
  .inquire__form .btn--block { grid-column: span 1; }
  .inquire__fine { grid-column: span 1; }
}

/* ======= FOOTER ======= */

.foot {
  padding: 64px var(--pad) 32px;
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid var(--line);
}

.foot__top {
  max-width: var(--maxw);
  margin: 0 auto 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.foot__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.foot__logo {
  height: 38px;
  width: auto;
  mix-blend-mode: screen;
  display: block;
}

.foot__nav {
  display: flex;
  gap: 28px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.foot__nav a:hover { color: var(--cream); }

.foot__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted-2);
}

.foot__legal { max-width: 60ch; }

/* ======= REVEAL ANIMATIONS ======= */

[data-reveal], [data-reveal-chars] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-in,
[data-reveal-chars].is-in {
  opacity: 1;
  transform: none;
}

[data-reveal-chars] .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-reveal-chars].is-in .char {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], [data-reveal-chars], [data-reveal-chars] .char {
    opacity: 1; transform: none;
  }
}
