:root {
  --bg: #f2eadf;
  --bg-2: #e5d6c3;
  --ink: #1c251d;
  --muted: #5b6459;
  --line: rgba(35, 46, 38, 0.12);
  --accent: #6f8b66;
  --accent-deep: #2f4a3a;
  --panel: rgba(255, 250, 243, 0.82);
  --panel-strong: #fff9f1;
  --shadow: 0 28px 90px rgba(20, 31, 24, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(161, 182, 148, 0.28), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(130, 99, 64, 0.14), transparent 28%),
    linear-gradient(180deg, #fbf7f1 0%, var(--bg) 46%, #ebded0 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.7; }
ul { margin: 0; padding-left: 18px; }
li + li { margin-top: 10px; }

.page-haze {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.page-haze span {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.6;
}
.page-haze span:nth-child(1) { width: 420px; height: 420px; left: -140px; top: 100px; background: rgba(133, 164, 126, 0.2); }
.page-haze span:nth-child(2) { width: 340px; height: 340px; right: -100px; top: 240px; background: rgba(81, 63, 43, 0.12); }
.page-haze span:nth-child(3) { width: 280px; height: 280px; left: 35%; bottom: -100px; background: rgba(240, 225, 203, 0.82); }

.site-header,
.section,
.site-footer,
.hero-inner,
.hero-band,
.intro-grid,
.band,
.gallery-grid,
.timeline,
.faq-grid,
.closing-inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: rgba(251, 247, 241, 0.58);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 247, 241, 0.9);
  box-shadow: 0 16px 40px rgba(20, 28, 22, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  position: relative;
  background: linear-gradient(145deg, #1f3428, #8c6b45);
  box-shadow: var(--shadow);
}
.brand-mark i {
  position: absolute;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: rgba(255, 249, 241, 0.9);
}
.brand-mark i:first-child { left: 17px; }
.brand-mark i:last-child { right: 17px; opacity: 0.6; }
.brand-copy { display: grid; }
.brand strong { font-size: 1rem; letter-spacing: 0.01em; }
.brand small { font-size: 0.78rem; color: var(--muted); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(36, 27, 20, 0.1);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.8);
  box-shadow: 0 14px 40px rgba(37, 25, 16, 0.08);
}
.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}
.site-nav a:hover { color: var(--ink); }
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-deep);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.94);
  box-shadow: var(--shadow);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
}
.menu-toggle span + span { margin-top: 6px; }

.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100svh;
  overflow: clip;
}
.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img {
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) contrast(0.98);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 26, 20, 0.8) 0%, rgba(17, 26, 20, 0.52) 32%, rgba(17, 26, 20, 0.1) 68%, rgba(17, 26, 20, 0.24) 100%),
    linear-gradient(180deg, rgba(12, 18, 14, 0.12) 0%, rgba(12, 18, 14, 0.5) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.55fr);
  gap: 28px;
  align-items: end;
  padding: 110px 0 120px;
}
.hero-copy {
  align-self: center;
  color: #fffaf2;
  padding-right: 24px;
}
.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 246, 236, 0.8);
}
.hero h1,
.section h2,
.closing-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.04em;
  line-height: 0.93;
}
.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 8.2vw, 7.4rem);
}
.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  color: rgba(255, 247, 238, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: #fdf3e6;
  color: var(--accent-deep);
}
.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff8f1;
  background: rgba(255, 255, 255, 0.04);
}
.closing-actions .button-secondary {
  border-color: rgba(255, 248, 239, 0.5);
  color: #fff8ef;
  background: transparent;
}

.hero-aside {
  align-self: end;
  padding: 22px 22px 18px;
  color: #fff8ef;
  background: linear-gradient(180deg, rgba(12, 20, 15, 0.38), rgba(12, 20, 15, 0.24));
  border: 1px solid rgba(255, 248, 239, 0.14);
  border-left: 3px solid rgba(255, 231, 205, 0.34);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(9, 13, 10, 0.16);
  max-width: 390px;
  justify-self: end;
}
.aside-label {
  margin: 0 0 14px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 248, 240, 0.84);
}
.hero-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-aside li {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 1rem;
  color: rgba(255, 250, 244, 0.96);
}
.hero-aside li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.22); }

.hero-band {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 20px 0 24px;
}
.hero-band > div {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 14px;
  color: #fff8ef;
}
.hero-band span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 245, 233, 0.7);
}
.hero-band strong { font-size: 0.98rem; font-weight: 700; }

.service-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 52px;
  overflow: hidden;
  border-top: 1px solid rgba(31, 23, 17, 0.08);
  border-bottom: 1px solid rgba(31, 23, 17, 0.08);
  background: linear-gradient(180deg, rgba(249, 241, 230, 0.94), rgba(232, 221, 204, 0.94));
}
.service-strip-track {
  display: flex;
  width: max-content;
  height: 100%;
  will-change: transform;
  animation: service-strip-scroll 46s linear infinite;
}
.service-strip-group {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-deep);
  font-size: 0.74rem;
  font-weight: 800;
}
.service-strip-group span {
  flex: 0 0 auto;
}
.service-strip-group span:nth-child(even) {
  color: rgba(47, 74, 58, 0.5);
}
.service-strip:hover .service-strip-track {
  animation-play-state: paused;
}

.section {
  padding-top: clamp(82px, 10vw, 124px);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: end;
  margin-bottom: 28px;
}
.section-head h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}
.section-head .eyebrow { color: var(--accent); }

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}
.intro-copy {
  padding-right: 24px;
}
.intro-copy h2 {
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  max-width: 12ch;
}
.intro-copy p {
  max-width: 58ch;
  color: var(--muted);
}
.intro-points {
  margin-top: 22px;
  padding-left: 20px;
  color: var(--ink);
}
.intro-visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 245, 0.92);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.intro-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(220px, 280px);
  gap: 20px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.service-index {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: rgba(111, 139, 102, 0.12);
  color: var(--accent-deep);
}
.service-row h3,
.timeline-step h3,
.faq summary {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
}
.service-row h3 { font-size: 1.7rem; }
.service-row p,
.service-note,
.timeline-step p,
.faq p,
.closing-copy p {
  color: var(--muted);
  margin: 0;
}
.service-note {
  font-size: 0.98rem;
  line-height: 1.55;
}

.band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding-top: clamp(86px, 10vw, 120px);
  padding-bottom: clamp(86px, 10vw, 120px);
  background: linear-gradient(135deg, #1f2e25 0%, #334735 55%, #4a3627 100%);
  color: #fff8ef;
}
.band-copy {
  width: min(calc(100% - 32px), var(--max));
  margin-left: auto;
  padding: 0 4px 0 0;
}
.band-copy h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  max-width: 12ch;
}
.band-copy p {
  max-width: 56ch;
  color: rgba(255, 244, 232, 0.84);
}
.band-copy .eyebrow { color: rgba(255, 223, 197, 0.82); }
.band-copy ul {
  margin-top: 20px;
  padding-left: 18px;
  color: rgba(255, 244, 232, 0.9);
}
.band-visual {
  width: min(calc(100% - 32px), var(--max));
  margin-right: auto;
  margin-left: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 90px rgba(9, 6, 4, 0.34);
}
.band-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(220px, 1fr) minmax(220px, 1fr) minmax(240px, auto);
  grid-template-areas:
    "feature feature feature feature feature feature support1 support1 support1 support1 support1 support1"
    "feature feature feature feature feature feature support2 support2 support2 support2 support2 support2"
    "wide wide wide wide wide wide wide wide wide wide wide wide";
  gap: 18px;
  align-items: start;
}
.gallery-grid figure {
  margin: 0;
  align-self: start;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 249, 243, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-width: 0;
  min-height: 0;
}
.gallery-card {
  position: relative;
  height: 100%;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
  transform-origin: center center;
}
.gallery-feature { grid-area: feature; }
.gallery-support-one { grid-area: support1; }
.gallery-support-two { grid-area: support2; }
.gallery-wide { grid-area: wide; }
.gallery-feature img { aspect-ratio: 4 / 5.5; }
.gallery-support-one img,
.gallery-support-two img { aspect-ratio: 16 / 10; }
.gallery-wide img { aspect-ratio: 16 / 6.8; }
.gallery-card:hover img { transform: scale(1.04); }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
}
.timeline-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111, 139, 102, 0.42), transparent);
}
.timeline-step {
  position: relative;
  padding-top: 34px;
}
.timeline-step span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--accent-deep);
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.timeline-step h3 { font-size: 1.7rem; }

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: start;
}
.faq-copy h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.9rem);
  max-width: 12ch;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq details {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 243, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.18rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin-top: 10px; }

.closing {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(84px, 10vw, 124px) 0;
  position: relative;
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(28, 38, 30, 0.82), rgba(28, 38, 30, 0.8)),
    url('images/landscaping-complete-front-yard-design.png') center center / cover no-repeat;
}
.closing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 25, 19, 0.72) 0%, rgba(17, 25, 19, 0.46) 48%, rgba(17, 25, 19, 0.68) 100%);
  pointer-events: none;
}
.closing-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: center;
}
.closing-copy,
.closing-actions {
  color: #fff8ef;
}
.closing-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 4.7vw, 4.2rem);
}
.closing-copy p {
  max-width: 54ch;
  color: rgba(255, 243, 232, 0.86);
}
.closing-actions {
  display: grid;
  gap: 14px;
  justify-items: stretch;
}
.closing-actions .button {
  width: 100%;
}
.closing-meta {
  margin-top: 6px;
  display: grid;
  gap: 6px;
  color: rgba(255, 243, 232, 0.72);
}
.closing-meta strong { color: #fff8ef; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 36px;
  color: var(--muted);
}
.site-footer strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
}

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

@media (min-width: 1081px) {
  .hero-inner {
    align-items: start;
    padding-top: 30px;
    padding-bottom: 58px;
  }
  .hero-copy {
    align-self: start;
    max-width: 720px;
    padding-top: 0;
  }
  .hero h1 {
    max-width: 12ch;
    font-size: clamp(56px, 5.6vw, 76px);
    line-height: 0.94;
  }
  .hero-text {
    max-width: 48ch;
    margin-top: 18px;
    font-size: 1.02rem;
  }
  .hero-actions {
    margin-top: 20px;
  }
  .hero-aside {
    align-self: start;
    margin-top: 6px;
    margin-bottom: 8px;
  }
  .gallery-feature img { aspect-ratio: 4 / 4.8; }
  .gallery-support-one img,
  .gallery-support-two img { aspect-ratio: 16 / 9.25; }
  .gallery-wide img { aspect-ratio: 16 / 5.3; }
}

@media (max-width: 1080px) {
  .site-nav {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    display: grid;
    gap: 0;
    padding: 12px;
    min-width: min(320px, calc(100vw - 32px));
    border-radius: 24px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .site-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav a {
    padding: 14px 14px;
    border-radius: 14px;
  }
  .nav-cta {
    text-align: center;
    margin-top: 6px;
  }
  .menu-toggle { display: inline-block; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 116px;
    padding-bottom: 170px;
  }
  .hero-copy { padding-right: 0; }
  .hero-aside {
    max-width: 440px;
    padding-top: 8px;
  }
  .hero-band {
    grid-template-columns: 1fr;
    position: relative;
    inset: auto;
    padding-bottom: 36px;
  }
  .service-strip {
    height: 52px;
  }
  .intro-grid,
  .band,
  .faq-grid,
  .closing-inner {
    grid-template-columns: 1fr;
  }
  .band-copy,
  .band-visual {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
  }
  .gallery-feature,
  .gallery-support-one,
  .gallery-support-two,
  .gallery-wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .timeline-track { top: 52px; }
  .service-row {
    grid-template-columns: 72px minmax(0, 1fr);
  }
  .service-note {
    grid-column: 2 / -1;
  }
  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header { padding: 14px 0; }
  .hero {
    min-height: auto;
    padding-top: 26px;
  }
  .hero-inner {
    min-height: auto;
    padding-top: 320px;
    padding-bottom: 18px;
  }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(12, 18, 14, 0.05) 0%, rgba(12, 18, 14, 0.72) 74%),
      linear-gradient(90deg, rgba(12, 18, 14, 0.72), rgba(12, 18, 14, 0.28));
  }
  .hero h1 { font-size: clamp(2.9rem, 13vw, 4.8rem); max-width: 9ch; }
  .hero-text { font-size: 1rem; }
  .hero-band {
    padding-top: 18px;
    padding-bottom: 24px;
  }
  .service-strip {
    height: 50px;
  }
  .service-strip-group {
    gap: 12px;
    font-size: 0.7rem;
    padding: 0 18px;
  }
  .section { padding-top: 72px; }
  .section-head {
    grid-template-columns: 1fr;
    margin-bottom: 22px;
  }
  .section-head h2 { font-size: clamp(2rem, 8.2vw, 3.2rem); }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: none;
  }
  .gallery-card {
    aspect-ratio: 16 / 10;
  }
  .gallery-card img {
    aspect-ratio: auto;
  }
  .service-row {
    grid-template-columns: 1fr;
  }
  .service-note {
    grid-column: auto;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .timeline-track {
    display: none;
  }
  .timeline-step {
    padding-top: 0;
    padding-left: 16px;
    border-left: 1px solid rgba(111, 139, 102, 0.28);
  }
  .timeline-step + .timeline-step {
    margin-top: 14px;
  }
  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .service-strip-track { animation: none; }
}

@keyframes service-strip-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
