/* =============================================================================
   BELMORE SKI CLUB — STATIC SITE STYLESHEET
   Standalone design system + full page styles (no WordPress dependency)
   ============================================================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@600;700;800;900&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* --- Brand: Alpine Navy --- */
  --navy-950: #040D1A;
  --navy-900: #060E21;
  --navy-800: #0B1C2C;
  --navy-700: #0F2744;
  --navy-600: #1A3A5E;
  --navy-500: #235080;
  --navy-400: #2E6898;
  --navy-300: #4B85B5;
  --navy-100: #B8D6EC;
  --navy-50:  #EDF5FB;

  /* --- Brand: Electric Blue --- */
  --blue-700: #1D4ED8;
  --blue-600: #2563EB;
  --blue-500: #3B82F6;
  --blue-400: #60A5FA;
  --blue-300: #93C5FD;
  --blue-200: #BFDBFE;
  --blue-100: #DBEAFE;
  --blue-50:  #EFF6FF;

  /* --- Grays --- */
  --white:    #FFFFFF;
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* --- Status --- */
  --green-500: #22C55E;
  --green-100: #DCFCE7;
  --yellow-500: #EAB308;
  --red-500:   #EF4444;

  /* --- Semantic --- */
  --color-primary:      var(--navy-700);
  --color-accent:       var(--blue-600);
  --color-accent-hover: var(--blue-700);
  --color-accent-light: var(--blue-100);
  --color-bg:           var(--white);
  --color-surface:      var(--gray-50);
  --color-border:       var(--gray-200);
  --color-text:         var(--gray-900);
  --color-text-2:       var(--gray-600);
  --color-text-muted:   var(--gray-400);
  --color-inverse:      var(--white);

  /* --- Typography --- */
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Montserrat', 'Inter', sans-serif;

  /* --- Spacing --- */
  --sp1: 0.25rem;  /* 4px  */
  --sp2: 0.5rem;   /* 8px  */
  --sp3: 0.75rem;  /* 12px */
  --sp4: 1rem;     /* 16px */
  --sp5: 1.25rem;  /* 20px */
  --sp6: 1.5rem;   /* 24px */
  --sp8: 2rem;     /* 32px */
  --sp10: 2.5rem;  /* 40px */
  --sp12: 3rem;    /* 48px */
  --sp16: 4rem;    /* 64px */
  --sp20: 5rem;    /* 80px */
  --sp24: 6rem;    /* 96px */

  /* --- Border Radius --- */
  --r-sm:   4px;
  --r-md:   6px;
  --r-lg:   8px;
  --r-xl:   12px;
  --r-2xl:  16px;
  --r-3xl:  24px;
  --r-full: 9999px;

  /* --- Shadows --- */
  --shadow-xs: 0 1px 2px rgba(15,23,42,.05);
  --shadow-sm: 0 1px 3px rgba(15,23,42,.1), 0 1px 2px rgba(15,23,42,.06);
  --shadow-md: 0 4px 6px -1px rgba(15,23,42,.1), 0 2px 4px -1px rgba(15,23,42,.06);
  --shadow-lg: 0 10px 15px -3px rgba(15,23,42,.1), 0 4px 6px -2px rgba(15,23,42,.05);
  --shadow-xl: 0 20px 25px -5px rgba(15,23,42,.1), 0 10px 10px -5px rgba(15,23,42,.04);
  --shadow-2xl: 0 25px 50px -12px rgba(15,23,42,.25);
  --shadow-accent: 0 4px 14px rgba(37,99,235,.3);
  --shadow-navy: 0 4px 14px rgba(15,39,68,.4);

  /* --- Layout --- */
  --nav-height: 72px;
  --container: 1280px;
  --section-y: clamp(64px, 8vw, 96px);

  /* --- Transitions --- */
  --t-fast: 100ms ease;
  --t-base: 200ms ease;
  --t-slow: 300ms ease;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp6);
}
.container--narrow { max-width: 1024px; }

.section { padding: var(--section-y) 0; }
.section--dark  { background: var(--navy-900); color: var(--white); }
.section--navy  { background: var(--color-primary); color: var(--white); }
.section--light { background: var(--color-surface); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .02em;
  border: 2px solid transparent;
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}
.btn:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 2px; }

.btn-primary { background: var(--blue-600); color: var(--white); border-color: var(--blue-600); box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--blue-700); border-color: var(--blue-700); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.4); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-secondary:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-navy { background: var(--navy-700); color: var(--white); border-color: var(--navy-700); box-shadow: var(--shadow-navy); }
.btn-navy:hover { background: var(--navy-600); border-color: var(--navy-600); transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--color-accent); border-color: var(--color-accent); }
.btn-ghost:hover { background: var(--blue-50); }

.btn-sm { padding: .5rem 1rem; font-size: .75rem; border-radius: var(--r-md); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: var(--r-xl); }
.btn-xl { padding: 1.125rem 2.25rem; font-size: 1.125rem; border-radius: var(--r-xl); }

/* ============================================================
   SITE HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-height);
  transition: background var(--t-slow), box-shadow var(--t-slow), backdrop-filter var(--t-slow);
}
.site-header.is-transparent { background: transparent; }
.site-header.is-solid {
  background: rgba(11,28,44,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.07), var(--shadow-lg);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp3);
  flex-shrink: 0;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo__text { display: flex; flex-direction: column; }
.nav-logo__name {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  line-height: 1.1;
}
.nav-logo__sub {
  font-size: .6rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: .5rem .75rem;
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  border-radius: var(--r-md);
  transition: color var(--t-base), background var(--t-base);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.07); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown:hover .nav-dropdown-menu { opacity:1; visibility:visible; transform:translateY(0); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: var(--sp2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--t-base);
  box-shadow: var(--shadow-xl);
  z-index: 10;
}
.nav-dropdown-item {
  display: block;
  padding: .5rem .75rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.65);
  border-radius: var(--r-md);
  transition: color var(--t-base), background var(--t-base);
}
.nav-dropdown-item:hover { color: var(--white); background: rgba(255,255,255,.06); }

/* Nav CTA group */
.nav-cta { display: flex; align-items: center; gap: var(--sp3); flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp2);
  border-radius: var(--r-md);
  transition: background var(--t-base);
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle-bar {
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: var(--r-full);
  transition: all var(--t-base);
}
.nav-toggle.open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .nav-toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--navy-900);
  z-index: 49;
  flex-direction: column;
  padding: var(--sp6);
  overflow-y: auto;
  opacity: 0;
  transition: opacity var(--t-base);
}
.mobile-nav.open { display: flex; opacity: 1; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-link {
  display: block;
  padding: .75rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  transition: color var(--t-fast), background var(--t-fast);
}
.mobile-nav-link:hover { color: var(--white); background: rgba(255,255,255,.05); }
.mobile-nav-link--sub { padding-left: 2rem; font-size: 1rem; color: rgba(255,255,255,.5); border-bottom: none; }
.mobile-nav-cta { margin-top: var(--sp6); padding-top: var(--sp6); border-top: 1px solid rgba(255,255,255,.08); }

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--blue-600); color: var(--white);
  padding: .5rem 1rem; border-radius: var(--r-md);
  font-weight: 600; z-index: 100;
}
.skip-link:focus { top: 1rem; left: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-900);
}
/* Hero background slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}

.hero-slide.active { opacity: 1; }

/* Slide indicator dots */
.hero-indicators {
  position: absolute;
  bottom: 52px;
  right: 28px;
  z-index: 2;
  display: flex;
  gap: 7px;
  align-items: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.3);
  border: 1px solid rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .25s;
  padding: 0;
  outline: none;
}

.hero-dot.active,
.hero-dot:hover {
  background: rgba(255,255,255,.9);
  transform: scale(1.25);
  border-color: white;
}

/* Backwards-compat legacy .hero-bg */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(6,14,33,.87) 0%, rgba(15,39,68,.78) 30%, rgba(35,80,128,.45) 65%, rgba(15,39,68,.75) 100%);
}
.hero-overlay::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 240px;
  background: linear-gradient(to top, var(--color-bg), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 850px;
  padding: calc(var(--nav-height) + 80px) var(--sp6) 140px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp2);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-full);
  padding: 6px 16px;
  margin-bottom: var(--sp6);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: var(--r-full);
  background: var(--green-500);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.8)} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: var(--sp6);
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(125deg, #60A5FA 0%, #93C5FD 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  font-weight: 300;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin: 0 auto var(--sp10);
  max-width: 580px;
}

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--sp4); }

.hero-stats {
  position: absolute;
  bottom: 80px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  gap: var(--sp8);
  align-items: center;
}
.hero-stat { text-align: center; color: var(--white); }
.hero-stat-value { display: block; font-family: var(--font-display); font-size: 1.75rem; font-weight: 900; line-height: 1; }
.hero-stat-label { display: block; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 4px; }
.hero-stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.18); }

.hero-scroll {
  position: absolute;
  bottom: var(--sp8); left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: var(--sp2);
  color: rgba(255,255,255,.3);
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  animation: bounce-y 2s ease-in-out infinite;
}
@keyframes bounce-y { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp16);
}
.section-header--left { text-align: left; margin-left: 0; }
.section-header::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--blue-600), #38BDF8);
  border-radius: var(--r-full);
  margin: var(--sp5) auto 0;
}
.section-header--left::after { margin-left: 0; }

.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: var(--sp3);
}
.section-title { color: var(--color-text); margin-bottom: var(--sp4); }
.section-title--light { color: var(--white); }
.section-desc { font-size: 1.125rem; color: var(--color-text-2); line-height: 1.65; }
.section-desc--light { color: rgba(255,255,255,.6); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp16);
  align-items: center;
}
.about-body { font-size: 1.0625rem; color: var(--color-text-2); line-height: 1.7; margin-bottom: var(--sp8); }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp4); margin-bottom: var(--sp8); }
.about-fact {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-2xl);
  padding: var(--sp4) var(--sp5);
}
.about-fact-value { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--blue-600); line-height: 1; margin-bottom: 4px; }
.about-fact-label { font-size: .8125rem; color: var(--color-text-2); font-weight: 500; }

.about-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp3); }
.about-img-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--r-2xl); transition: transform var(--t-slow); }
.about-img-grid img:first-child { grid-column: span 2; height: 280px; }
.about-img-grid img:hover { transform: scale(1.02); }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp6); }
.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--r-3xl);
  padding: var(--sp8);
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--blue-200); }
.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue-600), #0EA5E9);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp5);
  font-size: 1.5rem;
}
.feature-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: var(--sp3); }
.feature-desc { font-size: .875rem; color: var(--color-text-2); line-height: 1.65; }

/* ============================================================
   ACCOMMODATION
   ============================================================ */
.accom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}
.accom-image { position: relative; min-height: 500px; }
.accom-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.accom-content { padding: var(--sp12) var(--sp10); display: flex; flex-direction: column; justify-content: center; }
.accom-content h2 { margin-bottom: var(--sp5); }
.accom-content p { font-size: 1rem; color: var(--color-text-2); line-height: 1.7; margin-bottom: var(--sp6); }
.accom-features { display: flex; flex-direction: column; gap: var(--sp3); margin-bottom: var(--sp8); }
.accom-feature { display: flex; align-items: center; gap: var(--sp3); font-size: .875rem; color: var(--color-text-2); }
.accom-check { width: 28px; height: 28px; background: var(--green-100); border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.accom-actions { display: flex; gap: var(--sp3); flex-wrap: wrap; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: var(--sp3);
}
.gallery-item { border-radius: var(--r-2xl); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,28,44,.6), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ============================================================
   SEASON / CTA BANNER
   ============================================================ */
.season-banner {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--blue-700) 100%);
  padding: var(--sp20) var(--sp6);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.season-banner::before, .season-banner::after {
  content: '';
  position: absolute;
  border-radius: var(--r-full);
  pointer-events: none;
}
.season-banner::before { top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 60%); }
.season-banner::after  { bottom: -100px; left: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(96,165,250,.08) 0%, transparent 60%); }
.season-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.season-eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-300); margin-bottom: var(--sp4); }
.season-title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 900; margin-bottom: var(--sp5); }
.season-desc { font-size: 1.125rem; color: rgba(255,255,255,.65); line-height: 1.65; margin-bottom: var(--sp10); }
.season-actions { display: flex; align-items: center; justify-content: center; gap: var(--sp4); flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp16); align-items: start; }
.contact-list { display: flex; flex-direction: column; gap: var(--sp6); }
.contact-item { display: flex; gap: var(--sp4); align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: var(--blue-50); border-radius: var(--r-xl); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.contact-label { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 4px; }
.contact-value { font-size: .9375rem; font-weight: 500; color: var(--color-text); }
.contact-map { background: var(--color-surface); border-radius: var(--r-3xl); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--color-border); }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.55); padding-top: var(--sp20); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp10); padding-bottom: var(--sp16); border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-brand { max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: var(--sp3); margin-bottom: var(--sp5); }
.footer-logo img { height: 36px; filter: brightness(0) invert(1) opacity(.75); }
.footer-logo-name { font-family: var(--font-display); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--white); }
.footer-tagline { font-size: .8125rem; color: rgba(255,255,255,.38); line-height: 1.65; margin-bottom: var(--sp6); }
.footer-social { display: flex; gap: var(--sp3); }
.footer-social-link { width: 36px; height: 36px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); font-size: .875rem; transition: all var(--t-base); }
.footer-social-link:hover { background: rgba(255,255,255,.1); color: var(--white); }
.footer-col-title { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: var(--sp5); }
.footer-nav { display: flex; flex-direction: column; gap: var(--sp2); }
.footer-nav-link { font-size: .8125rem; color: rgba(255,255,255,.45); transition: color var(--t-base); line-height: 1.6; }
.footer-nav-link:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: var(--sp6); padding: var(--sp6) 0; flex-wrap: wrap; }
.footer-copy { font-size: .8125rem; color: rgba(255,255,255,.25); }
.footer-copy a { color: rgba(255,255,255,.35); transition: color var(--t-base); }
.footer-copy a:hover { color: var(--white); }
.footer-legal { display: flex; gap: var(--sp6); }
.footer-legal a { font-size: .7rem; color: rgba(255,255,255,.25); letter-spacing: .06em; text-transform: uppercase; transition: color var(--t-base); }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ============================================================
   CONTENT (interior pages)
   ============================================================ */
.page-hero { background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%); padding: calc(var(--nav-height) + 48px) 0 48px; color: var(--white); }
.page-hero-label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-300); margin-bottom: 12px; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(1.75rem, 5vw, 3.5rem); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.page-hero-desc { font-size: 1.125rem; color: rgba(255,255,255,.6); max-width: 540px; }

.content-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--r-3xl); padding: var(--sp8); box-shadow: var(--shadow-sm); }
.prose h2, .prose h3 { margin: var(--sp8) 0 var(--sp4); }
.prose p { color: var(--color-text-2); line-height: 1.7; margin-bottom: var(--sp4); }
.prose ul { padding-left: var(--sp6); margin: var(--sp4) 0; }
.prose li { color: var(--color-text-2); margin-bottom: var(--sp2); }
.prose a { color: var(--blue-600); text-decoration: underline; }
.prose strong { font-weight: 600; color: var(--color-text); }
.prose table { width: 100%; border-collapse: collapse; font-size: .875rem; margin: var(--sp6) 0; }
.prose th, .prose td { padding: var(--sp3) var(--sp4); border: 1px solid var(--color-border); text-align: left; }
.prose th { background: var(--color-surface); font-weight: 600; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-animate] { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
[data-animate].visible { opacity: 1; transform: none; }
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="500"] { transition-delay: 500ms; }

/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp8); }
  .footer-brand { grid-column: span 2; max-width: 100%; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 200px 200px; }
  .gallery-item:first-child, .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats { display: none; }
  .about-grid, .accom-grid, .contact-grid { grid-template-columns: 1fr; gap: var(--sp8); }
  .accom-image { min-height: 280px; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; height: 240px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-header { margin-bottom: var(--sp10); }
}

@media (max-width: 640px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; height: 240px; }
  .season-actions { flex-direction: column; }
  .season-actions .btn { width: 100%; max-width: 320px; }
  .footer-legal { flex-direction: column; align-items: center; gap: var(--sp3); }
}

/* ============================================================
   FOCUS / PRINT
   ============================================================ */
:focus-visible { outline: 2px solid var(--blue-500); outline-offset: 3px; border-radius: var(--r-sm); }
:focus:not(:focus-visible) { outline: none; }
@media print { .site-header, .mobile-nav, .hero-scroll { display: none; } body { font-size: 12pt; } }

/* ============================================================
   LIVE CAM PAGE
   ============================================================ */

/* Hero banner */
.livecam-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  background: var(--navy-900);
  background-image: url('/assets/images/bg13.jpg');
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.livecam-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(6,14,33,.82) 0%, rgba(15,39,68,.72) 40%, rgba(15,39,68,.85) 100%);
}
.livecam-hero__content {
  position: relative;
  z-index: 1;
  padding-top: var(--sp16);
  padding-bottom: var(--sp12);
}
.livecam-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp2);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-full);
  padding: 5px 14px;
  margin-bottom: var(--sp5);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.livecam-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: var(--sp5);
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.livecam-hero__title em {
  font-style: normal;
  background: linear-gradient(125deg, #60A5FA 0%, #93C5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.livecam-hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 540px;
  margin: 0;
  line-height: 1.6;
}

/* Webcam grid */
.livecam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp6);
  max-width: 1200px;
  margin: 0 auto;
}

.livecam-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.livecam-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.livecam-embed {
  position: relative;
  padding-top: 56.25%;
  background: var(--navy-800);
}
.livecam-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.livecam-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: var(--sp3);
}
.livecam-label__info {}
.livecam-label__name {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy-800);
  margin: 0;
}
.livecam-label__source {
  font-size: .75rem;
  color: var(--gray-400);
  margin: 0;
}

.livecam-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--red-500);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 3px 8px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.livecam-live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

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

@media (max-width: 640px) {
  .livecam-hero { min-height: 240px; }
  .livecam-hero__title { font-size: clamp(1.75rem, 8vw, 2.5rem); }
}
