:root {
  --green-950: #0d2923;
  --green-800: #173f35;
  --green-700: #205548;
  --lime: #c9e53f;
  --cream: #f5f2e9;
  --paper: #fff;
  --ink: #17201e;
  --muted: #56615e;
  --border: #d9dfdc;
  --radius: 1.25rem;
  --shadow: 0 1rem 3rem rgba(13, 41, 35, .12);
  --container: 72rem;
}

@font-face {
  font-family: "Font Awesome Brands";
  src: url("../fonts/fa-brands-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: .22em; }
a:hover { text-decoration-thickness: .14em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 12ch; margin-bottom: 1.35rem; font-size: clamp(2.75rem, 7vw, 5.8rem); color: #fff; }
h2 { margin-bottom: 1.25rem; font-size: clamp(2rem, 4vw, 3.65rem); }
h3 { margin-bottom: .9rem; font-size: clamp(1.4rem, 2.2vw, 1.85rem); }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  transform: translateY(-160%);
  border-radius: .4rem;
  color: var(--green-950);
  background: var(--lime);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: .2rem solid #f6c945; outline-offset: .2rem; }

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(13, 41, 35, .1);
  background: rgba(255, 255, 255, .97);
}
.header-inner { min-height: 5.25rem; display: flex; align-items: center; gap: 2rem; }
.brand { flex: 0 0 auto; }
.brand img { width: 10.25rem; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.25rem); margin-left: auto; }
.desktop-nav a { padding-block: 1.6rem; text-decoration: none; font-weight: 750; }
.desktop-nav a[aria-current="page"] { box-shadow: inset 0 -.2rem var(--green-700); }
.desktop-nav a:hover { color: var(--green-700); }
.nav-dropdown { position: relative; }
.nav-dropdown summary { display: flex; align-items: center; gap: .35rem; padding-block: 1.6rem; cursor: pointer; list-style: none; font-weight: 750; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary:hover { color: var(--green-700); }
.nav-dropdown summary span { color: var(--green-700); font-size: 1rem; transition: transform .2s ease; }
.nav-dropdown[open] summary span { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; z-index: 30; top: calc(100% - .35rem); left: -.9rem; width: 20rem; padding: .55rem; border: 1px solid var(--border); border-radius: .9rem; background: #fff; box-shadow: var(--shadow); }
.desktop-nav .nav-dropdown-menu a { display: block; padding: .72rem .8rem; border-radius: .55rem; line-height: 1.35; }
.desktop-nav .nav-dropdown-menu a:hover { color: var(--green-800); background: var(--cream); }
.header-phone { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--green-800); font-weight: 800; line-height: 1.2; }
.header-phone > span:first-child { font-size: 1.4rem; }
.header-phone small { display: block; color: var(--muted); font-size: .72rem; font-weight: 650; }
.mobile-menu { display: none; margin-left: auto; position: relative; }
.mobile-menu > summary { min-width: 3.75rem; min-height: 2.75rem; display: grid; place-items: center; border: 2px solid var(--green-800); border-radius: 999px; cursor: pointer; font-weight: 800; list-style: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav { position: absolute; top: calc(100% + .8rem); right: 0; width: min(19rem, calc(100vw - 2rem)); padding: .75rem; border: 1px solid var(--border); border-radius: 1rem; background: #fff; box-shadow: var(--shadow); }
.mobile-menu nav a { display: block; min-height: 2.9rem; padding: .65rem .8rem; border-radius: .55rem; text-decoration: none; font-weight: 750; }
.mobile-menu nav a:hover { background: var(--cream); }
.mobile-submenu summary { min-height: 2.9rem; display: flex; align-items: center; justify-content: space-between; padding: .65rem .8rem; border-radius: .55rem; cursor: pointer; list-style: none; font-weight: 750; }
.mobile-submenu summary:hover { background: var(--cream); }
.mobile-submenu summary span { color: var(--green-700); transition: transform .2s ease; }
.mobile-submenu[open] summary span { transform: rotate(180deg); }
.mobile-submenu > div { margin: .1rem 0 .4rem .65rem; padding-left: .55rem; border-left: .18rem solid var(--lime); }
.mobile-menu nav .mobile-submenu a { min-height: 2.65rem; padding-block: .55rem; font-size: .93rem; }

.hero { min-height: min(48rem, calc(100svh - 5.25rem)); position: relative; display: grid; align-items: end; overflow: hidden; background: var(--green-950); }
.hero-media, .hero-media img, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(8, 30, 25, .91) 0%, rgba(8, 30, 25, .68) 42%, rgba(8, 30, 25, .16) 78%), linear-gradient(0deg, rgba(8, 30, 25, .5), transparent 45%); }
.hero-content { position: relative; z-index: 1; padding-block: clamp(4.5rem, 11vw, 8.5rem); }
.eyebrow { margin-bottom: 1rem; color: var(--lime); font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-dark { color: var(--green-700); }
.hero-copy { max-width: 38rem; margin-bottom: 2rem; color: rgba(255, 255, 255, .92); font-size: clamp(1.08rem, 2vw, 1.35rem); }
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.button { min-height: 3.25rem; display: inline-flex; align-items: center; justify-content: center; padding: .75rem 1.3rem; border: 2px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 850; }
.button:hover { transform: translateY(-1px); }
.button-primary { color: var(--green-950); background: var(--lime); }
.button-secondary { border-color: rgba(255, 255, 255, .75); color: #fff; background: rgba(13, 41, 35, .28); }
.button-light { color: var(--green-950); background: #fff; }
.button-outline-light { border-color: #fff; color: #fff; }

.value-strip { color: #fff; background: var(--green-800); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.value-grid p { min-height: 7rem; margin: 0; display: flex; flex-direction: column; justify-content: center; padding: 1.4rem clamp(1rem, 3vw, 2.5rem); border-right: 1px solid rgba(255, 255, 255, .2); }
.value-grid p:first-child { border-left: 1px solid rgba(255, 255, 255, .2); }
.value-grid strong { color: var(--lime); font-size: 1.25rem; }
.value-grid span { color: rgba(255, 255, 255, .8); }

.section { padding-block: clamp(4rem, 8vw, 7.5rem); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(18rem, .7fr); align-items: end; gap: 2rem; margin-bottom: 3rem; }
.section-heading h2 { max-width: 18ch; margin-bottom: 0; }
.section-heading > p { margin-bottom: .3rem; color: var(--muted); font-size: 1.08rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
.activity-card { min-width: 0; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: 0 .5rem 2rem rgba(13, 41, 35, .06); }
.activity-card > img { width: 100%; aspect-ratio: 1.625; object-fit: cover; }
.card-body { position: relative; padding: 1.65rem; }
.card-body > p:not(.card-number) { min-height: 5.3rem; color: var(--muted); }
.card-number { position: absolute; top: -2.35rem; right: 1.2rem; width: 3.5rem; height: 3.5rem; display: grid; place-items: center; border: .3rem solid #fff; border-radius: 50%; color: var(--green-950); background: var(--lime); font-weight: 900; }
.text-link { color: var(--green-700); font-weight: 850; }

.method { color: #fff; background: var(--green-950); }
.method-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(18rem, .8fr); gap: clamp(2rem, 8vw, 7rem); align-items: center; }
.method h2 { max-width: 14ch; margin-bottom: 0; }
.method-copy { color: rgba(255, 255, 255, .82); font-size: 1.1rem; }
.method-copy p { margin-bottom: 1.8rem; }

.reviews { background: var(--cream); }
.review-grid { display: grid; grid-template-columns: minmax(16rem, .65fr) minmax(20rem, 1fr); gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.review-image { width: 100%; max-height: 35rem; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; object-position: center 35%; }
.review-copy { min-width: 0; }
.review-copy h2 { max-width: 16ch; }
.reviews-carousel { margin-block: 1.5rem; }
.review-slides { min-height: 21rem; display: grid; align-items: center; }
.review-slide { margin: 0; }
.review-slide[hidden] { display: none; }
.review-rating { min-height: 2.25rem; margin-bottom: .85rem; color: #fbbc04; font-size: 1.7rem; line-height: 1; letter-spacing: .1em; text-shadow: 0 1px 1px rgba(23, 32, 30, .18); }
.review-slide blockquote { margin: 0 0 1.5rem; padding: 0; color: var(--green-950); font-size: clamp(1.25rem, 2.8vw, 1.85rem); line-height: 1.45; font-weight: 650; }
.review-slide figcaption { display: flex; flex-direction: column; color: var(--green-950); }
.review-slide figcaption span { color: var(--muted); font-size: .88rem; }
.carousel-controls { margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.carousel-arrows { display: flex; align-items: center; gap: .55rem; }
.carousel-button, .carousel-pause { min-width: 2.9rem; min-height: 2.9rem; border: 2px solid var(--green-800); border-radius: 999px; color: var(--green-950); background: transparent; cursor: pointer; font: inherit; font-weight: 850; }
.carousel-button:hover, .carousel-pause:hover { color: #fff; background: var(--green-800); }
.carousel-pause { padding-inline: 1rem; }
.carousel-status { color: var(--muted); font-variant-numeric: tabular-nums; font-weight: 800; }
.google-reviews-link { display: inline-block; margin-top: .35rem; }

.cta { padding-block: 3.25rem; color: #fff; background: var(--green-700); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta h2 { max-width: 18ch; margin-bottom: 0; font-size: clamp(1.8rem, 4vw, 3rem); }

.social-section { padding-block: 2.8rem; border-bottom: 1px solid rgba(255, 255, 255, .12); color: #fff; background: var(--green-950); }
.social-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.social-inner > p { margin: 0; font-size: 1.15rem; font-weight: 850; }
.social-cards { display: grid; grid-template-columns: repeat(3, minmax(11rem, 1fr)); gap: .75rem; }
.social-card { min-height: 4.6rem; display: flex; align-items: center; gap: .85rem; padding: .8rem 1rem; border: 1px solid rgba(255, 255, 255, .22); border-radius: 1rem; text-decoration: none; background: rgba(255, 255, 255, .06); }
.social-card:hover { border-color: var(--lime); background: rgba(255, 255, 255, .1); }
.brand-icon { width: 2.5rem; height: 2.5rem; flex: 0 0 2.5rem; display: grid; place-items: center; border-radius: .7rem; color: #fff; font-family: "Font Awesome Brands"; font-size: 1.25rem; }
.social-facebook .brand-icon { background: #1877f2; }
.social-instagram .brand-icon { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.social-youtube .brand-icon { background: #ff0000; }
.social-card span:last-child { display: flex; flex-direction: column; line-height: 1.25; }
.social-card small { margin-top: .2rem; color: rgba(255, 255, 255, .7); }

.site-footer { padding-top: 4rem; color: rgba(255, 255, 255, .78); background: #071b17; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.5rem; }
.footer-logo { width: 10.5rem; margin-bottom: 1rem; padding: .6rem; border-radius: .35rem; background: #fff; }
.site-footer h2 { margin-bottom: 1rem; color: #fff; font-size: 1rem; letter-spacing: .02em; }
.site-footer .footer-company-name { max-width: 20rem; margin-bottom: .5rem; font-size: 1.05rem; line-height: 1.35; text-transform: uppercase; }
.site-footer address { margin-bottom: 1.2rem; font-style: normal; }
.footer-phone { width: fit-content; min-height: 3.8rem; display: flex; flex-direction: column; justify-content: center; padding: .55rem 1.1rem; border-left: .25rem solid var(--lime); text-decoration: none; background: rgba(255, 255, 255, .08); }
.footer-phone span { color: rgba(255, 255, 255, .72); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-phone strong { color: #fff; font-size: 1.1rem; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: #fff; }
.footer-bottom { margin-top: 3.5rem; min-height: 4.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255, 255, 255, .16); font-size: .9rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 62rem) {
  .desktop-nav, .header-phone { display: none; }
  .mobile-menu { display: block; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .activity-card:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .social-inner { align-items: stretch; flex-direction: column; }
}

@media (max-width: 44rem) {
  .container { width: min(calc(100% - 1.25rem), var(--container)); }
  .header-inner { min-height: 4.6rem; }
  .brand img { width: 8.6rem; }
  .hero { min-height: 41rem; }
  .hero-overlay { background: linear-gradient(0deg, rgba(8, 30, 25, .95) 0%, rgba(8, 30, 25, .68) 64%, rgba(8, 30, 25, .25)); }
  .hero-media img { object-position: 52% center; }
  .hero-content { align-self: end; padding-block: 3.5rem; }
  .hero-copy { font-size: 1.06rem; }
  .button-row .button { width: 100%; }
  .value-grid, .section-heading, .card-grid, .method-grid, .review-grid, .footer-grid { grid-template-columns: 1fr; }
  .value-grid p { min-height: 5.4rem; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
  .value-grid p:first-child { border-left: 0; }
  .section-heading { gap: 1rem; }
  .card-body > p:not(.card-number) { min-height: 0; }
  .activity-card:last-child { grid-column: auto; }
  .review-image { max-height: 24rem; }
  .cta-inner, .footer-bottom { align-items: stretch; flex-direction: column; }
  .review-slides { min-height: 25rem; }
  .carousel-controls { align-items: flex-start; }
  .social-cards { grid-template-columns: 1fr; }
  .footer-bottom { padding-block: 1.2rem; }
}

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