/* Pigeon — landing page
   Big bold type. Single column. One job: get the email. */

:root {
  --cream:        #EEE7D9;
  --paper:        #F5F0E5;
  --ink:          #1B1916;
  --ink-soft:     #5C544A;
  --ink-muted:    #8A8071;
  --terracotta:   #B4493A;
  --terracotta-d: #963928;
  --rule:         rgba(27, 25, 22, 0.14);

  --serif: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
  --sans:  'Geist', ui-sans-serif, system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --mono:  'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

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

* , *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(900px 600px at 10% -10%, rgba(180,73,58,0.07), transparent 60%),
    radial-gradient(900px 600px at 100% 10%, rgba(56,70,60,0.04), transparent 60%);
}

em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

strong { font-weight: 600; }

/* ========== PROMO BAR ========== */
.promo {
  background: var(--ink);
  color: var(--cream);
}
.promo__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  text-align: center;
  transition: background 240ms ease;
}
.promo__inner:hover { background: var(--terracotta); }
.promo__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E1A89E;
  flex: 0 0 8px;
  box-shadow: 0 0 0 0 rgba(225,168,158,0.6);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(225,168,158,0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(225,168,158,0); }
}
.promo__text strong { font-weight: 600; color: #E1A89E; }
.promo__arrow {
  font-family: var(--mono);
  margin-left: 6px;
  transition: transform 240ms var(--ease);
}
.promo__inner:hover .promo__arrow { transform: translateX(4px); }

/* ========== NAV ========== */
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__mark {
  width: 38px;
  height: 28px;
  color: var(--ink);
}
.brand__word {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  letter-spacing: -0.015em;
}
.nav__cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  transition: background 240ms ease, transform 240ms var(--ease);
}
.nav__cta:hover { background: var(--terracotta); transform: translateY(-1px); }
@media (max-width: 640px) {
  .nav { padding: 18px 20px 0; }
  .brand__word { font-size: 24px; }
  .nav__cta { padding: 10px 16px; font-size: 13px; }
}

/* ========== HERO ========== */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 32px clamp(64px, 10vw, 120px);
  text-align: center;
}

.hero__art {
  width: clamp(220px, 30vw, 340px);
  margin: 0 auto 28px;
  color: var(--ink);
  animation: rise 900ms var(--ease) both;
}

/* ---------- animated scene: boxes → pigeon → gone ---------- */
.scene {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.scene * {
  stroke: currentColor;
  fill: none;
  stroke-linejoin: round;
}
.scene__floor {
  stroke-width: 1.4;
  stroke-linecap: round;
}
.scene__wall {
  stroke-width: 1;
  stroke-dasharray: 2 5;
  opacity: 0.35;
}
.scene__box rect { fill: var(--cream); stroke-width: 1.3; }
.scene__box line { stroke-width: 0.8; }
.scene__edge { stroke-width: 0.9; opacity: 0.55; }
.scene__flap { stroke-width: 0.7; opacity: 0.4; stroke-dasharray: 1.8 1.8; }
.scene__tape-h { opacity: 0.6; stroke-width: 0.9; }
.scene__label { fill: #fff; stroke-width: 0.7; opacity: 0.95; }
.scene__label-line { stroke-width: 0.55; opacity: 0.7; }

.scene__box {
  transform-box: fill-box;
  transform-origin: center;
  will-change: opacity, transform;
}

/* All animations share the same 9s duration so they stay phase-locked.
   Sequence: packages already there at frame 0 → pigeon glides in from the
   left, decelerates, lands on the pile → boxes lift away (top first)
   while pigeon hovers → pigeon climbs, accelerates, exits right →
   empty doorstep pause → packages drop in one by one (delivery!) for
   the next cycle. */
.scene__box--1 { animation: scene-box-1 9s linear infinite; }
.scene__box--2 { animation: scene-box-2 9s linear infinite; }
.scene__box--3 { animation: scene-box-3 9s linear infinite; }

/* Per-keyframe timing functions used throughout for natural easing.
   Box 1 = bottom; lifted LAST, delivered FIRST. */
@keyframes scene-box-1 {
  0%   { opacity: 1; transform: translateY(0);  animation-timing-function: linear; }
  50%  { opacity: 1; transform: translateY(0);  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
  58%  { opacity: 0; transform: translateY(-10px); animation-timing-function: linear; }
  80%  { opacity: 0; transform: translateY(-10px); animation-timing-function: linear; }
  /* Delivery: drop in from above with a soft settle */
  82%  { opacity: 0; transform: translateY(-14px); animation-timing-function: cubic-bezier(0.34, 1.4, 0.64, 1); }
  92%  { opacity: 1; transform: translateY(0);  animation-timing-function: linear; }
  100% { opacity: 1; transform: translateY(0); }
}
/* Box 2 = middle; lifted SECOND, delivered SECOND. */
@keyframes scene-box-2 {
  0%   { opacity: 1; transform: translateY(0);  animation-timing-function: linear; }
  46%  { opacity: 1; transform: translateY(0);  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
  54%  { opacity: 0; transform: translateY(-10px); animation-timing-function: linear; }
  86%  { opacity: 0; transform: translateY(-10px); animation-timing-function: linear; }
  88%  { opacity: 0; transform: translateY(-14px); animation-timing-function: cubic-bezier(0.34, 1.4, 0.64, 1); }
  97%  { opacity: 1; transform: translateY(0);  animation-timing-function: linear; }
  100% { opacity: 1; transform: translateY(0); }
}
/* Box 3 = top; lifted FIRST (pigeon grabs from above), delivered LAST. */
@keyframes scene-box-3 {
  0%   { opacity: 1; transform: translateY(0);  animation-timing-function: linear; }
  42%  { opacity: 1; transform: translateY(0);  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
  50%  { opacity: 0; transform: translateY(-10px); animation-timing-function: linear; }
  93%  { opacity: 0; transform: translateY(-10px); animation-timing-function: linear; }
  95%  { opacity: 0; transform: translateY(-14px); animation-timing-function: cubic-bezier(0.34, 1.4, 0.64, 1); }
  100% { opacity: 1; transform: translateY(0); }
}

.scene__pigeon {
  will-change: transform;
  animation: scene-pigeon 9s linear infinite;
}
/* Pigeon flight: one smooth glide that lands the pigeon directly above
   the package pile (centered on x≈207, hovering ~8px above box top),
   bobs while collecting, then climbs away to the right. */
@keyframes scene-pigeon {
  /* Off-screen left, beginning the glide at a slight altitude */
  0%   { transform: translateX(-300px) translateY(-30px);
         animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1); /* smooth glide */ }
  /* Smooth glide straight to hover position right above the packages */
  42%  { transform: translateX(117px) translateY(-26px);
         animation-timing-function: ease-in-out; }
  /* Bob 1 — settling, taking box 3 */
  52%  { transform: translateX(117px) translateY(-22px);
         animation-timing-function: ease-in-out; }
  /* Bob 2 — taking box 2 / box 1 */
  60%  { transform: translateX(117px) translateY(-26px);
         animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
  /* Lifting off with cargo */
  68%  { transform: translateX(132px) translateY(-38px);
         animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
  /* Climbing right */
  80%  { transform: translateX(330px) translateY(-48px);
         animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1); }
  /* Off-screen right */
  92%  { transform: translateX(540px) translateY(-56px);
         animation-timing-function: linear; }
  100% { transform: translateX(540px) translateY(-56px); }
}

@media (prefers-reduced-motion: reduce) {
  .scene__box--1, .scene__box--2, .scene__box--3, .scene__pigeon { animation: none; }
  .scene__box--1, .scene__box--2, .scene__box--3 { opacity: 1; transform: none; }
  .scene__pigeon { transform: translateX(117px) translateY(-26px); }
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin: 0 0 36px;
  background: rgba(245, 240, 229, 0.6);
  animation: rise 700ms 100ms var(--ease) both;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
  animation: pulse 2s infinite;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(60px, 10vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  animation: rise 900ms 120ms var(--ease) both;
}
.hero__title em {
  color: var(--terracotta);
  letter-spacing: -0.04em;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 34ch;
  margin: 0 auto 40px;
  animation: rise 900ms 320ms var(--ease) both;
  text-wrap: balance;
}
.hero__sub-offer {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 600;
}
.hero__sub-fine {
  display: block;
  margin-top: 2px;
  font-size: 0.78em;
  color: var(--ink-muted);
  letter-spacing: 0.005em;
}

.hero__trust {
  margin: 32px 0 0;
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  animation: rise 900ms 800ms var(--ease) both;
}
.hero__trust strong {
  color: var(--ink);
  font-weight: 600;
}

/* ========== SCARCITY ========== */
.scarcity {
  max-width: 480px;
  margin: 0 auto 24px;
  text-align: left;
  animation: rise 900ms 460ms var(--ease) both;
}
.scarcity__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 12px;
}
.scarcity__label {
  font-size: 11px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.scarcity__count {
  color: var(--ink-soft);
}
.scarcity__count strong {
  color: var(--terracotta);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.scarcity__bar {
  height: 4px;
  background: rgba(27,25,22,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.scarcity__fill {
  height: 100%;
  background: linear-gradient(to right, var(--terracotta), var(--terracotta-d));
  border-radius: 4px;
  transform-origin: left;
  animation: bar-fill 1400ms 700ms var(--ease) both;
}
@keyframes bar-fill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ========== FORM ========== */
.form {
  max-width: 560px;
  margin: 0 auto;
  animation: rise 900ms 520ms var(--ease) both;
}
.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 8px;
  margin-bottom: 8px;
}
.form__input {
  font-family: var(--sans);
  font-size: 16px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 999px;
  outline: none;
  color: var(--ink);
  width: 100%;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms var(--ease);
}
.form__input::placeholder { color: var(--ink-muted); }
.form__input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(27,25,22,0.06);
}
.form__btn {
  width: 100%;
  padding: 20px 22px;
  background: var(--ink);
  color: var(--cream);
  border: 0;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 240ms ease, transform 240ms var(--ease), box-shadow 240ms ease;
  box-shadow: 0 14px 30px -14px rgba(27,25,22,0.55);
}
.form__btn:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -16px rgba(180,73,58,0.6);
}
.form__btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.form__btn-arrow {
  font-family: var(--mono);
  transition: transform 240ms var(--ease);
}
.form__btn:hover .form__btn-arrow { transform: translateX(4px); }

.form__trust {
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 12px;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.form__trust-sep {
  color: var(--ink-muted);
  opacity: 0.6;
}

.form__note {
  margin: 10px auto 0;
  max-width: 38ch;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-muted);
  text-align: center;
  text-wrap: balance;
}
.form__note strong {
  color: var(--ink);
  font-weight: 600;
}
.form--dark .form__note strong { color: var(--cream); }
.form__success {
  margin-top: 14px;
  padding: 14px 18px;
  background: rgba(180,73,58,0.08);
  color: var(--ink);
  border-radius: 12px;
  font-size: 14.5px;
  border: 1px solid rgba(180,73,58,0.18);
  animation: rise 480ms var(--ease) both;
}
.form__success strong { color: var(--terracotta); }
.form__error {
  margin-top: 14px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.04);
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink-soft);
}

@media (max-width: 520px) {
  .form__row { grid-template-columns: 1fr; }
}

/* ========== RETAILERS ========== */
.retailers {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 32px 56px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.retailers__kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
  margin: 0 0 20px;
  padding-top: 8px;
}
.retailers__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 38px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--ink-soft);
  letter-spacing: -0.01em;
}
.retailers__list li {
  transition: color 240ms ease, transform 240ms var(--ease);
}
.retailers__list li:hover { color: var(--terracotta); transform: translateY(-2px); }
.retailers__list li:last-child {
  color: var(--ink-muted);
  font-style: italic;
}

@media (max-width: 640px) {
  .retailers__list { gap: 14px 22px; }
}

/* ========== STEPS ========== */
.steps {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) 32px;
  border-top: 1px solid var(--rule);
}
.steps__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.steps__item {
  text-align: left;
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  transition: transform 320ms var(--ease), border-color 320ms ease, box-shadow 320ms ease;
}
.steps__item:hover {
  transform: translateY(-4px);
  border-color: rgba(27,25,22,0.32);
  box-shadow: 0 24px 50px -32px rgba(27,25,22,0.4);
}
.steps__num {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--terracotta);
  margin-bottom: 24px;
}
.steps__t {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}
.steps__b {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
}

@media (max-width: 820px) {
  .steps__list { grid-template-columns: 1fr; }
}

/* ========== PRICE ========== */
.price {
  text-align: center;
  padding: clamp(64px, 10vw, 120px) 32px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  max-width: 1180px;
  margin: 0 auto;
}
.price__kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 48px;
}
.price__kicker em {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: -0.005em;
  color: var(--ink);
  font-size: 16px;
  margin-left: 2px;
}

.price__split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  max-width: 920px;
  margin: 0 auto;
}
.price__col {
  text-align: center;
  padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 32px);
  border: 1px solid var(--rule);
  background: var(--paper);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
  justify-content: center;
  transition: transform 320ms var(--ease), border-color 320ms ease, box-shadow 320ms ease;
}
.price__col:hover {
  transform: translateY(-4px);
  border-color: rgba(27,25,22,0.32);
  box-shadow: 0 24px 50px -32px rgba(27,25,22,0.4);
}
.price__col--free {
  background: linear-gradient(180deg, var(--paper), color-mix(in srgb, var(--terracotta) 8%, var(--paper)));
  border-color: color-mix(in srgb, var(--terracotta) 30%, var(--rule));
}
.price__col-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin: 0;
}
.price__col--free .price__col-label { color: var(--terracotta); }
.price__col-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(96px, 14vw, 168px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin: 0;
}
.price__col-num em {
  font-style: italic;
  color: var(--terracotta);
}
.price__currency {
  font-size: 0.45em;
  vertical-align: top;
  margin-right: 0.04em;
  color: var(--terracotta);
  font-style: normal;
}
.price__col-sub {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

.price__arrow {
  width: 60px;
  height: 20px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.price__arrow svg { width: 100%; height: 100%; }

@media (max-width: 720px) {
  .price__split {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .price__col { min-height: 0; }
  .price__arrow {
    width: 20px;
    height: 40px;
    transform: rotate(90deg);
    margin: 0 auto;
  }
}

.price__line {
  margin: 40px auto 28px;
  max-width: 42ch;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.price__line strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 24px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.price__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  transition: background 240ms ease, transform 240ms var(--ease), box-shadow 240ms ease;
  box-shadow: 0 14px 30px -14px rgba(27,25,22,0.5);
}
.price__cta:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -16px rgba(180,73,58,0.6);
}

/* ========== TESTIMONIAL ========== */
.testimonial {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 10vw, 120px) 32px;
  text-align: center;
}
.testimonial__quote blockquote { margin: 0; }
.testimonial__quote p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto 28px;
}
.testimonial__quote em { color: var(--terracotta); }
.testimonial__quote figcaption {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.testimonial__name {
  font-weight: 500;
  font-size: 14.5px;
}
.testimonial__city {
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ========== FINAL CTA ========== */
.final {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: clamp(72px, 11vw, 140px) 32px;
  text-align: center;
  overflow: hidden;
}
.final::before, .final::after {
  content: "";
  position: absolute;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}
.final::before {
  background: radial-gradient(closest-side, rgba(180,73,58,0.55), transparent 70%);
  top: -25%; left: -15%;
}
.final::after {
  background: radial-gradient(closest-side, rgba(99,88,75,0.5), transparent 70%);
  bottom: -30%; right: -15%;
}
.final__title {
  position: relative;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 10vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
}
.final__title em { color: #E1A89E; }
.final__sub {
  position: relative;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.5;
  color: rgba(238,231,217,0.75);
  max-width: 42ch;
  margin: 0 auto 40px;
  text-wrap: balance;
}

.form--dark { position: relative; }
.form--dark .form__input {
  background: rgba(238,231,217,0.06);
  border-color: rgba(238,231,217,0.18);
  color: var(--cream);
}
.form--dark .form__input::placeholder { color: rgba(238,231,217,0.45); }
.form--dark .form__input:focus {
  border-color: rgba(238,231,217,0.55);
  box-shadow: 0 0 0 4px rgba(238,231,217,0.08);
}
.form--dark .form__btn {
  background: var(--cream);
  color: var(--ink);
}
.form--dark .form__btn:hover {
  background: var(--terracotta);
  color: #fff;
}
.form--dark .form__note { color: rgba(238,231,217,0.55); }
.form--dark .form__success {
  background: rgba(225,168,158,0.12);
  border-color: rgba(225,168,158,0.3);
  color: var(--cream);
}
.form--dark .form__success strong { color: #E1A89E; }
.form--dark .form__error {
  background: rgba(238,231,217,0.06);
  color: rgba(238,231,217,0.7);
}

/* ========== FOOTER ========== */
.foot {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 32px 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: baseline;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-muted);
}
.foot__brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}
.foot__tag { color: var(--ink-soft); }

@media (max-width: 640px) {
  .foot { justify-content: center; text-align: center; }
}

/* ========== PREFERS REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
