/* ============================================================
   GOSWICK RANCH HOA — Complete Design System
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Cinzel:wght@400;600&display=swap');

/* --- Design Tokens --- */
:root {
  --pine:        #2C4A2E;
  --pine-dark:   #1A2E1B;
  --pine-light:  #3D6640;
  --bronze:      #8B5E3C;
  --bronze-dark: #6B4529;
  --gold:        #C4943A;
  --gold-light:  #D4A94A;
  --cream:       #F5F0E8;
  --cream-dark:  #EDE5D5;
  --stone:       #6B6B5B;
  --stone-light: #9B9B8B;
  --charcoal:    #1E1E1E;
  --white:       #FFFFFF;
  --rust:        #8B3A1E;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-caps:    'Cinzel', Georgia, serif;

  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  2rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.10);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);

  --transition: 0.25s ease;
  --container:  1200px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 0.95rem; font-weight: 600; }

p  { margin-bottom: var(--space-md); max-width: 70ch; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-caps);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--stone);
  font-weight: 300;
}

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--gold); }
.text-pine   { color: var(--pine); }
.text-stone  { color: var(--stone); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}
.container--narrow {
  max-width: 820px;
}

.section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}
.section--sm {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}
.section--lg {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.section-header {
  margin-bottom: var(--space-xl);
}
.section-header.text-center p { margin-left: auto; margin-right: auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-lg); }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.flex-gap    { gap: var(--space-md); }

/* ============================================================
   BACKGROUNDS
   ============================================================ */
.bg-cream   { background-color: var(--cream); }
.bg-pine    { background-color: var(--pine); }
.bg-charcoal{ background-color: var(--charcoal); }
.bg-white   { background-color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
.nav.nav--transparent .nav-inner { background: transparent; }
.nav.nav--solid      .nav-inner {
  background: rgba(26, 46, 27, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  transition: background var(--transition);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.nav-brand-name {
  font-family: var(--font-caps);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1.2;
}
.nav-brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--charcoal) !important;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  margin-left: 0.5rem;
}
.nav-links .nav-cta:hover {
  background: var(--gold-light);
  color: var(--charcoal) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--pine-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero--tall    { min-height: 100vh; }
.hero--medium  { min-height: 60vh; }
.hero--short   { min-height: 45vh; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease-out;
}
.hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,46,27,0.35) 0%,
    rgba(26,46,27,0.55) 50%,
    rgba(26,46,27,0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) var(--space-lg);
  max-width: 900px;
}
.hero-content .eyebrow { color: var(--gold-light); }
.hero-content h1,
.hero-content h2 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: var(--space-md);
}
.hero-content .lead {
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--space-lg);
  font-size: 1.25rem;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  animation: scroll-hint-bob 2s ease-in-out infinite;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  margin-top: -8px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}
@keyframes scroll-hint-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Sub-page heroes */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,46,27,0.2) 0%,
    rgba(26,46,27,0.75) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 2rem 3rem;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.page-hero-content h1 { color: var(--white); font-size: clamp(2rem,4vw,3rem); }
.page-hero-content .eyebrow { color: var(--gold-light); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--pine);
  color: var(--white);
  border-color: var(--pine);
}
.btn-primary:hover {
  background: var(--pine-dark);
  border-color: var(--pine-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline-pine {
  background: transparent;
  color: var(--pine);
  border-color: var(--pine);
}
.btn-outline-pine:hover {
  background: var(--pine);
  color: var(--white);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.82rem; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--charcoal);
  padding: 1.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.stat-item {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--charcoal);
}
.stat-value {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.card-body {
  padding: var(--space-lg);
}
.card-eyebrow {
  font-family: var(--font-caps);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: block;
}
.card h3 { margin-bottom: var(--space-sm); font-size: 1.3rem; }
.card p  { color: var(--stone); font-size: 0.95rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--pine);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: var(--space-md);
  transition: gap var(--transition);
}
.card-link:hover { gap: 0.65rem; }
.card-link::after { content: '→'; }

/* Feature card with icon */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.8rem;
}
.feature-card h3 { font-size: 1.25rem; margin-bottom: var(--space-sm); }
.feature-card p  { color: var(--stone); font-size: 0.95rem; max-width: none; }

/* When feature-card is itself a link — whole card is clickable */
a.feature-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.feature-card h3 { transition: color var(--transition); }
a.feature-card:hover h3 { color: var(--pine); }

/* Document card */
.doc-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.doc-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.doc-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--pine);
}
.doc-info h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.doc-info p  { color: var(--stone); font-size: 0.82rem; margin-bottom: 0; }
.doc-download {
  margin-left: auto;
  color: var(--pine);
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* Board member card */
.board-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.board-avatar {
  width: 80px;
  height: 80px;
  background: var(--cream-dark);
  border-radius: 50%;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pine);
}
.board-card h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.board-role {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-caps);
  margin-bottom: var(--space-md);
  display: block;
}

/* Listing card */
.listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.listing-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
}
.listing-img-wrap { position: relative; }
.listing-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.listing-body { padding: 1.5rem; }
.listing-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pine);
  margin-bottom: 0.25rem;
}
.listing-addr {
  font-size: 0.88rem;
  color: var(--stone);
  margin-bottom: 0.85rem;
}
.listing-specs {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--stone);
}
.listing-spec { display: flex; align-items: center; gap: 0.3rem; }

/* ============================================================
   PHOTO GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 6px;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item:nth-child(4) {
  grid-column: span 2;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }

/* Seasons video grid (lifestyle page) */
.seasons-video-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  height: 200px;
}
.photo-strip-item { overflow: hidden; }
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-strip-item:hover img { transform: scale(1.08); }

/* ============================================================
   SPLIT SECTIONS (image + text)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.split--reverse .split-image { order: 2; }
.split--reverse .split-body  { order: 1; }

.split-image {
  min-height: 480px;
  background-size: cover;
  background-position: center;
}
.split-body {
  padding: var(--space-2xl) var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-body p { color: var(--stone); }

/* ============================================================
   AUDIENCE CTA SECTION (Home split CTA)
   ============================================================ */
.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.audience-panel {
  padding: var(--space-2xl) var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
  min-height: 400px;
}
.audience-panel--residents {
  background: var(--pine);
}
.audience-panel--buyers {
  background: var(--bronze);
}
.audience-panel h2 {
  color: var(--white);
  font-size: 2rem;
}
.audience-panel p {
  color: rgba(255,255,255,0.82);
  max-width: 40ch;
}

/* ============================================================
   INFO BLOCKS
   ============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-lg);
}
.info-block {
  padding: 1.75rem;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.info-block h4 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.info-block p  { color: var(--stone); font-size: 0.92rem; margin-bottom: 0; }

/* ============================================================
   TIMELINE / HISTORY
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0.55rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--cream-dark);
}
.timeline-item {
  position: relative;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.05rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.timeline-year {
  font-family: var(--font-caps);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.timeline-item h4 { margin-bottom: 0.35rem; }
.timeline-item p  { color: var(--stone); font-size: 0.92rem; margin-bottom: 0; }

/* ============================================================
   RECREATION CARDS (with big background image)
   ============================================================ */
.rec-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 320px;
  cursor: pointer;
}
.rec-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.rec-card:hover .rec-card-bg { transform: scale(1.06); }
.rec-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,27,0.85) 0%, rgba(26,46,27,0.15) 60%);
}
.rec-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
  z-index: 1;
}
.rec-card-body h3 { color: var(--white); margin-bottom: 0.4rem; font-size: 1.3rem; }
.rec-card-body p  { color: rgba(255,255,255,0.78); font-size: 0.88rem; margin-bottom: 0; }
.rec-card-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
  color: var(--charcoal);
}
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(44,74,46,0.12);
}
textarea.form-control {
  resize: vertical;
  min-height: 140px;
}
select.form-control { appearance: none; }

/* ============================================================
   ACCORDION (FAQ)
   ============================================================ */
.accordion-item {
  border-bottom: 1px solid var(--cream-dark);
}
.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  gap: 1rem;
}
.accordion-btn .chevron {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.accordion-btn.open .chevron { transform: rotate(180deg); }
.accordion-body {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.7;
}
.accordion-body.open { display: block; }

/* ============================================================
   ALERTS / ANNOUNCEMENTS
   ============================================================ */
.announcement {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: var(--space-md);
}
.announcement-date {
  font-size: 0.76rem;
  color: var(--stone-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.announcement h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.announcement p  { font-size: 0.9rem; color: var(--stone); margin-bottom: 0; }
.announcement--urgent { border-color: var(--rust); }
.announcement--urgent .announcement-date { color: var(--rust); }

/* ============================================================
   HIGHLIGHT / CALLOUT BLOCK
   ============================================================ */
.callout {
  background: var(--pine);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  text-align: center;
}
.callout h2, .callout h3 { color: var(--white); margin-bottom: var(--space-md); }
.callout p { color: rgba(255,255,255,0.85); max-width: 60ch; margin: 0 auto var(--space-lg); }
.callout .eyebrow { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: var(--space-2xl) 0 var(--space-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.footer-brand-name {
  font-family: var(--font-caps);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}
.footer-brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-md);
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 30ch;
  margin-bottom: 0;
}
.footer-col h5 {
  font-family: var(--font-caps);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: var(--space-md) 0 var(--space-lg);
}
.divider--center { margin-left: auto; margin-right: auto; }

.tag {
  display: inline-block;
  background: var(--cream);
  color: var(--stone);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid var(--cream-dark);
}
.tag--green {
  background: rgba(44,74,46,0.1);
  color: var(--pine);
  border-color: rgba(44,74,46,0.2);
}
.tag--gold {
  background: rgba(196,148,58,0.12);
  color: var(--bronze);
  border-color: rgba(196,148,58,0.3);
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--stone);
}
.check-list li::before {
  content: '✓';
  color: var(--pine);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0,0,0,0);
  overflow: hidden;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4    { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-strip { grid-template-columns: repeat(3, 1fr); height: auto; }
  .photo-strip-item:nth-child(4),
  .photo-strip-item:nth-child(5) { display: none; }
}

@media (max-width: 768px) {
  .nav-links    { display: none; }
  .nav-hamburger{ display: flex; }
  .nav-inner    { padding: 0.85rem 1.25rem; }

  .hero--tall   { min-height: 100svh; }
  .hero-content { padding: var(--space-lg); }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .gallery-item:first-child { grid-column: span 2; }

  .split        { grid-template-columns: 1fr; }
  .split-image  { min-height: 280px; order: 0 !important; }
  .split-body   { padding: var(--space-xl) var(--space-lg); order: 1 !important; }

  .audience-split { grid-template-columns: 1fr; }
  .audience-panel { padding: var(--space-xl) var(--space-lg); min-height: auto; }

  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; text-align: center; }

  .callout      { padding: var(--space-xl) var(--space-lg); }

  .page-hero    { height: 40vh; }
  .page-hero-content { padding: 1.5rem; }

  .photo-strip  { display: none; }
  .seasons-video-grid { grid-template-columns: 1fr; }
  .btn-group    { flex-direction: column; align-items: flex-start; }
  .btn-lg       { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  :root { --space-lg: 1.5rem; --space-xl: 2.5rem; --space-2xl: 3.5rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
}
