/* ==========================================================================
   CEDAR RIDGE COUNTRY CLUB - EDITORIAL LUXURY DESIGN SYSTEM
   Inspired by Grand Bear Golf Club aesthetic • Club Website Template
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Cinzel:wght@500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- Design Tokens --- */
:root {
  /* Grand Bear Signature Palette - Warm Alabaster Cream & Deep Forest Charcoal */
  --c-bg-cream: #FBF8F5;
  --c-bg-cream-alt: #F4EFEA;
  --c-bg-cream-soft: #FDFCFB;
  
  --c-forest-950: #0D1612;
  --c-forest-900: #121F19;
  --c-forest-850: #162921;
  --c-forest-800: #1B3329;
  
  --c-bronze-500: #A87458;
  --c-bronze-400: #BE8B70;
  --c-bronze-600: #8E5D43;

  --c-gold-300: #F2DE9C;
  --c-gold-400: #DFC07C;
  --c-gold-500: #C5A059;
  --c-gold-600: #A8833E;
  
  --c-text-dark: #161817;
  --c-text-body: #3E4240;
  --c-text-muted: #707572;
  
  --c-cream-100: #FBF8F5;
  --c-cream-200: #EFE9DC;
  --c-cream-300: #E2DAC8;
  
  --c-white: #FFFFFF;
  --c-black: #000000;

  /* Typography */
  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-sans: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --f-crest: 'Cinzel', serif;

  /* Hairline Borders & Shadows */
  --border-hairline: 1px solid rgba(112, 112, 112, 0.22);
  --border-hairline-dark: 1px solid rgba(0, 0, 0, 0.12);
  --border-hairline-white: 1px solid rgba(255, 255, 255, 0.2);
  --border-gold: 1px solid rgba(197, 160, 89, 0.4);
  --border-gold-subtle: 1px solid rgba(197, 160, 89, 0.2);

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.14);
  --shadow-card: 0 16px 40px rgba(13, 22, 18, 0.18);

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #F2DE9C 0%, #C5A059 50%, #886529 100%);
  --grad-dark-overlay: linear-gradient(180deg, rgba(13, 22, 18, 0.4) 0%, rgba(13, 22, 18, 0.75) 60%, rgba(13, 22, 18, 0.96) 100%);

  /* Transitions */
  --trans-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Container */
  --max-w: 1320px;
  --nav-h: 90px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--f-sans);
  background-color: var(--c-forest-950);
  color: var(--c-cream-100);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* --- Grand Bear Editorial Typography Utilities --- */
.secondary-heading {
  font-family: var(--f-sans);
  font-size: 13px;
  letter-spacing: 2.5px;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-bronze-500);
  margin-bottom: 18px;
  display: block;
}

.secondary-heading-light {
  color: var(--c-gold-300);
}

.primary-heading {
  font-family: var(--f-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.2px;
  font-weight: 400;
  color: var(--c-text-dark);
  margin-bottom: 1.25rem;
}

.primary-heading.text-white {
  color: #FFFFFF;
}

.primary-heading em,
.primary-heading span {
  font-style: italic;
  color: var(--c-bronze-500);
}

.primary-heading.text-white em,
.primary-heading.text-white span {
  color: var(--c-gold-300);
}

.default-heading {
  font-family: var(--f-serif);
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: 0.5px;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0;
}

.default-heading em,
.default-heading span {
  font-style: italic;
  color: var(--c-gold-300);
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 500;
  line-height: 1.2;
}

.text-gold {
  color: var(--c-gold-400);
}

.text-bronze {
  color: var(--c-bronze-500);
}

/* Hairline Editorial Borders */
.borders {
  border-top: var(--border-hairline);
  border-bottom: var(--border-hairline);
  padding: 60px 0;
}

.borders-white {
  border-top: var(--border-hairline-white);
  border-bottom: var(--border-hairline-white);
  padding: 60px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-bronze-500);
  margin-bottom: 1.25rem;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--c-bronze-500);
}

.section-title {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  margin-bottom: 1.25rem;
  color: var(--c-white);
  font-weight: 400;
}

.section-subtitle {
  font-family: var(--f-sans);
  font-size: 1.1rem;
  color: var(--c-cream-200);
  max-width: 680px;
  margin-inline: auto;
  font-weight: 300;
  line-height: 1.7;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 2rem;
}

/* --- Grand Bear Sharp Architectural Buttons (.btn-anim) & Button Styles --- */
.btn-anim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 0px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #FFFFFF;
  background: transparent;
  transition: all var(--trans-normal);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-anim:hover {
  background: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-anim-solid {
  background: var(--c-gold-500);
  color: #0D1612;
  border-color: var(--c-gold-500);
}

.btn-anim-solid:hover {
  background: #FFFFFF;
  color: #0D1612;
  border-color: #FFFFFF;
}

.btn-anim-dark {
  border-color: rgba(0, 0, 0, 0.4);
  color: #1A1A1A;
}

.btn-anim-dark:hover {
  background: #1A1A1A;
  color: #FFFFFF;
  border-color: #1A1A1A;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.95rem 2rem;
  font-family: var(--f-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 0px;
  transition: all var(--trans-normal);
  position: relative;
  white-space: nowrap;
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--c-forest-950);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-gold-500);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.35);
  filter: brightness(1.06);
}

.btn-outline-gold {
  background: transparent;
  color: var(--c-gold-300);
  border: 1px solid var(--c-gold-500);
}

.btn-outline-gold:hover {
  background: rgba(197, 160, 89, 0.12);
  color: var(--c-white);
  border-color: var(--c-gold-300);
  transform: translateY(-2px);
}

.btn-forest {
  background: var(--c-forest-800);
  color: var(--c-white);
  border: var(--border-gold-subtle);
}

.btn-forest:hover {
  background: var(--c-forest-700);
  border-color: var(--c-gold-400);
  transform: translateY(-2px);
}

/* --- Top Utility Bar --- */
.top-bar {
  background-color: #030d07;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  font-size: 0.8125rem;
  padding: 8px 0;
  color: var(--c-cream-300);
  position: relative;
  z-index: 50;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item svg {
  color: var(--c-gold-400);
  flex-shrink: 0;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-link {
  color: var(--c-cream-200);
  transition: color var(--trans-fast);
}

.top-bar-link:hover {
  color: var(--c-gold-400);
}

.weather-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(197, 160, 89, 0.1);
  padding: 4px 12px;
  border-radius: 0px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: var(--c-gold-300);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* --- Grand Bear 3-Part Floating Header (.site-header) --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 22px 0;
  background: transparent;
  transition: all 0.4s ease;
}

.site-header.is-scrolled,
.site-header.lightSkin {
  background: var(--c-bg-cream);
  padding: 14px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(112, 112, 112, 0.15);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.header-book-btn {
  display: flex;
  align-items: center;
  flex: 1;
}

.header-book-btn .btn-anim {
  font-size: 11px;
  padding: 10px 22px;
  letter-spacing: 1.5px;
}

.site-header.is-scrolled .header-book-btn .btn-anim,
.site-header.lightSkin .header-book-btn .btn-anim {
  color: #1A1A1A;
  border-color: rgba(0, 0, 0, 0.35);
}

.site-header.is-scrolled .header-book-btn .btn-anim:hover,
.site-header.lightSkin .header-book-btn .btn-anim:hover {
  background: #1A1A1A;
  color: #FFFFFF;
  border-color: #1A1A1A;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1.2;
  text-align: center;
}

.header-logo .brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  height: 52px;
  width: auto;
  transition: transform 0.3s ease;
}

.header-logo:hover img {
  transform: scale(1.04);
}

.brand-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.brand-name {
  font-family: var(--f-crest);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  line-height: 1.1;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.brand-tagline {
  font-family: var(--f-sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-400);
  font-weight: 600;
  margin-top: 2px;
  transition: color 0.4s ease;
}

.site-header.is-scrolled .brand-name,
.site-header.lightSkin .brand-name {
  color: #161817;
}

.site-header.is-scrolled .brand-tagline,
.site-header.lightSkin .brand-tagline {
  color: var(--c-bronze-500);
}

.header-navigation-main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex: 1;
}

.header-weather {
  display: none;
}

.header-weather svg {
  display: none;
}

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

/* Hide overflow nav items on desktop — keep it editorial, not cluttered */
.nav-links .nav-link:nth-child(n+5) {
  display: none;
}

.nav-link {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--c-gold-300);
}

.site-header.is-scrolled .nav-link,
.site-header.lightSkin .nav-link {
  color: #2E3330;
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.active,
.site-header.lightSkin .nav-link:hover,
.site-header.lightSkin .nav-link.active {
  color: var(--c-bronze-500);
}

/* Grand Bear Minimalist Menu Toggle */
.menu-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.menu-icon-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}

.menu-icon-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  transition: background-color 0.4s ease;
}

.site-header.is-scrolled .menu-toggle-btn,
.site-header.lightSkin .menu-toggle-btn {
  color: #161817;
}

.site-header.is-scrolled .menu-icon-bar,
.site-header.lightSkin .menu-icon-bar {
  background-color: #161817;
}

/* --- Grand Bear Hero Section (.bannerslider) --- */
.bannerslider {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--c-forest-950);
  overflow: hidden;
}

.bannerslider .slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.02);
  animation: gbKenBurns 24s infinite alternate ease-in-out;
  z-index: 1;
}

@keyframes gbKenBurns {
  0% { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}

.bannerslider .dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 22, 18, 0.45) 0%, rgba(13, 22, 18, 0.65) 50%, rgba(13, 22, 18, 0.95) 100%);
  z-index: 2;
}

.bannerslider .banner-content {
  position: relative;
  z-index: 3;
  max-width: 980px;
  padding: 150px 20px 80px 20px;
  margin: 0 auto;
}

.bannerslider .hero-lead {
  font-family: var(--f-sans);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin: 1.25rem auto 2.5rem auto;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.bannerslider .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Grand Bear Editorial Two-Column (.two-column-main) --- */
.two-column-main {
  background-color: var(--c-bg-cream);
  color: var(--c-text-dark);
  padding: 120px 0;
  position: relative;
}

.two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.two-column-media {
  position: relative;
}

.two-column-media img {
  width: 100%;
  border-radius: 0px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.two-column-media:hover img {
  transform: scale(1.02);
}

.two-column-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--c-forest-950);
  color: #FFFFFF;
  padding: 1.25rem 1.75rem;
  border-radius: 0px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(197, 160, 89, 0.4);
}

.two-column-badge .year {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c-gold-300);
  display: block;
}

.two-column-badge .badge-text {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-cream-200);
}

.two-column-content p {
  font-family: var(--f-sans);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--c-text-body);
  margin-bottom: 1.5rem;
}

.primary-heading .heritage-heading-lead,
.primary-heading .heritage-heading-sub {
  display: inline;
  font-style: normal;
  color: var(--c-text-dark);
}

.primary-heading .heritage-heading-sub em {
  font-style: italic;
  color: var(--c-bronze-500);
}

/* --- Grand Bear Three-Card Showcase (.visit-us) --- */
.visit-us {
  background-color: var(--c-bg-cream);
  padding: 40px 0 130px 0;
}

.visit-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px auto;
}

.visit-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.visit-loop {
  position: relative;
  height: 560px;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 28px;
  text-decoration: none;
  color: #FFFFFF;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.visit-loop .bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.visit-loop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.4) 45%, rgba(13, 22, 18, 0.92) 100%);
  z-index: 2;
  transition: background 0.4s ease;
}

.visit-loop:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.visit-loop:hover .bg-image {
  transform: scale(1.06);
}

.visit-loop:hover::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.25) 35%, rgba(13, 22, 18, 0.95) 100%);
}

.visit-content {
  position: relative;
  z-index: 3;
}

.visit-content .visit-tag {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-gold-300);
  margin-bottom: 8px;
  display: block;
}

.visit-content h3 {
  font-family: var(--f-serif);
  font-size: 2rem;
  line-height: 1.18;
  font-weight: 500;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.visit-content p {
  font-family: var(--f-sans);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.visit-link {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.visit-loop:hover .visit-link {
  color: var(--c-gold-300);
  gap: 14px;
}

/* --- Grand Bear Accolades Ribbon (.awards-slider) --- */
.awards-slider {
  background-color: var(--c-forest-950);
  padding: 55px 0;
  color: #FFFFFF;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  text-align: center;
}

/* --- Editorial Course Snapshot --- */
.course-snapshot {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(197, 160, 89, 0.16), transparent 28%),
    var(--c-bg-cream-alt);
  border-top: 1px solid rgba(168, 116, 88, 0.18);
  border-bottom: 1px solid rgba(168, 116, 88, 0.18);
}

.course-snapshot::before {
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(168, 116, 88, 0.28), transparent);
  content: "";
  transform: rotate(12deg);
}

.snapshot-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.snapshot-intro {
  position: relative;
  z-index: 1;
}

.snapshot-intro .primary-heading {
  margin: 0.7rem 0 1.25rem;
  color: var(--c-text-dark);
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
  line-height: 0.95;
}

.snapshot-intro .primary-heading em {
  color: var(--c-bronze-600);
  font-weight: 400;
}

.snapshot-intro p {
  max-width: 330px;
  margin-bottom: 1.8rem;
  color: var(--c-text-body);
  line-height: 1.7;
}

.snapshot-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.snapshot-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(168, 116, 88, 0.25);
  box-shadow: 0 12px 28px rgba(72, 48, 35, 0.06);
}

.snapshot-card:nth-child(2),
.snapshot-card:nth-child(4) {
  transform: translateY(1.5rem);
}

.snapshot-number {
  color: var(--c-bronze-600);
  font-family: var(--f-serif);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  line-height: 0.9;
}

.snapshot-label {
  color: var(--c-text-dark);
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scorecard-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.scorecard-actions .btn {
  padding: 0.75rem 1rem;
}

.scorecard-actions span {
  color: var(--c-cream-300);
  font-family: var(--f-sans);
  font-size: 0.72rem;
}

.award-item {
  padding: 10px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.award-item:last-child {
  border-right: none;
}

.award-number {
  font-family: var(--f-serif);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--c-gold-300);
  margin-bottom: 8px;
  font-weight: 500;
}

.award-label {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* --- Grand Bear Newsletter (.join-club-form) --- */
.join-club-form {
  background-color: var(--c-bg-cream);
  padding: 100px 0;
  border-top: var(--border-hairline);
}

/* --- Tabbed Venue Grid (Dining Tab) --- */
.tab-venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tab-venue {
  background: #FFFFFF;
  border-radius: 0px;
  overflow: hidden;
  border: 1px solid rgba(112, 112, 112, 0.16);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tab-venue:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.tab-venue-img {
  height: 220px;
  overflow: hidden;
}

.tab-venue-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-venue:hover .tab-venue-img img {
  transform: scale(1.04);
}

.tab-venue-info {
  padding: 1.75rem;
}

.tab-venue-info h3 {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--c-text-dark);
  margin-bottom: 6px;
  line-height: 1.2;
}

.tab-venue-hours {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-bronze-500);
  margin-bottom: 14px;
}

.tab-venue-info p {
  font-family: var(--f-sans);
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--c-text-body);
  margin-bottom: 1.5rem;
}

/* --- Tab Split Layout (2-column editorial for amenities/events/membership) --- */
.tab-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tab-split-media {
  border-radius: 0px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.tab-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
  max-height: 440px;
}

.tab-split-content h3 {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--c-text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tab-split-content p {
  font-family: var(--f-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-text-body);
  margin-bottom: 1rem;
}

.tab-split-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: rgba(168, 116, 88, 0.06);
  border-radius: 0px;
  border: 1px solid rgba(168, 116, 88, 0.18);
}

.tab-spec {
  font-family: var(--f-sans);
  font-size: 0.875rem;
  color: var(--c-text-dark);
  line-height: 1.4;
}

.tab-spec strong {
  color: var(--c-bronze-600);
  font-weight: 700;
}

/* --- Club Life mobile presentation --- */
@media (max-width: 640px) {
  .club-life-section {
    padding: 4.25rem 0 5.5rem !important;
  }

  .club-life-section > .container {
    padding-inline: 1rem;
  }

  .club-life-intro {
    margin-bottom: 2rem !important;
    padding-inline: 0.35rem;
  }

  .club-life-intro .secondary-heading {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .club-life-intro .primary-heading {
    margin-top: 0.7rem;
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 0.98;
  }

  .club-life-tabs {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 0 2rem !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .club-life-tabs .tab-btn {
    flex: 0 0 auto;
    min-height: 50px;
    padding: 14px 17px;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .club-life-section .tab-venues-grid {
    gap: 1rem;
  }

  .club-life-section .tab-venue {
    border-radius: 2px;
  }

  .club-life-section .tab-venue-img {
    height: 190px;
  }

  .club-life-section .tab-venue-info {
    padding: 1.35rem 1.2rem 1.45rem;
  }

  .club-life-section .tab-venue-info h3 {
    font-size: 1.35rem;
  }

  .club-life-section .tab-venue-hours {
    margin-bottom: 0.8rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .club-life-section .tab-venue-info p {
    margin-bottom: 1.15rem;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .club-life-section .tab-venue-info .btn-anim,
  .club-life-section .tab-split-content .btn-anim {
    width: 100%;
    min-height: 46px;
    justify-content: center;
  }

  .club-life-section .tab-split {
    gap: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(112, 112, 112, 0.16);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  }

  .club-life-section .tab-split-media {
    height: auto;
    border: 0;
    border-bottom: 1px solid rgba(112, 112, 112, 0.16);
    border-radius: 0;
  }

  .club-life-section .tab-split-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .club-life-section .tab-split-content {
    padding: 1.5rem 1.2rem 1.65rem;
  }

  .club-life-section .tab-split-content h3 {
    margin-bottom: 0.85rem;
    font-size: clamp(1.8rem, 8vw, 2.3rem);
    line-height: 1.05;
  }

  .club-life-section .tab-split-content p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .club-life-section .tab-split-specs {
    gap: 0.65rem;
    margin: 1.25rem 0;
    padding: 1rem;
  }

  .club-life-section .tab-spec {
    font-size: 0.8rem;
  }

  .club-life-section .tab-split-content > div[style*="display: flex"] {
    flex-direction: column;
    gap: 0.65rem !important;
  }
}

/* --- Heritage mobile type rhythm --- */
@media (max-width: 640px) {
  #heritage {
    padding: 4.5rem 0 5.5rem;
  }

  #heritage > .container {
    padding-inline: 1rem;
  }

  #heritage .borders {
    padding-inline: 0;
  }

  #heritage .two-column-grid {
    gap: 3.25rem;
  }

  #heritage .two-column-media {
    margin-inline: 0.3rem;
  }

  #heritage .two-column-media img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  #heritage .two-column-badge {
    right: -0.35rem;
    bottom: -1.1rem;
    padding: 0.85rem 1rem;
  }

  #heritage .two-column-badge .year {
    font-size: 1.65rem;
  }

  #heritage .two-column-badge .badge-text {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  #heritage .two-column-content {
    padding-inline: 0.25rem;
  }

  #heritage .two-column-content .secondary-heading {
    display: block;
    max-width: 18rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    line-height: 1.5;
  }

  #heritage .two-column-content .primary-heading {
    margin-top: 0.8rem;
    font-size: clamp(2.25rem, 10.5vw, 3.15rem);
    line-height: 1.01;
  }

  #heritage .heritage-heading-lead,
  #heritage .heritage-heading-sub {
    display: block;
  }

  #heritage .heritage-heading-sub {
    margin-top: 0.3rem;
  }

  #heritage .two-column-content p {
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 0;
  }

  #heritage .two-column-content p + p {
    margin-top: 1.35rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(112, 112, 112, 0.2);
  }

  #heritage .two-column-content > div[style*="display: flex"] {
    flex-direction: column;
    gap: 0.65rem !important;
    margin-top: 1.65rem !important;
  }

  #heritage .two-column-content > div[style*="display: flex"] .btn-anim {
    width: 100%;
    justify-content: center;
    min-height: 46px;
  }
}

/* Responsive tabs */
@media (max-width: 768px) {
  .tab-venues-grid {
    grid-template-columns: 1fr;
  }
  .tab-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .tab-split-media img {
    max-height: 280px;
  }
}

.join-flex {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.join-form-box {
  display: flex;
  gap: 12px;
}

.join-input {
  flex: 1;
  padding: 15px 20px;
  border-radius: 0px;
  border: 1px solid rgba(112, 112, 112, 0.35);
  background: #FFFFFF;
  font-family: var(--f-sans);
  font-size: 0.95rem;
  color: var(--c-text-dark);
  outline: none;
  transition: border-color 0.3s ease;
}

.join-input:focus {
  border-color: var(--c-bronze-500);
}

/* Compact navigation drawer */
.grandbear-nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(440px, 100vw);
  height: 100vh;
  z-index: 1000;
  background: var(--c-forest-950);
  display: flex;
  flex-direction: column;
  opacity: 1;
  pointer-events: none;
  transform: translateX(104%);
  box-shadow: -18px 0 55px rgba(5, 12, 8, 0.28);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.grandbear-nav-overlay.is-active {
  pointer-events: auto;
  transform: translateX(0);
}

.grandbear-nav-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(25, 49, 39, 0.9) 0%, rgba(8, 18, 13, 0.98) 100%),
    url('../assets/images/golf-course-scenery.jpg') center / cover;
  opacity: 0.9;
  z-index: 1;
}

.overlay-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 30px 34px;
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.overlay-close-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

.overlay-close-btn:hover {
  color: var(--c-gold-300);
}

.overlay-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: auto 0;
}

.overlay-nav-link {
  font-family: var(--f-serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  line-height: 1.15;
}

.overlay-nav-link em {
  font-style: italic;
  color: var(--c-gold-300);
}

.overlay-nav-link:hover {
  color: var(--c-gold-300);
  transform: translateX(12px);
}

.overlay-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--f-sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* --- Championship Course Section --- */
.course-section {
  padding: 7rem 0;
  background-color: var(--c-forest-900);
  position: relative;
}

.course-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.course-card {
  background: var(--c-forest-850);
  border: var(--border-gold-subtle);
  border-radius: 0px;
  overflow: hidden;
  transition: transform var(--trans-normal), border-color var(--trans-normal), box-shadow var(--trans-normal);
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-gold-400);
  box-shadow: var(--shadow-card);
}

.course-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.course-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.course-card:hover .course-card-img img {
  transform: scale(1.08);
}

.course-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(4, 18, 11, 0.9);
  border: var(--border-gold);
  color: var(--c-gold-300);
  padding: 4px 12px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0px;
}

.course-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.course-card-body p {
  color: var(--c-cream-200);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.course-interactive-bar {
  margin-top: 4rem;
  padding: 2.5rem;
  background: radial-gradient(circle at 10% 20%, rgba(197, 160, 89, 0.15) 0%, rgba(8, 33, 20, 0.9) 80%);
  border: var(--border-gold);
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  box-shadow: var(--shadow-card);
}

.interactive-left h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.interactive-left p {
  color: var(--c-cream-200);
  max-width: 580px;
}

.interactive-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Amenities Suite Section --- */
.amenities-section {
  padding: 7rem 0;
  background-color: var(--c-forest-950);
  position: relative;
}

.amenities-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 2.5rem 0 3.5rem 0;
  flex-wrap: wrap;
  border: 1px solid rgba(112, 112, 112, 0.25);
  background: #FFFFFF;
  width: fit-content;
  margin-inline: auto;
}

.tab-btn {
  padding: 14px 28px;
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  background: transparent;
  border: none;
  border-right: 1px solid rgba(112, 112, 112, 0.18);
  border-radius: 0px;
  transition: all var(--trans-fast);
  cursor: pointer;
}

.tab-btn:last-child {
  border-right: none;
}

.tab-btn:hover {
  color: var(--c-text-dark);
  background: rgba(0, 0, 0, 0.03);
}

.tab-btn.active {
  background: var(--c-forest-950);
  color: #FFFFFF;
  font-weight: 700;
}

/* Dark section tab variant */
.two-column-main.dark-tabs .tab-btn {
  color: var(--c-cream-300);
  border-color: rgba(197, 160, 89, 0.2);
}

.two-column-main.dark-tabs .tab-btn:hover {
  color: var(--c-white);
  border-color: var(--c-gold-400);
  background: rgba(197, 160, 89, 0.08);
}

.two-column-main.dark-tabs .tab-btn.active {
  background: var(--grad-gold);
  color: var(--c-forest-950);
  border-color: var(--c-gold-300);
}

.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.tab-panel.active {
  display: block;
}

.club-life-tabs {
  scrollbar-width: none;
}

.club-life-tabs::-webkit-scrollbar {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.amenity-feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  background: var(--c-forest-900);
  border: var(--border-gold-subtle);
  border-radius: 0px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.amenity-feature-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.amenity-feature-info p {
  color: var(--c-cream-200);
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
}

.amenity-specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.amenity-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--c-cream-100);
  font-size: 0.9375rem;
}

.amenity-spec-item svg {
  color: var(--c-gold-400);
  flex-shrink: 0;
  margin-top: 3px;
}

.amenity-feature-media {
  border-radius: 0px;
  overflow: hidden;
  border: var(--border-gold);
  box-shadow: var(--shadow-card);
  height: 380px;
}

.amenity-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Dining & Social Living Section --- */
.dining-section {
  padding: 7rem 0;
  background: radial-gradient(circle at bottom center, rgba(14, 56, 35, 0.4) 0%, var(--c-forest-950) 80%);
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.dining-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.dining-venue-card {
  background: rgba(8, 33, 20, 0.7);
  border: var(--border-gold-subtle);
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans-normal), border-color var(--trans-normal);
}

.dining-venue-card:hover {
  transform: translateY(-8px);
  border-color: var(--c-gold-400);
  box-shadow: var(--shadow-card);
}

.venue-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.dining-venue-card:hover .venue-image img {
  transform: scale(1.06);
}

.venue-hours-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(4, 18, 11, 0.92);
  color: var(--c-gold-300);
  padding: 4px 10px;
  border-radius: 0px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(197, 160, 89, 0.4);
}

.venue-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.venue-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.venue-tagline {
  color: var(--c-gold-400);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.venue-body p {
  color: var(--c-cream-200);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* --- Membership Tiers Section --- */
.membership-section {
  padding: 7rem 0;
  background-color: var(--c-forest-900);
  position: relative;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

.membership-card {
  background: var(--c-forest-850);
  border: var(--border-gold-subtle);
  border-radius: 0px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--trans-normal), border-color var(--trans-normal), box-shadow var(--trans-normal);
}

.membership-card:hover {
  transform: translateY(-8px);
  border-color: var(--c-gold-400);
  box-shadow: var(--shadow-card);
}

.membership-card.featured {
  background: radial-gradient(circle at top center, rgba(197, 160, 89, 0.15) 0%, var(--c-forest-850) 80%);
  border: 2px solid var(--c-gold-500);
  transform: scale(1.03);
}

.membership-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.membership-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-gold);
  color: var(--c-forest-950);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 0px;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}

.membership-header {
  text-align: center;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.membership-tier-name {
  font-size: 1.5rem;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}

.membership-target {
  font-size: 0.8125rem;
  color: var(--c-gold-300);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.membership-features {
  margin-bottom: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.membership-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--c-cream-100);
}

.membership-feature-item svg {
  color: var(--c-gold-400);
  flex-shrink: 0;
  margin-top: 4px;
}

/* --- Tournaments & Shootout Series Banner --- */
.shootout-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--c-forest-950) 0%, #0c2b1b 100%);
  border-top: var(--border-gold-subtle);
  border-bottom: var(--border-gold-subtle);
}

.shootout-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-gold);
  border-radius: 0px;
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

.shootout-media img {
  width: 100%;
  border-radius: 0px;
  border: var(--border-gold-subtle);
  box-shadow: var(--shadow-lg);
}

/* --- Private Events & Weddings Section --- */
.events-section {
  padding: 7rem 0;
  background-color: var(--c-forest-950);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.event-photos-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.event-photos-mosaic img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 0px;
  border: var(--border-gold-subtle);
  transition: transform var(--trans-fast);
}

.event-photos-mosaic img:hover {
  transform: scale(1.03);
  border-color: var(--c-gold-400);
}

/* --- Club App Section --- */
.app-section {
  padding: 5rem 0;
  background: radial-gradient(circle at center, rgba(197, 160, 89, 0.1) 0%, var(--c-forest-900) 80%);
  border-top: var(--border-gold-subtle);
  border-bottom: var(--border-gold-subtle);
}

.app-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background: rgba(8, 33, 20, 0.85);
  border: var(--border-gold);
  border-radius: 0px;
  padding: 3rem;
}

.app-left h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.app-left p {
  color: var(--c-cream-200);
  font-size: 1.0625rem;
  max-width: 580px;
}

/* --- Contact & Location Section --- */
.contact-section {
  padding: 7rem 0;
  background-color: var(--c-forest-950);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  margin-top: 3.5rem;
}

.contact-card-info {
  background: var(--c-forest-900);
  border: var(--border-gold-subtle);
  border-radius: 0px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 0px;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold-400);
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 1.125rem;
  color: var(--c-white);
  margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  color: var(--c-cream-200);
  font-size: 0.9375rem;
}

.contact-detail a:hover {
  color: var(--c-gold-300);
}

.contact-form-card {
  background: var(--c-forest-900);
  border: var(--border-gold);
  border-radius: 0px;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cream-200);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(4, 18, 11, 0.6);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 0px;
  color: var(--c-white);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--c-gold-400);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- Footer --- */
.site-footer {
  background-color: #020905;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  padding: 5rem 0 2rem 0;
  color: var(--c-cream-300);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: var(--c-cream-200);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 0px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-cream-200);
  transition: all var(--trans-fast);
}

.social-link:hover {
  background: var(--c-gold-500);
  color: var(--c-forest-950);
  border-color: var(--c-gold-400);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 1rem;
  color: var(--c-gold-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--c-cream-200);
  font-size: 0.875rem;
  transition: color var(--trans-fast);
}

.footer-links a:hover {
  color: var(--c-gold-400);
  padding-left: 4px;
}

.footer-newsletter p {
  font-size: 0.875rem;
  color: var(--c-cream-200);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 0px;
  color: var(--c-white);
  font-size: 0.875rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--c-gold-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--c-charcoal-300);
}

/* --- Interactive Modals --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(4, 18, 11, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--trans-normal), visibility var(--trans-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--c-forest-900);
  border: var(--border-gold);
  border-radius: 0px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-card);
  transform: scale(0.96) translateY(16px);
  transition: transform var(--trans-normal);
  position: relative;
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 1.75rem 2rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--c-forest-900);
  z-index: 2;
}

.modal-close-btn {
  background: transparent;
  color: var(--c-cream-200);
  padding: 8px 14px;
  border-radius: 0px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--trans-fast);
}

.modal-close-btn:hover {
  background: rgba(197, 160, 89, 0.15);
  color: var(--c-gold-300);
  border-color: var(--c-gold-300);
}

.modal-body {
  padding: 2rem;
}

.scorecard-viewer-wrap img,
.map-viewer-wrap img {
  width: 100%;
  border-radius: 0px;
  border: var(--border-gold-subtle);
  box-shadow: var(--shadow-md);
}

/* Scorecard Table */
.scorecard-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  text-align: center;
}

.scorecard-table th,
.scorecard-table td {
  padding: 10px 8px;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.scorecard-table th {
  background: rgba(197, 160, 89, 0.15);
  color: var(--c-gold-300);
  font-weight: 700;
}

.scorecard-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

/* Mobile Quick Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 380px;
  background: var(--c-forest-950);
  border-left: var(--border-gold);
  z-index: 90;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--trans-normal);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: var(--border-gold-subtle);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 2.5rem;
}

.drawer-link {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  color: var(--c-cream-100);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--trans-fast);
}

.drawer-link:hover {
  color: var(--c-gold-300);
}

/* Mobile Bottom Quick Actions */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(4, 18, 11, 0.95);
  backdrop-filter: var(--glass-blur);
  border-top: var(--border-gold);
  padding: 10px 16px;
  z-index: 35;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}

.mobile-bottom-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* --- Media Queries --- */
@media (max-width: 1024px) {
  .hero-stats-bar {
    grid-template-columns: repeat(3, 1fr);
  }
  .course-grid-cards,
  .dining-grid,
  .membership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenity-feature-grid {
    grid-template-columns: 1fr;
  }
  .amenity-feature-media {
    height: 280px;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 72px;
  }
  .nav-links, .nav-actions .btn-gold {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .top-bar-info .top-bar-item:not(:first-child) {
    display: none;
  }
  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .heritage-grid,
  .course-grid-cards,
  .dining-grid,
  .membership-grid,
  .shootout-banner,
  .events-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .heritage-badge-floating {
    position: static;
    margin-top: 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .mobile-bottom-bar {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
  .app-box {
    flex-direction: column;
    text-align: center;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SUBPAGE & AEO / SEO COMPONENTS
   ========================================================================== */

/* Page Hero Banner */
.page-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--c-forest-950);
  overflow: hidden;
  padding: 5rem 1.5rem 4rem 1.5rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.65);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(4, 18, 11, 0.6) 0%, rgba(4, 18, 11, 0.85) 75%, var(--c-forest-950) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--c-cream-300);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.breadcrumbs a {
  color: var(--c-gold-400);
  transition: color var(--trans-fast);
}

.breadcrumbs a:hover {
  color: var(--c-white);
}

.breadcrumbs span.separator {
  color: rgba(197, 160, 89, 0.4);
}

.breadcrumbs span.current {
  color: var(--c-cream-200);
}

/* AEO Fact Sheet / At-A-Glance Answer Box */
.aeo-factsheet {
  background: radial-gradient(circle at top left, rgba(197, 160, 89, 0.12) 0%, rgba(8, 33, 20, 0.95) 70%);
  border: var(--border-gold);
  border-radius: 0px;
  padding: 2.25rem;
  margin: 2.5rem 0 4rem 0;
  box-shadow: var(--shadow-card);
}

.aeo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 12px;
}

.aeo-header h3 {
  font-size: 1.35rem;
  color: var(--c-gold-300);
  display: flex;
  align-items: center;
  gap: 10px;
}

.aeo-tag {
  background: rgba(197, 160, 89, 0.15);
  color: var(--c-gold-300);
  border: 1px solid rgba(197, 160, 89, 0.3);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.fact-item {
  display: flex;
  flex-direction: column;
}

.fact-item .fact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-gold-400);
  font-weight: 700;
  margin-bottom: 4px;
}

.fact-item .fact-value {
  font-size: 1.0625rem;
  color: var(--c-white);
  font-weight: 500;
}

.fact-item .fact-desc {
  font-size: 0.8125rem;
  color: var(--c-cream-200);
  margin-top: 2px;
}

/* FAQ Accordion */
.faq-section {
  padding: 5rem 0;
  background-color: var(--c-forest-900);
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--c-forest-850);
  border: var(--border-gold-subtle);
  border-radius: 0px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color var(--trans-fast);
}

.faq-item:hover {
  border-color: var(--c-gold-400);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  color: var(--c-white);
  font-family: var(--f-serif);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.faq-question svg {
  color: var(--c-gold-400);
  transition: transform var(--trans-normal);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 1.75rem;
  color: var(--c-cream-200);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.75rem 1.5rem 1.75rem;
}

/* Content prose & editorial layout */
.content-section {
  padding: 5.5rem 0;
  background-color: var(--c-forest-950);
}

.prose-block {
  max-width: 840px;
  margin: 0 auto;
}

.prose-block p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--c-cream-200);
  margin-bottom: 1.5rem;
}

.prose-block h3 {
  font-size: 1.5rem;
  color: var(--c-gold-300);
  margin: 2.5rem 0 1rem 0;
}

/* Comparison Tables */
.table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border: var(--border-gold);
  border-radius: 0px;
  background: var(--c-forest-900);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9375rem;
}

.spec-table th,
.spec-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.spec-table th {
  background: rgba(197, 160, 89, 0.15);
  color: var(--c-gold-300);
  font-family: var(--f-serif);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8125rem;
}

.spec-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* ==========================================================================
   REFERENCE-LED POLISH
   A quieter, image-first presentation inspired by golfgrandbear.com while
   keeping the template's identity, content, and existing page structure intact.
   ========================================================================== */

:root {
  --reference-ink: #111915;
  --reference-paper: #f7f5f0;
  --reference-line: rgba(17, 25, 21, 0.16);
}

/* The reference uses a three-point floating header: action, centered mark,
   and a single menu affordance. The overlay remains the full navigation. */
.site-header {
  padding: 28px 0;
}

.header-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.header-book-btn {
  justify-self: start;
  flex: none;
}

.header-book-btn .btn-anim {
  padding: 12px 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
}

.site-header:not(.is-scrolled):not(.lightSkin) .header-book-btn .btn-anim-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
}

.site-header:not(.is-scrolled):not(.lightSkin) .header-book-btn .btn-anim-dark:hover {
  background: #fff;
  border-color: #fff;
  color: var(--reference-ink);
}

.header-logo {
  flex: none;
  justify-self: center;
}

.header-logo .brand-logo {
  flex-direction: column;
  gap: 4px;
}

.site-header:not(.is-scrolled):not(.lightSkin) .header-logo .brand-logo {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.header-logo .brand-text {
  display: none;
}

.header-logo img {
  width: 112px;
  height: auto;
}

.site-header:not(.is-scrolled):not(.lightSkin) .header-logo img {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.28));
}

.header-logo .brand-text {
  align-items: center;
  text-align: center;
}

.brand-name {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
}

.brand-tagline {
  font-size: 0.5rem;
  letter-spacing: 0.18em;
}

.header-navigation-main {
  justify-self: end;
  flex: none;
}

.header-navigation-main .nav-links {
  display: none;
}

.menu-toggle-btn {
  padding: 7px 0 7px 10px;
  font-weight: 500;
  letter-spacing: 1.2px;
}

.menu-icon-bars {
  width: 19px;
}

.menu-icon-bar {
  height: 1px;
}

/* Keep the light header treatment after the first scroll, while preserving
   the reference site's quiet hero header before it. */
.site-header.is-scrolled,
.site-header.lightSkin {
  padding: 16px 0;
}

/* Cinematic hero: the title sits in the lower-left over the landscape, not
   in the visual center of the fairway. */
.bannerslider {
  min-height: 100svh;
  align-items: stretch;
  justify-content: stretch;
  text-align: left;
}

.bannerslider .slide-img {
  object-position: center center;
  animation-duration: 32s;
}

.bannerslider .dark-overlay {
  background:
    linear-gradient(90deg, rgba(8, 16, 12, 0.55) 0%, rgba(8, 16, 12, 0.16) 56%, rgba(8, 16, 12, 0.05) 100%),
    linear-gradient(180deg, rgba(8, 16, 12, 0.12) 0%, rgba(8, 16, 12, 0.05) 38%, rgba(8, 16, 12, 0.82) 100%);
}

.bannerslider .banner-content {
  width: min(var(--max-w), 100%);
  max-width: none;
  padding: 0 clamp(2rem, 4.7vw, 5.5rem);
  margin: 0 auto;
  align-self: flex-end;
  margin-bottom: clamp(68px, 10vh, 112px);
}

.bannerslider .secondary-heading-light {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.bannerslider .default-heading {
  max-width: 760px;
  font-size: clamp(3.8rem, 7.4vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
}

.bannerslider .hero-lead {
  max-width: 500px;
  margin: 1.5rem 0 2.25rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.bannerslider .hero-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.bannerslider .hero-contact-btn {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.42);
}

.bannerslider .hero-contact-btn:hover {
  color: var(--reference-ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
}

.hero-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--f-sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-hours strong {
  color: var(--c-gold-300);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-hours-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #b8d69d;
  box-shadow: 0 0 0 4px rgba(184, 214, 157, 0.13);
}

/* Let the first content section breathe like the reference site's editorial
   introduction, then keep the image-led destination cards visually dominant. */
.two-column-main {
  padding: clamp(84px, 10vw, 144px) 0;
}

.two-column-grid {
  gap: clamp(38px, 6vw, 88px);
}

.two-column-media img,
.visit-loop,
.tab-venue,
.course-card,
.membership-card {
  border-radius: 2px;
}

.two-column-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.visit-us {
  padding: 18px 0 clamp(88px, 10vw, 132px);
}

.visit-head {
  margin-bottom: 42px;
}

.visit-lists {
  gap: 16px;
}

.visit-loop {
  height: clamp(420px, 43vw, 560px);
  padding: 32px 26px;
}

.awards-slider {
  padding: 64px 0;
}

.join-club-form {
  padding: clamp(76px, 9vw, 120px) 0;
}

/* Subpage heroes should feel like the same property, not a separate theme. */
.page-hero {
  min-height: min(68vh, 720px);
  justify-content: flex-start;
  text-align: left;
  padding-top: 9rem;
  padding-bottom: 7rem;
}

.page-hero-content {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}

.page-hero .section-subtitle {
  margin-inline: 0;
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 16, 12, 0.72) 0%, rgba(8, 16, 12, 0.3) 64%, rgba(8, 16, 12, 0.16) 100%),
    linear-gradient(180deg, rgba(8, 16, 12, 0.22) 0%, rgba(8, 16, 12, 0.76) 100%);
}

@media (max-width: 768px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.lightSkin {
    padding: 18px 0;
  }

  .header-main {
    gap: 12px;
  }

  .header-book-btn .btn-anim {
    padding: 10px 13px;
    font-size: 9px;
    letter-spacing: 1px;
  }

  .header-logo img {
    width: 82px;
  }

  .brand-name {
    font-size: 0.72rem;
  }

  .brand-tagline {
    font-size: 0.4rem;
  }

  .menu-toggle-btn {
    font-size: 10px;
  }

  .bannerslider .banner-content {
    padding-inline: 1.25rem;
    margin-bottom: 88px;
  }

  .bannerslider .default-heading {
    font-size: clamp(3.35rem, 15vw, 5.5rem);
  }

  .bannerslider .hero-lead {
    max-width: 360px;
    font-size: 0.95rem;
  }

  .bannerslider .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 270px);
  }

  .hero-hours {
    flex-wrap: wrap;
    max-width: 270px;
    line-height: 1.5;
  }

  .page-hero {
    min-height: 76vh;
    padding-top: 8rem;
    padding-bottom: 5rem;
  }

  .overlay-inner {
    padding: 24px 22px;
  }

  .overlay-nav-links {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bannerslider .slide-img {
    animation: none;
  }
}

/* ==========================================================================
   TYPE LEGIBILITY PASS
   Preserve the editorial type pairing while strengthening small and muted copy.
   ========================================================================== */

:root {
  --c-text-muted: #626b65;
  --c-bronze-500: #946243;
}

body {
  text-rendering: optimizeLegibility;
}

p,
li {
  text-wrap: pretty;
}

.secondary-heading,
.section-label {
  color: var(--c-bronze-600);
}

.secondary-heading-light,
.page-hero .section-label {
  color: var(--c-gold-300);
}

.page-hero .section-label::before,
.page-hero .section-label::after {
  background: var(--c-gold-300);
}

.section-subtitle,
.bannerslider .hero-lead {
  font-weight: 400;
}

.bannerslider .hero-lead {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.92);
}

.page-hero .breadcrumbs {
  color: var(--c-cream-100);
}

.page-hero .breadcrumbs span.current {
  color: var(--c-cream-100);
}

.heritage-text {
  color: var(--c-cream-200);
  font-size: 1.05rem;
  line-height: 1.75;
}

.site-footer .footer-brand p {
  color: #c3ccc6 !important;
}

.site-footer .footer-links span[style*="#888"],
.site-footer .footer-links span[style*="#777"] {
  color: #b3bdb6 !important;
}

/* ==========================================================================
   18-HOLE GUIDE
   A scannable, one-at-a-time course guide with replaceable local imagery.
   ========================================================================== */

.hole-guide-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(197, 160, 89, 0.1), transparent 28%),
    var(--c-forest-950);
}

.hole-guide-heading {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.hole-guide-heading .section-label {
  justify-content: center;
  color: var(--c-gold-300);
}

.hole-guide-heading .section-label::before,
.hole-guide-heading .section-label::after {
  background: var(--c-gold-300);
}

.hole-guide-heading .section-subtitle {
  color: var(--c-cream-200);
}

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

.hole-detail {
  align-self: start;
  overflow: hidden;
  background: rgba(18, 31, 25, 0.88);
  border: 1px solid rgba(197, 160, 89, 0.24);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}

.hole-detail[open] {
  grid-column: 1 / -1;
  border-color: rgba(223, 192, 124, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.hole-detail summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto 14px;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 1rem 1.25rem;
  color: var(--c-white);
  cursor: pointer;
  list-style: none;
}

.hole-detail summary::-webkit-details-marker {
  display: none;
}

.hole-detail summary:focus-visible {
  outline: 2px solid var(--c-gold-300);
  outline-offset: -2px;
}

.hole-number {
  color: var(--c-gold-300);
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hole-title {
  overflow: hidden;
  color: var(--c-white);
  font-family: var(--f-serif);
  font-size: 1.42rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hole-meta {
  color: var(--c-cream-300);
  font-family: var(--f-sans);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hole-meta b {
  color: var(--c-gold-300);
  font-weight: 700;
}

.hole-chevron {
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--c-gold-300);
  border-bottom: 1px solid var(--c-gold-300);
  transform: rotate(45deg) translateY(-3px);
  transition: transform var(--trans-fast);
}

.hole-detail[open] .hole-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.hole-detail-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.hole-detail-panel > img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.hole-detail-copy {
  align-self: center;
  padding: 2.25rem clamp(1.5rem, 4vw, 3.25rem);
}

.hole-kicker {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--c-gold-300);
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hole-detail-copy h3 {
  margin-bottom: 0.8rem;
  color: var(--c-white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.hole-detail-copy p {
  max-width: 620px;
  margin-bottom: 1.5rem;
  color: var(--c-cream-200);
  font-size: 1rem;
  line-height: 1.7;
}

.hole-detail-copy dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 620px;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(197, 160, 89, 0.22);
}

.hole-detail-copy dt {
  margin-bottom: 0.25rem;
  color: var(--c-cream-300);
  font-family: var(--f-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hole-detail-copy dd {
  color: var(--c-gold-300);
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 700px) {
  .hole-guide-heading {
    margin-bottom: 2.25rem;
  }

  .hole-guide-list {
    grid-template-columns: 1fr;
  }

  .hole-detail[open] {
    grid-column: auto;
  }

  .hole-detail summary {
    grid-template-columns: 34px minmax(0, 1fr) 12px;
    gap: 10px;
    padding: 0.95rem 1rem;
  }

  .hole-meta {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.72rem;
  }

  .hole-chevron {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .hole-detail-panel {
    grid-template-columns: 1fr;
  }

  .hole-detail-panel > img {
    min-height: 220px;
    max-height: 260px;
  }

  .hole-detail-copy {
    padding: 1.75rem 1.25rem 2rem;
  }
}

/* --- Continuous 18-Hole Scroll Flow --- */
.hole-guide-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(3.5rem, 8vw, 7rem);
  max-width: 1120px;
  margin: 0 auto;
}

.hole-guide-list::before {
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(223, 192, 124, 0.42) 8%,
    rgba(223, 192, 124, 0.42) 92%,
    transparent
  );
  content: "";
  transform: translateX(-50%);
}

.hole-detail,
.hole-detail[open] {
  position: relative;
  z-index: 1;
  display: block;
  grid-column: auto;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hole-detail.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hole-detail summary {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  min-height: auto;
  padding: 0 0 1.15rem;
  cursor: default;
  pointer-events: none;
}

.hole-detail summary:focus-visible {
  outline: 0;
}

.hole-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  border: 1px solid var(--c-gold-300);
  border-radius: 50%;
  background: var(--c-forest-950);
  font-size: 0.72rem;
}

.hole-title {
  color: var(--c-white);
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  white-space: normal;
}

.hole-meta {
  margin-left: auto;
  font-size: 0.76rem;
}

.hole-chevron {
  display: none;
}

.hole-detail .hole-detail-panel,
.hole-detail:not([open]) .hole-detail-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 360px;
  overflow: hidden;
  background: rgba(18, 31, 25, 0.88);
  border: 1px solid rgba(197, 160, 89, 0.24);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.hole-detail:nth-child(even) .hole-detail-panel {
  direction: rtl;
}

.hole-detail:nth-child(even) .hole-detail-copy {
  direction: ltr;
}

.hole-detail-panel > img {
  min-height: 360px;
}

.hole-detail-copy {
  padding: clamp(2rem, 5vw, 4rem);
}

.hole-detail-copy h3 {
  font-size: clamp(2rem, 3.5vw, 3.15rem);
}

@media (prefers-reduced-motion: reduce) {
  .hole-detail,
  .hole-detail.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 700px) {
  .hole-guide-list {
    gap: 3.25rem;
  }

  .hole-guide-list::before {
    left: 1.25rem;
  }

  .hole-detail summary {
    gap: 0.75rem;
    padding-bottom: 0.9rem;
  }

  .hole-number {
    width: 2.5rem;
    height: 2.5rem;
    flex-basis: 2.5rem;
  }

  .hole-title {
    font-size: 1.55rem;
  }

  .hole-meta {
    display: none;
  }

  .hole-detail .hole-detail-panel,
  .hole-detail:not([open]) .hole-detail-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hole-detail:nth-child(even) .hole-detail-panel {
    direction: ltr;
  }

  .hole-detail-panel > img {
    min-height: 230px;
    max-height: 280px;
  }

  .hole-detail-copy {
    padding: 1.75rem 1.25rem 2rem;
  }
}

/* ==========================================================================
   AMENITIES PAGE REFINEMENT
   A brighter editorial rhythm for recreation, courts, and pool living.
   ========================================================================== */

.amenities-page {
  background: var(--c-bg-cream);
}

.amenities-page .page-hero {
  min-height: 620px;
  padding-bottom: 8rem;
}

.amenities-page .page-hero-content {
  max-width: 1080px;
}

.amenities-page .page-hero .section-title {
  max-width: 820px;
  font-size: clamp(3rem, 6vw, 5.6rem) !important;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.amenities-page .page-hero .section-subtitle {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.7;
}

.amenities-page > .container > .aeo-factsheet {
  position: relative;
  z-index: 4;
  margin: -3.25rem 0 0;
  padding: 2rem 2.25rem 2.25rem;
  background: var(--c-bg-cream);
  border: 1px solid rgba(22, 24, 23, 0.12);
  border-top: 3px solid var(--c-gold-500);
  box-shadow: 0 22px 55px rgba(13, 22, 18, 0.16);
  color: var(--c-text-dark);
}

.amenities-page .aeo-header {
  border-bottom-color: rgba(22, 24, 23, 0.14);
  margin-bottom: 1.8rem;
}

.amenities-page .aeo-header h3 {
  color: var(--c-text-dark);
}

.amenities-page .aeo-header h3 svg {
  color: var(--c-gold-600);
}

.amenities-page .aeo-tag {
  color: var(--c-gold-600);
  background: rgba(197, 160, 89, 0.12);
  border-color: rgba(168, 131, 62, 0.35);
}

.amenities-page .fact-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.65rem 0;
}

.amenities-page .fact-item {
  min-height: 80px;
  padding: 0 1.5rem;
  border-left: 1px solid rgba(22, 24, 23, 0.12);
}

.amenities-page .fact-item:nth-child(3n + 1) {
  padding-left: 0;
  border-left: 0;
}

.amenities-page .fact-item .fact-label {
  color: var(--c-gold-600);
}

.amenities-page .fact-item .fact-value {
  color: var(--c-text-dark);
}

.amenities-page .fact-item .fact-desc {
  color: var(--c-text-muted);
}

.amenities-page .amenities-feature {
  padding: clamp(5.5rem, 9vw, 9rem) 0;
}

.amenities-page .amenities-feature--pickleball {
  padding-top: clamp(7rem, 10vw, 10rem);
  background:
    radial-gradient(circle at 82% 16%, rgba(197, 160, 89, 0.1), transparent 28%),
    var(--c-bg-cream);
  color: var(--c-text-dark);
}

.amenities-page .amenities-feature--pool {
  background:
    radial-gradient(circle at 80% 20%, rgba(35, 83, 65, 0.48), transparent 34%),
    var(--c-forest-900) !important;
}

.amenities-page .heritage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: center;
}

.amenities-page .amenities-feature--pool .heritage-grid {
  grid-template-columns: minmax(360px, 0.98fr) minmax(0, 1.02fr);
}

.amenities-page .heritage-content {
  max-width: 600px;
}

.amenities-page .heritage-content .section-label {
  margin-bottom: 1rem;
}

.amenities-page .heritage-content .section-title {
  margin-bottom: 1.5rem;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  line-height: 0.98;
}

.amenities-page .heritage-text {
  max-width: 570px;
  margin-bottom: 1.35rem;
  color: #4b514d;
  font-size: 1.04rem;
  line-height: 1.78;
}

.amenities-page .heritage-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0 2.25rem;
}

.amenities-page .heritage-box {
  padding: 1.25rem 1.35rem;
  border-top: 2px solid var(--c-gold-500);
  background: rgba(255, 255, 255, 0.56);
}

.amenities-page .heritage-box h4 {
  margin-bottom: 0.4rem;
  color: var(--c-text-dark);
  font-family: var(--f-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.amenities-page .heritage-box p {
  color: var(--c-text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.amenities-page .heritage-media {
  position: relative;
  min-height: 520px;
}

.amenities-page .heritage-media::before {
  content: '';
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(197, 160, 89, 0.5);
  pointer-events: none;
}

.amenities-page .heritage-img-main {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  box-shadow: 0 22px 50px rgba(13, 22, 18, 0.17);
}

.amenities-page .amenities-feature--pool .heritage-text {
  color: var(--c-cream-200);
}

.amenities-page .amenities-feature--pool .heritage-box {
  background: rgba(255, 255, 255, 0.06);
}

.amenities-page .amenities-feature--pool .heritage-box h4,
.amenities-page .amenities-feature--pool .heritage-content .section-title {
  color: var(--c-white);
}

.amenities-page .amenities-feature--pool .heritage-box p {
  color: var(--c-cream-300);
}

.amenities-page .amenities-feature--pool .heritage-media::before {
  border-color: rgba(242, 222, 156, 0.52);
}

.amenities-page .faq-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background: var(--c-bg-cream-alt);
  border-top: 0;
}

.amenities-page .faq-question {
  color: var(--c-text-dark);
}

.amenities-page .faq-item {
  background: var(--c-bg-cream);
  border-color: rgba(22, 24, 23, 0.14);
}

.amenities-page .faq-answer {
  color: var(--c-text-body);
}

/* --- Light Surface Contrast Safeguards --- */
.two-column-main .section-title,
.visit-us .section-title,
.join-club-form .section-title,
.amenities-page .faq-section .section-title {
  color: var(--c-text-dark);
}

.two-column-main .section-subtitle,
.visit-us .section-subtitle,
.join-club-form .section-subtitle,
.amenities-page .faq-section .section-subtitle {
  color: var(--c-text-body);
}

/* The application form starts on a light editorial surface, so its fixed
   header needs the light-skin treatment before the first scroll event. */
.application-page .site-header {
  background: var(--c-bg-cream);
  padding: 14px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(112, 112, 112, 0.15);
}

.application-page .header-book-btn .btn-anim {
  border-color: rgba(0, 0, 0, 0.4) !important;
  color: var(--c-text-dark) !important;
}

.application-page .header-logo img {
  filter: none !important;
}

.application-page .menu-toggle-btn {
  color: var(--c-text-dark) !important;
}

.application-page .menu-icon-bar {
  background-color: var(--c-text-dark);
}

@media (max-width: 900px) {
  .amenities-page .fact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-page .fact-item:nth-child(3n + 1) {
    padding-left: 1.5rem;
    border-left: 1px solid rgba(22, 24, 23, 0.12);
  }

  .amenities-page .fact-item:nth-child(2n + 1) {
    padding-left: 0;
    border-left: 0;
  }

  .amenities-page .heritage-grid,
  .amenities-page .amenities-feature--pool .heritage-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .amenities-page .amenities-feature--pool .heritage-media {
    order: -1;
  }
}

@media (max-width: 600px) {
  .amenities-page .page-hero {
    min-height: 580px;
  }

  .amenities-page > .container > .aeo-factsheet {
    margin-top: -2rem;
    padding: 1.5rem 1.15rem;
  }

  .amenities-page .fact-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .amenities-page .fact-item,
  .amenities-page .fact-item:nth-child(3n + 1),
  .amenities-page .fact-item:nth-child(2n + 1) {
    min-height: 0;
    padding: 0 0 1.25rem;
    border-left: 0;
    border-bottom: 1px solid rgba(22, 24, 23, 0.12);
  }

  .amenities-page .fact-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .amenities-page .heritage-highlights {
    grid-template-columns: 1fr;
  }

  .amenities-page .heritage-media,
  .amenities-page .heritage-img-main {
    min-height: 360px;
  }

  .amenities-page .heritage-media::before {
    inset: -10px 10px 10px -10px;
  }
}

/* ==========================================================================
   MOBILE FIT & FLOW
   Shared safeguards for narrow screens across every page and form state.
   ========================================================================== */

@media (max-width: 768px) {
  .container {
    padding-inline: 1.25rem;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.lightSkin {
    padding: 14px 0;
  }

  .header-main {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 8px;
    padding-inline: 1.25rem;
  }

  .header-book-btn {
    min-width: 0;
  }

  .header-book-btn .btn-anim {
    max-width: 148px;
    overflow: hidden;
    padding: 9px 10px;
    font-size: 8px;
    letter-spacing: 1px;
    text-overflow: ellipsis;
  }

  .header-logo img {
    width: 72px;
  }

  .header-navigation-main {
    min-width: 0;
  }

  .menu-toggle-btn {
    gap: 6px;
    padding: 7px 0;
    font-size: 9px;
    letter-spacing: 1px;
  }

  .menu-icon-bars {
    width: 16px;
  }

  .bannerslider .banner-content {
    width: 100%;
    padding-inline: 1.25rem;
    margin-bottom: clamp(60px, 10vh, 90px);
  }

  .bannerslider .default-heading {
    font-size: clamp(3rem, 14vw, 4.5rem);
    line-height: 0.93;
  }

  .bannerslider .hero-lead {
    max-width: 330px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .bannerslider .hero-actions {
    width: 100%;
    max-width: 290px;
  }

  .bannerslider .hero-actions .btn-anim {
    width: 100%;
    min-height: 46px;
  }

  .hero-hours {
    max-width: 290px;
    font-size: 0.7rem;
    gap: 8px;
  }

  .page-hero {
    min-height: 68svh;
    padding-top: 7rem;
    padding-bottom: 5rem;
  }

  .page-hero-content {
    padding-inline: 1.25rem;
  }

  .page-hero .section-title {
    font-size: clamp(2.4rem, 10vw, 4rem) !important;
    line-height: 0.98;
  }

  .page-hero .section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  .breadcrumbs {
    flex-wrap: wrap;
    row-gap: 4px;
    font-size: 0.72rem;
  }

  .two-column-main,
  .visit-us,
  .course-section,
  .content-section,
  .dining-section,
  .faq-section {
    padding-block: 4.5rem;
  }

  .borders {
    padding-block: 42px;
  }

  .course-grid-cards,
  .dining-grid,
  .membership-grid,
  .events-grid,
  .contact-grid,
  [style*="display: grid"][style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .two-column-grid,
  .tab-split,
  .join-flex,
  .events-grid,
  .contact-grid {
    gap: 2.25rem;
  }

  .two-column-media img {
    aspect-ratio: 4 / 3;
  }

  .two-column-content .primary-heading,
  .section-title {
    line-height: 1.03;
  }

  .join-form-box,
  .newsletter-form {
    flex-direction: column;
  }

  .join-form-box .join-input,
  .join-form-box .btn,
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .form-control,
  .app-input {
    min-height: 48px;
    font-size: 1rem;
  }

  textarea.form-control,
  textarea.app-input {
    min-height: 120px;
  }

  .form-row {
    gap: 0;
  }

  .table-wrap {
    margin-inline: 0;
    -webkit-overflow-scrolling: touch;
  }

  .spec-table,
  .scorecard-table {
    min-width: 900px;
    font-size: 0.72rem;
  }

  .modal-overlay {
    align-items: flex-start;
    padding: 0.75rem;
  }

  .modal-container {
    max-height: calc(100dvh - 1.5rem);
  }

  .modal-header {
    gap: 12px;
    padding: 1.1rem 1.15rem;
  }

  .modal-body {
    overflow-x: auto;
    padding: 1.15rem;
  }

  .overlay-inner {
    min-height: 100%;
  }

  .grandbear-nav-overlay {
    overflow-y: auto;
  }

  .overlay-top {
    gap: 16px;
  }

  .overlay-nav-links {
    margin: 2rem 0;
  }

  .overlay-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    font-size: 0.75rem;
    line-height: 1.45;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .footer-bottom > div {
    max-width: 100%;
  }

  .footer-bottom > div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 8px !important;
  }

  .mobile-bottom-actions {
    gap: 8px;
  }

  .mobile-bottom-actions .btn {
    min-height: 48px;
    padding-inline: 0.4rem !important;
    white-space: normal;
    line-height: 1.25;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header-main {
    padding-inline: 1rem;
  }

  .header-book-btn .btn-anim {
    max-width: 122px;
    padding-inline: 8px;
    font-size: 7.5px;
  }

  .header-logo img {
    width: 66px;
  }

  .menu-toggle-btn {
    font-size: 8px;
  }

  .menu-icon-bars {
    width: 14px;
  }

  .bannerslider .banner-content {
    padding-inline: 1rem;
  }

  .bannerslider .default-heading {
    font-size: clamp(2.85rem, 15vw, 4rem);
  }

  .hero-hours {
    font-size: 0.66rem;
  }

  .page-hero-content {
    padding-inline: 1rem;
  }

  .mobile-bottom-bar {
    padding: 8px 10px;
  }
}

/* ==========================================================================
   TEE-TIME BOOKING
   ========================================================================== */

.booking-page {
  background: var(--c-bg-cream);
}

.booking-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 11rem 0 6rem;
  background: var(--c-forest-950);
}

.booking-hero-bg,
.booking-hero-bg::after {
  position: absolute;
  inset: 0;
}

.booking-hero-bg::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 18, 11, 0.92) 0%, rgba(4, 18, 11, 0.58) 55%, rgba(4, 18, 11, 0.3) 100%),
    linear-gradient(0deg, rgba(4, 18, 11, 0.82), transparent 55%);
}

.booking-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.booking-hero-content {
  position: relative;
  z-index: 1;
}

.booking-hero-content .section-label {
  color: var(--c-gold-300);
}

.booking-hero-content .section-label::before {
  background: var(--c-gold-300);
}

.booking-hero-content h1 {
  max-width: 760px;
  margin: 0.75rem 0 1.25rem;
  color: var(--c-white);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.84;
}

.booking-hero-content h1 em {
  color: var(--c-gold-300);
  font-weight: 400;
}

.booking-hero-content > p {
  max-width: 620px;
  margin: 0;
  color: var(--c-cream-100);
  font-size: 1.08rem;
  line-height: 1.7;
}

.booking-section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.65fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.booking-form-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--c-white);
  border-top: 3px solid var(--c-gold-500);
  box-shadow: 0 22px 58px rgba(19, 38, 29, 0.11);
}

.booking-step-heading {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.booking-step-heading > span {
  flex: 0 0 42px;
  padding-top: 0.25rem;
  color: var(--c-gold-600);
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.booking-step-heading .section-label {
  margin-bottom: 0.35rem;
}

.booking-step-heading h2 {
  color: var(--c-text-dark);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1;
}

.booking-step-heading--details {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(22, 24, 23, 0.12);
}

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

.booking-page .form-group label {
  color: var(--c-text-dark);
}

.booking-page .form-control {
  color: var(--c-text-dark);
  background: #f7f5ef;
  border-color: rgba(22, 24, 23, 0.2);
}

.booking-page .form-control:focus {
  background: var(--c-white);
  border-color: var(--c-gold-500);
}

.booking-times-field {
  margin-top: 1.35rem;
}

.booking-times-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.booking-times-label span {
  color: var(--c-text-muted);
  font-size: 0.7rem;
}

.tee-time-slots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  min-height: 52px;
}

.tee-time-slot {
  min-height: 44px;
  padding: 0.65rem 0.5rem;
  color: var(--c-forest-900);
  background: transparent;
  border: 1px solid rgba(13, 43, 30, 0.25);
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.tee-time-slot:hover:not(:disabled),
.tee-time-slot.selected {
  color: var(--c-white);
  background: var(--c-forest-800);
  border-color: var(--c-forest-800);
}

.tee-time-slot:focus-visible {
  outline: 2px solid var(--c-gold-500);
  outline-offset: 2px;
}

.tee-time-slot:disabled {
  color: #929a95;
  background: #eeece7;
  border-color: #dedbd4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.booking-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1.15rem;
  color: var(--c-text-muted);
  background: #f7f5ef;
  border: 1px dashed rgba(22, 24, 23, 0.18);
  font-size: 0.85rem;
  text-align: center;
}

.booking-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.75rem;
  align-items: start;
  margin: 1.35rem 0;
  color: var(--c-text-body);
  font-size: 0.8rem;
  line-height: 1.55;
  cursor: pointer;
}

.booking-consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--c-gold-600);
}

.booking-submit {
  width: 100%;
  min-height: 54px;
}

.booking-submit:disabled {
  opacity: 0.52;
  cursor: not-allowed;
  transform: none;
}

.booking-security {
  margin: 0.8rem 0 0;
  color: var(--c-text-muted);
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: center;
}

.booking-summary {
  position: sticky;
  top: 120px;
  padding: 2.25rem;
  color: var(--c-white);
  background:
    linear-gradient(145deg, rgba(197, 160, 89, 0.09), transparent 48%),
    var(--c-forest-950);
  border: 1px solid rgba(197, 160, 89, 0.38);
}

.booking-summary .section-label {
  color: var(--c-gold-300);
}

.booking-summary h2 {
  margin: 0.75rem 0 2rem;
  color: var(--c-white);
  font-size: 2rem;
}

.booking-summary dl {
  display: grid;
  gap: 1rem;
}

.booking-summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-summary dt {
  color: var(--c-cream-300);
  font-size: 0.76rem;
}

.booking-summary dd {
  color: var(--c-white);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: right;
}

.booking-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin: 1.5rem 0;
}

.booking-summary-total span {
  color: var(--c-cream-100);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-summary-total strong {
  color: var(--c-gold-300);
  font-family: var(--f-serif);
  font-size: 2rem;
}

.booking-summary > p {
  color: var(--c-cream-300);
  font-size: 0.76rem;
  line-height: 1.6;
}

.booking-summary > a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--c-gold-300);
  font-weight: 700;
}

.booking-alert,
.booking-confirmation {
  max-width: 820px;
  margin: 0 auto 2rem;
  padding: 1.25rem 1.5rem;
}

.booking-alert {
  color: #7c231b;
  background: #fff2ef;
  border-left: 4px solid #b7493f;
  font-size: 0.85rem;
}

.booking-alert--info {
  color: var(--c-forest-900);
  background: #f1eee2;
  border-left-color: var(--c-gold-500);
}

.booking-confirmation {
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  color: var(--c-white);
  background: var(--c-forest-950);
  border: 1px solid rgba(197, 160, 89, 0.5);
}

.booking-confirmation .section-label {
  justify-content: center;
  color: var(--c-gold-300);
}

.booking-confirmation h2 {
  margin: 0.75rem 0 1rem;
  color: var(--c-white);
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.booking-confirmation > p {
  color: var(--c-cream-100);
}

.booking-reference {
  display: grid;
  gap: 0.25rem;
  max-width: 520px;
  margin: 2rem auto;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
}

.booking-reference span {
  color: var(--c-cream-300);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.booking-reference strong {
  overflow-wrap: anywhere;
  color: var(--c-gold-300);
  font-size: 0.78rem;
}

.booking-footer {
  padding-top: 2rem;
}

@media (max-width: 900px) {
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
    order: -1;
  }
}

@media (max-width: 600px) {
  .booking-hero {
    min-height: 600px;
    padding: 9rem 0 4rem;
  }

  .booking-hero-content h1 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .booking-hero-content > p {
    font-size: 0.95rem;
  }

  .booking-fields {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .booking-times-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .booking-form-panel,
  .booking-summary {
    padding: 1.35rem;
  }

  .booking-step-heading {
    gap: 0.5rem;
  }

  .booking-step-heading > span {
    flex-basis: 30px;
  }
}

@media (max-width: 768px) {
  .snapshot-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .snapshot-intro .primary-heading {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .snapshot-cards {
    gap: 0.75rem;
  }

  .snapshot-card,
  .snapshot-card:nth-child(2),
  .snapshot-card:nth-child(4) {
    min-height: 132px;
    padding: 1.25rem;
    transform: none;
  }

  .scorecard-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .scorecard-actions .btn {
    width: 100%;
  }
}

