﻿:root {
  color-scheme: light;
  --green: #287838;
  --green-2: #1f6d34;
  --green-3: #103d24;
  --green-4: #06180d;
  --yellow: #fff200;
  --yellow-2: #d0c000;
  --ink: #0b1510;
  --text: #21342a;
  --muted: #607164;
  --line: #d8e4d2;
  --paper: #ffffff;
  --field: #f7faf2;
  --field-2: #eef6e8;
  --danger: #8b261f;
  --shadow: 0 18px 48px rgba(16, 61, 36, 0.13);
  --shadow-soft: 0 10px 26px rgba(16, 61, 36, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--field);
  letter-spacing: 0;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--yellow);
  color: var(--green-4);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 250, 242, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  border: 2px solid var(--green-3);
  color: var(--yellow);
  font-weight: 900;
  line-height: 1;
  transform: skew(-8deg);
  box-shadow: 5px 5px 0 var(--yellow);
}

.brand-text {
  display: grid;
  gap: 0.1rem;
  line-height: 1;
}

.brand-name {
  color: var(--green-3);
  font-size: 1.25rem;
  font-weight: 900;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.08rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0.58rem;
  color: var(--green-3);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 750;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: #e7f1e2;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--green-3);
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 20px;
  height: 2px;
  display: block;
  content: "";
  background: currentColor;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.05rem;
  border-radius: 8px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

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

.button.primary {
  background: var(--yellow);
  color: var(--green-4);
  border-color: var(--green-3);
  box-shadow: 5px 5px 0 var(--green-3);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 3px 3px 0 var(--green-3);
}

.button.secondary {
  background: var(--green-3);
  color: #fff;
  border-color: var(--green-3);
}

.button.ghost {
  background: transparent;
  color: var(--green-3);
  border-color: var(--line);
}

.section.dark .button.ghost,
.cta-band .button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.section.dark .button.ghost:hover,
.section.dark .button.ghost:focus-visible,
.cta-band .button.ghost:hover,
.cta-band .button.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.button.full {
  width: 100%;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  min-height: 78svh;
  display: grid;
  align-items: center;
  padding: clamp(3.4rem, 6vw, 5rem) 0 3.25rem;
  background: var(--field);
  overflow: hidden;
}

.hero.photo-hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 24, 13, 0.92), rgba(6, 24, 13, 0.62) 48%, rgba(6, 24, 13, 0.1)),
    url("../img/golf-course-aerial.jpg") center / cover no-repeat;
}

.hero.photo-hero h1,
.hero.photo-hero .hero-deck,
.hero.photo-hero .eyebrow {
  color: #fff;
}

.hero.photo-hero .hero-deck {
  max-width: 54ch;
}

.hero-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 1.04fr);
  align-items: center;
  gap: 3rem;
}

.hero h1 {
  margin: 0;
  color: var(--green-4);
  font-size: clamp(3.5rem, 7vw, 5.2rem);
  line-height: 0.96;
  font-weight: 950;
}

.hero-deck {
  margin: 1.4rem 0 0;
  max-width: 58ch;
  color: var(--text);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2.4rem;
}

.proof-item {
  padding: 0.85rem;
  border-left: 4px solid var(--yellow);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.proof-item strong {
  display: block;
  color: var(--green-3);
  font-size: 1.4rem;
}

.proof-item span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.25;
}

.hero-visual {
  position: relative;
  min-height: clamp(420px, 48vw, 540px);
  display: grid;
  align-items: center;
}

.course-visual {
  position: absolute;
  inset: 1rem 0 auto auto;
  width: min(96%, 680px);
  filter: drop-shadow(0 20px 28px rgba(16, 61, 36, 0.16));
}

.zippy-hero {
  position: absolute;
  right: -10rem;
  bottom: -6rem;
  width: min(86%, 620px);
  max-height: 540px;
  object-fit: contain;
  object-position: center;
}

.visual-badge {
  position: absolute;
  left: 0.5rem;
  bottom: 3.5rem;
  width: 196px;
  padding: 1rem;
  background: var(--green-3);
  color: #fff;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-badge strong {
  display: block;
  color: var(--yellow);
  font-size: 2rem;
  line-height: 1;
}

.visual-badge span {
  display: block;
  margin-top: 0.35rem;
  line-height: 1.35;
}

.photo-panel {
  position: relative;
  min-height: 460px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 24, 13, 0.08), rgba(6, 24, 13, 0.64)),
    url("../img/golf-course-aerial.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.photo-panel-card {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 520px;
  padding: 1.25rem;
  color: #fff;
  background: rgba(6, 24, 13, 0.88);
  border: 1px solid rgba(255, 240, 0, 0.55);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.photo-panel-card h3 {
  margin: 0;
  color: var(--yellow);
  font-size: 1.35rem;
}

.photo-panel-card p {
  margin: 0.55rem 0 0;
  color: #eef7ea;
  line-height: 1.55;
}

.format-stack {
  display: grid;
  gap: 0.9rem;
}

.format-row {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.format-number {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 8px;
  background: var(--green-3);
  color: var(--yellow);
  font-size: 1.75rem;
  font-weight: 950;
}

.format-row h3 {
  margin: 0;
  color: var(--green-3);
}

.format-row p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.stat-strip {
  background: var(--green-3);
  color: #fff;
  border-top: 6px solid var(--yellow);
}

.stat-strip-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.stat {
  padding: 1.1rem 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.stat:first-child {
  border-left: 0;
}

.stat strong {
  display: block;
  color: var(--yellow);
  font-size: 1.55rem;
}

.stat span {
  color: #e6f1e1;
  font-size: 0.92rem;
}

.section {
  padding: 5rem 0;
  background: var(--paper);
}

.section.alt {
  background: var(--field);
}

.section.compact {
  padding-block: clamp(2.25rem, 5vw, 4rem);
}

.section.dark {
  background: var(--green-4);
  color: #f3faef;
}

.section.band {
  background: var(--green);
  color: #fff;
}

.wrap {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section h2,
.page-hero h1 {
  margin: 0;
  color: var(--green-4);
  font-size: clamp(2.15rem, 4vw, 3rem);
  line-height: 1.06;
  font-weight: 930;
}

.section.dark h2,
.section.band h2 {
  color: #fff;
}

.section-head p,
.lead {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.section.dark .section-head p,
.section.dark .lead,
.section.band .section-head p {
  color: #e4f0dd;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.feature-card,
.audience-card,
.step-card,
.faq-card,
.metric-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.feature-card,
.audience-card,
.step-card,
.faq-card,
.metric-card {
  padding: 1.25rem;
}

.feature-card h3,
.audience-card h3,
.step-card h3,
.faq-card h3,
.metric-card h3 {
  margin: 0;
  color: var(--green-3);
  font-size: 1.2rem;
}

.feature-card p,
.audience-card p,
.step-card p,
.faq-card p,
.metric-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.path-card {
  display: grid;
  gap: 0.45rem;
  min-height: 132px;
  padding: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.path-card:hover,
.path-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.path-card span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.path-card strong {
  font-size: 1.05rem;
  line-height: 1.25;
}

.card-media {
  padding: 0;
  overflow: hidden;
}

.card-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.numbered {
  counter-reset: item;
}

.numbered .step-card::before {
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--green-4);
  font-weight: 900;
}

.course-system {
  align-items: center;
}

.course-system img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.check-list li {
  position: relative;
  padding-left: 1.9rem;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--green-3);
}

.split-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.stacked-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  align-items: start;
}

.stacked-panel > div:first-child {
  max-width: 900px;
}

.zipos-preview {
  padding: 1rem;
  background: #0c2015;
  border: 1px solid #245d34;
  border-radius: 8px;
  color: #eaf7e4;
  box-shadow: var(--shadow);
}

.zipos-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #2b6840;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-4);
  font-size: 0.82rem;
  font-weight: 900;
}

.zipos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.phone-mock,
.dashboard-mock,
.scorecard-mock,
.demo-tabs,
.resource-card,
.legal-page {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.phone-mock {
  width: min(100%, 360px);
  margin-inline: auto;
  padding: 0.9rem;
  color: #fff;
  background: #07180d;
  border: 8px solid #07180d;
}

.phone-top,
.dash-head,
.score-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
}

.phone-top span,
.dash-head span {
  width: 3.5rem;
  height: 0.38rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.app-card,
.app-row {
  margin-top: 0.7rem;
  padding: 0.85rem;
  color: var(--ink);
  background: #fff;
  border-radius: 7px;
}

.app-card.active {
  background: var(--yellow);
}

.app-card small,
.app-card em,
.app-row span {
  color: var(--muted);
}

.app-card b,
.app-card em {
  display: block;
}

.app-card em {
  font-style: normal;
  font-size: 0.88rem;
}

.app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-mock,
.scorecard-mock {
  padding: 1.1rem;
}

.metric-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.metric-mini-grid div {
  padding: 0.9rem;
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric-mini-grid small {
  display: block;
  color: var(--muted);
}

.metric-mini-grid b {
  display: block;
  margin-top: 0.15rem;
  color: var(--green-3);
  font-size: 1.35rem;
}

.dash-chart {
  display: flex;
  align-items: end;
  gap: 0.45rem;
  height: 120px;
  margin-top: 1rem;
  padding: 0.75rem;
  background: linear-gradient(180deg, var(--field), #fff);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dash-chart span {
  flex: 1;
  min-width: 14px;
  border-radius: 6px 6px 0 0;
  background: var(--green);
}

.dash-chart span:nth-child(1) { height: 42%; }
.dash-chart span:nth-child(2) { height: 66%; }
.dash-chart span:nth-child(3) { height: 54%; }
.dash-chart span:nth-child(4) { height: 84%; background: var(--yellow); }
.dash-chart span:nth-child(5) { height: 72%; }

.scorecard-mock table {
  width: 100%;
  min-width: 0;
}

.score-total {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 0.85rem;
  color: #fff;
  background: var(--green-3);
  border-radius: 8px;
}

.demo-tabs {
  padding: 1rem;
}

.tab-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.tab-list button {
  min-height: 40px;
  padding: 0 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-3);
  background: var(--field);
  font-weight: 850;
  cursor: pointer;
}

.tab-list button[aria-selected="true"] {
  color: var(--green-4);
  background: var(--yellow);
  border-color: var(--green-3);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 1rem;
  align-items: start;
}

.demo-screen {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  color: #fff;
  background: var(--green-4);
  border-radius: 8px;
}

.demo-row {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.demo-row span {
  display: inline-grid;
  place-items: center;
  min-width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: var(--green-4);
  background: var(--yellow);
  font-weight: 950;
}

.resource-card,
.legal-page {
  padding: 1.25rem;
}

.resource-card span {
  display: inline-block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.resource-card h3,
.legal-page h2 {
  margin: 0.65rem 0 0.45rem;
  color: var(--green-3);
}

.resource-card p,
.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.6;
}

.zipos-tile {
  min-height: 112px;
  padding: 1rem;
  background: #123321;
  border: 1px solid #2b6840;
  border-radius: 8px;
}

.zipos-tile strong {
  display: block;
  color: var(--yellow);
  font-size: 1.6rem;
}

.zipos-tile span {
  display: block;
  margin-top: 0.45rem;
  color: #cce5c3;
  font-size: 0.9rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.timeline-item strong {
  color: var(--green-3);
}

.timeline-item p {
  margin: 0.25rem 0 0;
  line-height: 1.55;
  color: var(--muted);
}

.calculator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 370px);
  gap: 1.25rem;
  align-items: start;
}

.calculator-form,
.calculator-output,
.lead-form {
  padding: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.assessment-contact {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.assessment-contact[hidden] {
  display: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field.full {
  grid-column: 1 / -1;
}

label,
.field-label {
  color: var(--green-3);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c8d9c0;
  border-radius: 8px;
  padding: 0.72rem 0.8rem;
  color: var(--ink);
  background: #fff;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 222, 0, 0.45);
  border-color: var(--green);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.check-grid label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 42px;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--field);
}

.check-grid input {
  width: 18px;
  min-height: 18px;
}

.score-meter {
  --score: 72%;
  height: 14px;
  margin: 1rem 0 1.2rem;
  border-radius: 999px;
  background: #e4eee0;
  overflow: hidden;
}

.score-meter::before {
  content: "";
  display: block;
  width: var(--score);
  height: 100%;
  background: var(--yellow);
  border-right: 4px solid var(--green-3);
}

.score-number {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  color: var(--green-4);
}

.score-number strong {
  font-size: 4rem;
  line-height: 1;
}

.score-number span {
  font-weight: 850;
}

.output-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 1.25rem;
}

.output-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.output-row.stack {
  display: grid;
  gap: 0.35rem;
}

.output-row.stack strong {
  line-height: 1.45;
}

.output-row span:first-child {
  color: var(--muted);
}

.output-row strong {
  color: var(--green-3);
}

.page-hero {
  padding: 5rem 0 3.5rem;
  background: var(--field);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.72fr);
  gap: 3rem;
  align-items: center;
}

.page-hero p {
  margin: 1rem 0 0;
  max-width: 66ch;
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--muted);
}

.page-hero-asset {
  justify-self: end;
  width: min(100%, 380px);
}

.page-hero-asset img {
  display: block;
  filter: drop-shadow(0 18px 22px rgba(16, 61, 36, 0.12));
}

.cta-band {
  padding: 3.25rem 0;
  background: var(--green-3);
  color: #fff;
}

.cta-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-inner h2 {
  margin: 0;
  font-size: 2rem;
}

.cta-inner p {
  margin: 0.5rem 0 0;
  color: #dcead7;
  line-height: 1.55;
}

.lead-form {
  display: grid;
  gap: 1rem;
}

.form-status {
  min-height: 24px;
  color: var(--green-3);
  font-size: 0.92rem;
  font-weight: 750;
}

.legal-note {
  margin-top: 1.25rem;
  padding: 1rem;
  border-left: 4px solid var(--yellow);
  background: #fffbea;
  color: #4f4a28;
  line-height: 1.55;
  font-size: 0.92rem;
}

.site-footer {
  background: var(--green-4);
  color: #dcead7;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.55fr));
  gap: 2rem;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 0.9rem;
  color: #fff;
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a {
  color: #dcead7;
  line-height: 1.6;
}

.footer-grid a {
  display: block;
  text-decoration: none;
  margin: 0.35rem 0;
}

.footer-bottom {
  width: min(1180px, calc(100% - 2rem));
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #a9c5a7;
  font-size: 0.88rem;
  line-height: 1.55;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.1rem;
}

summary {
  cursor: pointer;
  color: var(--green-3);
  font-weight: 850;
}

details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.table-wrap {
  overflow-x: visible;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
}

th,
td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--green-3);
  background: var(--field-2);
}

td {
  color: var(--text);
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 76px;
    display: none;
    padding: 0.65rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-height: calc(100svh - 92px);
    overflow: auto;
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-inner,
  .page-hero-inner,
  .split-panel,
  .calculator,
  .tab-panel.active,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 10vw, 4rem);
  }

  .hero-visual {
    min-height: 500px;
  }

  .zippy-hero {
    right: -4rem;
    width: 560px;
  }

  .stat-strip-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero-asset {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .header-inner,
  .wrap,
  .hero-inner,
  .page-hero-inner,
  .cta-inner,
  .footer-grid,
  .footer-bottom,
  .stat-strip-inner {
    width: min(100% - 1.25rem, 1180px);
  }

  .brand-tag {
    display: none;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero.photo-hero {
    background:
      linear-gradient(180deg, rgba(6, 24, 13, 0.9), rgba(6, 24, 13, 0.68)),
      url("../img/golf-course-aerial.jpg") center / cover no-repeat;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.15rem);
    overflow-wrap: anywhere;
  }

  .section h2 {
    font-size: clamp(1.95rem, 8vw, 2.25rem);
    overflow-wrap: anywhere;
  }

  .hero-deck,
  .page-hero p {
    font-size: 1.05rem;
  }

  .hero-proof,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .check-grid,
  .zipos-grid,
  .metric-mini-grid {
    grid-template-columns: 1fr;
  }

  .photo-panel {
    min-height: 360px;
  }

  .photo-panel-card {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .tab-list {
    display: grid;
  }

  .hero-visual {
    min-height: 430px;
  }

  .course-visual {
    width: 100%;
  }

  .zippy-hero {
    right: -4rem;
    bottom: -3.5rem;
    width: min(440px, 118vw);
  }

  .visual-badge {
    left: 0;
    bottom: 1rem;
    width: min(190px, 54vw);
  }

  .stat-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .section,
  .page-hero {
    padding: 3.5rem 0;
  }

  .format-row {
    grid-template-columns: 1fr;
  }

  .output-row {
    display: grid;
    gap: 0.25rem;
  }
}

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