/* =============================================
   FAIRVIEW GREENS — STYLESHEET
   Aesthetic: Refined editorial luxury
   Palette: Deep forest + antique gold + ivory
   ============================================= */

:root {
  --forest: #1a2918;
  --forest-mid: #243522;
  --forest-light: #3a5436;
  --gold: #b8952a;
  --gold-light: #d4af4a;
  --ivory: #f5f0e8;
  --ivory-dark: #ede5d4;
  --cream: #faf7f2;
  --text: #1a2918;
  --text-muted: #5a6b58;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* =============================================
   NAVIGATION
   ============================================= */

#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

#nav.scrolled {
  background: rgba(26, 41, 24, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 3rem;
  box-shadow: 0 2px 40px rgba(0,0,0,0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ivory);
}

.logo-mark {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(245, 240, 232, 0.85);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--forest) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ivory);
  transition: all 0.3s;
}

/* =============================================
   MOBILE MENU
   ============================================= */

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--forest);
  z-index: 90;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.mobile-menu.open { display: flex; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu a {
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
}

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--forest);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(58, 84, 54, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(184, 149, 42, 0.15) 0%, transparent 50%),
    linear-gradient(165deg, #1a2918 0%, #0e1a0d 60%, #0a1209 100%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem;
  padding-top: 8rem;
  max-width: 760px;
  animation: heroFadeUp 1.2s var(--ease-out) forwards;
  opacity: 0;
}

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

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  color: rgba(245, 240, 232, 0.65);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

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

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--forest);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(245, 240, 232, 0.3);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  right: 3rem;
  bottom: 8rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  writing-mode: vertical-lr;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.hero-stat-bar {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,41,24,0.7);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(184,149,42,0.2);
  padding: 1.25rem 3rem;
  gap: 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(184,149,42,0.2);
}

/* =============================================
   INTRO STRIP
   ============================================= */

.intro-strip {
  background: var(--forest);
  padding: 4rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(184,149,42,0.15);
}

.intro-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ivory);
  max-width: 760px;
  margin: 0 auto 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.intro-attr {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================
   SHARED SECTION STYLES
   ============================================= */

.section-header {
  text-align: center;
  padding: 5rem 3rem 3rem;
  max-width: 700px;
  margin: 0 auto;
}

.section-header.light .section-title,
.section-header.light .section-desc { color: var(--ivory); }

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
}

/* =============================================
   COURSE
   ============================================= */

.course {
  background: var(--cream);
  padding-bottom: 5rem;
}

.course-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--ivory-dark);
  margin: 0 3rem 4rem;
  border: 1px solid var(--ivory-dark);
}

.feature-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.3s;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), background 0.3s;
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover { background: var(--ivory); }

.feature-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--ivory-dark);
  line-height: 1;
  margin-bottom: 1rem;
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
}

/* SCORECARD */

.course-scorecard {
  margin: 0 3rem;
  border: 1px solid var(--ivory-dark);
  background: var(--white);
  padding: 2.5rem;
}

.scorecard-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.scorecard-table-wrap {
  overflow-x: auto;
}

.scorecard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  white-space: nowrap;
}

.scorecard-table th {
  background: var(--forest);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 0.6rem 0.8rem;
  text-align: center;
}

.scorecard-table td {
  padding: 0.55rem 0.8rem;
  text-align: center;
  border-bottom: 1px solid var(--ivory-dark);
  color: var(--text);
}

.scorecard-table .row-label {
  text-align: left;
  font-weight: 500;
  color: var(--forest);
  background: rgba(26,41,24,0.03);
}

.scorecard-table .sub-total {
  background: rgba(26,41,24,0.06);
  font-weight: 500;
  color: var(--forest);
}

.scorecard-table .grand-total {
  background: var(--forest);
  color: var(--gold-light);
  font-weight: 500;
}

/* =============================================
   MEMBERSHIP
   ============================================= */

.membership {
  position: relative;
  padding: 0 0 6rem;
  overflow: hidden;
}

.membership-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--forest) 0%, #0d1a0c 100%);
}

.membership-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(184,149,42,0.08) 0%, transparent 60%);
}

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

.membership-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,149,42,0.15);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), border-color 0.3s, background 0.3s;
}

.mem-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.mem-card:hover {
  border-color: rgba(184,149,42,0.4);
  background: rgba(255,255,255,0.07);
}

.mem-card.featured {
  border-color: var(--gold);
  background: rgba(184,149,42,0.07);
}

.mem-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--forest);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
}

.mem-tier {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.mem-price {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 2rem;
}

.mem-price span {
  font-size: 1rem;
  color: rgba(245,240,232,0.5);
}

.mem-perks {
  border-top: 1px solid rgba(184,149,42,0.15);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.mem-perks li {
  color: rgba(245,240,232,0.75);
  font-size: 0.875rem;
  font-weight: 300;
  padding-left: 1rem;
  position: relative;
}

.mem-perks li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

.mem-cta {
  display: block;
  text-align: center;
  border: 1px solid rgba(184,149,42,0.4);
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem;
  border-radius: 2px;
  transition: all 0.2s;
}

.mem-cta:hover {
  border-color: var(--gold);
  background: rgba(184,149,42,0.1);
}

.mem-cta.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
}

.mem-cta.primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* =============================================
   DINING
   ============================================= */

.dining {
  background: var(--cream);
  padding: 5rem 0;
}

.dining-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.dining-image {
  position: relative;
  overflow: hidden;
}

.dining-img-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(58,84,54,0.8) 0%, transparent 60%),
    linear-gradient(135deg, #1a2918 0%, #0a1209 100%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
}

.dining-overlay-text {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(245,240,232,0.2);
  letter-spacing: 0.02em;
}

.dining-content {
  padding: 4rem 4rem 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.dining-content .section-eyebrow {
  margin-bottom: 0;
}

.dining-content .section-title {
  margin-bottom: 0;
}

.dining-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
}

.dining-hours {
  border-top: 1px solid var(--ivory-dark);
  border-bottom: 1px solid var(--ivory-dark);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.hours-row span:first-child {
  color: var(--text-muted);
  font-weight: 300;
}

.hours-row span:last-child {
  color: var(--forest);
  font-weight: 400;
}

/* =============================================
   EVENTS
   ============================================= */

.events {
  background: var(--ivory);
  padding-bottom: 6rem;
}

.events-list {
  margin: 0 3rem;
  border-top: 1px solid var(--ivory-dark);
}

.event-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--ivory-dark);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.event-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--forest);
  padding: 0.75rem;
  border-radius: 2px;
}

.event-month {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.event-day {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
}

.event-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.4rem;
}

.event-info p {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
}

.event-register {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  white-space: nowrap;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.event-register:hover {
  color: var(--forest);
  transform: translateX(3px);
}

/* =============================================
   CONTACT
   ============================================= */

.contact {
  background: var(--forest);
  padding: 6rem 3rem;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info .section-eyebrow { margin-bottom: 0.75rem; }

.contact-info .section-title.light { color: var(--ivory); margin-bottom: 1.25rem; }

.contact-info > p {
  color: rgba(245,240,232,0.6);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: rgba(245,240,232,0.75);
  font-size: 0.9rem;
  font-weight: 300;
}

.detail-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }

/* FORM */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,149,42,0.2);
  border-radius: 2px;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,240,232,0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option { background: var(--forest-mid); }
.form-group textarea { resize: vertical; }

.btn-submit {
  background: var(--gold);
  color: var(--forest);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.35);
  text-align: center;
  font-weight: 300;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: #0a1209;
  border-top: 1px solid rgba(184,149,42,0.1);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-brand .logo-mark { font-size: 1.2rem; }

.footer-brand .logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ivory);
}

.footer-brand p {
  width: 100%;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.3);
  margin-top: 0.4rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  gap: 1.25rem;
}

.footer-social a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(245,240,232,0.4);
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p, .footer-bottom a {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.25);
}

.footer-bottom a:hover { color: var(--gold); }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .dining-split { grid-template-columns: 1fr; }
  .dining-image { min-height: 350px; position: relative; }
  .dining-content { padding: 3rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  #nav { padding: 1.1rem 1.5rem; }
  #nav.scrolled { padding: 0.8rem 1.5rem; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 0 1.5rem; padding-top: 7rem; }
  .hero-scroll { display: none; }

  .hero-stat-bar {
    gap: 1.25rem;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .stat-divider { display: none; }

  .section-header { padding: 4rem 1.5rem 2rem; }

  .course-features {
    grid-template-columns: 1fr;
    margin: 0 1.5rem 3rem;
  }

  .course-scorecard { margin: 0 1.5rem; padding: 1.5rem; }

  .membership-cards {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    max-width: 440px;
  }

  .events-list { margin: 0 1.5rem; }

  .event-item {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
  }

  .event-register {
    grid-column: 2;
    justify-self: start;
  }

  .contact { padding: 4rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { padding: 2rem 1.5rem; }
  .footer-bottom { padding: 1rem 1.5rem; flex-direction: column; text-align: center; }

  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
}
