:root {
  --bg: #f4f2eb;
  --paper: #ffffff;
  --ink: #11221a;
  --muted: #4b5f54;
  --line: #d4ddd6;
  --brand: #0f6b3f;
  --brand-strong: #0a4b2c;
  --accent: #f6b21e;
  --danger: #9f2d2d;
  --radius: 16px;
  --shadow: 0 16px 34px rgba(7, 29, 18, 0.13);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.5;
  background:
    radial-gradient(circle at 0% 0%, #efe9db 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, #e4efe7 0%, transparent 35%),
    var(--bg);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  margin: 0 0 12px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 12px;
}

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

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 999;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(8px);
  background: rgba(244, 242, 235, 0.9);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
}

.positioning {
  font-weight: 700;
  color: var(--brand-strong);
  margin: 0;
  max-width: 760px;
}

.call-link {
  flex-shrink: 0;
  font-weight: 700;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.hero {
  padding: 44px 0 30px;
}

.hero-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  background: #e6f0ea;
  border: 1px solid #bfd4c7;
  color: var(--brand-strong);
  border-radius: 999px;
  padding: 6px 11px;
  font-weight: 700;
  font-size: 0.9rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 16ch;
}

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--brand);
  padding: 11px 14px;
  font-weight: 700;
  text-decoration: none;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--brand);
}

.trust-bar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.trust-bar p {
  margin: 0 0 10px;
  padding-left: 14px;
  border-left: 4px solid var(--accent);
  font-weight: 600;
}

.trust-bar p:last-child {
  margin-bottom: 0;
}

.section {
  padding: 56px 0;
}

.section-light {
  background: #f8f8f5;
  border-block: 1px solid var(--line);
}

.kpi-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.kpi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  min-height: 130px;
  display: flex;
  align-items: flex-end;
}

.kpi-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.knife-line {
  margin-top: 18px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--danger);
}

.calc-line {
  margin-top: 8px;
  background: #fff6e2;
  border: 1px solid #f2d696;
  border-radius: 12px;
  padding: 10px 12px;
  display: inline-block;
}

.two-col {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.2fr 0.8fr;
}

.tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.tile-label {
  font-weight: 700;
  color: var(--brand-strong);
  margin-bottom: 8px;
}

.tile-copy {
  font-weight: 700;
  font-size: 1.12rem;
  margin: 0;
}

.list {
  margin: 0 0 14px;
  padding-left: 20px;
}

.list li {
  margin-bottom: 7px;
}

.note {
  margin: 0;
  font-weight: 700;
}

.flow {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  min-height: 172px;
}

.step-card::after {
  content: "->";
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  color: #6a7f73;
  font-weight: 700;
}

.step-card:last-child::after {
  content: "";
}

.step-label {
  color: var(--brand-strong);
  font-weight: 700;
  margin-bottom: 8px;
}

.eeat-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: start;
}

.faq-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item h3 {
  margin-bottom: 8px;
}

.proof-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.sample-preview {
  background:
    linear-gradient(145deg, #ffffff 0%, #f2f8f4 100%);
}

.pricing {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  max-width: 780px;
  box-shadow: var(--shadow);
}

.close-list {
  margin-bottom: 16px;
}

.checklist-card,
.script-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.booking-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 360px;
  align-items: start;
}

.positioning-inline {
  font-weight: 700;
  color: var(--brand-strong);
}

.calendar-frame {
  width: 100%;
  min-height: 760px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.lead-form {
  position: sticky;
  top: 90px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.lead-form h3 {
  margin-bottom: 8px;
}

.lead-form label {
  font-weight: 700;
  display: block;
  margin: 12px 0 6px;
}

.lead-form input {
  width: 100%;
  border: 1px solid #b8c4bc;
  border-radius: 10px;
  padding: 11px 10px;
  font: inherit;
}

.lead-form .btn {
  width: 100%;
  margin-top: 14px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .hero-grid,
  .kpi-grid,
  .flow,
  .eeat-grid,
  .faq-grid,
  .proof-grid,
  .booking-grid,
  .two-col {
    grid-template-columns: 1fr 1fr;
  }

  .flow .step-card:nth-child(2)::after,
  .flow .step-card:nth-child(4)::after {
    content: "";
  }
}

@media (max-width: 760px) {
  .hero-grid,
  .kpi-grid,
  .flow,
  .eeat-grid,
  .faq-grid,
  .proof-grid,
  .booking-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10px 0;
    min-height: 0;
  }

  .call-link {
    font-size: 0.95rem;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    text-align: center;
  }

  .lead-form {
    position: static;
  }

  .calendar-frame {
    min-height: 700px;
  }

  .step-card::after {
    content: "";
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
