/* ===================================================================
   HANMER SPRINGS GUIDE — World-Class Tourism Design System
   Premium Editorial Design · CSS Custom Properties · No Libraries
   =================================================================== */

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

/* ===================================================================
   1. CSS CUSTOM PROPERTIES
   =================================================================== */
:root {
  /* Brand Colours */
  --forest:        #1b3a2d;
  --forest-light:  #2a5a44;
  --forest-deep:   #0d2419;
  --gold:          #c9943a;
  --gold-light:    #e8b85a;
  --gold-pale:     rgba(201,148,58,0.12);
  --cream:         #f8f4ee;
  --white:         #ffffff;
  --charcoal:      #1a1a1a;
  --grey:          #6b7280;
  --light-grey:    #f0ece4;
  --shadow:        0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.16);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing & Sizing */
  --radius:    16px;
  --radius-sm: 10px;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

/* ===================================================================
   3. TYPOGRAPHY
   =================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 620px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header-center {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header-center .section-subtitle {
  margin: 0 auto;
}

/* ===================================================================
   4. NAVIGATION
   =================================================================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

nav.scrolled {
  background: rgba(13, 36, 25, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  font-size: 1.6rem;
  line-height: 1;
}

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

.nav-logo-text .name {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.nav-logo-text .sub {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.nav-links a {
  position: relative;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  transition: width 0.3s ease, left 0.3s ease;
  border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: calc(100% - 1.7rem);
  left: 0.85rem;
}

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

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  box-shadow: 0 2px 12px rgba(201,148,58,0.3);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,148,58,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(13, 36, 25, 0.97);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 0.6rem 2rem;
  transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold-light);
}

.mobile-menu .nav-cta {
  margin-top: 1rem;
  font-size: 1.1rem !important;
}

/* ===================================================================
   5. HERO SECTIONS
   =================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 140px 2rem 100px;
}

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

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,148,58,0.9);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero h1 .highlight {
  color: var(--gold-light);
  display: block;
}

.hero-intro {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* Mist particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* Sub-page hero */
.hero-sub {
  min-height: 60vh;
  padding: 160px 2rem 100px;
}

.hero-sub h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

/* Breadcrumb */
.breadcrumb {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ===================================================================
   HERO BACKGROUND GRADIENTS — Rich, Layered, Cinematic
   =================================================================== */

/* Home */
.hero-home .hero-bg {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(42,90,68,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(201,148,58,0.2) 0%, transparent 40%),
    linear-gradient(170deg, #0d2419 0%, #1b3a2d 20%, #2a5a44 40%, #3a8a6a 55%, #5ab89a 70%, #c8e8d5 85%, #f8f4ee 100%);
}
.hero-home .hero-overlay {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 100%),
    linear-gradient(180deg, rgba(13,36,25,0.4) 0%, rgba(0,0,0,0.1) 50%, rgba(201,148,58,0.08) 100%);
}

/* Hot Pools */
.hero-pools .hero-bg {
  background:
    radial-gradient(ellipse at 40% 60%, rgba(91,160,200,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(26,42,74,0.5) 0%, transparent 40%),
    linear-gradient(160deg, #0a1a30 0%, #1a2a4a 15%, #2d4a7a 30%, #3a6b9b 50%, #5ba0c8 70%, #87c8e8 85%, #c8e4f0 100%);
}
.hero-pools .hero-overlay {
  background: linear-gradient(180deg, rgba(10,26,48,0.5) 0%, rgba(0,0,0,0.15) 50%, rgba(91,160,200,0.1) 100%);
}

/* Forest Walks */
.hero-walks .hero-bg {
  background:
    radial-gradient(ellipse at 30% 70%, rgba(45,107,45,0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 20%, rgba(13,43,13,0.6) 0%, transparent 40%),
    linear-gradient(160deg, #051005 0%, #0d2b0d 15%, #1a4a1a 30%, #2d6b2d 50%, #4a8b4a 70%, #7ab87a 85%, #b8d8b8 100%);
}
.hero-walks .hero-overlay {
  background: linear-gradient(180deg, rgba(5,16,5,0.5) 0%, rgba(0,0,0,0.2) 60%, rgba(74,139,74,0.1) 100%);
}

/* Adventure */
.hero-adventure .hero-bg {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(168,122,53,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(42,26,13,0.5) 0%, transparent 40%),
    linear-gradient(150deg, #1a0d00 0%, #2a1a0d 15%, #4a3010 30%, #7a5520 50%, #a87a35 70%, #d4aa60 85%, #f0d8a0 100%);
}
.hero-adventure .hero-overlay {
  background: linear-gradient(180deg, rgba(26,13,0,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(212,170,96,0.08) 100%);
}

/* Skiing */
.hero-ski .hero-bg {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(135,184,224,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(26,42,74,0.4) 0%, transparent 40%),
    linear-gradient(170deg, #0a1530 0%, #1a2a4a 15%, #2d4a7a 30%, #4a7ab0 45%, #87b8e0 60%, #c8e0f0 75%, #eef6ff 90%, #ffffff 100%);
}
.hero-ski .hero-overlay {
  background: linear-gradient(180deg, rgba(10,21,48,0.4) 0%, rgba(0,0,0,0.05) 60%, rgba(200,224,240,0.1) 100%);
}

/* Cycling */
.hero-cycling .hero-bg {
  background:
    radial-gradient(ellipse at 40% 50%, rgba(74,122,80,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 20%, rgba(26,42,26,0.5) 0%, transparent 40%),
    linear-gradient(155deg, #0a1a0a 0%, #1a2a1a 15%, #2d4a30 30%, #4a7a50 50%, #7ab080 70%, #a8d0a8 85%, #d8f0d8 100%);
}
.hero-cycling .hero-overlay {
  background: linear-gradient(180deg, rgba(10,26,10,0.45) 0%, rgba(0,0,0,0.15) 50%, rgba(74,122,80,0.1) 100%);
}

/* Lake Tennyson */
.hero-lake .hero-bg {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(90,176,208,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 20%, rgba(26,58,74,0.5) 0%, transparent 40%),
    linear-gradient(165deg, #0a1a25 0%, #1a3a4a 15%, #2d6080 30%, #3a87aa 45%, #5ab0d0 60%, #88d0e8 75%, #c0e8f4 90%, #eaf6fa 100%);
}
.hero-lake .hero-overlay {
  background: linear-gradient(180deg, rgba(10,26,37,0.5) 0%, rgba(0,0,0,0.1) 50%, rgba(90,176,208,0.08) 100%);
}

/* Off-Road */
.hero-offroad .hero-bg {
  background:
    radial-gradient(ellipse at 60% 50%, rgba(122,80,16,0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 80%, rgba(42,24,0,0.4) 0%, transparent 40%),
    linear-gradient(155deg, #150a00 0%, #2a1800 15%, #4a2e05 30%, #7a5010 50%, #a87830 70%, #d4a85a 85%, #f0d090 100%);
}
.hero-offroad .hero-overlay {
  background: linear-gradient(180deg, rgba(21,10,0,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(212,168,90,0.08) 100%);
}

/* Dining */
.hero-dining .hero-bg {
  background:
    radial-gradient(ellipse at 40% 40%, rgba(122,37,53,0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(42,13,16,0.4) 0%, transparent 40%),
    linear-gradient(160deg, #1a0508 0%, #2a0d10 15%, #4a1520 30%, #7a2535 45%, #a84050 60%, #c86070 75%, #e0a0a0 90%, #f0d0d0 100%);
}
.hero-dining .hero-overlay {
  background: linear-gradient(180deg, rgba(26,5,8,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(168,64,80,0.08) 100%);
}

/* ===================================================================
   6. BUTTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--forest-deep);
  box-shadow: 0 4px 20px rgba(201,148,58,0.35);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(201,148,58,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px) scale(1.03);
}

.btn-dark {
  background: var(--forest);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--forest-light);
  transform: translateY(-2px) scale(1.03);
}

/* ===================================================================
   7. LAYOUT — Sections & Content Containers
   =================================================================== */
section {
  padding: 100px 2rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.bg-cream  { background: var(--cream); }
.bg-light  { background: var(--light-grey); }
.bg-forest { background: var(--forest); }
.bg-dark   { background: var(--forest-deep); }

/* ===================================================================
   8. CARDS — Generic Card System
   =================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.cards-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.card-gradient {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.card:hover .card-gradient { transform: scale(1.06); }

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
}

.card-body {
  padding: 1.8rem;
}

.card-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.card-text {
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.card-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.card-link:hover { color: var(--gold); gap: 10px; }

/* ===================================================================
   9. STATS BAR
   =================================================================== */
.stats-bar {
  background: var(--forest);
  padding: 60px 2rem;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,148,58,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -2px;
  display: block;
}

.stat-label {
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===================================================================
   10. FEATURE BLOCKS — Split Content
   =================================================================== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 60px 0;
}

.feature-block + .feature-block {
  border-top: 1px solid #e8e3d9;
}

.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-visual {
  border-radius: var(--radius);
  overflow: hidden;
  height: 440px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.feature-img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.feature-visual:hover .feature-img { transform: scale(1.04); }

.feature-overlay-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(13,36,25,0.9);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.6;
}

.feature-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ===================================================================
   11. POOL CARDS
   =================================================================== */
.pools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pool-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--gold);
}

.pool-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--forest);
}

.pool-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.pool-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.pool-temp {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.pool-desc {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ===================================================================
   12. TRAIL CARDS
   =================================================================== */
.trail-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 280px 1fr;
  transition: var(--transition);
}

.trail-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.trail-visual {
  min-height: 220px;
}

.trail-body {
  padding: 2rem;
}

.trail-difficulty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.diff-easy     { background: #d1fae5; color: #065f46; }
.diff-moderate { background: #fef3c7; color: #92400e; }
.diff-hard     { background: #fee2e2; color: #991b1b; }
.diff-advanced { background: #ede9fe; color: #5b21b6; }

.trail-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.trail-stats {
  display: flex;
  gap: 1.5rem;
  margin: 0.8rem 0 1rem;
  flex-wrap: wrap;
}

.trail-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--grey);
  font-weight: 500;
}

.trail-desc {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ===================================================================
   13. DINING CARDS
   =================================================================== */
.dining-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.dining-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.dining-img {
  height: 200px;
  position: relative;
}

.dining-cuisine {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(13,36,25,0.9);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

.dining-body { padding: 1.6rem; }

.dining-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.3rem;
}

.dining-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.dining-desc {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.dining-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dining-tag {
  background: var(--light-grey);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}

/* ===================================================================
   14. INFO BOX
   =================================================================== */
.info-box {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  border-radius: var(--radius);
  padding: 2.5rem;
  color: var(--white);
  margin: 2rem 0;
}

.info-box h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.info-item-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.info-item-value {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}

/* ===================================================================
   15. TIP BOX
   =================================================================== */
.tip-box {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1px solid #fcd34d;
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 1.5rem 0;
}

.tip-icon { font-size: 1.3rem; flex-shrink: 0; }

.tip-text {
  font-size: 0.88rem;
  color: #78350f;
  line-height: 1.65;
}

.tip-text strong { color: #92400e; }

.tip-text a {
  color: #92400e;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 2px;
}

/* ===================================================================
   16. BANNER CTA
   =================================================================== */
.banner-cta {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
  padding: 100px 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,148,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.banner-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(42,90,68,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.banner-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.banner-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  position: relative;
}

/* ===================================================================
   17. SEASONS
   =================================================================== */
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.season-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.season-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.season-icon { font-size: 2.2rem; margin-bottom: 0.8rem; display: block; }

.season-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.season-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ===================================================================
   18. TESTIMONIALS
   =================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--forest);
}

.testimonial-origin {
  font-size: 0.78rem;
  color: var(--grey);
}

/* ===================================================================
   19. GETTING HERE
   =================================================================== */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.transport-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.transport-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.transport-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }

.transport-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.transport-distance {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin: 0.4rem 0;
}

.transport-desc {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ===================================================================
   20. QUICK LINKS
   =================================================================== */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.quick-link {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.quick-link:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.quick-link-icon { font-size: 2rem; margin-bottom: 0.6rem; display: block; }

.quick-link-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest);
}

/* ===================================================================
   21. TABLES
   =================================================================== */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.styled-table thead {
  background: var(--forest);
  color: var(--white);
}

.styled-table th {
  padding: 1rem 1.2rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.styled-table td {
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--grey);
  border-bottom: 1px solid #f0ede6;
}

.styled-table tr:last-child td { border-bottom: none; }

.styled-table tr:nth-child(even) { background: #fafaf8; }

.styled-table td:first-child {
  font-weight: 600;
  color: var(--forest);
}

/* ===================================================================
   22. INTRO STRIP
   =================================================================== */
.intro-strip {
  background: var(--light-grey);
  padding: 80px 2rem;
}

.intro-strip .section-inner {
  max-width: 800px;
  text-align: center;
}

.intro-strip p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.8;
}

/* ===================================================================
   23. HOME FEATURE GRID
   =================================================================== */
.home-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.home-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: block;
  min-height: 260px;
}

.home-card .bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.home-card:hover .bg { transform: scale(1.05); }

.home-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.home-card .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem;
  z-index: 1;
}

.home-card .cat {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 6px;
}

.home-card .title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.home-card .desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-top: 6px;
}

.home-card.tall {
  grid-row: span 2;
  min-height: 540px;
}

.home-card.tall .title { font-size: 2rem; }

.home-activities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* ===================================================================
   24. ADVENTURE
   =================================================================== */
.adventure-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.adventure-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.adventure-img {
  height: 260px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.adventure-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.adventure-img-title {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1.2rem 1.5rem;
}

.adventure-body { padding: 1.5rem; }

.adventure-price {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.adventure-desc {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.adventure-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.3rem;
}

.adventure-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--grey);
}

/* ===================================================================
   25. FOOTER
   =================================================================== */
footer {
  background: #0a1610;
  padding: 80px 2rem 30px;
  color: rgba(255,255,255,0.6);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  color: rgba(255,255,255,0.5);
}

.footer-heading {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: var(--transition);
}

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

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-contact-item span:first-child {
  color: var(--gold);
  flex-shrink: 0;
}

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

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-badges {
  display: flex;
  gap: 0.8rem;
}

.footer-badge {
  background: rgba(201,148,58,0.12);
  border: 1px solid rgba(201,148,58,0.2);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

/* ===================================================================
   26. ANIMATIONS — Scroll Reveal
   =================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Counter animation target */
.count-up { display: inline-block; }

/* ===================================================================
   27. RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-block.reverse { direction: ltr; }
  .trail-card { grid-template-columns: 1fr; }
  .trail-visual { min-height: 200px; }
  .home-grid { grid-template-columns: 1fr; }
  .home-card.tall { grid-row: span 1; min-height: 320px; }
  .seasons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 60px 1.5rem; }

  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 120px 1.5rem 80px; }
  .hero-sub { padding: 140px 1.5rem 80px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-number { font-size: 2.5rem; }

  .feature-visual { height: 300px; }

  .adventure-details { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  nav { padding: 0 1rem; height: 64px; }
  .hero { padding: 100px 1rem 70px; }
  .hero h1 { font-size: 2rem; letter-spacing: -0.5px; }
  .hero-badge { font-size: 0.6rem; padding: 0.4rem 1rem; }

  section { padding: 50px 1rem; }

  .cards-grid { grid-template-columns: 1fr; }
  .pools-grid { grid-template-columns: 1fr; }
  .quick-links-grid { grid-template-columns: repeat(2, 1fr); }
  .seasons-grid { grid-template-columns: 1fr 1fr; }
  .home-activities { grid-template-columns: 1fr; }
  .transport-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .info-grid { grid-template-columns: 1fr; }
  .info-box { padding: 1.5rem; }

  .banner-cta { padding: 60px 1.5rem; }

  .stat-number { font-size: 2.2rem; }
  .stats-bar { padding: 40px 1.5rem; }
}
