:root {
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Sora", "Manrope", ui-sans-serif, system-ui, sans-serif;
  --ink: #11130f;
  --charcoal: #1c211c;
  --moss: #2f6b4f;
  --leaf: #6ea85d;
  --stone: #d9d0c2;
  --limestone: #f3efe7;
  --paper: #fbfaf7;
  --logo-gold: #f8e59f;
  --logo-gold-light: #fff0bd;
  --logo-gold-deep: #c9ae67;
  --copper: var(--logo-gold-deep);
  --white: #ffffff;
  --muted: #687064;
  --line: rgba(17, 19, 15, 0.14);
  --shadow: 0 24px 70px rgba(17, 19, 15, 0.18);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(248, 229, 159, 0.72);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px max(24px, calc((100% - var(--max-width)) / 2));
  color: var(--white);
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--white);
  background: rgba(28, 33, 28, 0.94);
  box-shadow: 0 12px 36px rgba(17, 19, 15, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
}

.brand-logo {
  width: clamp(190px, 18vw, 260px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: inherit;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-open .nav-links a:hover {
  background: rgba(47, 107, 79, 0.08);
}

.nav-links .nav-cta {
  color: var(--white);
  background: var(--moss);
}

.nav-links .nav-cta:hover {
  background: #24553e;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 88vh;
  padding: 116px 0 76px;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 12, 10, 0.84) 0%, rgba(8, 12, 10, 0.58) 38%, rgba(8, 12, 10, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 12, 10, 0.46) 0%, rgba(8, 12, 10, 0) 42%);
}

.hero-content {
  position: relative;
  width: calc(100% - 48px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--logo-gold);
}

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

h1 {
  font-family: var(--font-display);
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 5.2rem;
  line-height: 0.95;
}

h1 span {
  display: block;
}

h2 {
  font-family: var(--font-display);
  margin-bottom: 18px;
  font-size: 3rem;
  line-height: 1.02;
}

h3 {
  font-family: var(--font-display);
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

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

.button-primary:hover {
  background: #24553e;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.snapshot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.snapshot div {
  min-height: 150px;
  padding: 30px;
  background: var(--white);
}

.snapshot strong,
.snapshot span {
  display: block;
}

.snapshot strong {
  font-family: var(--font-display);
  margin-bottom: 10px;
  font-size: 1.04rem;
}

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

.section {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  padding: 104px 0;
}

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

.section-heading p:not(.eyebrow),
.feature-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.service-card {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(17, 19, 15, 0.06);
}

.service-card p {
  color: var(--muted);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 58px;
  border-radius: 50%;
  color: var(--moss);
  background: rgba(47, 107, 79, 0.1);
  font-family: var(--font-display);
  font-weight: 800;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  padding: 86px max(24px, calc((100% - var(--max-width)) / 2));
  color: var(--white);
  background: var(--charcoal);
}

.feature-copy {
  max-width: 560px;
}

.feature-copy h2 {
  color: var(--white);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-list span {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-display);
  font-weight: 800;
}

.showcase {
  width: min(100% - 48px, 1260px);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.video-card {
  min-width: 0;
}

.video-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(10, 12, 10, 0.82) 0%, rgba(10, 12, 10, 0.12) 58%),
    linear-gradient(135deg, #2f6b4f, var(--logo-gold-deep));
  box-shadow: var(--shadow);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/turfscape-hero.png");
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  transform: scale(1.08);
}

.video-frame-alt::before {
  background-position: 76% 40%;
}

.video-frame-warm::before {
  background-position: 30% 55%;
}

.video-frame-deep::before {
  background-position: 58% 72%;
}

.play-button {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--white);
}

.video-label {
  position: relative;
  z-index: 1;
  padding: 26px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
}

.process {
  padding-top: 34px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list li {
  min-height: 250px;
  padding: 30px;
  background: var(--paper);
}

.process-list span {
  display: block;
  margin-bottom: 64px;
  color: var(--copper);
  font-family: var(--font-display);
  font-weight: 800;
}

.process-list p {
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 52px;
  align-items: start;
  padding: 92px max(24px, calc((100% - var(--max-width)) / 2));
  border-top: 1px solid var(--line);
  background: var(--limestone);
}

.contact-copy {
  position: sticky;
  top: 104px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(17, 19, 15, 0.08);
}

.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 19, 15, 0.16);
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper);
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  padding: 14px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--moss);
  font-family: var(--font-display);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(24px, calc((100% - var(--max-width)) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
}

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(8, 12, 10, 0.86), rgba(8, 12, 10, 0.64)),
    url("assets/turfscape-hero.png") center / cover;
}

.thank-you {
  display: grid;
  align-content: center;
  min-height: 100vh;
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  padding: 64px 0;
  color: var(--white);
}

.thank-you-logo {
  position: absolute;
  top: 24px;
  left: max(24px, calc((100% - var(--max-width)) / 2));
  display: inline-flex;
}

.thank-you-logo img {
  width: clamp(190px, 18vw, 260px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34));
}

.thank-you-panel {
  max-width: 720px;
}

.thank-you-panel h1 {
  color: var(--white);
}

.thank-you-panel p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
}

.thank-you-secondary {
  color: var(--white);
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(251, 250, 247, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    justify-content: flex-start;
    border-radius: 6px;
  }

  .snapshot,
  .service-grid,
  .feature-band,
  .process-list,
  .contact {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .contact {
    gap: 32px;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-frame {
    min-height: 330px;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 185px;
  }

  .nav-links {
    top: 70px;
  }

  .hero {
    min-height: 86vh;
    padding: 100px 0 58px;
  }

  .hero-content {
    width: calc(100% - 36px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 12, 10, 0.86) 0%, rgba(8, 12, 10, 0.66) 100%),
      linear-gradient(0deg, rgba(8, 12, 10, 0.48) 0%, rgba(8, 12, 10, 0) 42%);
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .section,
  .showcase {
    width: min(100% - 36px, var(--max-width));
    padding: 72px 0;
  }

  .snapshot div,
  .service-card,
  .process-list li,
  .contact-form {
    padding: 24px;
  }

  .feature-band,
  .contact {
    padding: 72px 18px;
  }

  .feature-list,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-frame {
    min-height: 270px;
  }

  .site-footer {
    flex-direction: column;
    padding: 26px 18px;
  }

  .thank-you {
    width: min(100% - 36px, var(--max-width));
  }

  .thank-you-logo {
    left: 18px;
  }

  .thank-you-logo img {
    width: 185px;
  }
}

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