/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --green:       #2d6b2d;
  --green-mid:   #3d8a3d;
  --green-light: #5aaa5a;
  --green-pale:  #e8f2e8;
  --earth:       #f2ede4;
  --earth-dark:  #e0d9cc;
  --ink:         #18180f;
  --ink-mid:     #38382a;
  --ink-light:   #6a6a58;
  --cream:       #faf8f3;
  --white:       #ffffff;
  --accent:      #c84a1a;
  --font-d:      'Playfair Display', Georgia, serif;
  --font-b:      'Source Serif 4', Georgia, serif;
  --max:         960px;
  --vpad:        clamp(3.5rem, 8vw, 6rem);
  --hpad:        clamp(1.5rem, 5vw, 3rem);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; object-fit: cover; }
a { color: inherit; }
button { font-family: var(--font-b); cursor: pointer; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--hpad); }
.section    { padding: var(--vpad) 0; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(24,24,15,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(90,170,90,0.15);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0.8rem var(--hpad);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none; color: var(--green-light);
  font-family: var(--font-b); font-size: 0.85rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 300;
}
.nav-cta {
  background: var(--green); color: var(--cream);
  border: 1px solid var(--green-mid);
  padding: 0.55rem 1.3rem; font-size: 0.85rem;
  letter-spacing: 0.03em; transition: background 0.2s;
}
.nav-cta:hover { background: var(--green-mid); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--cream); transition: all 0.25s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-drawer {
  display: none; flex-direction: column;
  background: var(--ink); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem var(--hpad) 1.5rem;
}
.nav-drawer.open { display: flex; }
.drawer-link { color: var(--cream); text-decoration: none; padding: 0.6rem 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.drawer-cta {
  margin-top: 1rem; background: var(--green); color: var(--cream);
  border: none; padding: 0.85rem 1.5rem; font-size: 1rem;
  min-height: 44px; text-align: left;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--cream);
  padding: 6rem var(--hpad) 4rem;
}
.hero-video-wrap {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-video {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55) saturate(0.7);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(18,24,12,0.55) 0%, rgba(18,24,12,0.35) 50%, rgba(18,24,12,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px; margin: 0 auto;
  animation: fadeUp 0.9s ease both;
}
.hero-logo-lockup {
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
  margin-bottom: 2rem;
}
.hero-brand {
  font-family: var(--font-b); font-size: 0.85rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-light);
}
h1 {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.08; margin-bottom: 1rem; color: var(--cream);
}
h1 em { font-style: italic; color: var(--green-light); }
.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 300;
  color: rgba(250,248,243,0.8); margin-bottom: 2.2rem;
}
.btn-hero {
  background: var(--green); color: var(--cream);
  border: 2px solid var(--green-mid);
  padding: 0.95rem 2.4rem; font-size: 1rem; letter-spacing: 0.03em;
  transition: background 0.2s; min-height: 44px;
}
.btn-hero:hover { background: var(--green-mid); }
.btn-hero s { opacity: 0.5; font-size: 0.82em; margin-left: 0.4em; }
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); animation: fadeUp 1.2s ease 0.6s both;
}

/* ── SECTION HEADINGS ─────────────────────────────────────── */
h2 {
  font-family: var(--font-d); font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.12; margin-bottom: 1.2rem; color: var(--ink);
}
.kicker {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green); font-weight: 300; margin-bottom: 0.7rem;
  font-family: var(--font-b);
}
p + p { margin-top: 1rem; }

/* ── SPLIT GRID ───────────────────────────────────────────── */
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.split-grid--rev .split-image { order: -1; }
.split-text p { color: var(--ink-mid); max-width: 480px; }
.split-image img { width: 100%; height: 420px; object-fit: cover; }

/* ── CHECKLIST ────────────────────────────────────────────── */
.checklist {
  list-style: none; margin-top: 1.2rem;
}
.checklist li {
  padding: 0.4rem 0 0.4rem 1.6rem; position: relative;
  color: var(--ink-mid); font-size: 0.95rem;
  border-bottom: 1px solid var(--earth-dark);
}
.checklist li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--green); font-size: 0.9rem;
}

/* ── STAT BAND ────────────────────────────────────────────── */
.stat-band {
  background: var(--ink); color: var(--cream);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  border-top: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
}
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--font-d); font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--green-light);
  line-height: 1.1; margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.85rem; color: rgba(250,248,243,0.65); line-height: 1.4; }

/* ── CTA BREAKS ───────────────────────────────────────────── */
.cta-break {
  background: var(--ink); color: var(--cream);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}
.cta-break--light { background: var(--earth); color: var(--ink); }
.cta-break--light p { color: var(--ink-mid); }
.cta-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.cta-row p { font-size: clamp(1.05rem, 2vw, 1.4rem); font-weight: 300; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-solid {
  background: var(--green); color: var(--cream);
  border: 2px solid var(--green-mid); padding: 0.85rem 2rem;
  font-size: 0.95rem; letter-spacing: 0.03em; transition: background 0.2s;
  min-height: 44px;
}
.btn-solid:hover { background: var(--green-mid); }
.btn-solid.btn-lg { padding: 1rem 2.8rem; font-size: 1.05rem; }
.btn-outline {
  background: transparent; color: var(--cream);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 0.85rem 2rem; font-size: 0.95rem; transition: border-color 0.2s, color 0.2s;
  min-height: 44px;
}
.btn-outline:hover { border-color: var(--green-light); color: var(--green-light); }
.btn-text {
  background: none; border: none; color: var(--green);
  font-size: 0.95rem; padding: 0; margin-top: 1.2rem;
  text-decoration: underline; text-underline-offset: 3px;
  min-height: 44px; display: inline-flex; align-items: center;
}
.btn-text:hover { color: var(--green-mid); }

/* ── IMAGE STRIP ──────────────────────────────────────────── */
.image-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; overflow: hidden;
}
.image-strip img { height: 280px; width: 100%; transition: transform 0.4s ease; }
.image-strip img:hover { transform: scale(1.04); }

/* ── HONEST BOX ───────────────────────────────────────────── */
.honest { background: var(--earth); border-top: 3px solid var(--green); }
.honest-box { max-width: 660px; }
.honest-box p { color: var(--ink-mid); }
.honest-box .btn-solid { margin-top: 1.8rem; }

/* ── EXAMPLE ──────────────────────────────────────────────── */
.example-card { margin-top: 1.5rem; }
.example-link-wrap { display: block; position: relative; overflow: hidden; }
.example-link-wrap img { width: 100%; height: 420px; transition: transform 0.4s ease; }
.example-link-wrap:hover img { transform: scale(1.02); }
.example-hover {
  position: absolute; inset: 0;
  background: rgba(18,24,12,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.example-link-wrap:hover .example-hover { opacity: 1; }
.example-hover span {
  color: var(--cream); font-size: 1.1rem; font-family: var(--font-d);
  font-weight: 700; letter-spacing: 0.02em;
}
.example-caption {
  margin-top: 0.8rem; font-size: 0.9rem; color: var(--ink-mid);
}
.example-caption a {
  color: var(--green); text-decoration: underline;
  text-underline-offset: 3px; margin-left: 0.5rem;
}

/* ── STEPS ────────────────────────────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2rem;
}
.step { border-top: 3px solid var(--green); padding-top: 1.2rem; }
.step-num {
  display: block; font-family: var(--font-d); font-weight: 900;
  font-size: 2.2rem; color: var(--green-pale);
  -webkit-text-stroke: 2px var(--green); line-height: 1;
  margin-bottom: 0.6rem;
}
.step h3 {
  font-family: var(--font-d); font-size: 1.15rem; font-weight: 700;
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.92rem; color: var(--ink-mid); }

/* ── LANDSCAPE BREAK ──────────────────────────────────────── */
.landscape-break {
  position: relative; height: 380px; overflow: hidden;
}
.landscape-break img { width: 100%; height: 100%; filter: brightness(0.6) saturate(0.8); }
.landscape-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.landscape-text p {
  font-family: var(--font-d); font-style: italic; font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--cream); text-align: center; max-width: 600px; padding: 0 2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* ── WHO IT'S FOR ─────────────────────────────────────────── */
.who-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5rem; margin-top: 2rem;
}
.who-item img { width: 100%; height: 200px; margin-bottom: 0.6rem; }
.who-item p { font-size: 0.88rem; color: var(--ink-mid); letter-spacing: 0.04em; }

/* ── FINAL CTA ────────────────────────────────────────────── */
.final-cta { background: var(--ink); color: var(--cream); text-align: center; }
.final-inner { max-width: 500px; margin: 0 auto; }
.final-cta h2 { color: var(--cream); margin-bottom: 0.6rem; }
.final-cta p { color: rgba(250,248,243,0.7); margin-bottom: 1.8rem; }

/* ── PRICE DISPLAY ────────────────────────────────────────── */
.price-display, .modal-price {
  display: flex; align-items: baseline; gap: 0.7rem;
  margin-bottom: 1.2rem; flex-wrap: wrap;
}
.p-now {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.5rem); color: var(--green-light);
}
.p-was {
  font-family: var(--font-d); font-size: 1.5rem;
  color: rgba(250,248,243,0.4); text-decoration: line-through;
}
.p-badge {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); font-weight: 300;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--ink); color: var(--ink-light);
  border-top: 3px solid var(--green);
  padding: 1.5rem 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.8rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-b); font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-light); font-weight: 300;
}
.footer p { font-size: 0.78rem; }

/* ── MODAL ────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(18,18,12,0.72);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--cream); width: 100%; max-width: 560px;
  max-height: 90svh; overflow-y: auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  transform: translateY(20px);
  transition: transform 0.25s ease;
  position: relative;
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.1rem;
  color: var(--ink-light); min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: var(--ink); }
.modal-title {
  font-family: var(--font-d); font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1.5rem; color: var(--ink);
}
.modal .p-was { color: rgba(24,24,15,0.35); }

/* ── FORM ─────────────────────────────────────────────────── */
.field { margin-bottom: 1.2rem; }
label {
  display: block; font-size: 0.88rem; font-weight: 400;
  color: var(--ink-mid); margin-bottom: 0.35rem;
}
.opt { font-style: italic; color: var(--ink-light); font-size: 0.8rem; }
input[type="text"], input[type="email"], textarea {
  width: 100%; padding: 0.65rem 0.85rem;
  font-family: var(--font-b); font-size: 0.95rem;
  color: var(--ink); background: var(--white);
  border: 1px solid var(--earth-dark);
  outline: none; border-radius: 0;
  transition: border-color 0.2s; -webkit-appearance: none;
}
input:focus, textarea:focus { border-color: var(--green); }
textarea { resize: vertical; }
.submit-btn {
  background: var(--green); color: var(--cream);
  border: 2px solid var(--green-mid);
  padding: 0.9rem 2.4rem; font-size: 1rem;
  letter-spacing: 0.04em; transition: background 0.2s;
  min-height: 44px; min-width: 44px; margin-top: 0.4rem;
}
.submit-btn:hover { background: var(--green-mid); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.form-note { margin-top: 0.8rem; font-size: 0.88rem; min-height: 1.2em; }
.form-note.ok  { color: var(--green); }
.form-note.err { color: var(--accent); }
.field--checks { display: flex; flex-direction: column; gap: 0.4rem; }
.check-label { font-size: 0.88rem; color: var(--ink-mid); }
.check-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; color: var(--ink-mid); cursor: pointer; min-height: 44px; }
.check-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--green); cursor: pointer; flex-shrink: 0; }

/* ── SCROLL REVEALS ───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE 900px ─────────────────────────────────────── */
@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; }
  .split-grid--rev .split-image { order: unset; }
  .split-image img { height: 300px; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .image-strip { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: repeat(2,1fr); }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .split-text p { max-width: 100%; }
}

/* ── RESPONSIVE 480px ─────────────────────────────────────── */
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .image-strip { grid-template-columns: 1fr 1fr; }
  .image-strip img { height: 180px; }
  .who-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .btn-hero, .btn-solid, .btn-outline { width: 100%; text-align: center; }
  .cta-row { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .example-link-wrap img { height: 220px; }
  .landscape-break { height: 260px; }
}
