:root {
  --cream: #f4efe4;
  --cream-2: #ece6d8;
  --paper: #fefcf8;
  --forest: #1c2e22;
  --forest-2: #2a4034;
  --forest-ink: #0f1c14;
  --terracotta: #c66a3f;
  --terracotta-2: #b35a30;
  --taupe: #8a7e6e;
  --rule: #d8d0bf;
  --sun: #e9b770;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--forest-ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

.mono { font-family: 'Geist Mono', ui-monospace, monospace; font-feature-settings: normal; }
.serif-it { font-family: 'Newsreader', Georgia, serif; font-style: italic; font-weight: 300; }

/* ---------- Layout ---------- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

section { padding: 96px 0; border-top: 1px solid var(--rule); }
section.tight { padding: 64px 0; }
section.flush { border-top: none; }

.eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--taupe);
}

h1, h2, h3 { margin: 0; letter-spacing: -0.02em; font-weight: 500; }
h1 { font-size: clamp(46px, 7vw, 96px); line-height: 0.98; letter-spacing: -0.035em; font-weight: 400; }
h2 { font-size: clamp(34px, 4.5vw, 56px); line-height: 1.04; letter-spacing: -0.025em; }
h3 { font-size: 22px; line-height: 1.2; font-weight: 500; }
p { margin: 0; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 228, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.header.scrolled { border-bottom-color: var(--rule); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--forest-ink);
}
.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--forest);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-mark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--cream);
}
.logo-mark::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--terracotta);
  border-radius: 50%;
  top: 6px;
  left: 8px;
}
.logo-word {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.logo-word .helio { color: var(--forest-ink); }
.logo-word .verge { color: var(--terracotta); }

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  color: var(--forest-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}
.nav a:hover { color: var(--terracotta); }
@media (max-width: 780px) { .nav .nav-link { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: transform 0.15s, background 0.15s, color 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover { background: var(--forest-ink); }
.btn-accent {
  background: var(--terracotta);
  color: var(--paper);
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 6px 18px -8px rgba(198, 106, 63, 0.55);
}
.btn-accent:hover { background: var(--terracotta-2); }
.btn-ghost {
  background: transparent;
  color: var(--forest-ink);
  border-color: var(--rule);
}
.btn-ghost:hover { background: rgba(28, 46, 34, 0.04); }
.btn-lg { padding: 16px 24px; font-size: 15px; }
.btn-arrow {
  width: 14px;
  height: 14px;
  display: inline-block;
}

/* ---------- Hero ---------- */
.hero { padding: 64px 0 96px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
.hero-title-line { display: block; }
.hero-title .accent {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta);
  letter-spacing: -0.01em;
}
.hero-sub {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--forest);
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.hero-meta-item {
  font-size: 13px;
}
.hero-meta-label {
  display: block;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 4px;
}
.hero-meta-val { color: var(--forest-ink); font-weight: 500; }

.hero-photo {
  position: relative;
  aspect-ratio: 5 / 4;
  background: var(--forest);
  border-radius: 8px;
  overflow: hidden;
}
.hero-photo img,
.bundle-photo img,
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 12px;
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.04em;
  color: var(--forest);
  margin-bottom: 28px;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4a8a5e;
  position: relative;
}
.live-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(74, 138, 94, 0.35);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ---------- Photo placeholders ---------- */
.photo-ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 8px, transparent 8px 16px),
    linear-gradient(180deg, var(--forest-2), var(--forest));
  color: rgba(244, 239, 228, 0.78);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.photo-ph.light {
  background:
    repeating-linear-gradient(135deg, rgba(28,46,34,0.04) 0 8px, transparent 8px 16px),
    linear-gradient(180deg, var(--cream-2), var(--rule));
  color: var(--forest);
}
.photo-ph-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  background: rgba(0,0,0,0.18);
  padding: 6px 10px;
  border-radius: 4px;
  text-transform: lowercase;
}
.photo-ph.light .photo-ph-tag { background: rgba(28,46,34,0.06); }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  background: var(--cream);
  padding: 18px 0;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--taupe);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marq 40s linear infinite;
  width: max-content;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 12px; }
.marquee-track span::after {
  content: "✦";
  color: var(--terracotta);
  margin-left: 48px;
}
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- How it works ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 880px) {
  .section-head { grid-template-columns: 1fr 1fr; gap: 96px; align-items: end; }
}
.section-head-sub { color: var(--forest); max-width: 480px; font-size: 17px; }

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--cream);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
}
.step-num {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--taupe);
}
.step-title { font-size: 26px; line-height: 1.1; letter-spacing: -0.02em; font-weight: 500; }
.step-body { color: var(--forest); font-size: 15px; margin-top: auto; }

/* ---------- Bundle ---------- */
.bundle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 880px) { .bundle-grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; } }
.bundle-card {
  background: var(--forest);
  color: var(--cream);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.bundle-card h2 { color: var(--cream); }
.bundle-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 28px 0 0;
}
.bundle-card .price {
  font-size: 76px;
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: 400;
}
.bundle-card .price-foot { color: rgba(244, 239, 228, 0.7); font-size: 14px; }
.bundle-card ul {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
}
.bundle-card li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(244, 239, 228, 0.92);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244, 239, 228, 0.1);
}
.bundle-card li:last-child { border-bottom: none; padding-bottom: 0; }
.bundle-card li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
}
.bundle-sun {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 183, 112, 0.35), transparent 60%);
  pointer-events: none;
}
.bundle-photo {
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
}

/* ---------- Service area ---------- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 920px) { .area-grid { grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; } }
.area-list { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.area-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 16px;
}
.area-row.excluded { color: var(--taupe); text-decoration: line-through; text-decoration-color: rgba(138, 126, 110, 0.4); }
.area-row .area-meta { font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--taupe); }

.map {
  position: relative;
  aspect-ratio: 4 / 3.2;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.map-pin {
  position: absolute;
  top: 42%;
  left: 50.5%;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translate(0, -50%);
  pointer-events: none;
}
.map-pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--forest);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 1px var(--forest), 0 2px 6px rgba(0,0,0,0.25);
  flex-shrink: 0;
  position: relative;
}
.map-pin-dot::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(28, 46, 34, 0.15);
  animation: pulse 2.4s ease-out infinite;
  z-index: -1;
}
.map-pin-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest-ink);
  background: rgba(254, 252, 248, 0.92);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--rule);
  white-space: nowrap;
}
.map-caption {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(254, 252, 248, 0.85);
  padding: 5px 9px;
  border-radius: 4px;
  border: 1px solid var(--rule);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 880px) { .about-grid { grid-template-columns: 0.9fr 1.1fr; gap: 80px; } }
.about-photo { aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden; background: #0a0a0a; }
.about-photo img { object-position: center top; }
.about-body { font-size: 18px; line-height: 1.55; color: var(--forest); }
.about-body p + p { margin-top: 20px; }
.about-pull {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.25;
  color: var(--forest-ink);
  margin: 32px 0;
  padding-left: 24px;
  border-left: 2px solid var(--terracotta);
}
.about-sig {
  margin-top: 32px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--taupe);
  text-transform: uppercase;
}

/* ---------- Testimonials ---------- */
.tess-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 760px) { .tess-grid { grid-template-columns: repeat(3, 1fr); } }
.tess-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 260px;
  position: relative;
}
.tess-quote {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.35;
  color: var(--forest-ink);
  flex: 1;
}
.tess-attr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.tess-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    repeating-linear-gradient(45deg, rgba(28,46,34,0.05) 0 4px, transparent 4px 8px),
    var(--cream-2);
  flex-shrink: 0;
}
.tess-name { font-size: 13px; font-weight: 500; }
.tess-meta { font-size: 12px; color: var(--taupe); font-family: 'Geist Mono', monospace; }
.tess-stars { color: var(--terracotta); letter-spacing: 2px; font-size: 14px; }
.tess-note {
  margin-top: 20px;
  background: var(--cream-2);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--forest);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tess-note .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-top: 6px;
  flex-shrink: 0;
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 880px) { .faq-grid { grid-template-columns: 0.7fr 1.3fr; gap: 80px; align-items: start; } }
.faq-list { border-top: 1px solid var(--forest-ink); }
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font: inherit;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--forest-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  font-weight: 500;
}
.faq-q:hover { color: var(--terracotta); }
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.25s;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.faq-icon::before { top: 9.5px; left: 0; right: 0; height: 1px; }
.faq-icon::after { left: 9.5px; top: 0; bottom: 0; width: 1px; transition: transform 0.25s; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--forest);
  font-size: 16px;
  line-height: 1.55;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 24px; max-width: 640px; }

/* ---------- Booking ---------- */
.book {
  background: var(--forest);
  color: var(--cream);
}
.book h2 { color: var(--cream); }
.book .eyebrow { color: rgba(244, 239, 228, 0.6); }
.book .eyebrow::before { background: rgba(244, 239, 228, 0.4); }

.book-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 980px) { .book-grid { grid-template-columns: 0.95fr 1.05fr; gap: 80px; } }

.book-side h2 { font-size: clamp(36px, 4.5vw, 54px); }
.book-side p {
  margin-top: 24px;
  font-size: 17px;
  color: rgba(244, 239, 228, 0.78);
  max-width: 440px;
}
.book-side-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  gap: 18px;
}
.book-side-list li {
  display: flex;
  gap: 14px;
  font-size: 15px;
  color: rgba(244, 239, 228, 0.85);
}
.book-side-list li::before {
  content: "→";
  color: var(--terracotta);
}

.book-card {
  background: var(--paper);
  color: var(--forest-ink);
  border-radius: 16px;
  padding: 36px;
  position: relative;
}
@media (max-width: 600px) { .book-card { padding: 24px; } }

.book-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}
.book-progress-step {
  flex: 1;
  height: 3px;
  background: var(--rule);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.book-progress-step.done { background: var(--forest); }
.book-progress-step.active { background: var(--rule); }
.book-progress-step.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--forest);
  transform-origin: left;
  animation: progress 0.5s ease forwards;
}
@keyframes progress { from { transform: scaleX(0); } to { transform: scaleX(0.5); } }

.book-step-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--taupe);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.book-step-title {
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 28px;
}

.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
}
.field .hint { font-size: 12px; color: var(--taupe); font-family: 'Geist Mono', monospace; }
.field input, .field select, .field textarea {
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--cream);
  color: var(--forest-ink);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--forest);
  background: var(--paper);
}
.field.err input, .field.err select { border-color: var(--terracotta-2); background: rgba(198, 106, 63, 0.05); }
.field-err {
  font-size: 12px;
  color: var(--terracotta-2);
  font-family: 'Geist Mono', monospace;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

.time-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 520px) { .time-grid { grid-template-columns: repeat(3, 1fr); } }
.time-btn {
  padding: 16px 12px;
  border: 1px solid var(--rule);
  background: var(--paper);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s;
}
.time-btn:hover { border-color: var(--forest); }
.time-btn.selected {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.time-btn .day {
  display: block;
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--taupe);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.time-btn.selected .day { color: rgba(244, 239, 228, 0.65); }

.consent {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  background: var(--cream-2);
  border-radius: 8px;
  align-items: flex-start;
}
.consent input { margin-top: 3px; accent-color: var(--forest); flex-shrink: 0; }
.consent label {
  font-size: 12.5px;
  color: var(--forest);
  line-height: 1.5;
}
.consent a { color: var(--forest-ink); text-decoration: underline; }

/* SMS consent block — A2P verification compliance: ≥14px, normal contrast */
.consent-block {
  margin-top: 28px;
  padding: 20px 22px;
  gap: 14px;
  background: var(--cream);
  border: 1px solid var(--rule);
}
.consent-block input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
}
.consent-block label {
  font-size: 14px;
  line-height: 1.55;
  color: var(--forest-ink);
  cursor: pointer;
}
.consent-block a {
  color: var(--forest-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-block a:hover { color: var(--terracotta); }

/* Required-field asterisk */
.req {
  color: #b34c2a;
  font-weight: 600;
  margin-left: 2px;
}

/* Honeypot field — invisible to users, picked up by bots */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Contact form layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 980px) { .contact-grid { grid-template-columns: 0.95fr 1.05fr; gap: 80px; } }
.contact-title {
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 24px;
}
.contact-submit { margin-top: 24px; }
.contact-submit .btn { width: 100%; justify-content: center; }
@media (min-width: 520px) { .contact-submit .btn { width: auto; } }

.contact-direct {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 239, 228, 0.15);
}
.contact-direct-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.5);
  margin-bottom: 12px;
}
.contact-direct-line {
  display: block;
  color: var(--cream);
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 4px;
}
.contact-direct-line:hover { color: var(--terracotta); }

.book-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 12px;
}
.book-back {
  background: none;
  border: none;
  color: var(--taupe);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.book-back:hover { color: var(--forest-ink); }
.book-back:disabled { visibility: hidden; }

.book-success {
  text-align: center;
  padding: 24px 0;
}
.book-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.book-success-icon::after {
  content: "";
  width: 22px;
  height: 12px;
  border-left: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  transform: rotate(-45deg) translate(2px, -3px);
}
.book-success h3 { font-size: 28px; letter-spacing: -0.02em; margin-bottom: 12px; font-weight: 500; }
.book-success p { color: var(--forest); font-size: 15px; max-width: 360px; margin: 0 auto; }
.book-success-summary {
  margin-top: 28px;
  padding: 20px;
  background: var(--cream);
  border-radius: 10px;
  text-align: left;
  display: grid;
  gap: 10px;
  font-size: 14px;
}
.book-success-summary .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.book-success-summary .k {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--taupe);
  text-transform: uppercase;
}
.book-success-summary .v { font-weight: 500; }

/* ---------- Footer ---------- */
.footer {
  background: var(--forest-ink);
  color: rgba(244, 239, 228, 0.7);
  padding: 64px 0 32px;
  font-size: 14px;
}
.footer a { color: var(--cream); text-decoration: none; }
.footer a:hover { color: var(--terracotta); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(244, 239, 228, 0.12);
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-col h4 {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.5);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-brand .logo-word .helio { color: var(--cream); }
.footer-brand p { margin-top: 16px; max-width: 320px; line-height: 1.6; }
.footer-bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(244, 239, 228, 0.45);
}

/* ---------- Stub pages ---------- */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 32px 120px;
}
.legal-wrap h1 { font-size: 56px; margin-bottom: 24px; font-weight: 400; }
.legal-wrap h2 { font-size: 22px; margin-top: 40px; margin-bottom: 12px; font-weight: 500; }
.legal-wrap p, .legal-wrap li { font-size: 15.5px; line-height: 1.6; color: var(--forest); margin: 8px 0; }
.legal-wrap .updated {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--taupe);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.legal-wrap a { color: var(--terracotta); }
