:root {
  color-scheme: light;
  --turf: #25a55b;
  --deep: #123832;
  --sky: #dff5ff;
  --sun: #f4c542;
  --coral: #ef735a;
  --paper: #f6fbf7;
  --ink: #162522;
  --muted: #667a73;
  --line: rgba(18, 56, 50, 0.14);
  --shadow: 0 20px 42px rgba(18, 56, 50, 0.12);
}

* {
  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;
}

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

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

.app-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: var(--deep);
  color: #ffffff;
}

.brand {
  display: grid;
  gap: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 3px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--sun) 0 46%, transparent 46%),
    linear-gradient(135deg, var(--turf), #8ed957);
}

.brand strong {
  font-size: 24px;
  line-height: 1;
}

.brand span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.side-nav {
  display: grid;
  gap: 8px;
}

.side-nav a,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.side-nav a {
  justify-content: flex-start;
}

.side-nav a[aria-current="page"] {
  background: #ffffff;
  color: var(--deep);
}

.side-nav a:hover,
.button:hover {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

.button.is-pressed,
.side-nav a.is-pressed {
  transform: translateY(1px) scale(0.98);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
}

.menu-toggle span:not(.menu-label) {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle .menu-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.sidebar-note {
  margin-top: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.content {
  min-width: 0;
}

.top-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px max(22px, calc((100vw - 1220px) / 2));
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.top-strip span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.top-strip a {
  color: var(--turf);
  font-weight: 900;
}

.hero {
  padding: 58px max(22px, calc((100vw - 1220px) / 2)) 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy {
  display: grid;
  align-content: center;
  min-height: 520px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(223, 245, 255, 0.82), rgba(255, 255, 255, 0.76)),
    #ffffff;
  box-shadow: var(--shadow);
}

.hero-photo {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(rgba(18, 56, 50, 0.06), rgba(18, 56, 50, 0.28)),
    var(--hero-image, url("https://images.unsplash.com/photo-1598902108854-10e335adac99?auto=format&fit=crop&w=1400&q=80")) center / cover;
  box-shadow: var(--shadow);
}

.photo-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(250px, calc(100% - 36px));
  padding: 16px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--deep);
  font-weight: 850;
  line-height: 1.35;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: 76px;
  line-height: 0.96;
}

.hero-copy p:not(.eyebrow),
.section-heading p,
.tile p,
.plan p,
.season-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 18px;
}

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

.button {
  border-color: var(--deep);
  background: var(--deep);
  color: #ffffff;
}

.gallery-lock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: var(--turf);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(18, 56, 50, 0.24);
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}

.button.alt {
  border-color: rgba(18, 56, 50, 0.18);
  background: #ffffff;
  color: var(--deep);
}

.section {
  padding: 56px max(22px, calc((100vw - 1220px) / 2));
}

.section.flush-top {
  padding-top: 14px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 740px;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: 52px;
  line-height: 1.02;
}

.tile-grid,
.plan-grid,
.season-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tile,
.plan,
.season-card,
.contact-card,
form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(18, 56, 50, 0.08);
}

.tile,
.season-card,
.contact-card {
  padding: 24px;
}

.interactive-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.interactive-card:hover {
  border-color: rgba(37, 165, 91, 0.34);
  box-shadow: 0 20px 42px rgba(18, 56, 50, 0.14);
  transform: translateY(-4px);
}

.tile strong,
.season-card strong,
.contact-card strong {
  color: var(--deep);
  font-size: 20px;
}

.tile .number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--sun);
  color: var(--deep);
  font-weight: 950;
}

.plan {
  overflow: hidden;
}

.plan-header {
  padding: 24px;
  background: var(--deep);
  color: #ffffff;
}

.plan-header strong {
  display: block;
  font-size: 24px;
}

.plan-price {
  display: block;
  margin-top: 10px;
  color: var(--sun);
  font-size: 34px;
  font-weight: 950;
}

.plan-body {
  padding: 24px;
}

.plan ul,
.season-card ul,
.contact-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.plan li::before,
.season-card li::before,
.contact-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--turf);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.filter-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #ffffff;
  color: var(--deep);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
}

.filter-button.is-active {
  border-color: var(--turf);
  background: var(--turf);
  color: #ffffff;
}

.service-option {
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-option.is-hidden {
  display: none;
}

.wide-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.wide-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 8px;
  object-fit: cover;
}

.wide-copy {
  display: grid;
  align-content: center;
  padding: 22px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.mini-stats span {
  padding: 14px;
  border-radius: 8px;
  background: var(--sky);
  color: var(--deep);
  font-size: 13px;
  font-weight: 850;
}

.mini-stats strong {
  display: block;
  color: var(--turf);
  font-size: 28px;
  line-height: 1;
}

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

.review-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(18, 56, 50, 0.08);
}

.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.review-card strong {
  display: block;
  margin-top: 16px;
  color: var(--deep);
}

.gallery-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}

.gallery-row img {
  width: 100%;
  height: 340px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(18, 56, 50, 0.08);
}

.gallery-row img:first-child {
  height: 440px;
}

.quote-grid form {
  grid-column: span 2;
}

form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

.footer {
  padding: 24px max(22px, calc((100vw - 1220px) / 2));
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
}

.footer a {
  color: var(--turf);
  font-weight: 900;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--turf);
  font-size: 14px;
  font-weight: 900;
}

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

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

@media (max-width: 980px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    height: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .side-nav {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .side-nav.is-open {
    display: grid;
  }

  .side-nav a {
    justify-content: center;
    text-align: center;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .gallery-lock {
    right: 14px;
    bottom: 14px;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    overflow: hidden;
    text-indent: -999px;
  }

  .gallery-lock::before {
    content: "<";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 20px;
    text-indent: 0;
  }

  .sidebar-note {
    display: none;
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .sidebar.is-menu-open .sidebar-note {
    display: block;
  }

  .hero-grid,
  .wide-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-photo {
    min-height: 420px;
  }

  h1 {
    font-size: 46px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .tile-grid,
  .plan-grid,
  .season-grid,
  .contact-grid,
  .mini-stats,
  .review-grid,
  .gallery-row {
    grid-template-columns: 1fr;
  }

  .gallery-row img,
  .gallery-row img:first-child {
    height: 300px;
  }

  .quote-grid form {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .side-nav {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 26px;
  }
}
