:root {
  --cream: #fbf9f2;
  --white: #ffffff;
  --ink: #073c35;
  --green: #07845b;
  --green-dark: #056d4b;
  --lime: #e4f548;
  --line: #cdded5;
  --muted: #526b65;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: .96;
  letter-spacing: -.04em;
}
h1 { font-size: clamp(3.8rem, 8vw, 7.6rem); max-width: 760px; }
h2 { font-size: clamp(3rem, 6vw, 5.8rem); }
h3 { margin: .6rem 0 .25rem; font-size: 1.35rem; }
p { margin: 0; }

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font: 700 1rem/1 "DM Sans", Arial, sans-serif;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { filter: brightness(.96); transform: translateY(-1px); }
.button-small { min-height: 46px; padding: 0 22px; }
.text-link { font-weight: 700; text-underline-offset: 6px; }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid #1576d4;
  outline-offset: 3px;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--green);
  color: var(--white);
}
.hero-copy { padding: clamp(58px, 8vw, 126px) clamp(24px, 6vw, 96px); align-self: center; }
.eyebrow {
  margin-bottom: 22px;
  color: var(--green);
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero .eyebrow, .cta .eyebrow { color: var(--lime); }
.hero-text { max-width: 550px; margin-top: 28px; font-size: clamp(1.15rem, 2vw, 1.5rem); }
.hero-actions { display: flex; gap: 24px; align-items: center; margin-top: 36px; }
.hero-photo { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.trust { margin-top: 28px; font-weight: 700; }
.stars { color: #d77c00; letter-spacing: .08em; }
.hero .stars { color: var(--lime); }

.results {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: center;
  background: var(--white);
}
.results img { width: 100%; max-height: 810px; object-fit: cover; }
.results div { padding: clamp(44px, 7vw, 112px); }

.section { padding: clamp(80px, 10vw, 148px) clamp(24px, 6vw, 104px); }
.how { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.steps article { border-top: 2px solid var(--ink); padding-top: 22px; }
.steps span { color: var(--green); font-weight: 700; }
.steps p { color: var(--muted); }

.pricing { color: var(--white); background: var(--ink); }
.pricing .eyebrow { color: var(--lime); }
.price-grid { max-width: 1040px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 58px; }
.price-card { min-height: 220px; padding: 36px; border: 1px solid rgba(255,255,255,.35); border-radius: 28px; }
.price-card strong { display: block; margin-top: 24px; font: 700 clamp(3rem, 6vw, 5rem)/1 "Fraunces", Georgia, serif; }
.price-card.featured { color: var(--ink); background: var(--lime); border-color: var(--lime); }

.booking { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(42px, 8vw, 120px); align-items: start; }
.booking-copy { position: sticky; top: 30px; }
.booking-copy p:last-child { max-width: 480px; margin-top: 28px; font-size: 1.18rem; }
.booking-form { display: grid; gap: 19px; }
.booking-form label { display: grid; gap: 8px; font-weight: 700; }
.booking-form label span { color: var(--muted); font-weight: 500; }
input, select, textarea {
  width: 100%;
  border: 1px solid #9db9aa;
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--white);
  font: 500 1rem/1.3 "DM Sans", Arial, sans-serif;
}
textarea { resize: vertical; }
.booking-form .button { justify-self: start; margin-top: 7px; }
.booking-form .button[disabled] { cursor: wait; opacity: .82; transform: none; }
.spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(7, 60, 53, .25);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.booking-form.is-loading .button-label { display: none; }
.booking-form.is-loading .spinner { display: block; }
.form-help { color: var(--muted); font-size: .92rem; }
.form-error { color: #a22525; font-weight: 700; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
@keyframes spin { to { transform: rotate(360deg); } }

.reviews { background: var(--white); }
.review-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 58px; }
blockquote { margin: 0; padding: 34px; border: 1px solid var(--line); border-radius: 26px; }
blockquote p { margin: 24px 0 28px; font: 600 1.25rem/1.45 "Fraunces", Georgia, serif; }
blockquote cite { color: var(--muted); font-style: normal; }

.cta { padding: clamp(90px, 12vw, 170px) 24px; text-align: center; color: var(--white); background: var(--green); }
.cta h2 { max-width: 1000px; margin: auto; }
.cta .button { margin-top: 42px; }

footer { min-height: 130px; padding: 20px clamp(24px, 6vw, 104px); display: flex; align-items: center; justify-content: space-between; }
.footer-logo { width: 104px; height: 82px; object-fit: contain; mix-blend-mode: multiply; }

.success-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; color: var(--white); background: var(--green); text-align: center; }
.success-card { max-width: 760px; }
.success-card .eyebrow { color: var(--lime); }
.success-card p:not(.eyebrow) { margin: 28px auto 36px; font-size: 1.2rem; }
.success-card .button { min-width: 170px; }

@media (max-width: 900px) {
  .hero, .results, .booking { grid-template-columns: 1fr; }
  .hero-copy { min-height: 570px; }
  .hero-photo { min-height: 520px; }
  .results div { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .booking-copy { position: static; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { min-height: auto; }
  .hero-copy { min-height: 520px; padding: 64px 22px; }
  h1 { font-size: clamp(3.25rem, 16vw, 5rem); }
  h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-photo { min-height: 450px; }
  .results div { padding: 64px 24px; }
  .section { padding: 78px 22px; }
  .price-grid, .review-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 180px; }
  .review-heading { align-items: flex-start; flex-direction: column; }
  blockquote { padding: 26px; }
  .booking-form .button { width: 100%; }
  footer { gap: 24px; }
}