/* ============================================================
   U WELLNESS - LASER HAIR REMOVAL LANDING PAGE
   World: printed spa treatment menu. Alabaster ground, deep pine
   regions, blush + sand undertones, hairline rules, Marcellus
   display over Mulish text.
   ============================================================ */

:root {
  --ground: #FAF7F1;
  --paper: #FFFFFF;
  --sand: #F1EAE0;
  --blush: #EAD9D1;
  --blush-deep: #DBC2B6;
  --pine: #2E463C;
  --pine-deep: #233830;
  --pine-soft: #3D5749;
  --ink: #26322B;
  --ink-soft: #57645B;
  --on-pine: #F5F0E8;
  --on-pine-soft: #C8D2C6;
  --hairline: #DCD2C2;
  --hairline-on-pine: rgba(245, 240, 232, 0.22);

  --font-display: "Marcellus", "Times New Roman", serif;
  --font-text: "Mulish", "Helvetica Neue", Arial, sans-serif;

  --radius-card: 22px;
  --radius-field: 12px;
  --shadow-card: 0 18px 40px -18px rgba(38, 50, 43, 0.28);
  --shadow-lift: 0 10px 24px -12px rgba(38, 50, 43, 0.35);

  --space-section: clamp(4.5rem, 9vw, 7.5rem);
  --pad-x: clamp(1.25rem, 5vw, 3rem);
  --measure: 62ch;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 1rem;
  text-wrap: balance;
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 4.35rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); line-height: 1.3; }

p { margin: 0 0 1rem; }

a { color: var(--pine); }

:focus-visible {
  outline: 2px solid var(--pine);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--pine);
  color: var(--on-pine);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 12px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 1rem 2.1rem;
  cursor: pointer;
  transition: background-color 180ms ease-out, transform 180ms ease-out, box-shadow 180ms ease-out;
}

.btn-primary {
  background: var(--pine);
  color: var(--on-pine);
}
.btn-primary:hover {
  background: var(--pine-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-light {
  background: var(--ground);
  color: var(--pine);
}
.btn-light:hover {
  background: var(--paper);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--pine);
  border-color: var(--pine);
}
.btn-outline:hover {
  background: var(--pine);
  color: var(--on-pine);
}

.btn-small { padding: 0.65rem 1.4rem; font-size: 0.92rem; }

/* ---------- Header ---------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem var(--pad-x);
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 241, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

/* Stacked logo replaces the text brand when present */
.brand-stack { display: block; }
.brand-stack img {
  display: block;
  height: 84px;
  width: auto;
}
.brand-lockup:has(.brand-stack) .brand { display: none; }

.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.header-phone {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink);
}
.header-phone:hover { color: var(--pine); }

@media (max-width: 640px) {
  .header-phone { display: none; }
  .site-header .btn-small { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
  .brand { font-size: 1.15rem; letter-spacing: 0.11em; }
  .brand-stack img { height: 58px; }
  .site-header { padding-top: 0.5rem; padding-bottom: 0.5rem; }
}

@media (max-width: 480px) {
  /* Hero CTA is above the fold and the sticky bar takes over below it */
  .site-header .btn-small { display: none; }
  .site-header { justify-content: center; }
}

/* ---------- Hero ---------- */

.hero { padding: clamp(2.5rem, 6vw, 5.5rem) var(--pad-x) calc(var(--space-section) + 2.5rem); }

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-copy > * { animation: rise 700ms cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-copy > *:nth-child(2) { animation-delay: 90ms; }
.hero-copy > *:nth-child(3) { animation-delay: 180ms; }
.hero-copy > *:nth-child(4) { animation-delay: 270ms; }
.hero-media { animation: rise 800ms 250ms cubic-bezier(0.16, 1, 0.3, 1) both; }

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

.hero-offer-line {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  line-height: 1.35;
  margin: 1.4rem 0 0.9rem;
  max-width: 24ch;
}

.hero-price { white-space: nowrap; }

.hero-sub {
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 0.9rem; }

.qualifier {
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  margin: 0;
}

/* Hero media: abstract placeholder panel + offer card */

.hero-media { position: relative; }

.hero-art {
  position: relative;
  overflow: hidden;
  border-radius: 30px 30px 30px 120px;
  aspect-ratio: 4 / 4.6;
  background:
    radial-gradient(120% 90% at 85% 10%, var(--blush) 0%, rgba(234, 217, 209, 0) 55%),
    radial-gradient(75% 60% at 68% 78%, #E2C9BC 0%, rgba(226, 201, 188, 0) 62%),
    radial-gradient(65% 55% at 10% 16%, #DDE2D3 0%, rgba(221, 226, 211, 0) 62%),
    radial-gradient(110% 100% at 10% 95%, #D9E0D5 0%, rgba(217, 224, 213, 0) 60%),
    linear-gradient(160deg, #F3EDE2 0%, var(--sand) 42%, var(--blush) 100%);
}

.hero-art::before {
  /* warm pool anchoring the lower-right, behind the offer card */
  content: "";
  position: absolute;
  right: -22%;
  bottom: -30%;
  width: 85%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(219, 194, 182, 0.6), rgba(219, 194, 182, 0));
}

.hero-art::after {
  /* fine grain so the placeholder reads as material, not vector */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-art-arc {
  position: absolute;
  border: 1.5px solid rgba(46, 70, 60, 0.34);
  border-radius: 50%;
  width: 130%;
  aspect-ratio: 1;
  left: 28%;
  top: 34%;
}
.hero-art-arc--2 { left: 36%; top: 44%; border-color: rgba(46, 70, 60, 0.2); }
.hero-art-arc--3 { width: 115%; left: -62%; top: -74%; border-color: rgba(46, 70, 60, 0.18); }

.hero-media img.hero-photo {
  border-radius: 30px 30px 30px 120px;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: 50% 35%;
  width: 100%;
}

.offer-card {
  position: absolute;
  left: clamp(-2.5rem, -3vw, -1rem);
  bottom: -4.5rem;
  width: min(19.5rem, 84%);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1.6rem 1.7rem 1.4rem;
}

.offer-card-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.2rem;
}

.offer-card-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0 0 0.9rem;
}

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

.offer-card-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.95rem;
}
.offer-card-list li {
  padding: 0.3rem 0 0.3rem 1.3rem;
  position: relative;
}
.offer-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 0.55rem;
  height: 1px;
  background: var(--pine);
}

.offer-card-value {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: -0.6rem 0 0.9rem;
}

.offer-card-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pine);
  margin-top: 0.75rem;
}

.offer-card-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
  padding-top: 0.2rem;
  border-top: 1px dashed var(--hairline);
}

@media (max-width: 900px) {
  .hero { padding-top: 1.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-copy { text-align: center; }
  .hero-offer-line, .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { align-items: center; }
  /* Shallow panel so the offer card's title and price land in the first viewport */
  .hero-art { aspect-ratio: 4 / 2.4; border-radius: 24px 24px 24px 80px; }
  .hero-media img.hero-photo { aspect-ratio: 4 / 2.4; border-radius: 24px 24px 24px 80px; }
  /* Compact receipt-style card on mobile */
  .offer-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin: -2.5rem auto 0;
    width: min(22rem, 90%);
    padding: 1.2rem 1.3rem 1.05rem;
  }
  .offer-card-title { font-size: 0.72rem; margin-bottom: 0.1rem; }
  .offer-card-price { font-size: 2.1rem; margin-bottom: 0.65rem; }
  .offer-card .rule { margin-bottom: 0.65rem; }
  .offer-card-list { font-size: 0.88rem; margin-bottom: 0.7rem; }
  .offer-card-list li { padding: 0.16rem 0 0.16rem 1.05rem; }
  .offer-card-list li::before { top: 0.8em; width: 0.5rem; }
  .offer-card-note { font-size: 0.76rem; line-height: 1.45; }
  .offer-card-link { font-size: 0.8rem; margin-top: 0.55rem; }
}

/* ---------- Sections (shared) ---------- */

section { padding: var(--space-section) var(--pad-x); }

.section-cta { text-align: center; margin-top: 2.5rem; }

/* ---------- Benefits ---------- */

.benefits { padding-top: calc(var(--space-section) + 1rem); text-align: center; }

.benefits h2 { margin-bottom: 2.5rem; }

.benefit-menu {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 34rem;
}

.benefit-menu li {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--hairline);
}
.benefit-menu li:last-child { border-bottom: 0; }

/* ---------- How it works ---------- */

.how {
  background: var(--sand);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.how h2 { text-align: center; margin-bottom: 3rem; }

.how-media {
  max-width: 1060px;
  margin: 0 auto 3.25rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.how-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: 50% 32%;
  display: block;
}

@media (max-width: 820px) {
  .how-media img { aspect-ratio: 4 / 3; }
}

.steps {
  list-style: none;
  counter-reset: step;
  margin: 0 auto;
  padding: 0;
  max-width: 1060px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.step { padding: 0 2.2rem; border-left: 1px solid var(--hairline); }
.step:first-child { border-left: 0; padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--pine);
  margin: 0 0 0.9rem;
}

.step h3 { margin-bottom: 0.5rem; }
.step p:last-child { color: var(--ink-soft); margin-bottom: 0; }

.how-note {
  text-align: center;
  max-width: 46rem;
  margin: 3rem auto 0;
  color: var(--ink-soft);
}

@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .step { border-left: 0; padding: 0; display: grid; grid-template-columns: auto 1fr; column-gap: 1.2rem; }
  .step h3, .step p { grid-column: 2; }
  .step .step-num { grid-column: 1; grid-row: 1 / span 3; margin: 0; }
}

/* ---------- Differentiation (pine region) ---------- */

.difference {
  background: var(--pine);
  color: var(--on-pine);
}

.difference-inner { max-width: 780px; margin: 0 auto; text-align: center; }

.difference h2 { color: var(--on-pine); }

.difference-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
  margin: 1.5rem 0 3rem;
}
.difference-lead strong { color: #E9DCC8; font-weight: 600; }

.fit-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  margin: 0 0 3rem;
}

.fit-inputs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.7rem 0.9rem;
}

.fit-chip {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  border: 1px solid var(--hairline-on-pine);
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
  white-space: nowrap;
}

.fit-plus {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--on-pine-soft);
}

.fit-arrow {
  width: 1px;
  height: 2.2rem;
  background: var(--hairline-on-pine);
  position: relative;
}
.fit-arrow::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--on-pine-soft);
  border-bottom: 1px solid var(--on-pine-soft);
}

.fit-result {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  background: var(--blush);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.8rem 2rem;
  margin: 0;
}

.difference-note {
  color: var(--on-pine-soft);
  font-size: 0.98rem;
  max-width: 54ch;
  margin: 0 auto;
}

/* ---------- Treatment areas (menu) ---------- */

.areas h2 { text-align: center; }

.areas-lead {
  text-align: center;
  color: var(--ink-soft);
  max-width: 44rem;
  margin: 0 auto 3rem;
}

.qualify-panel {
  max-width: 880px;
  margin: 0 auto 3.5rem;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
}

.qualify-panel h3 { margin-bottom: 0.4rem; }

.qualify-panel > p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.qualify-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.qualify-chips li {
  font-size: 0.94rem;
  font-weight: 500;
  border: 1px solid var(--pine-soft);
  color: var(--pine);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  background: var(--ground);
}

.areas-menu-heading {
  text-align: center;
  font-size: 1.35rem;
  margin-bottom: 2rem;
}

.areas-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.areas-figure {
  position: relative;
  padding: 1.5rem 1rem;
}

.areas-figure::before {
  /* soft blush ground behind the figure */
  content: "";
  position: absolute;
  inset: 4% 8% 8% 8%;
  border-radius: 46% 46% 40% 40%;
  background:
    radial-gradient(80% 70% at 50% 30%, rgba(234, 217, 209, 0.65), rgba(234, 217, 209, 0)),
    linear-gradient(170deg, rgba(241, 234, 224, 0.9), rgba(234, 217, 209, 0.45));
}

.areas-figure svg {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  /* sketch-style fade at the ankles */
  -webkit-mask-image: linear-gradient(to bottom, #000 86%, transparent 97%);
  mask-image: linear-gradient(to bottom, #000 86%, transparent 97%);
}

.areas-figure svg ellipse,
.areas-figure svg path {
  fill: rgba(234, 217, 209, 0.4);
  stroke: rgba(46, 70, 60, 0.45);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.zone-dots {
  position: absolute;
  inset: 1.5rem 1rem;
}

.zone-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  margin: -6px;
  border-radius: 50%;
  background: var(--ground);
  border: 1.5px solid var(--pine);
  box-shadow: 0 0 0 3px rgba(250, 247, 241, 0.75);
  transition: transform 160ms ease-out, background-color 160ms ease-out, box-shadow 160ms ease-out;
}

.zone-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--pine);
  opacity: 0.55;
  transition: opacity 160ms ease-out;
}

.zone-dot.is-active {
  background: var(--pine);
  transform: scale(1.35);
  box-shadow: 0 0 0 5px rgba(46, 70, 60, 0.14);
}
.zone-dot.is-active::after { opacity: 0; }

.area-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
}

.area-menu li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 0.5rem;
  border-bottom: 1px solid var(--hairline);
  border-radius: 8px 8px 0 0;
  transition: background-color 160ms ease-out;
}

.area-menu li.is-active { background: rgba(46, 70, 60, 0.06); }
.area-menu li.is-active .area-name { color: var(--pine); }

.area-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.area-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--pine);
  background: rgba(46, 70, 60, 0.09);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  white-space: nowrap;
}

.areas-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 46rem;
  margin: 2.5rem auto 0;
}
.areas-note strong { color: var(--ink); }

@media (max-width: 680px) {
  .areas-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .areas-figure { max-width: 220px; margin: 0 auto; }
  .zone-dot { width: 11px; height: 11px; margin: -5.5px; }
}

/* ---------- Who this is for ---------- */

.who {
  background: var(--blush);
}

.who-inner {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.who p { color: #4A3F3A; }
.who-copy p:last-child { margin-bottom: 0; }

.who-media {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.who-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3.5;
  object-fit: cover;
  object-position: 60% 40%;
  display: block;
}

@media (max-width: 760px) {
  .who-inner { grid-template-columns: 1fr; text-align: center; }
  .who-media img { aspect-ratio: 4 / 3; object-position: 72% 30%; }

  /* Comfortable thumb targets for the form chips */
  .chip span { padding: 0.7rem 1.2rem; font-size: 0.95rem; }
}

/* ---------- Lead form ---------- */

.claim-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.claim-intro { position: sticky; top: 6rem; }
.claim-intro p { color: var(--ink-soft); max-width: 38ch; }
.claim-intro .qualifier { margin-top: 1.25rem; }

.claim-media {
  margin: 2.25rem 0 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  max-width: 24rem;
}
.claim-media img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  /* Stacked layout: keep the form within one thumb-scroll of the intro */
  .claim-media { display: none; }
}

.lead-form,
.form-success {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.2rem;
  margin-bottom: 1.9rem;
}

.field { display: flex; flex-direction: column; gap: 0.4rem; }

.field label {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.field input {
  font: inherit;
  color: var(--ink);
  background: var(--ground);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-field);
  padding: 0.8rem 1rem;
  transition: border-color 150ms ease-out, box-shadow 150ms ease-out;
}
.field input::placeholder { color: var(--ink-soft); }
.field input:focus {
  outline: none;
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(46, 70, 60, 0.14);
}
.field input.is-invalid { border-color: #A6483C; }

.choice-group {
  border: 0;
  margin: 0 0 1.9rem;
  padding: 0;
}
.choice-group.is-invalid legend { color: #A6483C; }

.choice-group legend {
  font-size: 0.98rem;
  font-weight: 700;
  padding: 0;
  margin-bottom: 0.9rem;
  line-height: 1.45;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.chips-stack { flex-direction: column; align-items: flex-start; }

.chip { position: relative; display: inline-flex; }

.chip input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.chip span {
  display: inline-block;
  font-size: 0.94rem;
  font-weight: 500;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  background: var(--ground);
  transition: background-color 140ms ease-out, border-color 140ms ease-out, color 140ms ease-out;
}

.chip:hover span { border-color: var(--pine-soft); }

.chip input:checked + span {
  background: var(--pine);
  border-color: var(--pine);
  color: var(--on-pine);
  font-weight: 600;
}

.chip input:focus-visible + span {
  outline: 2px solid var(--pine);
  outline-offset: 2px;
}

.form-error {
  color: #A6483C;
  font-weight: 600;
  font-size: 0.95rem;
  margin: -0.5rem 0 1.2rem;
}

.btn-submit { width: 100%; border: 0; font-size: 1.05rem; }
.btn-submit[disabled] { opacity: 0.6; cursor: wait; transform: none; }

.consent {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 1.1rem 0 0;
}

.form-success { text-align: center; padding-top: 3.5rem; padding-bottom: 3.5rem; }
.form-success h3 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.form-success p { color: var(--ink-soft); max-width: 40ch; margin: 0 auto; }

@media (max-width: 900px) {
  .claim-inner { grid-template-columns: 1fr; }
  .claim-intro { position: static; text-align: center; }
  .claim-intro p { margin-left: auto; margin-right: auto; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */

.faq { background: var(--sand); border-top: 1px solid var(--hairline); }

.faq h2 { text-align: center; margin-bottom: 2.75rem; }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-list details {
  border-bottom: 1px solid var(--hairline);
}
.faq-list details:first-child { border-top: 1px solid var(--hairline); }

.faq-list summary {
  font-family: var(--font-display);
  font-size: 1.14rem;
  line-height: 1.4;
  padding: 1.15rem 2.5rem 1.15rem 0.25rem;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--pine);
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 200ms ease-out;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-list details p {
  padding: 0 2.5rem 1.4rem 0.25rem;
  margin: 0;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* ---------- Final CTA ---------- */

.final {
  background: var(--pine);
  color: var(--on-pine);
  text-align: center;
}

.final-inner { max-width: 640px; margin: 0 auto; }

.final h2 { color: var(--on-pine); }
.final p { color: var(--on-pine-soft); margin-bottom: 2rem; }

.qualifier-light { color: var(--on-pine-soft); margin-top: 1.1rem; }

/* ---------- Footer ---------- */

.site-footer {
  padding: 3rem var(--pad-x);
  text-align: center;
  border-top: 1px solid var(--hairline);
}

@media (max-width: 760px) {
  /* Leave room for the sticky CTA bar */
  .site-footer { padding-bottom: 7.5rem; }
}

.footer-logo { margin: 0 auto 1.5rem; }
.footer-logo img {
  width: 158px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.footer-contact a { color: var(--ink); font-weight: 600; text-decoration: none; }
.footer-contact a:hover { color: var(--pine); }

.footer-locations { margin-top: 0.75rem; }
.footer-locations p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0.25rem 0;
}
.footer-locations strong { color: var(--ink); font-weight: 600; }

.footer-disclaimer {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 1.25rem auto;
}

.footer-links { font-size: 0.85rem; display: flex; justify-content: center; gap: 1.5rem; margin: 0; }
.footer-links a { color: var(--ink-soft); }

/* ---------- Sticky mobile CTA ---------- */

.sticky-cta[hidden] { display: none !important; }

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.1rem calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(250, 247, 241, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--hairline);
  transform: translateY(105%);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-cta.is-visible { transform: translateY(0); }

.sticky-cta-text {
  font-family: var(--font-display);
  font-size: 1.02rem;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .sticky-cta { display: flex; }
}

/* ---------- Legal page (privacy.html) ---------- */

.legal-main {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad-x) 4rem;
}

.legal-main h1 { margin-bottom: 0.25rem; }

.legal-updated {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.legal-main h2 {
  font-size: 1.35rem;
  margin: 2.25rem 0 0.75rem;
}

.legal-main p { max-width: 65ch; }

.brand-stack a,
a.brand-stack { display: block; }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-copy > *, .hero-media { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
