:root {
  --gc-night: #020a09;
  --gc-evergreen: #06231e;
  --gc-panel: rgba(7, 32, 28, 0.9);
  --gc-panel-strong: rgba(3, 17, 15, 0.96);
  --gc-cream: #fbf4df;
  --gc-muted: rgba(251, 244, 223, 0.72);
  --gc-line: rgba(251, 244, 223, 0.16);
  --gc-lime: #d9f24a;
  --gc-gold: #c99b42;
  --gc-red: #ff4964;
  --gc-max: 1220px;
  --gc-pad: clamp(16px, 4vw, 42px);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--gc-night);
  scroll-behavior: smooth;
}

body.gc-v2-page {
  background:
    radial-gradient(circle at 18% 0%, rgba(217, 242, 74, 0.08), transparent 32rem),
    linear-gradient(180deg, #03110f 0%, #020a09 100%);
  color: var(--gc-cream);
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

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

.gc-v2-header {
  align-items: center;
  background: rgba(2, 10, 9, 0.88);
  border-bottom: 1px solid var(--gc-line);
  backdrop-filter: blur(18px);
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 72px;
  padding: 14px var(--gc-pad);
  position: sticky;
  top: 0;
  z-index: 20;
}

.gc-v2-brand {
  color: var(--gc-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.gc-v2-brand::first-letter,
.gc-v2-brand::after {
  color: var(--gc-lime);
}

.gc-v2-nav {
  align-items: center;
  display: flex;
  gap: clamp(8px, 1.4vw, 18px);
  justify-content: center;
  min-width: 0;
}

.gc-v2-nav a,
.gc-v2-header-actions a,
.gc-v2-menu-button {
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(251, 244, 223, 0.84);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  min-height: 38px;
  padding: 9px 11px;
  text-decoration: none;
  white-space: nowrap;
}

.gc-v2-join-link {
  background: var(--gc-lime);
  color: #07110e !important;
}

.gc-v2-nav a:is(:hover, :focus-visible, .is-active),
.gc-v2-header-actions a:is(:hover, :focus-visible),
.gc-v2-menu-button:is(:hover, :focus-visible) {
  background: rgba(217, 242, 74, 0.12);
  border-color: rgba(217, 242, 74, 0.28);
  color: var(--gc-lime);
  outline: none;
}

.gc-v2-header-actions {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: end;
}

.gc-v2-menu-button {
  background: transparent;
  cursor: pointer;
  display: none;
}

.gc-v2-main {
  overflow: hidden;
}

.gc-v2-hero {
  background:
    linear-gradient(90deg, rgba(2, 10, 9, 0.92), rgba(2, 10, 9, 0.38) 54%, rgba(2, 10, 9, 0.74)),
    linear-gradient(180deg, rgba(2, 10, 9, 0.08), rgba(2, 10, 9, 0.98)),
    url("/assets/golfclub-community-clubhouse-hero-20260719.png") center / cover no-repeat;
  display: grid;
  gap: 22px;
  min-height: clamp(620px, 86vh, 800px);
  padding: clamp(58px, 8vw, 92px) var(--gc-pad) clamp(28px, 5vw, 54px);
}

.gc-v2-hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(270px, 360px);
  margin: auto auto 0;
  max-width: var(--gc-max);
  width: 100%;
}

.gc-v2-hero-copy {
  display: grid;
  gap: 18px;
  max-width: min(720px, 100%);
  min-width: 0;
}

.gc-v2-kicker {
  color: var(--gc-lime);
  font-size: 0.78rem;
  font-weight: 950;
  margin: 0;
  text-transform: uppercase;
}

.gc-v2-hero h1,
.gc-v2-section h2 {
  color: var(--gc-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0;
}

.gc-v2-hero h1 {
  font-size: clamp(3.5rem, 8vw, 7.25rem);
  line-height: 0.9;
  max-width: 750px;
}

.gc-v2-hero p:not(.gc-v2-kicker),
.gc-v2-section p,
.gc-v2-footer p {
  color: var(--gc-muted);
  line-height: 1.5;
  margin: 0;
}

.gc-v2-hero p:not(.gc-v2-kicker) {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 600px;
}

.gc-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
  min-width: 0;
}

.gc-v2-button,
.gc-v2-search button,
.gc-v2-event-card a {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  max-width: 100%;
  min-width: 0;
  padding: 12px 18px;
  text-decoration: none;
  text-align: center;
}

.gc-v2-button-primary,
.gc-v2-search button {
  background: var(--gc-lime);
  color: #07110e;
}

.gc-v2-button-secondary,
.gc-v2-event-card a {
  border: 1px solid rgba(217, 242, 74, 0.36);
  color: var(--gc-lime);
}

.gc-v2-live-callout {
  align-self: start;
  background: rgba(3, 17, 15, 0.78);
  border: 1px solid rgba(251, 244, 223, 0.18);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  display: grid;
  gap: 10px;
  padding: 18px;
}

.gc-v2-live-callout span {
  color: var(--gc-red);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gc-v2-live-callout strong {
  color: var(--gc-cream);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.12;
}

.gc-v2-live-callout small {
  color: var(--gc-muted);
  line-height: 1.4;
}

.gc-v2-live-callout a {
  color: var(--gc-lime);
  font-weight: 900;
  text-decoration: none;
}

.gc-v2-hero-tools {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--gc-max);
  width: 100%;
}

.gc-v2-hero-tools a {
  align-items: center;
  background: rgba(2, 10, 9, 0.58);
  border: 1px solid rgba(251, 244, 223, 0.15);
  border-radius: 8px;
  color: var(--gc-cream);
  display: grid;
  gap: 2px 12px;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 72px;
  padding: 14px 16px;
  text-decoration: none;
}

.gc-v2-hero-tools span {
  color: var(--gc-lime);
  font-size: 0.78rem;
  font-weight: 950;
  grid-row: span 2;
  text-transform: uppercase;
}

.gc-v2-hero-tools strong {
  line-height: 1.15;
}

.gc-v2-hero-tools small {
  color: var(--gc-muted);
}

.gc-v2-search {
  background: rgba(2, 10, 9, 0.72);
  border: 1px solid var(--gc-line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 620px;
  padding: 8px;
  width: min(620px, 100%);
}

.gc-v2-search input {
  background: transparent;
  border: 0;
  color: var(--gc-cream);
  font: inherit;
  min-height: 44px;
  min-width: 0;
  padding: 0 10px;
}

.gc-v2-search input:focus-visible {
  outline: 2px solid var(--gc-lime);
  outline-offset: 2px;
}

.gc-v2-search input::placeholder {
  color: rgba(251, 244, 223, 0.55);
}

.gc-v2-section {
  margin: clamp(30px, 6vw, 72px) auto 0;
  max-width: min(var(--gc-max), calc(100% - 32px));
}

.gc-v2-card,
.gc-v2-event-card,
.gc-v2-player-card,
.gc-v2-region-card,
.gc-v2-course-feature,
.gc-v2-course-stack a {
  background: linear-gradient(180deg, rgba(8, 34, 30, 0.9), rgba(3, 17, 15, 0.98));
  border: 1px solid var(--gc-line);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.25);
}

.gc-v2-editorial-split {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.gc-v2-card {
  padding: clamp(18px, 2.6vw, 30px);
}

.gc-v2-twig {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
}

.gc-v2-buzz {
  align-content: start;
  background:
    linear-gradient(180deg, rgba(6, 25, 22, 0.72), rgba(3, 17, 15, 0.92));
  display: grid;
  gap: 16px;
}

.gc-v2-buzz h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.6vw, 2.6rem);
  line-height: 1;
  margin: 0;
}

.gc-v2-buzz-deck {
  max-width: 46rem;
}

.gc-v2-intelligence-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 4px;
}

.gc-v2-intelligence-column {
  border: 1px solid rgba(251, 244, 223, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 14px;
}

.gc-v2-intelligence-column > span {
  color: var(--gc-gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gc-v2-intelligence-column ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gc-v2-intelligence-column li {
  display: grid;
  gap: 4px;
}

.gc-v2-intelligence-column li a {
  border-radius: 6px;
  display: grid;
  gap: 4px;
  margin: -4px;
  padding: 4px;
  text-decoration: none;
}

.gc-v2-intelligence-column li a:focus-visible,
.gc-v2-intelligence-column li a:hover {
  background: rgba(204, 255, 0, 0.08);
  outline: 1px solid rgba(204, 255, 0, 0.4);
  outline-offset: 2px;
}

.gc-v2-intelligence-column strong {
  color: var(--cream);
  display: block;
  font-size: 0.96rem;
  line-height: 1.22;
}

.gc-v2-intelligence-column small {
  color: rgba(251, 244, 223, 0.68);
  display: block;
  font-size: 0.84rem;
  line-height: 1.45;
}

.gc-v2-course-feature span,
.gc-v2-course-stack span {
  color: var(--gc-gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gc-v2-twig h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  margin: 10px 0 12px;
}

.gc-v2-twig a,
.gc-v2-section-head > a,
.gc-v2-footer a {
  color: var(--gc-lime);
  font-weight: 900;
  text-decoration: none;
}

.gc-v2-section-head {
  align-items: end;
  display: grid;
  gap: 12px 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.gc-v2-section-head h2 {
  font-size: clamp(2.15rem, 4.8vw, 4.8rem);
  line-height: 0.96;
  max-width: 760px;
}

.gc-v2-event-grid,
.gc-v2-player-grid,
.gc-v2-region-grid {
  display: grid;
  gap: 18px;
}

.gc-v2-event-grid,
.gc-v2-player-grid,
.gc-v2-region-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gc-v2-event-card,
.gc-v2-player-card,
.gc-v2-region-card {
  color: var(--gc-cream);
  display: grid;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
  padding: 14px;
  text-decoration: none;
}

.gc-v2-region-card {
  padding: 16px;
}

.gc-v2-event-card {
  grid-template-rows: auto auto auto 1fr auto;
}

.gc-v2-event-card img,
.gc-v2-region-card img {
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.gc-v2-player-card img {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.gc-v2-event-card span,
.gc-v2-player-card span {
  color: var(--gc-lime);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gc-v2-event-card strong,
.gc-v2-player-card strong,
.gc-v2-region-card strong {
  color: var(--gc-cream);
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  line-height: 1.12;
}

.gc-v2-event-card small,
.gc-v2-player-card small,
.gc-v2-region-card small {
  color: var(--gc-muted);
  line-height: 1.35;
}

.gc-v2-event-actions {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gc-v2-event-card a {
  align-self: end;
  flex: 1 1 116px;
  min-height: 42px;
  padding: 10px 12px;
}

.gc-v2-event-card .gc-v2-event-buzz-link {
  border-color: rgba(201, 155, 66, 0.45);
  color: var(--gc-gold);
}

.gc-v2-course-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.gc-v2-course-feature,
.gc-v2-course-stack a {
  align-items: start;
  color: var(--gc-cream);
  display: grid;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
  padding: 14px;
  text-decoration: none;
}

.gc-v2-course-feature img {
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.gc-v2-course-feature strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
}

.gc-v2-course-stack {
  display: grid;
  gap: 18px;
}

.gc-v2-course-stack a {
  align-content: start;
  grid-template-columns: minmax(0, 1fr);
  min-height: 100%;
}

.gc-v2-course-stack img {
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  display: block;
  grid-row: auto;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.gc-v2-course-stack strong {
  align-self: start;
  color: var(--gc-cream);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.12;
}

.gc-v2-empty {
  border: 1px solid var(--gc-line);
  border-radius: 8px;
  grid-column: 1 / -1;
  padding: 18px;
}

.gc-v2-footer {
  align-items: start;
  background: #020a09;
  border-top: 1px solid var(--gc-line);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  margin-top: clamp(46px, 8vw, 90px);
  padding: clamp(28px, 5vw, 54px) var(--gc-pad);
}

.gc-v2-footer p {
  margin-top: 8px;
  max-width: 440px;
}

.gc-v2-footer-links {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(130px, auto));
}

.gc-v2-footer nav {
  display: grid;
  gap: 9px;
}

.gc-v2-footer nav span {
  color: var(--gc-gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .gc-v2-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .gc-v2-menu-button {
    display: inline-flex;
  }

  .gc-v2-nav {
    background: rgba(2, 10, 9, 0.96);
    border: 1px solid var(--gc-line);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    display: none;
    gap: 8px;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }

  .gc-v2-nav.is-open {
    display: grid;
  }

  .gc-v2-nav a {
    border-color: rgba(251, 244, 223, 0.12);
    min-height: 46px;
    text-align: center;
    white-space: normal;
  }

  .gc-v2-editorial-split,
  .gc-v2-twig,
  .gc-v2-intelligence-grid,
  .gc-v2-course-grid,
  .gc-v2-footer {
    grid-template-columns: 1fr;
  }

  .gc-v2-event-grid,
  .gc-v2-player-grid,
  .gc-v2-region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  .gc-v2-header {
    gap: 10px;
    min-height: 66px;
    padding: 12px 14px;
  }

  .gc-v2-brand {
    font-size: 1.46rem;
  }

  .gc-v2-search-link,
  .gc-v2-join-link,
  .gc-v2-menu-button {
    font-size: 0.78rem;
    min-height: 36px;
    padding: 7px 10px;
  }

  .gc-v2-search-link {
    display: none;
  }

  .gc-v2-join-link {
    display: none;
  }

  .gc-v2-nav,
  .gc-v2-hero-inner,
  .gc-v2-hero-tools,
  .gc-v2-event-grid,
  .gc-v2-player-grid,
  .gc-v2-region-grid,
  .gc-v2-search,
  .gc-v2-section-head {
    grid-template-columns: 1fr;
  }

  .gc-v2-nav {
    left: 14px;
    max-height: calc(100vh - 86px);
    overflow: auto;
    padding: 16px;
    position: fixed;
    right: 14px;
    top: 72px;
  }

  .gc-v2-nav a {
    align-items: center;
    display: flex;
    font-size: 1rem;
    justify-content: center;
    min-height: 54px;
  }

  .gc-v2-hero {
    min-height: auto;
    max-width: 100vw;
    overflow-x: clip;
    padding: 28px 16px 32px;
  }

  .gc-v2-hero h1 {
    font-size: clamp(2.48rem, 11.4vw, 3.35rem);
    line-height: 0.96;
    max-width: 100%;
  }

  .gc-v2-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .gc-v2-button {
    width: 100%;
  }

  .gc-v2-live-callout {
    order: 2;
  }

  .gc-v2-section {
    max-width: calc(100% - 28px);
  }

  .gc-v2-footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .gc-v2-search-link {
    display: none;
  }
}
