/* ============================================
   Club Growth Co. — TPC Sawgrass Style
   ============================================ */

:root {
  --green-dark: #0d2818;
  --green-mid: #1a3d2e;
  --green-soft: #2d5a45;
  --green-accent: #4a7c59;
  --cream: #e8e4dc;
  --cream-warm: #d4cfc4;
  --gold: #b8a574;
  --gold-soft: rgba(184, 165, 116, 0.25);
  --white: #faf9f7;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --border: rgba(184, 165, 116, 0.35);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  --radius: 8px;
  --radius-lg: 16px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("https://res.cloudinary.com/enchanting/q_30,f_auto,c_mfit,w_1400,h_1400/tcs-web/2024/09/NSWGC5-4300DPI.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

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

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

.container {
  width: min(1140px, 100% - 2.5rem);
  margin-inline: auto;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--green-dark);
  color: var(--cream);
  font-weight: 500;
  border-radius: var(--radius);
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(13, 40, 24, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  flex-shrink: 0;
}

.brand-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-text span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cream-warm);
}

.brand-motto {
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0.04em;
  font-family: var(--font-sans);
  font-weight: 400;
  font-style: italic;
  margin-top: 0.15rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-menu a {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav-menu a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-header {
  margin-left: 0.5rem;
  padding: 0.5rem 1.1rem !important;
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  font-weight: 600 !important;
}

.btn-header:hover {
  background: var(--cream-warm) !important;
  color: var(--green-dark) !important;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.35rem;
  padding: 0.5rem 0.65rem !important;
  position: relative;
}

.cart-icon {
  flex-shrink: 0;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--gold);
  border-radius: 999px;
  line-height: 1;
}

.cart-link:hover .cart-count {
  background: var(--cream-warm);
}

/* Cart add animation (Pro Shop & any page using animateCartAdded) */
@keyframes cart-link-shake {
  0%, 100% { transform: translateX(0) scale(1); }
  12% { transform: translateX(-5px) scale(1.06); }
  24% { transform: translateX(5px) scale(1.06); }
  36% { transform: translateX(-4px) scale(1.04); }
  48% { transform: translateX(4px) scale(1.04); }
  60% { transform: translateX(-2px) scale(1.02); }
  72% { transform: translateX(2px) scale(1); }
}

@keyframes cart-icon-bounce {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  12% { transform: translateY(-10px) rotate(-18deg) scale(1.15); }
  28% { transform: translateY(2px) rotate(14deg) scale(1.08); }
  44% { transform: translateY(-6px) rotate(-10deg) scale(1.1); }
  60% { transform: translateY(0) rotate(6deg) scale(1.05); }
  80% { transform: translateY(-2px) rotate(-3deg) scale(1); }
  100% { transform: translateY(0) rotate(0deg) scale(1); }
}

@keyframes cart-badge-pop {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(184, 165, 116, 0.9); }
  25% { transform: scale(1.65); box-shadow: 0 0 0 6px rgba(184, 165, 116, 0.5); }
  50% { transform: scale(1.4); box-shadow: 0 0 0 14px rgba(184, 165, 116, 0); }
  75% { transform: scale(1.2); box-shadow: 0 0 0 0 transparent; }
  100% { transform: scale(1); box-shadow: 0 0 0 0 transparent; }
}

.cart-link.cart-animate {
  animation: cart-link-shake 0.75s ease;
}

.cart-link.cart-animate .cart-icon {
  animation: cart-icon-bounce 0.85s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.cart-link.cart-animate .cart-count {
  animation: cart-badge-pop 0.75s ease;
}

@keyframes btn-add-burst {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(184, 165, 116, 0.85), 0 4px 14px rgba(13, 40, 24, 0.15);
  }
  35% {
    transform: scale(1.12);
    box-shadow: 0 0 0 12px rgba(184, 165, 116, 0), 0 8px 28px rgba(13, 40, 24, 0.2);
  }
  55% { transform: scale(1.06); }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 transparent, 0 4px 14px rgba(13, 40, 24, 0.1);
  }
}

.proshop-page .btn-add {
  position: relative;
  overflow: visible;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.proshop-page .btn-add.btn-add-animate {
  animation: btn-add-burst 0.95s cubic-bezier(0.34, 1.3, 0.64, 1);
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  border-color: var(--green-dark) !important;
  font-weight: 700 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--cream);
}

.nav-toggle-lines {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto 0;
  background: currentColor;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto 0;
  background: currentColor;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green-dark);
  color: var(--cream);
  border-color: var(--green-mid);
}

.btn-primary:hover {
  background: var(--green-mid);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--cream-warm);
}

.btn-block {
  width: 100%;
}

button.btn {
  border: none;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 40%, #0d2818 100%);
  background-image:
    linear-gradient(to bottom, rgba(13, 40, 24, 0.7) 0%, transparent 50%),
    radial-gradient(ellipse 120% 80% at 50% 20%, var(--green-soft) 0%, transparent 50%),
    linear-gradient(180deg, #0d2818 0%, #1a3d2e 35%, #0d2818 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

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

.hero-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem 3rem;
  justify-content: space-between;
}

.hero-content {
  max-width: 640px;
  flex: 1 1  min(100%, 480px);
}

.hero-image-wrap {
  flex: 0 0 auto;
  max-width: 500px;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(212, 175, 55, 0.25);
}

.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--cream-warm);
  max-width: 520px;
  margin: 0 0 2rem;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 228, 220, 0.5);
}

/* ========== STRIP ========== */
.strip {
  background: var(--green-dark);
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.strip-inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.strip-item {
  text-align: center;
}

.strip-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
}

.strip-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-warm);
}

/* ========== SECTIONS ========== */
.section {
  padding: 4.5rem 0;
}

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

.section-dark {
  background: var(--green-dark);
  color: var(--cream);
}

.section-dark .section-eyebrow {
  color: var(--gold);
}

.section-dark .section-sub,
.section-dark p {
  color: var(--cream-warm);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green-accent);
  margin: 0 0 0.5rem;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: inherit;
}

.section-sub {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.05rem;
}

.section-dark .section-sub {
  color: var(--cream-warm);
}

.proshop-cta {
  text-align: center;
}

/* ========== PRO SHOP PAGE ========== */
.proshop-hero {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

/* Pro shop: generous scroll room between sections and at bottom */
.proshop-page .section {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.proshop-page .proshop-hero {
  padding-top: 5rem;
  padding-bottom: 4.75rem;
}

.proshop-page .section-alt.section {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.proshop-page .section-dark.section {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.proshop-page {
  padding-bottom: 10rem;
}

@media (max-width: 900px) {
  .proshop-hero {
    padding-top: 5.5rem;
    padding-bottom: 3.25rem;
  }

  .proshop-page .section,
  .proshop-page .section-alt.section,
  .proshop-page .section-dark.section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .proshop-page {
    padding-bottom: 7.5rem;
  }
}

@media (max-width: 600px) {
  .proshop-hero {
    padding-top: 5rem;
    padding-bottom: 2.75rem;
  }

  .proshop-page .section,
  .proshop-page .section-alt.section,
  .proshop-page .section-dark.section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .proshop-page {
    padding-bottom: 6rem;
  }
}

.proshop-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 1.5rem;
  color: var(--green-dark);
}

.section-alt .proshop-section-title {
  color: var(--green-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.proshop-page .product-grid {
  gap: 2.25rem;
  margin-bottom: 2.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.product-image-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--text);
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  flex: 1;
}

.product-price {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--green-dark);
  margin: 0 0 1rem;
}

.product-size-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.35rem;
}

.product-size-select {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0.5rem 0.65rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 44px;
}

.btn-add {
  width: 100%;
  margin-top: auto;
}

/* ========== COURSE CARDS ========== */
.course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.course-featured {
  border-color: var(--gold);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.2);
}

.course-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.course-stadium img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.course-stadium::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.course-valley img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.course-valley::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

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

.course-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.course-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.course-body p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  flex: 1;
}

.course-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.link-arrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
}

.link-arrow::after {
  content: "→";
}

.link-arrow:hover {
  gap: 0.6rem;
}

.section-dark .link-arrow {
  color: var(--gold);
}

/* ========== COURSE OVERVIEW - 18 HOLES ========== */
.holes-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 0.5rem;
  max-width: 560px;
  margin: 0 auto;
}

.hole-btn {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  padding: 0;
}

.hole-btn:hover {
  background: var(--cream-warm);
  border-color: var(--green-accent);
  transform: translateY(-2px);
}

.hole-btn-featured {
  border-color: var(--gold);
  color: var(--green-mid);
  background: var(--gold-soft);
}

.hole-btn-featured:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--green-dark);
}

/* Hole overview modal */
.hole-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.hole-modal-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.hole-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.hole-modal-content {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hole-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.hole-modal-close:hover {
  color: var(--text);
  background: var(--cream);
}

.hole-modal-img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -1.75rem -1.75rem 1rem -1.75rem;
}

.hole-modal-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--green-dark);
  padding-right: 2.5rem;
}

.hole-modal-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 0 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hole-modal-meta dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0 0 0.25rem;
}

.hole-modal-meta dd {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-dark);
  margin: 0;
}

.hole-modal-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}

@media (max-width: 600px) {
  .holes-grid {
    grid-template-columns: repeat(6, 1fr);
    max-width: 100%;
  }

  .hole-btn {
    font-size: 1.1rem;
  }

  .hole-modal-content {
    padding: 1.25rem;
  }

  .hole-modal-title {
    font-size: 1.5rem;
  }
}

/* ========== SIGNATURE HOLE ========== */
.signature-hole .split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.signature-visual {
  aspect-ratio: 1;
  max-width: 320px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255,255,255,0.05);
}

.signature-visual .signature-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.signature-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  z-index: 1;
}

.split-copy .section-eyebrow {
  margin-bottom: 0.35rem;
}

.split-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.split-copy p {
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.split-copy .btn {
  margin-top: 0.5rem;
}

/* ========== TEE TIMES ========== */
.tee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.tee-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
}

.tee-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 1.25rem;
}

.tee-booking-card .tee-booking-title {
  margin-bottom: 1rem;
  color: var(--green-dark);
}

.tee-calendar-wrap {
  background: linear-gradient(145deg, var(--green-mid) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
}

.tee-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.tee-calendar-month {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0;
  letter-spacing: 0.02em;
}

.tee-calendar-nav {
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--cream-warm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.tee-calendar-nav:hover {
  background: var(--gold-soft);
  color: var(--gold);
}

.tee-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 0.5rem;
  text-align: center;
}

.tee-calendar-weekdays span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cream-warm);
  opacity: 0.85;
}

.tee-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.tee-calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: 1px solid transparent;
}

.tee-calendar-day:hover:not(.tee-calendar-day-other):not(.tee-calendar-day-past) {
  background: var(--gold-soft);
  color: var(--white);
}

.tee-calendar-day-other {
  color: var(--cream-warm);
  opacity: 0.45;
}

.tee-calendar-day-past {
  opacity: 0.35;
  cursor: default;
}

.tee-calendar-day-selected {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

.tee-calendar-day-today {
  border-color: var(--cream-warm);
  box-shadow: 0 0 0 1px var(--cream-warm);
}

.form-booking {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.tee-form-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.tee-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.tee-form-field span {
  color: var(--text);
}

.tee-form-field select {
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
}

.tee-form-field select:focus {
  outline: none;
  border-color: var(--green-accent);
  box-shadow: 0 0 0 2px var(--gold-soft);
}

.tee-booking-btn {
  margin-top: 0.25rem;
}

.form-booking label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-booking input,
.form-booking select {
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--white);
}

.form-booking input:focus,
.form-booking select:focus {
  outline: none;
  border-color: var(--green-accent);
  box-shadow: 0 0 0 2px var(--gold-soft);
}

.fineprint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 1rem 0 0;
}

.conditions-box {
  background: rgba(13, 40, 24, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.conditions-box h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}

.conditions-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conditions-box li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
}

.conditions-box li:last-child {
  border-bottom: none;
}

.conditions-box span {
  color: var(--text-muted);
}

.tee-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.tee-note a {
  color: var(--green-dark);
  font-weight: 500;
  text-decoration: underline;
}

/* ========== SPLIT LAYOUTS ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.media-frame {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--green-mid) 0%, var(--green-dark) 100%);
  overflow: hidden;
}

.dining-frame {
  background: linear-gradient(145deg, #2d5a45 0%, #1a3d2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dining-frame .dining-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instruction-frame {
  background: linear-gradient(145deg, #1a3d2e 0%, #0d2818 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.instruction-frame .instruction-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.instruction-intro {
  margin-bottom: 2.5rem;
}

.instruction-options-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.instruction-options-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--green-dark);
}

.instruction-options-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.instructor-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.instructor-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
}

.instructor-card:hover {
  border-color: var(--green-accent);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.instructor-card-featured {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.instructor-card-featured:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.instructor-card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  background: var(--gold-soft);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
}

.instructor-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--green-dark);
  padding-right: 4rem;
}

.instructor-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.5;
  flex: 1;
}

.instructor-card-price {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.instructor-price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
}

.instructor-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-top: auto;
}

.instructor-card-cta::after {
  content: "→";
}

.instructor-card:hover .instructor-card-cta {
  color: var(--green-accent);
}

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

@media (max-width: 600px) {
  .instructor-card {
    padding: 1.25rem;
  }

  .instructor-card-title {
    font-size: 1.2rem;
  }
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-accent);
  font-weight: 600;
}

/* ========== EVENTS ========== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.event-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.event-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.event-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
}

.event-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

/* ========== MEMBERSHIP ========== */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}

.membership-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
}

.membership-card:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.membership-card-featured {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(184, 165, 116, 0.2);
}

.membership-card-featured:hover {
  box-shadow: 0 14px 36px rgba(184, 165, 116, 0.25);
}

.membership-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--green-dark);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.75rem;
  border-radius: 0  var(--radius-lg) 0 var(--radius);
}

.membership-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--green-dark);
}

.membership-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  line-height: 1.55;
  flex: 1;
}

.membership-price {
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.membership-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
}

.membership-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.membership-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.membership-features li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
}

.membership-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-accent);
  font-weight: 700;
}

.membership-card .btn-block {
  margin-top: auto;
}

.membership-login-cta {
  text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.membership-login-cta p {
  margin: 0 0 0.75rem;
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 500;
}
.btn-membership-login {
  min-width: 200px;
  background: var(--green-dark);
  color: var(--white);
  border: 2px solid var(--green-mid);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.75rem;
  box-shadow: 0 4px 14px rgba(13, 40, 24, 0.25);
}
.btn-membership-login:hover {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(13, 40, 24, 0.3);
}
.btn-membership-login:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ========== EXPERIENCE (WHY US) ========== */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.experience-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.experience-item:hover {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow);
}

.experience-icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.experience-item h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--green-dark);
}

.experience-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 0;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--green-mid);
  color: var(--white);
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.cta-inner p {
  color: var(--cream-warm);
  margin: 0 0 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-buttons .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 0 0 1rem;
}

.contact-info p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--cream-warm);
}

.hours {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.hours h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem;
  color: var(--gold);
}

.hours p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(232, 228, 220, 0.5);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-soft);
}

.contact-form .btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}

.contact-form .btn-primary:hover {
  background: var(--cream-warm);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--green-dark);
  color: var(--cream-warm);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--cream-warm);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.8rem;
  margin: 0;
  color: var(--cream-warm);
  opacity: 0.85;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .container {
    width: 100%;
    padding-inline: 1.25rem;
  }

  .header-inner {
    padding: 0.65rem 0;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-text strong {
    font-size: 1.2rem;
  }

  .brand-motto {
    font-size: 0.65rem;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--green-dark);
    padding: 0.75rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    gap: 0;
    max-height: min(80vh, 400px);
    overflow-y: auto;
  }

  .nav-menu.open li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-menu.open li:last-child {
    border-bottom: none;
  }

  .nav-menu.open a,
  .nav-menu.open .cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.85rem 1rem !important;
    margin: 0;
  }

  .nav-menu.open .btn-header {
    margin-left: 0;
  }

  .nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
  }

  .cart-link {
    margin-left: 0;
  }

  .course-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .signature-hole .split,
  .split {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

  .split.reverse {
    direction: ltr;
  }

  .split-media {
    order: -1;
  }

  .signature-visual {
    max-width: 260px;
    margin: 0 auto;
  }

  .tee-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tee-form-options {
    grid-template-columns: 1fr;
  }

  .tee-calendar-day {
    min-height: 36px;
    aspect-ratio: unset;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .membership-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    min-height: 48px;
  }
}

@media (max-width: 768px) {
  .hero-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image-wrap {
    max-width: 100%;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 2.75rem);
    word-wrap: break-word;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    min-height: 48px;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .section-head h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
  }
}

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

  .hero {
    padding-top: 6rem;
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .hero-inner {
    padding-top: 0.5rem;
  }

  .hero-image-wrap {
    max-width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .strip-inner {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .strip-num {
    font-size: 1.5rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-alt.section {
    padding: 2.5rem 0;
  }

  .btn {
    min-height: 44px;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
  }

  .form-booking input,
  .form-booking select {
    min-height: 44px;
    font-size: 16px;
    padding: 0.75rem 0.85rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 44px;
    font-size: 16px;
    padding: 0.75rem 0.85rem;
  }

  .contact-form textarea {
    min-height: 120px;
  }

  .course-body {
    padding: 1.25rem;
  }

  .course-card h3 {
    font-size: 1.4rem;
  }

  .event-card {
    padding: 1.25rem;
  }

  .cta-inner h2 {
    font-size: clamp(1.5rem, 5vw, 1.85rem);
  }

  .footer {
    padding: 2rem 0;
  }

  .footer-logo {
    width: 64px;
    height: 64px;
  }

  .footer-brand {
    font-size: 1.1rem;
  }

  .footer-links {
    gap: 1rem;
  }

  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-body h3 {
    font-size: 1.1rem;
  }

  .btn-add {
    min-height: 48px;
  }

  .brand-text strong {
    font-size: 1.05rem;
  }
}
