/* ==========================================================================
   Real & Imagined — one-page marketing site
   Design tokens follow the handoff spec; oklch() values are the source of truth.
   ========================================================================== */

:root {
  /* Colour */
  --midnight:      oklch(0.175 0.025 265); /* page background */
  --surface:       oklch(0.235 0.03 265);  /* card bg */
  --surface-alt:   oklch(0.215 0.028 265); /* panels / rows */
  --surface-deep:  oklch(0.22 0.028 265);
  --tint-gold:     oklch(0.26 0.05 90);    /* featured tint */
  --tint-gold-sel: oklch(0.3 0.055 90);    /* selected option tint */
  --text:          oklch(0.93 0.014 90);
  --text-soft:     oklch(0.88 0.012 88);
  --text-muted:    oklch(0.8 0.012 88);
  --text-muted-2:  oklch(0.78 0.012 88);
  --text-dim:      oklch(0.74 0.012 88);
  --text-dim-2:    oklch(0.7 0.012 88);
  --text-faint:    oklch(0.66 0.015 88);
  --mono-dim:      oklch(0.7 0.02 88);
  --mono-faint:    oklch(0.64 0.015 88);
  --gold:          oklch(0.82 0.12 88);
  --gold-bright:   oklch(0.8 0.12 88);
  --gold-deep:     oklch(0.72 0.11 85);
  --hairline:      oklch(0.34 0.02 265);
  --card-border:   oklch(0.37 0.02 265);
  --border-soft:   oklch(0.4 0.02 265);
  --on-gold:       oklch(0.18 0.03 265);

  /* Type */
  --serif: Fraunces, Georgia, serif;
  --sans: 'Hanken Grotesk', system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --container: 1180px;
  --pad-x: 40px;

  /* Motion */
  --spring: cubic-bezier(0.34, 1.4, 0.5, 1);
}

/* --- Reset / base ------------------------------------------------------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--midnight);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17.5px;
  line-height: 1.55;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--text); text-decoration: none; }
a:hover { color: var(--gold); }

img, video { display: block; max-width: 100%; }

/* Must beat component display rules (e.g. .thanks { display: flex }). */
[hidden] { display: none !important; }

input, textarea, button { font: inherit; color: inherit; }

::selection { background: oklch(0.8 0.12 88 / 0.22); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

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

@keyframes hfBob {
  0%, 100% { transform: translate(-50%, -50%); }
  50%      { transform: translate(-50%, -64%); }
}

/* --- Shared primitives -------------------------------------------------- */

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 110px var(--pad-x) 0;
}
.section--hero { padding: 96px var(--pad-x) 40px; }
.section--choose { padding-top: 96px; }
.section--conditional { padding-top: 56px; }
.section--centered { text-align: center; }

.rule-top { border-top: 1px solid var(--hairline); padding-top: 48px; }

/* Anchor targets must clear the sticky header, which is taller once it wraps. */
[id] { scroll-margin-top: 88px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mono-dim);
  margin: 0 0 18px;
}
.eyebrow--gold { color: var(--gold); letter-spacing: 0.18em; }
.eyebrow--wide { font-size: 11px; letter-spacing: 0.2em; }
.eyebrow--lg { font-size: 13px; letter-spacing: 0.18em; margin-bottom: 20px; }
.eyebrow--sm { font-size: 11px; letter-spacing: 0.08em; margin: 22px 0 0; }

.h2 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.028em;
  margin: 0;
  text-wrap: pretty;
}
.h2--occasions { font-size: 54px; max-width: 20ch; margin: 0 auto 20px; letter-spacing: -0.03em; }
.h2--transform { font-size: 36px; line-height: 1.1; letter-spacing: -0.022em; margin: 0 0 16px; }
.h2--choose { font-size: 62px; max-width: 20ch; margin: 0 auto; }
.h2--build { font-size: 40px; line-height: 1.08; letter-spacing: -0.025em; margin: 0 0 12px; }
.h2--work { font-size: 44px; line-height: 1.08; letter-spacing: -0.025em; }
.h2--faq { font-size: 48px; line-height: 1.08; letter-spacing: -0.025em; }

.body-muted { font-size: 17.5px; color: var(--text-muted-2); margin: 0; text-wrap: pretty; }

.caption {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--mono-dim);
  margin: 9px 0 0;
}
.caption__label { color: var(--gold); }
.caption--tiny {
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 10px 0 0;
}

.frame {
  border: 1px solid var(--card-border);
  border-radius: 3px;
  overflow: hidden;
  background: var(--surface);
}
.frame > video, .frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.frame--reel { aspect-ratio: 16 / 11; }
.frame--portrait { aspect-ratio: 3 / 4; background: var(--surface-deep); }
.frame--film {
  aspect-ratio: 16 / 10;
  border-color: var(--hairline);
  background-color: var(--surface);
  background-image: repeating-linear-gradient(135deg, oklch(0.3 0.022 265) 0 1px, transparent 1px 9px);
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16.5px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.btn--gold {
  background: var(--gold-bright);
  color: var(--on-gold);
  padding: 15px 30px;
}
.btn--gold:hover { background: var(--gold-deep); color: var(--on-gold); }
.btn--submit { padding: 14px 30px; border: none; }
.btn--outline {
  border-color: var(--text);
  padding: 9px 18px;
  font-size: inherit;
}
.btn--outline:hover { background: var(--gold-bright); color: var(--on-gold); }

.link-underline {
  font-size: 16.5px;
  border-bottom: 1px solid oklch(0.45 0.02 265);
  padding-bottom: 2px;
}

/* --- 1. Header ---------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(0.175 0.025 265 / 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.wordmark { font-family: var(--serif); font-size: 21px; letter-spacing: -0.01em; }
.wordmark__amp { color: var(--gold); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  letter-spacing: 0.02em;
}

/* --- 2. Hero ------------------------------------------------------------ */

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: start;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 60px;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 26px;
  text-wrap: pretty;
}
.hero__title em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero__lede {
  font-size: 19.5px;
  line-height: 1.6;
  max-width: 46ch;
  color: var(--text-muted);
  margin: 0 0 36px;
  text-wrap: pretty;
}
.hero__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__reels { display: grid; gap: 16px; }

/* --- 3. Occasions ------------------------------------------------------- */

.occasions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 40px;
  text-align: left;
}
.occasion { border-top: 1px solid oklch(0.82 0.12 88 / 0.55); padding-top: 22px; }
.occasion__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}
.occasion__text { margin: 0; font-size: 16.5px; line-height: 1.55; color: var(--text-muted-2); text-wrap: pretty; }

/* --- 4. Transformation -------------------------------------------------- */

.transform {
  border: 1px solid var(--hairline);
  background: var(--surface);
  border-radius: 4px;
  padding: 48px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.transform__pair {
  display: grid;
  grid-template-columns: 1fr auto 1.4fr;
  gap: 24px;
  align-items: center;
}
.transform__arrow { font-family: var(--serif); font-size: 30px; color: var(--gold-bright); font-style: italic; }

/* --- 5. Choose your package --------------------------------------------- */

.choose__head { text-align: center; margin-bottom: 52px; }
.choose__sub {
  margin: 22px auto 0;
  max-width: 48ch;
  font-size: 20px;
  color: oklch(0.84 0.012 88);
  text-wrap: pretty;
}

.packages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 940px;
  margin: 0 auto 8px;
  align-items: stretch;
}

.package {
  position: relative;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  border: 1px solid var(--hairline);
  background: transparent;
  border-radius: 5px;
  padding: 40px 38px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms ease, background 200ms ease,
              transform 220ms var(--spring), box-shadow 220ms ease;
}
.package:hover {
  border-color: oklch(0.7 0.02 88);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px oklch(0 0 0 / 0.5);
}
.package--featured { border-color: var(--gold-bright); background: var(--tint-gold); }
.package.is-selected { border-color: var(--text); background: var(--surface); }

.package__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: hfBob 2.8s ease-in-out infinite;
  background: var(--gold-deep);
  color: var(--on-gold);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.package__label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.package__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 31px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.package__price {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 38px;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.package__desc {
  font-size: 17.5px;
  line-height: 1.5;
  color: oklch(0.84 0.012 88);
  margin-bottom: 22px;
  text-wrap: pretty;
  flex: 1;
}
.package__meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mono-dim);
  margin-bottom: 24px;
}
.package__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: stretch;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-deep);
  border-radius: 999px;
  padding: 16px 30px;
  font-size: 18px;
  transition: background 160ms ease, color 160ms ease;
}
.package.is-selected .package__btn { background: var(--gold-deep); color: var(--on-gold); }

.choose__prompt {
  text-align: center;
  margin: 28px 0 0;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- 6a. Standard builder ----------------------------------------------- */

.build__head { margin-bottom: 44px; }
.build__sub { margin: 0; color: oklch(0.82 0.012 88); font-size: 16.5px; max-width: 100ch; }
.build__sub em { font-style: normal; color: var(--gold); }
.custom__sub { font-size: 18.5px; line-height: 1.55; color: oklch(0.82 0.012 88); margin: 0; text-wrap: pretty; }

.step { margin-bottom: 44px; }
.step--last { margin-bottom: 52px; }
.step__head { display: flex; align-items: baseline; gap: 16px; margin: 0 0 18px; flex-wrap: wrap; }
.step__head .eyebrow { margin: 0; }

.step__hint {
  font-size: 13px;
  color: var(--text-faint);
  display: none;
}

.pill {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 999px;
  background: oklch(0.3 0.03 265);
  color: var(--text-muted-2);
  transition: background 180ms ease, color 180ms ease;
}
.pill.is-done { background: var(--gold-deep); color: var(--on-gold); }

.grid { display: grid; }
.grid--styles { grid-template-columns: repeat(6, 1fr); gap: 12px; }
.grid--paces, .grid--stories { grid-template-columns: repeat(3, 1fr); gap: 16px; }

.option {
  position: relative;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  border: 1px solid var(--card-border);
  background: transparent;
  border-radius: 3px;
  transition: border-color 200ms ease, background 200ms ease,
              transform 220ms var(--spring), box-shadow 220ms ease;
}
.option:hover {
  border-color: oklch(0.64 0.015 88);
  transform: translateY(-5px);
  box-shadow: 0 12px 28px oklch(0 0 0 / 0.45);
}
.option.is-selected { border-color: var(--gold); background: var(--tint-gold-sel); }

/* Options are <button>s built from spans — restore normal block flow. */
.option__thumb, .option__body, .option__name, .option__desc, .option__segment { display: block; }

.option__tick {
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--gold-deep);
  color: var(--on-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* Style option */
.option--style { display: block; padding: 0 0 12px; }
.option--style .option__tick { top: 8px; right: 8px; }
.option__thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--surface);
  background-image: repeating-linear-gradient(135deg, oklch(0.3 0.022 265) 0 1px, transparent 1px 9px);
}
.option__thumb img { width: 100%; height: 100%; object-fit: cover; }
.option__body { padding: 11px 12px 0; }
.option__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16.5px;
  margin: 0 0 3px;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.option__desc { margin: 0; font-size: 11.5px; line-height: 1.4; color: var(--text-dim); text-wrap: pretty; }

/* Pace option */
.option--pace { padding: 24px; display: flex; gap: 20px; align-items: baseline; }
.option--pace .option__tick { top: 14px; right: 14px; }
.option__length { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--mono-faint); }
.option--pace .option__name { font-size: 21px; margin-bottom: 5px; }
.option--pace .option__desc { font-size: 15px; line-height: 1.45; }

/* Story option */
.option--story { display: block; padding: 22px 20px; }
.option--story .option__tick { top: 14px; right: 14px; }
.option__segment {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mono-faint);
  margin: 0 0 10px;
}
.option--story .option__name { font-size: 20px; margin-bottom: 8px; }
.option--story .option__desc { font-size: 14.5px; line-height: 1.45; }

/* Order block */
.order {
  border: 1px solid var(--hairline);
  background: var(--surface);
  border-radius: 3px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}
.order__summary { padding: 40px; border-right: 1px solid var(--hairline); }
.order__summary .eyebrow { margin-bottom: 24px; }
.order__form { padding: 40px; }

.summary {
  margin: 0;
  display: grid;
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.summary__row {
  background: var(--surface);
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.summary__row dt { font-size: 15px; color: var(--text-dim-2); }
.summary__row dd { margin: 0; font-family: var(--serif); font-size: 18.5px; text-align: right; }

.order__reassurance {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 24px 0 0;
  text-wrap: pretty;
}

/* --- 6b. Feature detail ------------------------------------------------- */

.custom__intro { max-width: 640px; margin-bottom: 36px; }

.craft {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.craft__cell {
  background: var(--surface-alt);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 190px;
}
.craft__cell--gold { background: var(--tint-gold); justify-content: center; gap: 8px; }
.craft__n { font-family: var(--mono); font-size: 11px; color: var(--gold); letter-spacing: 0.1em; }
.craft__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.craft__name--lg { font-size: 20px; letter-spacing: -0.015em; }
.craft__desc { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--text-muted-2); text-wrap: pretty; }
.craft__desc--light { color: oklch(0.82 0.012 88); }

.detail {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.detail__aside { position: sticky; top: 100px; }
.detail__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  text-wrap: pretty;
}
.detail__price {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 34px;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.detail__tagline { font-size: 17.5px; color: var(--text-muted); max-width: 42ch; margin: 0 0 30px; text-wrap: pretty; }

.includes {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.includes li {
  background: var(--surface-alt);
  padding: 15px 0;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 17px;
  color: var(--text-soft);
  text-wrap: pretty;
}
.includes__tick { font-family: var(--mono); font-size: 14.5px; color: var(--gold); }

.consult {
  margin-top: 52px;
  border: 1px solid var(--hairline);
  background: var(--surface);
  border-radius: 3px;
  padding: 40px;
}

/* --- Forms -------------------------------------------------------------- */

.form .eyebrow { margin-bottom: 24px; }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--block { margin-top: 18px; }
.field__label { font-size: 12.5px; color: var(--text-dim); }

/* Grid items default to min-width:auto, so an input's intrinsic width can push
   a track wider than its container. Pin them to the track instead. */
.order > *, .field, .field-pair { min-width: 0; }
.form input, .form textarea { width: 100%; min-width: 0; }

.form input, .form textarea {
  background: var(--surface-alt);
  border: 1px solid var(--card-border);
  border-radius: 2px;
  padding: 11px 13px;
  font-size: 16px;
  outline: none;
  font-family: inherit;
}
.form textarea { resize: vertical; }
.form input:focus, .form textarea:focus { border-color: var(--gold); }

.form__actions { display: flex; align-items: center; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.form__note { font-size: 12.5px; color: var(--text-faint); }
.form__error { margin: 16px 0 0; font-size: 14px; color: oklch(0.75 0.14 30); }

/* Honeypot — off-screen, never shown to a sighted or screen-reader user */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.thanks { min-height: 300px; display: flex; flex-direction: column; justify-content: center; }
.thanks--compact { min-height: 120px; }
.thanks__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.thanks__title--sm { font-size: 30px; }
.thanks__text { margin: 0; color: var(--text-muted-2); max-width: 44ch; text-wrap: pretty; }
.thanks--compact .thanks__text { max-width: 52ch; }

/* --- 7. Gallery --------------------------------------------------------- */

.work__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 26px;
  margin-bottom: 40px;
}
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.carousel-hint { display: none; }
.film__row { display: flex; justify-content: space-between; gap: 16px; margin-top: 14px; }
.film__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  margin: 0;
  letter-spacing: -0.01em;
}
.film__meta { font-family: var(--mono); font-size: 10.5px; color: var(--mono-faint); white-space: nowrap; }
.film__note { margin: 5px 0 0; font-size: 15px; color: var(--text-dim); text-wrap: pretty; }

/* --- 8. Testimonials ---------------------------------------------------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.quote { background: var(--surface-alt); padding: 40px 34px; margin: 0; }
.quote__text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  text-wrap: pretty;
}
.quote__by { font-size: 14.5px; color: var(--text-dim-2); }

/* --- 9. FAQ ------------------------------------------------------------- */

.faq__head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.faq__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px; }

.faq__tab {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: transparent;
  color: oklch(0.82 0.012 88);
  font-family: var(--sans);
  font-size: 15.5px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.faq__tab[aria-selected="true"] {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--on-gold);
}
.faq__tab-count { font-family: var(--mono); font-size: 11px; opacity: 0.6; }

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.faq__item { background: var(--surface-alt); }
.faq__q {
  width: 100%;
  padding: 26px 8px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: baseline;
  cursor: pointer;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: inherit;
  text-wrap: pretty;
}
.faq__sign { font-family: var(--mono); font-size: 18px; color: var(--gold); line-height: 1; }
.faq__a {
  margin: 0;
  padding: 0 60px 28px 8px;
  color: oklch(0.82 0.012 88);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 68ch;
  text-wrap: pretty;
  white-space: pre-line;
}

/* --- 10. Closing CTA ---------------------------------------------------- */

.closing {
  border: 1px solid var(--hairline);
  background: var(--surface);
  border-radius: 3px;
  padding: 76px 60px;
  text-align: center;
  min-height: 350px;
}
.closing__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 auto 20px;
  max-width: 18ch;
  text-wrap: pretty;
}

/* --- 11. Footer --------------------------------------------------------- */

.site-footer { max-width: var(--container); margin: 0 auto; padding: 90px var(--pad-x) 60px; }
.site-footer__inner {
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: baseline;
}
.site-footer__wordmark { font-family: var(--serif); font-size: 19px; }
.site-footer__links { display: flex; gap: 28px; font-size: 14.5px; color: var(--text-dim-2); flex-wrap: wrap; }

/* --- Responsive --------------------------------------------------------- */

@media (max-width: 900px) {
  :root { --pad-x: 22px; }

  [id] { scroll-margin-top: 128px; }

  .site-header__inner { height: auto; padding: 12px var(--pad-x); flex-wrap: wrap; gap: 12px 20px; }
  .wordmark { white-space: nowrap; }
  .site-nav { flex-wrap: wrap; gap: 18px; row-gap: 8px; }
  /* Text links are ~23px tall inline; pad them to a comfortable touch target. */
  .site-nav a:not(.btn) { padding: 7px 0; }
  .site-footer__links a { padding: 5px 0; }

  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero__title { font-size: 40px; }

  .occasions { grid-template-columns: 1fr 1fr; }
  .transform { grid-template-columns: 1fr; gap: 32px; padding: 32px; }

  .packages, .grid--paces, .grid--stories,
  .order, .detail { grid-template-columns: 1fr; }
  .order__summary { border-right: none; border-bottom: 1px solid var(--hairline); }
  .detail { gap: 40px; }
  .detail__aside { position: static; }

  .grid--styles { grid-template-columns: repeat(3, 1fr); }
  .craft { grid-template-columns: 1fr 1fr; }

  .h2--choose { font-size: 40px; }
  .h2--occasions { font-size: 36px; }
  .h2--faq { font-size: 34px; }
  .h2--work, .closing__title { font-size: 32px; }
  .h2--build { font-size: 30px; }
  .detail__name { font-size: 32px; }

  .closing { padding: 48px 28px; min-height: 0; }
  .order__summary, .order__form, .consult { padding: 28px; }
  .faq__a { padding-right: 8px; }

  /* --- Condensed mobile layout -------------------------------------------
     The 110px section rhythm was tuned for a 1180px canvas; on a phone it is
     nearly a full screen of nothing between every section. */
  .section { padding-top: 64px; }
  .section--hero { padding-top: 48px; }
  .section--choose { padding-top: 64px; }
  .section--conditional { padding-top: 40px; }
  .rule-top { padding-top: 32px; }
  .site-footer { padding-top: 56px; }
  .choose__head { margin-bottom: 36px; }
  .build__head, .step { margin-bottom: 32px; }
  .step--last { margin-bottom: 36px; }
  .custom__intro { margin-bottom: 28px; }
  .detail, .consult { margin-top: 36px; }
  .work__head { padding-bottom: 20px; margin-bottom: 24px; }

  /* Second field row stays 2-up — both inputs are short. */
  .field-pair { grid-template-columns: 1fr 1fr; gap: 14px; }
  .field-pair > .field:nth-child(-n+2) { grid-column: 1 / -1; }

  /* --- Swipe carousels: gallery and testimonials ------------------------- */
  .gallery, .quotes {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    background: none;
    border: none;
    /* Full-bleed so a card can sit flush while the page keeps its gutter. */
    margin-inline: calc(var(--pad-x) * -1);
    padding-inline: var(--pad-x);
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .gallery::-webkit-scrollbar, .quotes::-webkit-scrollbar { display: none; }

  /* 84% leaves the next card peeking, which is what prompts the swipe. */
  .gallery > *, .quotes > * { flex: 0 0 84%; scroll-snap-align: center; }
  .gallery > :last-child, .quotes > :last-child { scroll-snap-align: end; }
  .quote { border: 1px solid var(--hairline); padding: 28px 24px; }

  .carousel-hint {
    display: block;
    margin: 14px 0 0;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mono-dim);
  }

  /* --- Progressive disclosure in the builder -----------------------------
     Headers stay visible so the three-step shape is still legible; only the
     options collapse until the previous step is answered. */
  .step.is-locked .grid { display: none; }
  .step.is-locked .pill { display: none; }
  .step.is-locked .step__hint { display: inline; }
  .step.is-locked { margin-bottom: 20px; }
}

@media (max-width: 560px) {
  .craft { grid-template-columns: 1fr; }
  /* Occasions are a heading and two lines each — they do not need full width. */
  .occasions { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .occasion__title { font-size: 22px; }
  /* The pair stays side by side: stacking breaks the before/after comparison,
     which is the entire point of the panel. */
  .transform__pair { gap: 12px; }
  .transform__arrow { font-size: 22px; }
  /* Styles stay 2-up: one full-width tile per option is a 2,000px scroll for six. */
  .grid--styles { grid-template-columns: 1fr 1fr; }
}
