:root {
  --page: #f4f7ef;
  --page-2: #edf4e8;
  --surface: #ffffff;
  --surface-soft: #f8faf5;
  --ink: #142018;
  --muted: #5d685d;
  --soft: #7b867b;
  --edge: #dfe8dc;
  --green: #3f8f35;
  --green-bright: #69cd3c;
  --warm: #d98b42;
  --shadow: 0 22px 55px -42px rgba(20, 32, 24, 0.42);
  --container: 1180px;
  --pad: clamp(18px, 3.5vw, 36px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(105, 205, 60, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfcf8 0%, var(--page) 42%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(63, 143, 53, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 8px;
  z-index: 10;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.concept-bar {
  background: #142018;
  color: #f4f7ef;
  text-align: center;
  font-size: 13px;
  padding: 9px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(223, 232, 220, 0.92);
  background: rgba(244, 247, 239, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 13px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.nav-links .nav-cta {
  background: var(--ink);
  color: white;
  padding-inline: 17px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--edge);
  border-radius: 999px;
  background: white;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 99px;
  background: var(--ink);
  content: "";
}

.menu-icon::before {
  transform: translateY(-6px);
}

.menu-icon::after {
  transform: translateY(4px);
}

.hero {
  width: min(var(--container), 100%);
  min-height: calc(100vh - 112px);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 78px) var(--pad) 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.03;
  letter-spacing: 0;
}

h1 span {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.28;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions,
.inline-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 760;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.primary {
  background: var(--ink);
  color: white;
}

.secondary {
  border: 1px solid var(--edge);
  background: white;
  color: var(--ink);
}

.availability-note {
  max-width: 580px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 580px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dbe9d5;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 32, 24, 0.06), rgba(20, 32, 24, 0.36));
  content: "";
}

.appointment-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.93);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 18px 45px -30px rgba(20, 32, 24, 0.6);
}

.appointment-card h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 3vw, 34px);
}

.path-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.path-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.path-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--page-2);
  color: var(--green);
  font-weight: 800;
}

.path-list strong,
.path-list span {
  display: block;
}

.path-list span {
  color: var(--muted);
  font-size: 14px;
}

.trust-strip {
  width: min(var(--container), calc(100% - 2 * var(--pad)));
  margin: 0 auto clamp(58px, 8vw, 96px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-strip article,
.service-card,
.booking-card,
.faq-list article,
.rate-panel,
.story {
  border: 1px solid var(--edge);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1px 1px rgba(20, 32, 24, 0.02), 0 20px 40px -34px rgba(20, 32, 24, 0.36);
}

.trust-strip article {
  padding: 20px;
}

.fact-number {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 28px;
  font-weight: 850;
  line-height: 1;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) var(--pad);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading.narrow {
  max-width: 680px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.service-grid,
.booking-grid,
.faq-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card,
.booking-card,
.faq-list article {
  padding: clamp(20px, 3vw, 28px);
}

.service-card p,
.booking-card p,
.faq-list p,
.story-content p,
.owner-cta p,
.site-footer p {
  color: var(--muted);
}

.rates-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
}

.rate-panel {
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
}

caption {
  padding: 18px 20px;
  color: var(--muted);
  text-align: left;
  font-size: 14px;
}

th,
td {
  padding: 16px 20px;
  border-top: 1px solid var(--edge);
  text-align: left;
}

th {
  background: var(--surface-soft);
  font-size: 13px;
  color: var(--muted);
}

td:last-child {
  font-weight: 850;
}

.rate-note {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-top: 1px solid var(--edge);
  background: #fffaf3;
}

.rate-note span {
  color: var(--muted);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
}

.text-link,
.inline-links a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline span {
  border: 1px solid var(--edge);
  border-radius: 999px;
  background: var(--surface-soft);
  padding: 12px 16px;
  color: var(--muted);
  font-weight: 700;
}

.booking {
  border-block: 1px solid var(--edge);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(237, 244, 232, 0.7));
}

.booking-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  align-items: flex-start;
}

.booking-card .button {
  margin-top: auto;
}

.owner-cta {
  width: min(var(--container), calc(100% - 2 * var(--pad)));
  margin: clamp(40px, 7vw, 76px) auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  padding: clamp(24px, 4vw, 42px);
}

.owner-cta h2 {
  max-width: 760px;
  font-size: clamp(26px, 3vw, 40px);
}

.owner-cta p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.owner-cta .eyebrow {
  color: var(--green-bright);
}

.owner-cta .primary {
  flex: 0 0 auto;
  background: white;
  color: var(--ink);
}

.site-footer {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 36px var(--pad) 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  border-top: 1px solid var(--edge);
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.disclaimer {
  grid-column: 1 / -1;
  max-width: 850px;
  font-size: 13px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 95px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--edge);
    border-radius: 8px;
    background: white;
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .hero,
  .rates-section,
  .story {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 520px;
  }

  .trust-strip,
  .service-grid,
  .booking-grid,
  .faq-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .owner-cta,
  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .owner-cta {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .concept-bar {
    font-size: 12px;
  }

  .brand span:last-child {
    max-width: 190px;
    line-height: 1.15;
  }

  h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .hero {
    padding-top: 34px;
  }

  .hero-actions .button,
  .owner-cta .button,
  .booking-card .button {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 560px;
  }

  .appointment-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .trust-strip,
  .service-grid,
  .booking-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .rate-note {
    flex-direction: column;
  }

  th,
  td,
  caption {
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
