/* ─────────────────────────────────────────────────────────
   LAI PILATES — sun-bleached editorial wellness
   Type-first. Single-font (Fraunces). Warm clay + sage.
   ───────────────────────────────────────────────────────── */

:root {
  /* palette */
  --cream:      #F5EFE2;
  --cream-2:    #EFE6D2;
  --bone:       #E5D9BF;
  --clay:       #6B3F2C;
  --clay-2:     #5A3424;
  --terracotta: #C0623E;
  --terracotta-2:#A04E2F;
  --sage:       #7C8462;
  --sage-2:     #5E6648;
  --gold:       #C9A05C;
  --ink:        #2C1810;
  --ink-soft:   #4A2A1C;

  /* type */
  --font-serif: "Fraunces", "Iowan Old Style", "Palatino", serif;
  --font-mono:  "DM Mono", ui-monospace, "Menlo", monospace;

  /* rhythm */
  --gutter: clamp(20px, 4vw, 56px);
  --max:    1320px;

  /* misc */
  --rule: 1px solid rgba(44, 24, 16, 0.18);
  --rule-soft: 1px solid rgba(44, 24, 16, 0.10);
}

/* ── reset ─────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, ol, ul, figure, blockquote, dl { margin: 0; }
ol, ul { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }

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

/* ── base ──────────────────────────────────────────────── */
body {
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 14, "SOFT" 50;
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(192, 98, 62, 0.10), transparent 60%),
    radial-gradient(900px 700px at -10% 30%, rgba(124, 132, 98, 0.10), transparent 65%),
    var(--cream);
  background-attachment: fixed;
  line-height: 1.5;
  font-size: clamp(15px, 1vw + 0.5rem, 18px);
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle film grain */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.17 0 0 0 0 0.09 0 0 0 0 0.06 0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

a { text-decoration: none; }
em { font-style: italic; }

.skip {
  position: absolute; left: -9999px; top: auto;
  background: var(--ink); color: var(--cream);
  padding: 8px 14px;
}
.skip:focus { left: 12px; top: 12px; z-index: 999; }

/* ── typography utilities ──────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h2 {
  font-size: clamp(36px, 5.4vw, 84px);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  line-height: 0.98;
}
h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-variation-settings: "opsz" 72, "SOFT" 30;
  letter-spacing: -0.01em;
}
.italic, .line--italic, em.line, h2 .italic {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--terracotta);
  border-radius: 50%;
  display: inline-block;
}
.svg-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── buttons ───────────────────────────────────────────── */
.btn {
  --pad-y: 14px;
  --pad-x: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-serif);
  font-size: 16px;
  font-variation-settings: "opsz" 14, "SOFT" 50;
  letter-spacing: -0.005em;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1),
              background .35s ease,
              color .35s ease,
              box-shadow .35s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--ink);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  box-shadow: 0 14px 30px -16px rgba(192, 98, 62, 0.65);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn--lg { --pad-y: 18px; --pad-x: 30px; font-size: 18px; }

/* ── nav ───────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0; z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  background: transparent;
  transition: background .4s ease, padding .4s ease, backdrop-filter .4s ease;
}
.nav.is-elevated {
  background: rgba(245, 239, 226, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding-block: 14px;
  border-bottom: var(--rule-soft);
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.logo-mark { color: var(--ink); display: inline-flex; }
.logo-mark svg { transition: transform 1.6s cubic-bezier(.2,.7,.2,1); }
.nav__logo:hover .logo-mark svg { transform: rotate(360deg); }

.logo-word {
  font-family: var(--font-serif);
  font-size: 22px;
  font-variation-settings: "opsz" 72, "SOFT" 60;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.logo-word em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--terracotta);
}
.logo-word span {
  color: var(--ink);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 15px;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink);
  transition: color .3s ease;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav__cta {
  padding: 10px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  transition: background .3s ease;
}
.nav__cta:hover { background: var(--terracotta); }

@media (max-width: 700px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ── hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(40px, 7vh, 80px) var(--gutter) clamp(40px, 6vh, 80px);
  max-width: var(--max);
  margin: 0 auto;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-rows: auto auto auto auto auto;
  column-gap: clamp(20px, 4vw, 80px);
  align-items: end;
}
.hero__eyebrow { grid-column: 1 / -1; margin-top: 8px; }
.hero__title {
  grid-column: 1 / 2;
  font-size: clamp(48px, 9vw, 156px);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-top: 28px;
}
.hero__title .line { display: block; }
.hero__title .line--italic {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--clay);
}
.hero__title .line--accent {
  color: var(--terracotta);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero__sub {
  grid-column: 1 / 2;
  max-width: 52ch;
  margin-top: 28px;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45;
  color: var(--ink-soft);
}
.hero__sub em { color: var(--clay); }

.hero__cta {
  grid-column: 1 / 2;
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__figure {
  grid-column: 2 / 3;
  grid-row: 2 / 5;
  align-self: end;
  position: relative;
  margin-bottom: -24px;
}
.hero__svg { width: 100%; height: auto; max-height: 70vh; }
.hero__pose path,
.hero__pose circle {
  vector-effect: non-scaling-stroke;
}

.hero__marquee {
  grid-column: 1 / -1;
  margin-top: 56px;
  border-block: var(--rule);
  padding-block: 14px;
  overflow: hidden;
  position: relative;
}
.marquee { overflow: hidden; }
.marquee__track {
  display: inline-flex;
  gap: 36px;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 32px);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--clay);
  animation: marquee 32s linear infinite;
}
.marquee__track span { display: inline-block; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero__rule {
  max-width: var(--max);
  margin: 0 auto;
  border-top: var(--rule);
  margin-top: 4px;
}
.hero__meta {
  max-width: var(--max);
  margin: 14px auto 0;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
}
.hero__meta__last { color: var(--terracotta); }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__figure {
    grid-column: 1 / -1;
    grid-row: auto;
    margin: 24px 0 0;
    max-width: 380px;
    align-self: start;
  }
  .hero__marquee { margin-top: 36px; }
  .hero__meta { flex-wrap: wrap; }
}

/* ── reusable section header ───────────────────────────── */
.section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-head--center { text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head h2 { margin-top: 20px; }

/* ── services ──────────────────────────────────────────── */
.services {
  padding: clamp(80px, 12vh, 160px) 0 clamp(60px, 8vh, 100px);
}
.service-list {
  max-width: var(--max);
  margin: clamp(40px, 6vh, 72px) auto 0;
  padding: 0 var(--gutter);
  border-top: var(--rule);
}
.service {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  align-items: start;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(28px, 4vh, 44px) 0;
  border-bottom: var(--rule);
  position: relative;
  transition: padding-left .5s cubic-bezier(.2,.7,.2,1);
}
.service::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(192, 98, 62, 0.08), transparent 35%);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.service:hover { padding-left: 18px; }
.service:hover::before { opacity: 1; }
.service__num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--terracotta);
  padding-top: 6px;
}
.service__body p {
  max-width: 56ch;
  color: var(--ink-soft);
  margin-top: 12px;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.55;
}
.service__meta {
  font-family: var(--font-mono);
  font-size: 11px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 14px !important;
}
.service__price {
  font-family: var(--font-serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(22px, 2vw, 32px);
  color: var(--clay);
  white-space: nowrap;
  padding-top: 6px;
}
.service__price em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  margin-right: 6px;
}
@media (max-width: 720px) {
  .service { grid-template-columns: 56px minmax(0, 1fr); }
  .service__price { grid-column: 1 / -1; padding-top: 0; }
}

/* ── events ────────────────────────────────────────────── */
.events {
  background:
    radial-gradient(900px 600px at 100% 0%, rgba(124, 132, 98, 0.20), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(201, 160, 92, 0.15), transparent 65%),
    var(--cream-2);
  padding: clamp(80px, 12vh, 160px) 0;
  border-block: var(--rule);
}
.events__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.events__copy h2 { margin-top: 22px; }
.events__lede {
  max-width: 52ch;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.55;
}
.events__list {
  margin-top: 30px;
  display: grid;
  gap: 10px;
  font-size: clamp(16px, 1.1vw, 19px);
}
.events__list li {
  padding: 12px 0;
  border-bottom: var(--rule-soft);
  color: var(--ink-soft);
}
.events__list strong {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 400;
  color: var(--clay);
  margin-right: 8px;
}
.events__copy .btn { margin-top: 36px; }

.events__card {
  position: sticky;
  top: 100px;
  background: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 36px 32px 32px;
  position: relative;
  box-shadow: 0 28px 60px -36px rgba(44, 24, 16, 0.45);
  transform: rotate(0.6deg);
}
.events__card__inner > .svg-mono { color: var(--terracotta); }
.events__timeline {
  margin-top: 22px;
  display: grid;
  gap: 18px;
}
.events__timeline li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: var(--rule-soft);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.events__timeline li:last-child { border-bottom: 0; padding-bottom: 0; }
.events__timeline li span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--clay);
  padding-top: 3px;
}
.events__card__stamp {
  position: absolute;
  bottom: -44px;
  right: -44px;
  width: 130px; height: 130px;
  color: var(--terracotta);
  animation: stamp-rotate 18s linear infinite;
}
@keyframes stamp-rotate { to { transform: rotate(360deg); } }

@media (max-width: 880px) {
  .events__inner { grid-template-columns: 1fr; }
  .events__card { position: relative; top: 0; }
  .events__card__stamp { bottom: -32px; right: -16px; width: 100px; height: 100px; }
}

/* ── parks ─────────────────────────────────────────────── */
.parks { padding: clamp(90px, 14vh, 180px) var(--gutter); }
.park-grid {
  max-width: var(--max);
  margin: clamp(40px, 6vh, 72px) auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.park-card {
  position: relative;
  padding: 30px 26px 28px;
  background: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 4px;
  transition: transform .5s cubic-bezier(.2,.7,.2,1),
              background .5s ease,
              color .5s ease,
              box-shadow .5s ease;
}
.park-card:nth-child(2)  { transform: rotate(-0.6deg); }
.park-card:nth-child(3)  { transform: rotate(0.5deg); }
.park-card:nth-child(4)  { transform: rotate(-0.3deg); }
.park-card:hover {
  transform: translateY(-6px) rotate(0deg);
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 30px 60px -32px rgba(44, 24, 16, 0.55);
}
.park-card:hover .svg-mono { color: var(--gold); }
.park-card:hover .park-card__price { color: var(--terracotta); }
.park-card:hover h3 { color: var(--cream); }

.park-card .svg-mono { color: var(--terracotta); }
.park-card h3 { margin-top: 16px; }
.park-card p { margin-top: 12px; color: var(--ink-soft); font-size: 15px; line-height: 1.5; }
.park-card:hover p { color: var(--cream); opacity: 0.85; }
.park-card__rule {
  display: block;
  height: 1px;
  background: rgba(44, 24, 16, 0.2);
  margin-top: 22px;
}
.park-card:hover .park-card__rule { background: rgba(245, 239, 226, 0.25); }
.park-card__price {
  margin-top: 16px !important;
  font-family: var(--font-serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--clay) !important;
}

/* ── region ────────────────────────────────────────────── */
.region {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 96px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 12vh, 160px) var(--gutter);
  align-items: center;
}
.region__copy h2 { margin-top: 22px; }
.region__lede {
  margin-top: 26px;
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.55;
}
.region__map { position: relative; }
.region__cap {
  position: absolute;
  bottom: 4px; right: 4px;
  color: var(--clay);
}

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

/* ── about ─────────────────────────────────────────────── */
.about {
  background:
    radial-gradient(900px 700px at 0% 50%, rgba(192, 98, 62, 0.10), transparent 60%),
    var(--bone);
  padding: clamp(90px, 14vh, 180px) 0;
  border-block: var(--rule);
}
.about__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.about__name {
  margin-top: 20px;
  font-size: clamp(56px, 10vw, 170px);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.about__name .line { display: block; }
.about__name .line--italic {
  color: var(--terracotta);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.about__cols {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
}
.about__cols p + p { margin-top: 16px; }
.about__creds {
  margin-top: 64px;
  padding-top: 32px;
  border-top: var(--rule);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  font-family: var(--font-serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 17px;
  color: var(--clay);
}
.about__creds span {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 6px;
}
@media (max-width: 720px) {
  .about__cols { grid-template-columns: 1fr; }
}

/* ── quotes ────────────────────────────────────────────── */
.quotes {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 12vh, 160px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
}
.quote {
  position: relative;
  padding-top: 24px;
  border-top: var(--rule);
}
.quote__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.35;
  color: var(--ink);
}
.quote__mark {
  font-size: 2em;
  line-height: 0.1;
  color: var(--terracotta);
  margin-right: 4px;
}
.quote__attr {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
}
@media (max-width: 720px) { .quotes { grid-template-columns: 1fr; } }

/* ── contact ───────────────────────────────────────────── */
.contact {
  padding: clamp(90px, 14vh, 200px) var(--gutter);
  background:
    radial-gradient(800px 600px at 100% 0%, rgba(192, 98, 62, 0.12), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(44, 24, 16, 0.06), transparent 65%);
  border-top: var(--rule);
}
.contact__head {
  max-width: var(--max);
  margin: 0 auto;
}
.contact__head h2 { margin-top: 20px; }
.contact__lede {
  margin-top: 24px;
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.55;
}

.form {
  max-width: 920px;
  margin: 48px auto 0;
  display: grid;
  gap: 22px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field {
  display: grid;
  gap: 8px;
}
.field > span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
}
.field > span em {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
  margin-left: 4px;
  font-size: 13px;
}
.field input,
.field select,
.field textarea {
  appearance: none;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 10px 0 12px;
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 14, "SOFT" 60;
  font-size: 18px;
  color: var(--ink);
  border-radius: 0;
  transition: border-color .3s ease, padding .3s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(74, 42, 28, 0.45); font-style: italic; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--terracotta);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.45;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'><path fill='none' stroke='%232C1810' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
.field--block { display: grid; }
.field--checkbox {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}
.field--checkbox input {
  width: 18px; height: 18px;
  border: 1px solid var(--ink);
  background: transparent;
  appearance: none;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.field--checkbox input:checked {
  background: var(--ink);
}
.field--checkbox input:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--terracotta);
  border-radius: 1px;
}
.field--checkbox span {
  font-family: var(--font-serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  text-transform: none;
  letter-spacing: 0;
  font-size: 17px;
  color: var(--ink-soft);
}
.field--hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.form__actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.form__note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
}
.form__note.is-ok { color: var(--sage-2); }
.form__note.is-err { color: var(--terracotta-2); }

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

/* ── footer ────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(50px, 7vh, 90px) var(--gutter);
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: end;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(245, 239, 226, 0.18);
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.9;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.03em;
}
.footer__logo em {
  color: var(--terracotta);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.footer__logo span { color: var(--cream); }
.footer__tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(18px, 1.4vw, 22px);
  color: rgba(245, 239, 226, 0.7);
  max-width: 40ch;
  justify-self: end;
  text-align: right;
}
.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(245, 239, 226, 0.55);
}
.footer__bottom a { color: var(--cream); text-decoration: underline; text-decoration-color: var(--terracotta); text-underline-offset: 4px; }
@media (max-width: 720px) {
  .footer__top { grid-template-columns: 1fr; align-items: start; }
  .footer__tag { justify-self: start; text-align: left; }
}

/* ── reveal animations ─────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1),
              transform 1s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
[data-reveal].is-in:nth-child(2) { transition-delay: .08s; }
[data-reveal].is-in:nth-child(3) { transition-delay: .16s; }
[data-reveal].is-in:nth-child(4) { transition-delay: .24s; }
[data-reveal].is-in:nth-child(5) { transition-delay: .32s; }

/* hero staggered load */
.hero__eyebrow,
.hero__title .line,
.hero__sub,
.hero__cta,
.hero__figure {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-rise 1.1s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__eyebrow      { animation-delay: .10s; }
.hero__title .line:nth-child(1) { animation: hero-rise 1.1s cubic-bezier(.2,.7,.2,1) .20s forwards; opacity: 0; transform: translateY(28px); }
.hero__title .line:nth-child(2) { animation: hero-rise 1.1s cubic-bezier(.2,.7,.2,1) .32s forwards; opacity: 0; transform: translateY(28px); }
.hero__title .line:nth-child(3) { animation: hero-rise 1.1s cubic-bezier(.2,.7,.2,1) .44s forwards; opacity: 0; transform: translateY(28px); }
.hero__title .line:nth-child(4) { animation: hero-rise 1.1s cubic-bezier(.2,.7,.2,1) .56s forwards; opacity: 0; transform: translateY(28px); }
.hero__sub          { animation-delay: .65s; }
.hero__cta          { animation-delay: .78s; }
.hero__figure       { animation-delay: .40s; animation-duration: 1.6s; }

@keyframes hero-rise {
  to { opacity: 1; transform: none; }
}

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