/* ============================================================
   DESERT IRONWOODS RESORT — COMPLETE STYLE SYSTEM
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* === DESIGN TOKENS === */
:root {
  --orange:       #ff7a00;
  --orange-dark:  #e06800;
  --orange-glow:  rgba(255, 122, 0, 0.35);
  --dark:         #0f0f0f;
  --dark-2:       #181818;
  --dark-3:       #222;
  --dark-card:    #1c1c1c;
  --sand:         #f4e5cc;
  --sand-light:   #fdf6ed;
  --text-light:   #e0e0e0;
  --text-muted:   #888;
  --white:        #ffffff;
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   0.3s ease;
  --shadow:       0 8px 30px rgba(0,0,0,0.35);
  --shadow-lg:    0 16px 50px rgba(0,0,0,0.5);
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', Arial, sans-serif;
}

/* === RESET / BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* === NAVBAR === */
#mainNav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

#mainNav.scrolled {
  background: rgba(12, 12, 12, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 75px;
  transition: height var(--transition), transform var(--transition);
}
#mainNav.scrolled .nav-logo img { height: 55px; }
.nav-logo:hover img { transform: scale(1.06); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--orange); }
.nav-links a:hover::after,
.nav-links a.active::after { width: calc(100% - 28px); }

.nav-store-icon {
  margin-left: 12px;
  padding: 8px 10px !important;
  color: var(--white);
}
.nav-store-icon svg { display: block; }
.nav-store-icon::after { display: none !important; }
.nav-store-icon:hover svg { stroke: var(--orange); }
.nav-store-icon:hover { color: var(--orange) !important; }

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

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 4px;
  transition: transform 0.35s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE OVERLAY */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.mobile-nav a {
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 24px;
  transition: color var(--transition);
  display: block;
}

.mobile-nav a:hover { color: var(--orange); }

.mobile-nav .mobile-cta {
  margin-top: 24px;
  background: var(--orange) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 40px !important;
  border-radius: 50px;
  border: 2px solid var(--orange);
  transition: all var(--transition) !important;
}
.mobile-nav .mobile-cta:hover {
  background: transparent !important;
  color: var(--orange) !important;
  box-shadow: 0 0 30px var(--orange-glow);
}

body.menu-open { overflow: hidden; }

/* === BUTTONS === */
.btn-orange {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 34px;
  border-radius: 50px;
  border: 2px solid var(--orange);
  transition: all var(--transition);
  cursor: pointer;
  line-height: 1;
}
.btn-orange:hover {
  background: transparent;
  color: var(--orange);
  box-shadow: 0 0 28px var(--orange-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 34px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all var(--transition);
  line-height: 1;
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* === SECTION UTILITIES === */
.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 14px;
}

.title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
  font-variant-numeric: lining-nums;
}
.title.dark-text { color: #1a1a1a; }

.subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}

/* === SCROLL REVEAL === */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }

[data-reveal].revealed,
[data-reveal="left"].revealed,
[data-reveal="right"].revealed {
  opacity: 1;
  transform: translate(0);
}

/* Stagger delays */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/desert.jpg') no-repeat center center / cover;
  transform: scale(1.06);
  animation: heroZoom 9s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 920px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--orange);
  margin-bottom: 22px;
  animation: fadeUp 0.9s ease-out both;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  margin-bottom: 22px;
  animation: fadeUp 0.9s 0.18s ease-out both;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto 38px;
  line-height: 1.75;
  animation: fadeUp 0.9s 0.36s ease-out both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.54s ease-out both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeIn 1s 1.2s ease-out both;
}

.hero-scroll-hint span {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.45);
}

.hero-scroll-hint .scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.2s 1.5s ease-in-out infinite;
}

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

/* === AMENITIES STRIP === */
.amenities-strip {
  background: var(--dark-2);
  padding: 50px 30px;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.amenities-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 22px 12px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}

.amenity-item:hover {
  background: rgba(255,122,0,0.07);
  transform: translateY(-5px);
}

.amenity-icon {
  width: 54px; height: 54px;
  background: rgba(255,122,0,0.08);
  border: 1.5px solid rgba(255,122,0,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.4rem;
  transition: background var(--transition), box-shadow var(--transition);
}

.amenity-item:hover .amenity-icon {
  background: rgba(255,122,0,0.18);
  box-shadow: 0 0 22px var(--orange-glow);
}

.amenity-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  line-height: 1.3;
}

/* === FEATURE SECTIONS === */
.feature-section {
  padding: 110px 0;
}
.feature-section.bg-dark   { background: var(--dark); }
.feature-section.bg-dark2  { background: var(--dark-2); }
.feature-section.bg-sand   { background: var(--sand-light); }

.feature-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-inner.flipped { direction: rtl; }
.feature-inner.flipped > * { direction: ltr; }

.feature-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}
.feature-image-wrap:hover img { transform: scale(1.04); }

.feature-badge {
  position: absolute;
  top: 22px; left: 22px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 7px 16px;
  border-radius: 50px;
  z-index: 2;
}

.award-label-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.award-label-row .label {
  margin-bottom: 0;
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,122,0,0.1);
  border: 1px solid rgba(255,122,0,0.3);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-bottom: 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
}

.feature-text .subtitle { margin-bottom: 30px; }

.feature-list {
  list-style: none;
  margin-bottom: 38px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
  color: var(--text-light);
}
.feature-list li:last-child { border-bottom: none; }

.feature-list li i {
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Sand BG text overrides */
.feature-section.bg-sand .title { color: #1a1a1a; }
.feature-section.bg-sand .subtitle { color: #666; }
.feature-section.bg-sand .feature-list li { color: #444; border-color: rgba(0,0,0,0.08); }
.feature-section.bg-sand .feature-list li i { color: var(--orange-dark); }
.feature-section.bg-sand .award-badge { background: rgba(255,122,0,0.08); }

/* === EVENTS PAGE — CINEMATIC PANEL LAYOUT === */

/* Hero */
.ev-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.ev-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.events-page .ev-hero-bg { transform: scale(1); }
.ev-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,5,0,0.92) 0%, rgba(10,5,0,0.4) 50%, rgba(10,5,0,0.15) 100%);
}
.ev-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 100px;
  max-width: 800px;
}
.ev-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.ev-hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  line-height: 1.0;
  margin: 0 0 24px;
}
.ev-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.7;
  margin: 0;
}
.ev-hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.ev-hero-scroll .scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,122,0,0.8), transparent);
}

/* Cinematic panels */
.ev-panel {
  position: relative;
  height: 85vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.ev-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.ev-panel:hover .ev-panel-bg { transform: scale(1.03); }

/* Left gradient overlay */
.ev-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,4,0,0.92) 0%, rgba(8,4,0,0.55) 32%, transparent 50%);
}
/* Right gradient overlay */
.ev-panel-overlay--right {
  background: linear-gradient(to left, rgba(8,4,0,0.92) 0%, rgba(8,4,0,0.55) 32%, transparent 50%);
}
/* Bottom darkening on all panels — matches hero */
.ev-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,4,0,0.88) 0%, rgba(8,4,0,0.3) 35%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Left-aligned content */
.ev-panel-content {
  position: relative;
  z-index: 2;
  padding: 60px 80px;
  max-width: 560px;
}
/* Right-aligned content */
.ev-panel-content--right {
  margin-left: auto;
  text-align: right;
}

.ev-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(255,122,0,0.5);
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.ev-panel-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.05;
  margin: 0 0 20px;
}
.ev-panel-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0;
}

/* Big background number */
.ev-panel-num {
  position: absolute;
  bottom: -20px;
  left: -10px;
  font-family: var(--font-head);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.ev-panel-num--right {
  left: auto;
  right: -10px;
}

/* More Events Teaser */
.ev-more {
  background: var(--dark);
  padding: 60px 24px;
  text-align: center;
}
.ev-more-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  max-width: 700px;
  margin: 0 auto;
}
.ev-more-inner p {
  color: var(--orange);
  font-size: 1.35rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.03em;
  margin: 0;
  text-shadow: 0 0 28px rgba(255,122,0,0.45);
  text-align: center;
}
.ev-more-line {
  flex: 1;
  min-width: 30px;
  height: 1px;
  background: rgba(255,122,0,0.3);
}
.ev-more-br { display: none; }

/* Events CTA */
.ev-cta {
  background: linear-gradient(145deg, #1c0900, #2e1400, #1c0900);
  border-top: 1px solid rgba(255,122,0,0.15);
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ev-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,122,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.ev-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.ev-cta .title, .ev-cta .subtitle { color: var(--white); }
.ev-cta .subtitle { margin: 0 auto 38px; }
.ev-cta .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === CTA STRIP === */
.cta-strip {
  background: linear-gradient(145deg, #1c0900, #2e1400, #1c0900);
  border-top: 1px solid rgba(255,122,0,0.15);
  border-bottom: 1px solid rgba(255,122,0,0.15);
  padding: 90px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,122,0,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-strip .title,
.cta-strip .subtitle { color: var(--white); }
.cta-strip .subtitle { margin: 0 auto 38px; }
.cta-strip .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === PAGE BANNER (subpages) === */
.page-banner {
  position: relative;
  height: 52vh;
  min-height: 360px;
  padding-top: 80px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  transition: transform 0.6s ease;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 80%);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* === ABOUT PAGE === */
.about-story {
  padding: 100px 30px;
  background: var(--dark);
  text-align: center;
}

.about-story-inner {
  max-width: 860px;
  margin: 0 auto;
}

.about-story-inner .subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 100%;
  margin: 0 auto 20px;
}

.divider {
  width: 60px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 28px auto;
}

.about-split {
  padding: 90px 0;
}
.about-split.bg-dark  { background: var(--dark); }
.about-split.bg-dark2 { background: var(--dark-2); }
.about-split.bg-sand  { background: var(--sand-light); }

.about-split-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-split-inner.flipped { direction: rtl; }
.about-split-inner.flipped > * { direction: ltr; }

.about-split-inner img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-split-text .title  { font-size: 2.2rem; margin-bottom: 16px; }
.about-split-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-split.bg-sand .title { color: #1a1a1a; }
.about-split.bg-sand p { color: #666; }

/* === HOURS SECTION === */
.hours-section {
  padding: 90px 30px;
  background: var(--dark-2);
}

.hours-inner {
  max-width: 960px;
  margin: 0 auto;
}

.hours-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,122,0,0.2);
  border-radius: var(--radius);
  padding: 54px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  box-shadow: var(--shadow);
}

.hours-card-section h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,122,0,0.2);
}

.hours-list {
  list-style: none;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--text-muted); }
.hours-list .time { color: var(--text-light); font-weight: 500; }

.location-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.location-address i { color: var(--orange); margin-top: 4px; flex-shrink: 0; }
.location-address a { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }
.location-address a:hover { color: var(--orange); }

.location-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.location-phone i { color: var(--orange); }
.location-phone a { color: var(--text-light); font-size: 0.95rem; }
.location-phone a:hover { color: var(--orange); }

/* === TRAILS PAGE === */
.trails-map-section {
  padding: 80px 0;
  background: var(--dark-2);
}

.trails-map-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.trails-map-inner img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.trails-map-placeholder {
  background: var(--dark-card);
  border: 2px dashed rgba(255,122,0,0.25);
  border-radius: var(--radius);
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
}
.trails-map-placeholder i { font-size: 3rem; color: rgba(255,122,0,0.3); }

.trails-poi-section {
  padding: 90px 0;
  background: var(--dark);
}

.trails-poi-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.poi-header { margin-bottom: 54px; }

.poi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.poi-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.poi-card:hover {
  border-color: rgba(255,122,0,0.35);
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
}

.poi-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 8px;
}

.poi-card-header .poi-tag {
  margin-bottom: 0;
}

.poi-card-distance {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  opacity: 0.85;
  white-space: nowrap;
  flex-shrink: 0;
}

.poi-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.tag-riding      { background: rgba(255,122,0,0.12);   color: var(--orange); }
.tag-scenic      { background: rgba(100,160,255,0.12); color: #64a0ff; }
.tag-family      { background: rgba(80,200,120,0.12);  color: #50c878; }
.tag-adventure   { background: rgba(200,120,255,0.12); color: #c878ff; }
.tag-resort      { background: rgba(255,210,0,0.12);   color: #ffd200; }
.tag-street-legal{ background: rgba(0,210,200,0.12);   color: #00d2c8; }

.poi-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 10px;
}

.poi-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.poi-search-tip {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.poi-search-tip strong { color: rgba(255,255,255,0.55); }

/* === STORE PAGE === */
.store-hero-section {
  padding: 90px 30px 60px;
  background: var(--dark);
  text-align: center;
}

.store-grid-section {
  padding: 0 0 100px;
  background: var(--dark);
}

.store-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.store-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.store-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,122,0,0.25);
}

.store-card-img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #151515;
  padding: 36px;
}

.store-card-body { padding: 26px; }

.store-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 6px;
}

.store-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
}

.store-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.store-card-body .btn-orange {
  width: 100%;
  text-align: center;
  padding: 13px;
  font-size: 0.85rem;
}

.store-coming-banner {
  background: var(--dark-2);
  border: 1px solid rgba(255,122,0,0.15);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.store-coming-banner p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* === CONTACT PAGE === */
.contact-section {
  padding: 100px 0;
  background: var(--dark);
}

.contact-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-info-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: border-color var(--transition), transform var(--transition);
}
.contact-info-card:hover {
  border-color: rgba(255,122,0,0.3);
  transform: translateY(-2px);
}

.contact-icon {
  width: 48px; height: 48px;
  background: rgba(255,122,0,0.08);
  border: 1.5px solid rgba(255,122,0,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 6px;
}

.contact-info-text a,
.contact-info-text p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.55;
  margin: 0;
  transition: color var(--transition);
}
.contact-info-text a:hover { color: var(--orange); }

.contact-form-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 46px 44px;
}

.contact-form-card h2 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-form-card .form-sub {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 32px;
}

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

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,122,0,0.12);
}

.form-group textarea { height: 130px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark-3); color: var(--white); }

.form-submit { width: 100%; padding: 16px; font-size: 0.9rem; margin-top: 8px; }

.form-success {
  display: none;
  background: rgba(50,205,50,0.08);
  border: 1px solid rgba(50,205,50,0.3);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  color: #64d264;
  font-size: 0.9rem;
  margin-top: 16px;
}

.contact-map-section {
  padding: 0 0 90px;
  background: var(--dark);
}

.contact-map-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-map-inner iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius);
  filter: brightness(0.8) saturate(0.7);
  transition: filter var(--transition);
}
.contact-map-inner iframe:hover { filter: brightness(1) saturate(1); }

/* === FOOTER === */
.site-footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 72px 0 0;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-brand img {
  height: 56px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 260px;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1.5px solid #1877f2;
  border-radius: 50%;
  color: #1877f2;
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: #1877f2;
  color: var(--white);
  box-shadow: 0 0 14px rgba(24, 119, 242, 0.5);
  transform: translateY(-2px);
}

.footer-col h6 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 22px;
}

.footer-nav-links { list-style: none; }
.footer-nav-links li { margin-bottom: 10px; }
.footer-nav-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-nav-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-row i { color: var(--orange); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-row a,
.footer-contact-row span {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  transition: color var(--transition);
}
.footer-contact-row a:hover { color: var(--white); }

.footer-map iframe {
  width: 100%;
  height: 155px;
  border: 0;
  border-radius: var(--radius-sm);
  filter: brightness(0.92) saturate(0.85);
  transition: filter var(--transition);
}
.footer-map iframe:hover { filter: brightness(1) saturate(1); }

.footer-bottom {
  margin-top: 60px;
  padding: 20px 40px;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

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

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   TRAILS MAP — INTERACTIVE
   ============================================================ */

.trails-map-wrap {
  position: relative;
  background: var(--dark-2);
  padding: 80px 0 0;
}

.trails-map-header {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px 40px;
}

#trailsMap {
  width: 100%;
  height: 580px;
  position: relative;
  z-index: 1;
}

/* Tile toggle button */
.map-tile-toggle {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 500;
  display: flex;
  background: rgba(15,15,15,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.map-tile-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 9px 16px;
  cursor: pointer;
  transition: all var(--transition);
}

.map-tile-btn.active {
  background: var(--orange);
  color: var(--white);
}

/* POI Side Panel */
.poi-panel {
  position: absolute;
  top: 0;
  right: -420px;
  width: 380px;
  height: 100%;
  background: rgba(14,14,14,0.97);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255,122,0,0.2);
  z-index: 600;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.poi-panel.open { right: 0; }

.poi-panel-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
  line-height: 1;
}
.poi-panel-close:hover {
  background: rgba(255,122,0,0.2);
  border-color: var(--orange);
  color: var(--white);
}

.poi-panel-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #1a1a1a;
  flex-shrink: 0;
}

.poi-panel-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1a1a1a, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.poi-panel-img-placeholder i {
  font-size: 3rem;
  color: rgba(255,122,0,0.2);
}

.poi-panel-body {
  padding: 28px 28px 40px;
  flex: 1;
}

.poi-panel-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.poi-panel-body h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.poi-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
}

.poi-distance-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.poi-distance {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  white-space: nowrap;
  opacity: 0.9;
}

.poi-drive-time {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.poi-difficulty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.poi-difficulty-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.difficulty-dots {
  display: flex;
  gap: 4px;
}

.difficulty-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.difficulty-dot.filled { background: var(--orange); }
.difficulty-dot.filled.hard { background: #e05050; }
.difficulty-dot.filled.easy { background: #50c878; }
.difficulty-dot.filled.moderate { background: #ffc800; }

.poi-panel-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.poi-panel-tip {
  background: rgba(255,122,0,0.06);
  border: 1px solid rgba(255,122,0,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.poi-panel-tip strong { color: rgba(255,255,255,0.75); }
.poi-panel-tip i { color: var(--orange); margin-right: 6px; }

/* Custom Leaflet markers */
.custom-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--orange);
  border: 2.5px solid rgba(255,255,255,0.9);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
}

.custom-marker i {
  transform: rotate(45deg);
  color: white;
  font-size: 14px;
}

.custom-marker.resort {
  background: #ff3a00;
  width: 44px; height: 44px;
  border: 3px solid white;
}

.custom-marker.resort i { font-size: 18px; }

.custom-marker.street-legal {
  background: #00d2c8;
}

/* Leaflet popup override */
.leaflet-popup-content-wrapper {
  background: rgba(15,15,15,0.96) !important;
  border: 1px solid rgba(255,122,0,0.3) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6) !important;
  backdrop-filter: blur(12px);
}

.leaflet-popup-tip {
  background: rgba(15,15,15,0.96) !important;
}

.leaflet-popup-content {
  margin: 14px 16px !important;
}

.leaflet-popup-content b {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 4px;
}

.leaflet-popup-content span {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
}

.leaflet-popup-close-button { color: var(--text-muted) !important; }

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

@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .feature-inner { gap: 50px; }
}

@media (max-width: 992px) {
  /* Panel flows below the map, not on top of it */
  .poi-panel {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    border-left: none;
    border-top: none;
    border-radius: 0;
    transform: none;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    background: var(--dark-2);
    backdrop-filter: none !important;
    box-shadow: none;
  }
  .poi-panel.open {
    max-height: 480px;
    overflow-y: auto;
    border-top: none;
    border-radius: 0;
    padding: 14px 5% 0;
  }

  .poi-panel-img,
  .poi-panel-img-placeholder { height: 240px; object-position: center 70% !important; border-radius: 12px; width: 100%; display: block; }
  .poi-img-shellreef  { object-position: center 45% !important; }
  .poi-img-devilslide { object-position: center 20% !important; }

  #trailsMap { height: 500px; }

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

  .feature-inner            { grid-template-columns: 1fr; gap: 44px; padding: 0 24px; }
  .feature-inner.flipped    { direction: ltr; }
  .feature-image-wrap img   { height: 380px; }

  .about-split-inner          { grid-template-columns: 1fr; gap: 36px; padding: 0 24px; }
  .about-split-inner.flipped  { direction: ltr; }
  .about-split-inner img      { height: 320px; }

  .hours-card { grid-template-columns: 1fr; gap: 40px; padding: 40px 36px; }

  .poi-grid             { grid-template-columns: repeat(2, 1fr); }
  .store-grid-inner     { grid-template-columns: repeat(2, 1fr); }
  .contact-inner        { grid-template-columns: 1fr; }
  .amenities-inner      { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-container { padding: 0 20px; }
  .nav-logo img  { height: 52px; }

  /* More events teaser */
  .ev-more { padding: 36px 32px; }
  .ev-more-inner { flex-direction: column; gap: 12px; }
  .ev-more-line { min-width: unset; width: 48px; height: 1px; flex: none; }
  .ev-more-inner p { font-size: 1rem; line-height: 1.5; white-space: normal; }
  .ev-more-sep { display: none; }
  .ev-more-br { display: block; }

  /* Hero */
  .hero { min-height: 540px; }
  .hero-title { font-size: 2.6rem; }
  .hero-sub   { font-size: 0.98rem; margin-bottom: 28px; }
  .hero-actions { gap: 12px; }
  .hero-scroll-hint { display: none; }

  /* Amenities */
  .amenities-strip { padding: 36px 20px; }
  .amenities-inner { grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0; }
  .amenity-item  { padding: 16px 8px; }
  .amenity-icon  { width: 46px; height: 46px; font-size: 1.2rem; }
  .amenity-label { font-size: 0.7rem; }

  /* Events */
  .events-section { padding: 70px 0; }
  .events-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Feature sections */
  .feature-section { padding: 60px 0; }
  .feature-inner   { gap: 36px; padding: 0 20px; }
  .feature-image-wrap img { height: 260px; }
  .award-badge { font-size: 0.72rem; padding: 8px 12px; }

  /* About */
  .about-story { padding: 70px 20px; }
  .about-split { padding: 60px 0; }
  .about-split-inner { padding: 0 20px; gap: 30px; }
  .about-split-inner img { height: 240px; }
  .about-split-text .title { font-size: 1.9rem; }

  /* Hours */
  .hours-section { padding: 60px 20px; }
  .hours-card    { padding: 28px 22px; }
  .hours-card-section h3 { font-size: 1.3rem; }
  .hours-list li { font-size: 0.88rem; }

  /* Trails map */
  #trailsMap { height: 440px; }
  .trails-map-wrap { padding: 60px 0 0; }
  .trails-map-header { padding: 0 20px 28px; }
  .trails-poi-section { padding: 60px 0; }
  .trails-poi-inner { padding: 0 20px; }
  .poi-header { margin-bottom: 36px; }

  /* POI panel below map */
  .poi-panel.open { max-height: 440px; }
  .poi-panel-img,
  .poi-panel-img-placeholder { height: 215px; object-position: center 70% !important; border-radius: 12px; width: 100%; display: block; }
  .poi-img-shellreef  { object-position: center 45% !important; }
  .poi-img-devilslide { object-position: center 20% !important; }
  .poi-panel-body { padding: 16px 18px 24px; }
  .poi-panel-body h3 { font-size: 1.3rem; }

  /* Map tile toggle */
  .map-tile-toggle { top: 10px; right: 10px; }
  .map-tile-btn { padding: 8px 12px; font-size: 0.7rem; }

  /* Store */
  .store-hero-section { padding: 70px 20px 44px; }
  .store-grid-inner { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; padding: 0 20px; }

  /* Contact */
  .contact-section { padding: 70px 0; }
  .contact-inner   { padding: 0 20px; gap: 36px; }
  .contact-form-card { padding: 28px 20px; }
  .contact-form-card h2 { font-size: 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-map-section { padding: 0 0 60px; }
  .contact-map-inner { padding: 0 20px; }
  .contact-map-inner iframe { height: 280px; }

  /* Page banner */
  .page-banner { height: 38vh; min-height: 240px; padding-bottom: 40px; }
  .page-banner-content { padding: 0 20px; }
  .page-banner-content .title { font-size: 1.9rem; }

  /* Events page */
  .ev-hero-content { padding: 0 24px 80px; }
  .ev-hero-title { font-size: 2.8rem; }
  .ev-hero-scroll { display: none; }
  .ev-panel { height: auto; min-height: 0; flex-direction: column; align-items: stretch; }
  .ev-panel-bg { position: relative; height: 260px; background-attachment: scroll !important; }
  .ev-panel-overlay,
  .ev-panel-overlay--right { background: linear-gradient(to top, rgba(8,4,0,0.9) 0%, transparent 60%); }
  .ev-panel-content,
  .ev-panel-content--right {
    position: relative;
    margin: 0;
    text-align: left;
    padding: 32px 24px 40px;
    max-width: 100%;
    background: var(--dark);
  }
  .ev-panel-num { display: none; }
  .ev-cta { padding: 70px 24px; }

  /* CTA strip */
  .cta-strip { padding: 70px 20px; }

  /* Footer */
  .site-footer { padding: 40px 0 0; }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 28px 20px; padding: 0 20px; }
  .footer-brand  { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; margin-bottom: 14px; }
  .footer-brand img { height: 44px; margin-bottom: 12px; }
  .footer-find-us { display: none; }
  .footer-bottom  { margin-top: 36px; padding: 14px 20px; flex-direction: column; align-items: flex-start; gap: 2px; }

  /* POI cards */
  .poi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero-title  { font-size: 2.1rem; }
  .hero-eyebrow { font-size: 0.7rem; letter-spacing: 3px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-orange, .btn-ghost { width: 100%; max-width: 280px; text-align: center; padding: 15px; }

  /* Amenities — 2 cols on very small */
  .amenities-inner { grid-template-columns: repeat(2, 1fr); }

  /* Nav logo smaller */
  .nav-logo img { height: 46px; }

  /* Mobile menu text */
  .mobile-nav a { font-size: 1.6rem; }
  .mobile-nav .mobile-cta { font-size: 0.82rem !important; padding: 12px 30px !important; }

  /* Map */
  #trailsMap { height: 400px; }
  .poi-panel.open { max-height: 400px; }
  .poi-panel-img,
  .poi-panel-img-placeholder { height: 185px; object-position: center 70% !important; border-radius: 10px; width: 100%; display: block; }
  .poi-img-shellreef  { object-position: center 45% !important; }
  .poi-img-devilslide { object-position: center 20% !important; }

  /* Feature images */
  .feature-image-wrap img { height: 220px; }
  .about-split-inner img  { height: 210px; }

  /* Page banner */
  .page-banner { height: 32vh; min-height: 200px; }
  .page-banner-content .title { font-size: 1.6rem; }

  /* Section titles */
  .title { font-size: 1.75rem; }

  /* Contact */
  .contact-info-card { padding: 18px; gap: 14px; }
  .contact-icon { width: 40px; height: 40px; font-size: 1rem; }

  /* Hours card */
  .hours-card { padding: 22px 18px; }

  /* Store */
  .store-card-img { height: 200px; }

  /* Footer */
  .footer-bottom p { font-size: 0.72rem; }

  /* Ensure all tappable elements are min 44px */
  .btn-orange, .btn-ghost, .form-submit { min-height: 48px; }
  .footer-nav-links a { padding: 4px 0; display: block; }
  .footer-contact-row a { min-height: 32px; display: inline-flex; align-items: center; }
}
