:root {
  --ink: #17231c;
  --muted: #5b6a60;
  --paper: #ffffff;
  --soft: #f3f8f1;
  --line: #dce8dc;
  --green: #15583b;
  --green-2: #24764f;
  --lawn: #78c143;
  --yellow: #f5c84b;
  --red: #c83232;
  --sky: #dceff2;
  --shadow: 0 18px 50px rgba(21, 88, 59, 0.13);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  overflow-x: hidden;
}
body.booking-body { background: var(--soft); }
img { display: block; max-width: 100%; }
a { color: inherit; }
p, h1, h2, h3 { overflow-wrap: anywhere; }
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.08rem;
}
.brand img { width: 52px; height: 52px; object-fit: contain; }
.nav nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}
.nav nav a { text-decoration: none; }
.nav nav a:hover { color: var(--green); }
.phone-link {
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  min-height: clamp(680px, calc(100svh - 76px), 820px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(245, 200, 75, 0.2), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(220, 239, 242, 0.82), rgba(255, 255, 255, 0) 42%),
    var(--paper);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 54px;
  padding: 54px 0 44px;
}
.hero-copy h1,
.quote-intro h1 {
  margin: 0 0 22px;
  font-size: clamp(3.2rem, 7.2vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 780px;
}
.lead {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(21, 88, 59, 0.22);
}
.btn-secondary {
  color: var(--green);
  background: #fff;
  border-color: #b9cfbc;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green);
  background: #fff;
  font-size: 0.88rem;
  font-weight: 900;
}
.hero-visual {
  position: relative;
  min-height: 560px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -6% -2% 8%;
  background: var(--lawn);
  border-radius: var(--radius);
  transform: rotate(3deg);
}
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 42%;
  height: 34%;
  right: -8%;
  top: 2%;
  border: 2px solid rgba(200, 50, 50, 0.34);
  border-radius: var(--radius);
  transform: rotate(-7deg);
}
.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(58vh, 560px);
  min-height: 430px;
  object-fit: cover;
  object-position: center 48%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.route-card {
  position: absolute;
  z-index: 2;
  left: -22px;
  bottom: 38px;
  display: grid;
  gap: 4px;
  max-width: 240px;
  padding: 16px 18px;
  background: var(--yellow);
  border: 1px solid rgba(23, 35, 28, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.route-card strong { font-size: 1.05rem; }
.route-card span { color: #3b422b; font-weight: 800; }

.proof-band {
  background: var(--green);
  color: #fff;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.proof-grid p {
  margin: 0;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.06);
}

.section { padding: 94px 0; }
.section-label {
  display: block;
  margin-bottom: 12px;
  color: var(--green-2);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}
h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.2;
}
.section-copy p,
.quote-intro p,
.service-area p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.two-col,
.media-split,
.plan-grid,
.review-grid,
.faq-grid,
.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: start;
}
.problem { background: linear-gradient(180deg, #fff, var(--soft)); }
.benefit-list {
  display: grid;
  gap: 14px;
}
.benefit-list article,
.included-grid article,
.plan-steps article,
.timeline article,
.review-stack blockquote,
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(21, 88, 59, 0.06);
}
.benefit-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 18px;
  padding: 20px;
}
.benefit-list span,
.timeline span,
.form-section-title span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: var(--yellow);
  border-radius: var(--radius);
  font-weight: 950;
}
.benefit-list h3 { grid-column: 2; }
.benefit-list p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.difference { background: var(--soft); }
.photo-pair {
  position: relative;
  min-height: 520px;
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 180ms ease;
}
.photo-pair img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.photo-pair img:first-child {
  inset: 0 16% 16% 0;
  width: 84%;
  height: 84%;
  object-position: center;
}
.photo-pair img:last-child {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 44%;
  border: 8px solid var(--soft);
  object-position: center 35%;
}
.text-cta {
  display: inline-flex;
  margin-top: 24px;
  color: var(--green);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.plan {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(21, 88, 59, 0.96), rgba(36, 118, 79, 0.96)),
    var(--green);
}

.owner-story {
  position: relative;
  background:
    linear-gradient(180deg, #fff 0%, #fff 46%, var(--soft) 46%, var(--soft) 100%);
  overflow: hidden;
}
.owner-story::before {
  content: "";
  position: absolute;
  inset: 18% auto auto -6%;
  width: 22%;
  height: 52%;
  background: var(--red);
  opacity: 0.08;
  transform: skewX(-14deg);
}
.owner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
  align-items: center;
}
.owner-copy {
  position: relative;
  z-index: 1;
}
.owner-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.owner-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.owner-points span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 11px;
  color: #fff;
  background: var(--green);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 950;
}
.owner-points span:nth-child(2) {
  color: var(--ink);
  background: var(--yellow);
}
.owner-points span:nth-child(3) {
  background: var(--red);
}
.owner-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
  align-items: stretch;
}
.owner-card {
  position: relative;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.owner-card.wide {
  grid-row: 1 / span 2;
  transform: rotate(-1.4deg);
}
.owner-card:nth-child(2) {
  transform: rotate(1.2deg);
}
.owner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.owner-card.wide img {
  object-position: 58% center;
}
.owner-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(14, 47, 34, 0.86);
  border-radius: var(--radius);
  font-size: 0.86rem;
  line-height: 1.25;
  font-weight: 950;
  backdrop-filter: blur(8px);
}
.plan .section-label,
.plan .section-copy p { color: rgba(255, 255, 255, 0.78); }
.plan-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.plan-steps article {
  min-height: 142px;
  padding: 20px;
  color: var(--ink);
}
.plan-steps strong { display: block; margin-bottom: 8px; font-size: 1.1rem; }
.plan-steps span { color: var(--muted); line-height: 1.5; }

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.included { background: #fff; }
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.included-grid article {
  min-height: 210px;
  padding: 24px;
}
.included-grid article:nth-child(2),
.included-grid article:nth-child(5) { background: var(--soft); }
.included-grid p,
.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.how { background: var(--soft); }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.timeline article {
  padding: 20px;
  min-height: 210px;
}
.timeline span { margin-bottom: 18px; }

.quote-section {
  background:
    linear-gradient(180deg, rgba(220, 239, 242, 0.58), rgba(255, 255, 255, 0) 36%),
    #fff;
}
.booking-page { min-height: calc(100svh - 76px); }
.quote-layout { align-items: start; }
.quote-intro {
  position: sticky;
  top: 112px;
}
.quote-intro h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.8rem);
}
.quote-proof {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding: 18px;
  border-left: 6px solid var(--yellow);
  background: var(--soft);
  border-radius: var(--radius);
}
.quote-proof span { color: var(--muted); line-height: 1.5; }
.lead-form {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 18px;
}
.grid-two,
.grid-three {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}
.grid-two { grid-template-columns: repeat(2, 1fr); }
.grid-three { grid-template-columns: repeat(3, 1fr); }
label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}
input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfded0;
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  font: 700 0.98rem/1.25 Inter, "Segoe UI", system-ui, sans-serif;
}
textarea { resize: vertical; }
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(120, 193, 67, 0.32);
  border-color: var(--green-2);
}
.check-row {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cfded0;
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--soft);
}
.check-row input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--green);
}
.consent-row { margin: 16px 0; }
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.submit-lead { width: 100%; border: 0; font-size: 1rem; }
.form-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
}
.form-message.success { color: var(--green); }
.form-message.error { color: #a32727; }
button:disabled { opacity: 0.72; cursor: wait; }

.reviews { background: var(--soft); }
.google-proof {
  width: 178px;
  margin-top: 24px;
}
.review-stack {
  display: grid;
  gap: 14px;
}
.review-stack blockquote {
  margin: 0;
  padding: 24px;
}
.review-stack p {
  margin: 0 0 14px;
  font-size: 1.1rem;
  line-height: 1.55;
}
.review-stack cite {
  color: var(--green);
  font-style: normal;
  font-weight: 950;
}

.faq { background: #fff; }
.faq-list { display: grid; gap: 12px; }
details { padding: 18px 20px; }
summary {
  cursor: pointer;
  font-weight: 950;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-size: 1.25rem;
}
details[open] summary::after { content: "-"; }
details p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-area {
  padding: 76px 0;
  color: #fff;
  background: var(--green);
}
.service-area-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}
.service-area h2 {
  grid-column: 1;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
}
.service-area p { grid-column: 1; color: rgba(255, 255, 255, 0.78); }
.service-area .btn { grid-column: 2; grid-row: 1 / span 2; }

.sticky-book {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: none;
  color: #fff;
  background: var(--green);
  border-radius: var(--radius);
  padding: 12px 14px;
  text-decoration: none;
  font-weight: 950;
  box-shadow: var(--shadow);
}
.sticky-book.visible { display: inline-flex; }
.footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #0e2f22;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.footer p { margin: 0; line-height: 1.5; }
.footer a { color: #fff; }

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .nav nav { display: none; }
  .hero-grid,
  .two-col,
  .media-split,
  .owner-grid,
  .plan-grid,
  .review-grid,
  .faq-grid,
  .quote-layout {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 34px; padding-top: 34px; }
  .hero-visual { min-height: 420px; }
  .hero-visual img { height: 430px; min-height: 0; }
  .proof-grid,
  .included-grid,
  .timeline { grid-template-columns: 1fr 1fr; }
  .quote-intro { position: static; }
  .service-area-inner { grid-template-columns: 1fr; }
  .service-area .btn { grid-column: 1; grid-row: auto; justify-self: start; }
  .owner-grid { gap: 30px; }
  .owner-gallery { grid-template-rows: 220px 220px; }
}

@media (max-width: 680px) {
  .wrap { width: min(100% - 28px, 1160px); }
  main,
  section,
  .wrap { overflow-x: clip; }
  .nav { min-height: 68px; }
  .brand span { display: none; }
  .brand img { width: 48px; height: 48px; }
  .phone-link {
    width: 58px;
    padding: 9px 10px;
    font-size: 0;
  }
  .phone-link::before {
    content: "Call";
    font-size: 0.88rem;
  }
  .hero { min-height: auto; }
  .hero-grid { padding: 32px 0 26px; }
  .hero-copy h1,
  .quote-intro h1 {
    font-size: clamp(2.25rem, 10.2vw, 3.2rem);
    line-height: 0.96;
  }
  .hero-copy,
  .hero-copy h1,
  .hero-copy p,
  .quote-intro,
  .quote-intro h1,
  .quote-intro p { max-width: 100%; }
  .lead { font-size: 1rem; line-height: 1.65; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-row span {
    justify-content: center;
    padding: 7px 8px;
    font-size: 0.8rem;
  }
  .trust-row span:last-child { grid-column: 1 / -1; }
  .hero-visual { min-height: 330px; }
  .hero-visual::before { inset: 8% -4% 0 6%; }
  .hero-visual img { height: 330px; }
  .hero-visual::after { display: none; }
  .route-card {
    left: 12px;
    right: 12px;
    bottom: 14px;
    max-width: none;
  }
  .phone-link { overflow: hidden; text-overflow: ellipsis; }
  .site-header { overflow: hidden; }
  .hero-copy,
  .hero-visual,
  .lead-form { min-width: 0; }
  .proof-grid,
  .included-grid,
  .timeline,
  .plan-steps,
  .grid-two,
  .grid-three {
    grid-template-columns: 1fr;
  }
  .section { padding: 68px 0; }
  .photo-pair { min-height: 380px; }
  .owner-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 220px 220px;
  }
  .owner-card.wide {
    grid-row: auto;
    transform: none;
  }
  .owner-card:nth-child(2) {
    transform: none;
  }
  .benefit-list article { grid-template-columns: 44px 1fr; padding: 16px; }
  .lead-form { padding: 18px; }
  .footer-row { display: grid; }
}
