/* ============================================================
   Golf igrišče Ptuj — Sezona 2026
   v2 — Fairway dominant palette, photo-driven hero,
   cinematic ball arc animation. Pure CSS. No JS.
   ============================================================ */

/* ---------- 1. Tokens — DARK GREEN DOMINANT ---------- */
:root {
  /* greens (primary surfaces) */
  --green:        #0d2a1c;       /* deep fairway — primary bg */
  --green-mid:    #173b2a;
  --green-rich:   #1f4d36;
  --green-card:   #224935;
  --green-line:   rgba(247, 241, 222, 0.14);
  --green-pale:   #6b8b76;
  --green-leaf:   #c6d9a8;

  /* cream / paper (used as ACCENT, not default) */
  --cream:        #f7f1de;
  --cream-soft:   rgba(247, 241, 222, 0.78);
  --cream-mute:   rgba(247, 241, 222, 0.55);
  --paper:        #ede5cc;       /* break-section bg */
  --paper-warm:   #e6dcbc;       /* card bg on paper */

  /* inks (for paper sections) */
  --ink:          #0d2018;
  --ink-soft:     #2d4137;
  --ink-mute:     #6a7a70;
  --rule-soft:    rgba(13, 32, 24, 0.16);

  /* accents */
  --gold:         #d4a85a;       /* champagne brass */
  --gold-deep:    #a87a2c;
  --gold-pale:    #e7c98a;
  --clay:         #c66643;       /* flag, hot accent */

  /* type */
  --serif: "Fraunces", "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans:  "DM Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* fluid scale */
  --hero-display: clamp(80px, 17vw, 260px);
  --section-h:    clamp(40px, 6vw, 84px);
  --feat-h:       clamp(24px, 2.4vw, 36px);

  /* layout */
  --pad-x: clamp(20px, 5vw, 88px);

  /* motion */
  --ease-tee:    cubic-bezier(.24,.6,.32,1);
  --ease-flight: cubic-bezier(.18,.7,.34,1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  background: var(--green);
  color: var(--cream);
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }

.skip { position: absolute; left: -9999px; }
.skip:focus {
  left: 12px; top: 12px; padding: 8px 12px;
  background: var(--cream); color: var(--green);
  z-index: 200; font-family: var(--mono); font-size: 13px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 3. Topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 4vw, 48px);
  padding: 18px var(--pad-x);
  background: rgba(13, 42, 28, 0.62);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--green-line);
  color: var(--cream);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--cream);
}
.brand__mark { color: var(--gold); }
.brand__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.brand__name em {
  font-style: italic; font-weight: 500; color: var(--gold);
}

.nav {
  display: flex; gap: clamp(14px, 2.6vw, 32px);
  justify-content: center;
  font-family: var(--sans);
  font-size: 14px;
}
.nav a {
  position: relative;
  color: var(--cream-soft);
  transition: color .25s var(--ease-tee);
}
.nav a:hover { color: var(--cream); }
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-tee);
}
.nav a:hover::after { transform: scaleX(1); }

.topbar__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--gold);
  padding: 10px 16px;
  border: 1px solid var(--gold);
  transition: background .3s var(--ease-tee), transform .3s var(--ease-tee);
}
.topbar__cta:hover {
  background: var(--gold-pale); border-color: var(--gold-pale);
  transform: translateX(2px);
}
/* hamburger checkbox is visually hidden but keyboard-focusable */
.menu-toggle {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* hamburger button (label) — desktop hides it, mobile shows it */
.menu-btn {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  cursor: pointer;
  color: var(--cream);
  margin-right: -10px;
}
.menu-btn__bar {
  position: absolute;
  left: 9px; right: 9px;
  height: 1.5px;
  background: currentColor;
  transition:
    transform .3s var(--ease-tee),
    opacity .2s var(--ease-tee),
    top .3s var(--ease-tee);
  transform-origin: 50% 50%;
}
.menu-btn__bar:nth-child(1) { top: 16px; }
.menu-btn__bar:nth-child(2) { top: 22px; }
.menu-btn__bar:nth-child(3) { top: 28px; }

.menu-btn__lbl {
  position: absolute;
  bottom: -14px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  pointer-events: none;
  transition: opacity .2s var(--ease-tee);
}
.menu-btn__lbl--close { opacity: 0; }

/* :checked → hamburger morphs to X + label switches */
.menu-toggle:checked ~ .menu-btn .menu-btn__bar:nth-child(1) {
  top: 22px; transform: rotate(45deg);
}
.menu-toggle:checked ~ .menu-btn .menu-btn__bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle:checked ~ .menu-btn .menu-btn__bar:nth-child(3) {
  top: 22px; transform: rotate(-45deg);
}
.menu-toggle:checked ~ .menu-btn .menu-btn__lbl--open  { opacity: 0; }
.menu-toggle:checked ~ .menu-btn .menu-btn__lbl--close { opacity: 1; }

.menu-toggle:focus-visible ~ .menu-btn {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* lock body scroll when menu open (modern :has) */
body:has(.menu-toggle:checked) {
  overflow: hidden;
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: 1fr auto;
    padding: 14px 20px;
  }
  .topbar__cta { display: none; }       /* requested: hide on mobile */
  .menu-btn    { display: block; }

  /* nav becomes a fullscreen overlay */
  .nav {
    position: fixed;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(13,42,28,0.96) 0%, rgba(6,26,16,0.98) 100%);
    backdrop-filter: saturate(120%) blur(20px);
    -webkit-backdrop-filter: saturate(120%) blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 4vh, 36px);
    padding: 80px 24px 40px;
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity .35s var(--ease-tee),
      transform .35s var(--ease-tee);
  }
  .menu-toggle:checked ~ .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav a {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(28px, 7vw, 40px);
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--cream);
    opacity: 0;
    transform: translateY(8px);
  }
  .nav a::after { display: none; }       /* underline noise off in overlay */

  /* staggered reveal of menu items when open */
  .menu-toggle:checked ~ .nav a {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity .4s var(--ease-tee),
      transform .4s var(--ease-tee);
  }
  .menu-toggle:checked ~ .nav a:nth-child(1) { transition-delay: 0.10s; }
  .menu-toggle:checked ~ .nav a:nth-child(2) { transition-delay: 0.16s; }
  .menu-toggle:checked ~ .nav a:nth-child(3) { transition-delay: 0.22s; }
  .menu-toggle:checked ~ .nav a:nth-child(4) { transition-delay: 0.28s; }
  .menu-toggle:checked ~ .nav a:nth-child(5) { transition-delay: 0.34s; }
  .menu-toggle:checked ~ .nav a:nth-child(6) { transition-delay: 0.40s; }

  /* menu button stays above the overlay */
  .menu-btn { z-index: 60; color: var(--cream); }
}

/* ---------- 4. Hero — full-bleed photo ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - 64px);
  padding: clamp(80px, 11vw, 160px) var(--pad-x) clamp(120px, 14vw, 200px);
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
}

.hero__photo {
  position: absolute; inset: 0; z-index: -3;
  display: block;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: saturate(1.18) contrast(1.06) brightness(0.78);
  /* slight Ken Burns on initial load */
  transform: scale(1.04);
  animation: heroBurn 14s var(--ease-tee) 0.05s forwards;
}
@keyframes heroBurn {
  to { transform: scale(1.0); }
}
.hero__veil {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg,
      rgba(13, 42, 28, 0.55) 0%,
      rgba(13, 42, 28, 0.32) 30%,
      rgba(13, 42, 28, 0.6) 70%,
      rgba(13, 42, 28, 0.95) 100%),
    radial-gradient(120% 80% at 18% 80%,
      rgba(13, 42, 28, 0.7) 0%,
      rgba(13, 42, 28, 0) 60%);
}

/* The cinematic ball-arc animation, positioned over the photo */
.hero__shot {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* The dashed trail draws progressively along its own path */
.shot__trail {
  /* Total path length ~2150px; using larger dashoffset to ensure full hide */
  stroke-dashoffset: 2400;
  opacity: 0;
  animation: trailReveal 2.4s var(--ease-flight) 0.65s forwards;
  filter: drop-shadow(0 0 4px rgba(247, 241, 222, 0.4));
}
@keyframes trailReveal {
  0%   { stroke-dashoffset: 2400; opacity: 0; }
  8%   { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0.95; }
}

/* Ball + halo SNAP onto the trail path via offset-path.
   Same Bezier as <path d="...">. No keyframe approximation,
   so motion is perfectly smooth. */
.shot__ball,
.shot__halo {
  offset-path: path("M -40 850 Q 800 -240 1640 700");
  offset-rotate: 0deg;
  offset-distance: 0%;
  animation: ballFly 2.4s var(--ease-flight) 0.65s forwards;
  will-change: offset-distance;
}
.shot__halo { opacity: 0.7; }
@keyframes ballFly {
  from { offset-distance: 0%; }
  to   { offset-distance: 100%; }
}

/* meta line top */
.hero__meta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(40px, 8vw, 100px);
}
.hero__sep { color: rgba(212, 168, 90, 0.5); }
.hero__status { display: inline-flex; align-items: center; gap: 8px; color: var(--cream-soft); }
.hero__status strong { color: var(--gold); font-weight: 500; }
.dot {
  width: 8px; height: 8px; border-radius: 999px;
  display: inline-block;
  background: var(--gold);
  box-shadow: 0 0 0 0 currentColor;
  animation: pulse 2.4s var(--ease-tee) infinite;
}
.dot--ok { color: var(--gold); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(212, 168, 90, .5); }
  70%  { box-shadow: 0 0 0 12px rgba(212, 168, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 168, 90, 0); }
}

/* copy block */
.hero__copy {
  position: relative;
  max-width: 18ch;
}
.hero__h1 {
  margin: 0;
  display: grid; gap: clamp(20px, 2.4vw, 36px);
  font-family: var(--serif);
  color: var(--cream);
}
.hero__verb {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "wght" 320;
  font-size: var(--hero-display);
  line-height: 0.84;
  letter-spacing: -0.025em;
  color: var(--cream);
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(28px);
  animation: heroEnter 1s var(--ease-tee) 0.15s forwards;
}
.hero__sub {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--cream-soft);
  max-width: 36ch;
  letter-spacing: 0.005em;
  opacity: 0;
  transform: translateY(14px);
  animation: heroEnter 1s var(--ease-tee) 0.55s forwards;
}
.hero__sub em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
@keyframes heroEnter {
  to { opacity: 1; transform: translateY(0); }
}

.hero__actions {
  display: inline-flex; flex-wrap: wrap; gap: 14px;
  margin-top: clamp(28px, 4vw, 44px);
  opacity: 0;
  animation: heroEnter 1s var(--ease-tee) 1.1s forwards;
}

/* hero stat ribbon (was a separate section in v1) */
.hero__ribbon {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--green-line);
  padding-top: clamp(16px, 2vw, 22px);
  opacity: 0;
  animation: heroEnter 1.2s var(--ease-tee) 1.4s forwards;
}
.hero__ribbon li {
  padding: 4px 14px;
  border-right: 1px solid var(--green-line);
  display: flex; flex-direction: column; gap: 2px;
}
.hero__ribbon li:last-child { border-right: 0; }
.hero__ribbon li:first-child { padding-left: 0; }
.hero__ribbon span {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 32px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.015em;
  color: var(--cream);
  line-height: 1;
}
.hero__ribbon em {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* hero scroll cue */
.hero__scroll {
  position: absolute;
  bottom: clamp(120px, 14vw, 180px);
  right: var(--pad-x);
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 10px;
  color: var(--cream-mute);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollCue 2.4s var(--ease-tee) infinite;
}
@keyframes scrollCue {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50%      { opacity: 1; transform: translateY(4px); }
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition:
    background .3s var(--ease-tee),
    color .3s var(--ease-tee),
    transform .3s var(--ease-tee);
}
.btn--primary {
  background: var(--gold);
  color: var(--green);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--ghost-light {
  background: transparent; color: var(--cream); border-color: var(--cream);
}
.btn--ghost-light:hover {
  background: var(--cream); color: var(--green);
}
.btn--large { padding: 18px 28px; font-size: 14px; }
.btn__num {
  font-weight: 500;
  letter-spacing: 0.06em;
  border-left: 1px solid currentColor;
  padding-left: 12px;
}

/* ---------- 6. Course intro — PAPER BREAK ---------- */
.course {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(80px, 9vw, 140px) var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 720px) minmax(0, 0.65fr);
  align-items: start;
  gap: clamp(16px, 4vw, 60px);
  border-top: 4px solid var(--gold);
}
.course__num {
  grid-column: 1;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-mid);
  padding-top: 18px;
  border-top: 1px solid var(--ink);
  width: max-content;
}
.course__num span { color: var(--ink); }
.course__h2 {
  grid-column: 2;
  margin: 0 0 32px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--section-h);
  line-height: 0.95;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.course__lead { display: block; }
.course__follow {
  display: block;
  color: var(--green-mid);
  font-style: italic;
  font-weight: 300;
}
.course__body {
  grid-column: 2;
  display: grid; gap: 22px;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 64ch;
}
.course__lede {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.45;
  font-weight: 300;
  color: var(--ink);
}
.pull {
  margin: 16px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--paper-warm);
  font-family: var(--serif);
}
.pull p {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
}
.pull cite {
  display: block; margin-top: 12px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 920px) {
  .course { grid-template-columns: 1fr; }
  .course__num, .course__h2, .course__body { grid-column: 1; }
}

/* ---------- 6b. Holes — scorecard on paper ---------- */
.holes {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(80px, 9vw, 140px) var(--pad-x) clamp(60px, 7vw, 100px);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 4px solid var(--gold);
}
.holes__head {
  max-width: 720px;
  margin: 0 0 clamp(40px, 5vw, 72px);
}
.holes__pre {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-mid);
  padding-top: 18px;
  border-top: 1px solid var(--ink);
  display: inline-block;
  margin-bottom: 16px;
}
.holes__h {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: var(--section-h);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.holes__h em {
  font-style: italic;
  font-weight: 300;
  color: var(--green-mid);
}
.holes__sub {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}

.holes__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.holes__nine > header {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--ink);
}
.holes__nine h3 {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: -0.01em;
  color: var(--green-mid);
}
.holes__nine-stats {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.holes__list {
  display: grid;
  gap: clamp(28px, 3vw, 44px);
  /* equal-height rows so every card renders the same size */
  grid-auto-rows: 1fr;
  align-items: stretch;
}
.hole {
  position: relative;
  display: grid;
  /* fixed-width number column ensures the plan column (and therefore
     every image) has IDENTICAL width across all 18 cards regardless of
     glyph width of the hole number ("01" vs "18" in italic serif). */
  grid-template-columns: clamp(72px, 7vw, 110px) 1fr;
  grid-template-rows: auto auto 1fr;
  grid-template-areas:
    "n     plan"
    "data  data"
    "desc  desc";
  column-gap: 22px;
  row-gap: 12px;
  padding-bottom: clamp(28px, 3vw, 44px);
  border-bottom: 1px solid var(--rule-soft);
  transition: transform .25s var(--ease-tee);
}
.hole:hover { transform: translateY(-2px); }
.hole:last-child { border-bottom: 0; padding-bottom: 0; }

.hole__plan {
  grid-area: plan;
  margin: 0;
  position: relative;
  background: var(--paper-warm);
  border: 1px solid var(--rule-soft);
  aspect-ratio: 596 / 365;
  overflow: hidden;
}
.hole__plan img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
  transition: transform .8s var(--ease-tee);
}
.hole:hover .hole__plan img { transform: scale(1.025); }

.hole__n {
  grid-area: n;
  align-self: end;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.85;
  color: var(--green-mid);
  letter-spacing: -0.04em;
  padding-bottom: 4px;
}

.hole__data {
  grid-area: data;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hole__par {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hole__d em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-right: 1px;
  text-transform: none;
}
.hole__d i {
  font-style: normal;
  text-transform: lowercase;
  font-size: 11px;
  color: var(--ink-mute);
}
.hole__hcp {
  border-left: 1px solid var(--rule-soft);
  padding-left: 14px;
  margin-left: auto;
}
/* Par-3 / Par-5 holes get a small accent dot */
.hole[data-par="3"] .hole__par::before,
.hole[data-par="5"] .hole__par::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.hole[data-par="3"] .hole__par::before { background: var(--clay); }
.hole[data-par="5"] .hole__par::before { background: var(--green-mid); }

.hole__desc {
  grid-area: desc;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  /* clamp to 3 lines so every card has identical text block height */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.6em * 3);
}

@media (max-width: 480px) {
  .hole {
    grid-template-areas:
      "n"
      "plan"
      "data"
      "desc";
    grid-template-columns: 1fr;
  }
  .hole__n { padding-bottom: 0; }
}

.holes__total {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
}
.holes__total-label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.holes__total-val {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.holes__total-val em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.holes__total-meta {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-mute);
}

@media (max-width: 920px) {
  .holes__split { grid-template-columns: 1fr; }
}

/* ---------- 7. Features — DARK GREEN ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--green);
  color: var(--cream);
  border-top: 1px solid var(--green-line);
  border-bottom: 1px solid var(--green-line);
}
.feat {
  position: relative;
  padding: clamp(48px, 5vw, 80px) clamp(28px, 3.5vw, 52px);
  border-right: 1px solid var(--green-line);
  display: flex; flex-direction: column;
  gap: 14px;
  transition: background .35s var(--ease-tee);
}
.feat:last-child { border-right: 0; }
.feat:nth-child(2) {
  background: var(--green-mid);
}
.feat:hover {
  background: var(--green-rich);
}
.feat header {
  display: flex; align-items: baseline;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--green-line);
  margin-bottom: 4px;
}
.feat__num {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.feat__h {
  margin: 0;
  font-family: var(--serif);
  font-size: var(--feat-h);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.feat p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--cream-soft);
}
.feat__link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  width: max-content;
  transition: border-color .25s var(--ease-tee), gap .25s var(--ease-tee);
}
.feat__link:hover { border-color: var(--gold); gap: 12px; }
@media (max-width: 920px) {
  .features { grid-template-columns: 1fr; }
  .feat { border-right: 0; border-bottom: 1px solid var(--green-line); }
  .feat:last-child { border-bottom: 0; }
}

/* ---------- 8. Status / weather — DARKER GREEN ---------- */
.status {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  padding: clamp(56px, 7vw, 96px) var(--pad-x);
  background: linear-gradient(180deg, var(--green-rich) 0%, var(--green) 100%);
  color: var(--cream);
  border-bottom: 1px solid var(--green-line);
}
.status__pretitle {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.status__title {
  margin: 12px 0 14px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.012em;
}
.status__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.status__sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--cream-soft);
  max-width: 44ch;
}
.status__data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  font-family: var(--mono);
  border: 1px solid var(--green-line);
  background: var(--green-card);
}
.status__data > div {
  padding: 18px 22px;
  border-right: 1px solid var(--green-line);
  border-bottom: 1px solid var(--green-line);
}
.status__data > div:nth-child(2n) { border-right: 0; }
.status__data > div:nth-last-child(-n+2) { border-bottom: 0; }
.status__data dt {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.status__data dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--cream);
}
@media (max-width: 760px) { .status { grid-template-columns: 1fr; } }

/* ---------- 9. Pricing — PAPER BREAK ---------- */
.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 80px);
  padding: clamp(80px, 9vw, 140px) var(--pad-x);
  background: var(--paper);
  color: var(--ink);
  border-top: 4px solid var(--gold);
  border-bottom: 1px solid var(--rule-soft);
}
.pricing__head h2 {
  font-family: var(--serif);
  font-size: var(--section-h);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.018em;
  margin: 12px 0 16px;
}
.pricing__head h2 em {
  font-style: italic; font-weight: 300; color: var(--green-mid);
}
.pricing__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-mid);
  padding-top: 18px;
  border-top: 1px solid var(--ink);
  display: inline-block;
}
.pricing__sub { font-size: 14.5px; color: var(--ink-soft); max-width: 30ch; }

.pricetable {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 15px;
}
.pricetable thead th {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  padding: 14px 4px;
  border-bottom: 1px solid var(--ink);
}
.pricetable thead th:first-child { text-align: left; }
.pricetable tbody th {
  text-align: left; font-weight: 400;
  padding: 18px 4px;
  border-bottom: 1px solid var(--rule-soft);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.pricetable td {
  text-align: right;
  padding: 18px 4px;
  border-bottom: 1px solid var(--rule-soft);
  font-family: var(--mono);
  font-size: 15px;
  color: var(--ink-soft);
}
.pricetable .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  margin-right: 4px;
}
.pricetable__highlight th,
.pricetable__highlight td {
  border-bottom: 1px solid var(--ink);
  border-top: 1px solid var(--ink);
  background: var(--paper-warm);
}
.pricetable__highlight .num {
  color: var(--green-mid);
  font-size: 28px;
}
.pricing__note {
  grid-column: 2;
  margin: 22px 0 0;
  font-size: 13.5px;
  color: var(--ink-mute);
}
@media (max-width: 920px) {
  .pricing { grid-template-columns: 1fr; }
  .pricing__note { grid-column: 1; }
}

/* ---------- 10. Events — DARK GREEN ---------- */
.events {
  background: var(--green);
  color: var(--cream);
  padding: clamp(80px, 9vw, 140px) var(--pad-x);
  border-bottom: 1px solid var(--green-line);
}
.events__h {
  margin: 0 0 48px;
  font-family: var(--serif);
  font-size: var(--section-h);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.018em;
  display: flex; align-items: baseline; gap: 18px;
}
.events__h em { font-style: italic; font-weight: 300; color: var(--gold); }

.events__list {
  display: grid;
  border-top: 1px solid var(--green-line);
}
.events__list li {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: baseline;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(20px, 3vw, 32px) 0;
  border-bottom: 1px solid var(--green-line);
  transition: padding-left .3s var(--ease-tee), background .3s var(--ease-tee);
}
.events__list li:hover {
  padding-left: 12px;
  background:
    linear-gradient(to right, var(--green-card) 0%, transparent 60%);
}
.events__list time {
  font-family: var(--serif);
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1;
}
.events__list time span:first-child {
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.events__list time .m {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  font-style: normal;
}
.events__list h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--cream);
}
.events__list p {
  margin: 0;
  font-size: 14.5px;
  color: var(--cream-soft);
  line-height: 1.55;
}
.events__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 10px;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .events__list li { grid-template-columns: 80px 1fr; }
  .events__tag { display: none; }
  .events__list time span:first-child { font-size: 36px; }
}

/* ---------- 11. CTA / Reserve — DEEPEST GREEN ---------- */
.cta {
  background: linear-gradient(180deg, var(--green) 0%, #061a10 100%);
  color: var(--cream);
  padding: clamp(80px, 9vw, 140px) var(--pad-x);
  border-bottom: 1px solid var(--green-line);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "tee.";
  position: absolute;
  right: -3vw;
  bottom: -5vw;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 32vw;
  line-height: 0.8;
  color: rgba(247, 241, 222, 0.06);
  pointer-events: none;
  letter-spacing: -0.04em;
}
.cta__inner { max-width: 880px; position: relative; z-index: 1; }
.cta__pre {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.cta__h {
  margin: 16px 0 24px;
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.022em;
}
.cta__h em { font-style: italic; color: var(--gold); font-weight: 300; }
.cta__sub {
  font-size: 17px; line-height: 1.6;
  max-width: 56ch;
  color: var(--cream-soft);
  margin: 0 0 32px;
}
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.cta .btn--primary {
  background: var(--gold); color: var(--green); border-color: var(--gold);
}
.cta .btn--primary:hover { background: var(--cream); border-color: var(--cream); }
.cta .btn--ghost-light { color: var(--cream); border-color: var(--cream); }
.cta .btn--ghost-light:hover { background: var(--cream); color: var(--green); }
.cta__hours {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--gold-pale);
  margin: 0;
  border-top: 1px solid var(--green-line);
  padding-top: 20px;
  max-width: 56ch;
}
.cta__hours strong { color: var(--cream); font-weight: 500; }

/* ---------- 12. Visit / contact — GREEN ---------- */
.visit {
  position: relative;
  background: var(--green-mid);
  color: var(--cream);
  padding: clamp(80px, 9vw, 140px) var(--pad-x);
  border-bottom: 1px solid var(--green-line);
}
.visit__h {
  margin: 0 0 48px;
  font-family: var(--serif);
  font-size: var(--section-h);
  font-weight: 300;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.018em;
  color: var(--gold);
}
.visit__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.visit__col h3 {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid var(--green-line);
  padding-top: 14px;
}
.visit__col address,
.visit__col p {
  font-family: var(--serif);
  font-size: 17px;
  font-style: normal;
  line-height: 1.5;
  color: var(--cream);
  margin: 0 0 8px;
}
.visit__col a {
  color: var(--cream);
  border-bottom: 1px solid var(--green-line);
  transition: border-color .25s var(--ease-tee);
}
.visit__col a:hover { border-color: var(--gold); }
.visit__nav {
  font-family: var(--mono) !important;
  font-size: 12px !important;
  color: var(--gold-pale) !important;
  letter-spacing: 0.04em;
}

.visit__compass {
  position: absolute;
  right: clamp(20px, 4vw, 60px);
  top: clamp(40px, 5vw, 80px);
  width: clamp(80px, 9vw, 140px);
  color: var(--gold-pale);
  opacity: 0.4;
  pointer-events: none;
}
@media (max-width: 920px) {
  .visit__grid { grid-template-columns: repeat(2, 1fr); }
  .visit__compass { display: none; }
}
@media (max-width: 480px) {
  .visit__grid { grid-template-columns: 1fr; }
}

/* ---------- 13. Footer ---------- */
.foot {
  background: #050f0a;
  color: var(--cream);
  padding: clamp(48px, 6vw, 80px) var(--pad-x) clamp(28px, 3vw, 40px);
}
.foot__top {
  display: flex; flex-wrap: wrap;
  align-items: baseline; justify-content: space-between;
  gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--green-line);
}
.foot__brand {
  display: inline-flex; align-items: baseline; gap: 14px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
}
.foot__brandname em { color: var(--gold); font-style: italic; }
.foot__tagline {
  font-size: 15px; font-style: italic; color: var(--cream-mute);
}
.foot__nav {
  display: inline-flex; flex-wrap: wrap;
  gap: clamp(14px, 2.4vw, 28px);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.foot__nav a {
  color: var(--cream-soft);
  transition: color .25s var(--ease-tee);
}
.foot__nav a:hover { color: var(--gold); }

.foot__sponsors {
  margin: 28px 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--green-line);
}
.foot__plabel {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.foot__sponsors ul {
  display: flex; flex-wrap: wrap;
  gap: clamp(20px, 4vw, 56px);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-mute);
}

.foot__legal {
  display: flex; flex-wrap: wrap;
  align-items: baseline; justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--cream-mute);
}
.foot__legal a {
  color: var(--gold);
  border-bottom: 1px solid rgba(212, 168, 90, 0.4);
}

/* ---------- 14. Hero responsive ---------- */
@media (max-width: 760px) {
  .hero {
    padding-top: clamp(80px, 14vw, 110px);
    padding-bottom: 200px;
  }
  .hero__copy { max-width: 100%; }
  .hero__ribbon { grid-template-columns: repeat(3, 1fr); gap: 8px 0; }
  .hero__ribbon li:nth-child(4),
  .hero__ribbon li:nth-child(5) { border-top: 1px solid var(--green-line); padding-top: 10px; }
  .hero__ribbon li:nth-child(3) { border-right: 0; }
  .hero__scroll { display: none; }
}

/* ---------- 15. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .shot__halo,
  .shot__ball  { offset-distance: 100%; }
  .shot__trail { stroke-dashoffset: 0; opacity: 0.95; }
  .hero__verb,
  .hero__sub,
  .hero__actions,
  .hero__ribbon { opacity: 1; transform: none; }
  .hero__photo img { transform: scale(1.0); }
}
