:root {
  --green: #1b3a2d;
  --deep-green: #0f2a20;
  --gold: #b8963e;
  --cream: #f5f2ed;
  --warm-white: #fffdf8;
  --sage: #e8ece3;
  --charcoal: #1e1e1e;
  --muted: #5f5b52;
  --line: rgba(27, 58, 45, 0.14);
  --radius: 8px;
  --container: min(1160px, calc(100% - 48px));
  --shadow: 0 20px 48px rgba(15, 42, 32, 0.14);
  --heading: Georgia, "Times New Roman", serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font-family: var(--body);
  line-height: 1.55;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--gold);
  color: var(--deep-green);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--warm-white);
  background: linear-gradient(180deg, rgba(7, 27, 20, 0.54), rgba(7, 27, 20, 0));
}

.header-inner {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: clamp(154px, 15vw, 190px);
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 54px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a:not(.button) {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 253, 248, 0.92);
}

.site-nav svg {
  width: 12px;
  height: 8px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible {
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 6px;
  background: rgba(15, 42, 32, 0.56);
  color: var(--warm-white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 14px 30px;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-gold {
  background: var(--deep-green);
  color: var(--warm-white);
  box-shadow: 0 10px 26px rgba(15, 42, 32, 0.2);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--green);
}

.button-cream {
  border-color: rgba(184, 150, 62, 0.7);
  background: rgba(245, 242, 237, 0.42);
  color: #8c6a1f;
  backdrop-filter: blur(8px);
}

.button-cream:hover,
.button-cream:focus-visible {
  border-color: var(--gold);
  background: rgba(245, 242, 237, 0.76);
}

.button-small {
  min-height: 50px;
  padding: 16px 26px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 565px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 42, 32, 0.46), rgba(15, 42, 32, 0.08) 35%, rgba(15, 42, 32, 0.26)),
    url("../images/hero-golf-course.jpg");
  background-position: center 48%;
  background-size: cover;
  color: var(--deep-green);
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 40%, rgba(255, 207, 105, 0.5), transparent 23%),
    linear-gradient(90deg, rgba(15, 42, 32, 0.35), transparent 31%, transparent 69%, rgba(15, 42, 32, 0.36)),
    linear-gradient(180deg, rgba(255, 253, 248, 0.03), rgba(245, 242, 237, 0.32));
  content: "";
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.01), rgba(255, 253, 248, 0.2) 55%, rgba(15, 42, 32, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 132px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #9a741f;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.02;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--heading);
  font-weight: 700;
}

h1 {
  color: var(--deep-green);
  font-size: clamp(3.3rem, 5.4vw, 5.25rem);
  text-shadow: 0 1px 18px rgba(245, 242, 237, 0.48);
}

h2 {
  color: var(--deep-green);
  font-size: clamp(2rem, 3.5vw, 3.05rem);
}

h3 {
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.22;
}

.hero-subhead {
  max-width: 590px;
  margin: 18px auto 0;
  color: #111c16;
  font-size: 1.08rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}

.value-strip {
  background: var(--warm-white);
  border-bottom: 1px solid rgba(15, 42, 32, 0.08);
  box-shadow: 0 14px 34px rgba(15, 42, 32, 0.06);
}

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

.value-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 162px;
  padding: 30px 34px;
  border-right: 1px solid var(--line);
}

.value-item:last-child {
  border-right: 0;
}

.icon-box {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(184, 150, 62, 0.22);
  border-radius: 8px;
  background: linear-gradient(145deg, #fffefa, #f0eee5);
}

.icon-box svg {
  width: 62px;
  height: 62px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.icon-box .accent {
  color: var(--gold);
  stroke: currentColor;
}

.value-item h2 {
  font-family: inherit;
  color: var(--deep-green);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}

.value-item p {
  margin: 8px 0 0;
  color: #111c16;
  font-size: 0.95rem;
}

.section-cream {
  background:
    radial-gradient(circle at 50% 0, rgba(184, 150, 62, 0.11), transparent 32%),
    var(--cream);
}

.tools {
  padding: 56px 0 72px;
}

.how {
  padding: 54px 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.56), rgba(255, 253, 248, 0.14)),
    var(--sage);
}

.about {
  padding: 66px 0 64px;
}

.contact-band {
  padding: 34px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.compact-heading {
  margin-bottom: 20px;
}

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

.tool-card {
  display: grid;
  grid-template-columns: 47% 1fr;
  min-height: 256px;
  overflow: hidden;
  border: 1px solid rgba(15, 42, 32, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 34px rgba(15, 42, 32, 0.08);
}

.product-media {
  display: grid;
  min-width: 0;
  place-items: center;
  background: linear-gradient(180deg, rgba(245, 242, 237, 0.88), rgba(255, 253, 248, 0.96));
  padding: 22px 0 22px 22px;
}

.product-media img {
  aspect-ratio: 4 / 3;
  width: 100%;
  max-height: 168px;
  border: 7px solid #101714;
  border-radius: 8px;
  background: #faf7ef;
  box-shadow: 0 12px 22px rgba(15, 42, 32, 0.22);
  object-fit: contain;
  object-position: center;
}

.tool-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px 24px 24px 22px;
}

.tool-content p {
  margin: 14px 0 24px;
  color: #111c16;
  font-size: 0.95rem;
}

.text-link {
  width: fit-content;
  margin-top: auto;
  color: #9a741f;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link::after {
  content: "  \2192";
}

.muted-link::after {
  content: "";
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--deep-green);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-grid li {
  position: relative;
  display: grid;
  grid-template-columns: 92px auto 1fr;
  gap: 12px 16px;
  align-items: center;
  min-height: 136px;
  padding: 0 34px;
  border-right: 1px solid var(--line);
}

.step-grid li:last-child {
  border-right: 0;
}

.step-icon {
  grid-row: 1 / span 2;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
}

.step-icon svg {
  width: 44px;
  height: 44px;
  color: var(--cream);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.step-icon .accent {
  color: var(--gold);
  stroke: currentColor;
}

.step-number {
  align-self: end;
  color: #9a741f;
  font-family: var(--heading);
  font-size: 2.5rem;
  line-height: 0.95;
}

.step-grid h3 {
  align-self: end;
}

.step-grid p {
  grid-column: 2 / 4;
  margin: -4px 0 0;
  color: #111c16;
  font-size: 0.94rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 78px;
  align-items: center;
}

.about-copy p:not(.eyebrow) {
  max-width: 430px;
  margin: 18px 0 0;
  color: #111c16;
  font-size: 1rem;
}

.about-visual {
  min-height: 226px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(15, 42, 32, 0.1);
  box-shadow: 0 12px 30px rgba(15, 42, 32, 0.08);
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 226px;
  object-fit: cover;
  object-position: center 53%;
}

.contact-band {
  background:
    linear-gradient(90deg, rgba(184, 150, 62, 0.18), transparent 42%),
    var(--deep-green);
  color: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.contact-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

.contact-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-icon .accent {
  color: var(--gold);
  stroke: currentColor;
}

.contact-layout h2 {
  color: var(--cream);
  font-family: inherit;
  font-size: 1.45rem;
  font-weight: 800;
}

.contact-layout p:not(.eyebrow) {
  margin: 4px 0 0;
  color: rgba(245, 242, 237, 0.85);
}

.contact-layout .eyebrow {
  display: none;
}

.button-outline-gold {
  min-width: 220px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  box-shadow: none;
}

.button-outline-gold:hover,
.button-outline-gold:focus-visible {
  background: rgba(184, 150, 62, 0.12);
}

.site-footer {
  background: #082219;
  color: rgba(245, 242, 237, 0.82);
  padding: 34px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 46px;
  align-items: center;
}

.footer-logo img {
  width: 150px;
  height: 66px;
  object-fit: contain;
  object-position: left center;
}

.site-footer p {
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.site-footer small {
  display: block;
  margin-top: 8px;
  color: rgba(245, 242, 237, 0.72);
  font-size: 0.82rem;
  text-align: right;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  font-weight: 700;
}

.site-footer nav a + a::before {
  margin-right: 20px;
  color: rgba(245, 242, 237, 0.58);
  content: "//";
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

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

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 6px);
    display: grid;
    gap: 4px;
    visibility: hidden;
    border: 1px solid rgba(245, 242, 237, 0.18);
    border-radius: var(--radius);
    background: rgba(15, 42, 32, 0.97);
    padding: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 10px 8px;
  }

  .site-nav .button {
    margin-top: 8px;
  }

  .value-grid,
  .tool-grid,
  .step-grid,
  .about-layout,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .value-item,
  .step-grid li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-item:last-child,
  .step-grid li:last-child {
    border-bottom: 0;
  }

  .tool-card {
    grid-template-columns: 240px 1fr;
  }

  .contact-icon {
    display: none;
  }

  .site-footer small,
  .site-footer nav {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .header-inner {
    min-height: 78px;
  }

  .brand-logo {
    width: 128px;
    height: 58px;
  }

  .hero {
    min-height: 520px;
    background-position: center;
  }

  .hero-content {
    padding: 108px 0 58px;
  }

  h1 {
    font-size: clamp(2.75rem, 11.5vw, 4rem);
  }

  .hero-subhead br {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .value-item {
    grid-template-columns: 82px 1fr;
    min-height: 132px;
    padding: 22px 10px;
  }

  .icon-box {
    width: 70px;
    height: 70px;
  }

  .icon-box svg {
    width: 52px;
    height: 52px;
  }

  .tools,
  .about {
    padding: 50px 0;
  }

  .how {
    padding: 44px 0;
  }

  .tool-card {
    grid-template-columns: 1fr;
  }

  .product-media {
    padding: 20px 20px 0;
  }

  .tool-content {
    padding: 22px;
  }

  .step-grid li {
    grid-template-columns: 78px auto 1fr;
    padding: 22px 0;
  }

  .step-icon {
    width: 70px;
    height: 70px;
  }

  .step-number {
    font-size: 2rem;
  }

  .about-layout {
    gap: 28px;
  }

  .about-visual {
    min-height: 190px;
  }
}

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