/* ═══════════════════════════════════════════════════════════════════════════
   Shamrock RV Village & Mobile Home Park — Main Stylesheet
   ═══════════════════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────────────────────
   CSS Custom Properties
   ─────────────────────────────────────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --green-900: #0d3321;
  --green-800: #145232;
  --green-700: #1a6e44;
  --green-600: #228b55;
  --green-500: #2aab68;
  --green-400: #4dc883;
  --green-100: #e8f7ed;
  --green-50:  #f3fbf5;

  --gold-600:  #b8860b;
  --gold-500:  #d4a017;
  --gold-400:  #f0be3a;
  --gold-100:  #fef9ec;

  --neutral-950: #0a0f0d;
  --neutral-900: #111815;
  --neutral-800: #1e2b23;
  --neutral-700: #2d4035;
  --neutral-600: #4a6458;
  --neutral-500: #6b8a7c;
  --neutral-400: #97b4a8;
  --neutral-300: #c4d8d0;
  --neutral-200: #e0ece7;
  --neutral-100: #f0f6f2;
  --neutral-50:  #f8fbf9;
  --white:       #ffffff;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Borders */
  --radius-sm:  0.375rem;
  --radius-md:  0.75rem;
  --radius-lg:  1.25rem;
  --radius-xl:  2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 14px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 36px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.10);
  --shadow-xl: 0 24px 60px rgba(0,0,0,.18);

  /* Transitions */
  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* ───────────────────────────────────────────────────────────────────────────
   Reset & Base
   ─────────────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--green-500); }

ul { list-style: none; }

/* ───────────────────────────────────────────────────────────────────────────
   Layout Utilities
   ─────────────────────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ───────────────────────────────────────────────────────────────────────────
   Typography Utilities
   ─────────────────────────────────────────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: var(--green-400); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--neutral-900);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-title em { color: var(--green-600); font-style: italic; }

.section-desc {
  font-size: 1.125rem;
  color: var(--neutral-600);
  max-width: 640px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section-header .section-title { margin-bottom: 1rem; }

/* ───────────────────────────────────────────────────────────────────────────
   Button Styles
   ─────────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-700);
  color: var(--white);
  border-color: var(--green-700);
}
.btn-primary:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,110,68,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.65);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-site {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--neutral-100);
  color: var(--green-800);
  border: 2px solid var(--neutral-200);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-site:hover {
  background: var(--green-100);
  border-color: var(--green-500);
  color: var(--green-800);
  transform: translateY(-2px);
}

.btn-site-featured {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--green-700);
  color: var(--white);
  border: 2px solid var(--green-700);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-site-featured:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,110,68,.35);
}

.btn-rate {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-300, #a0d4b8);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-rate:hover {
  background: var(--green-100);
  color: var(--green-800);
  transform: translateY(-2px);
}

.btn-rate-featured {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  background: var(--white);
  color: var(--green-800);
  border: 2px solid var(--white);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-rate-featured:hover {
  background: var(--green-100);
  color: var(--green-800);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ───────────────────────────────────────────────────────────────────────────
   HEADER / NAVIGATION
   ─────────────────────────────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition-slow), box-shadow var(--transition-slow);
}
#site-header.scrolled {
  background: rgba(13,51,33,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

#main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-weight: 600;
  font-size: 1.425rem;
  line-height: 1.3;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--green-400); }

.logo-icon {
  font-size: 2.7rem;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(42,171,104,.5));
}

.logo-text small {
  display: block;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links li a {
  color: rgba(255,255,255,.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.nav-links li a:hover {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.nav-links li a.nav-cta {
  background: var(--green-600);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  font-weight: 600;
}
.nav-links li a.nav-cta:hover {
  background: var(--green-500);
  color: var(--white);
}
.nav-links li a.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ───────────────────────────────────────────────────────────────────────────
   HERO SECTION
   ─────────────────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
#hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(9,33,20,.80) 0%,
    rgba(13,51,33,.65) 50%,
    rgba(9,33,20,.50) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem 0.4rem 0.6rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.hero-badge img { width: 28px; height: 28px; object-fit: contain; border-radius: 50%; }
.hero-badge-icon { font-size: 1.4rem; line-height: 1; filter: drop-shadow(0 0 4px rgba(42,171,104,.6)); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.hero-title em {
  color: var(--green-400);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 560px;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
  max-width: 110px;
  line-height: 1.3;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.25);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 1.2rem;
  animation: bounce 2s ease infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ───────────────────────────────────────────────────────────────────────────
   ABOUT SECTION
   ─────────────────────────────────────────────────────────────────────────── */
.section-about {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.about-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.about-img-main:hover img { transform: scale(1.04); }

.about-img-secondary {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 7;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.about-img-secondary:hover img { transform: scale(1.04); }

.about-copy .section-title { margin-bottom: 1.25rem; }

.about-lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--neutral-700);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.about-copy p {
  color: var(--neutral-600);
  margin-bottom: 1rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--green-800);
}
.highlight-item i {
  color: var(--green-600);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ───────────────────────────────────────────────────────────────────────────
   AMENITIES SECTION
   ─────────────────────────────────────────────────────────────────────────── */
.section-amenities {
  padding: var(--space-2xl) 0;
  background: var(--neutral-50);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.amenity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--neutral-200);
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Cards with photos */
.amenity-card .amenity-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.amenity-card .amenity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.amenity-card:hover .amenity-img img { transform: scale(1.06); }

.amenity-body {
  padding: 1.5rem;
}
.amenity-body .amenity-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  font-size: 1.2rem;
  margin-bottom: 0.875rem;
}
.amenity-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 0.625rem;
}
.amenity-body p {
  font-size: 0.9rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

/* Feature amenity cards (icon-only, no photo) */
.feature-amenity {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.amenity-icon-large {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.35rem;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}
.feature-amenity h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-900);
}
.feature-amenity p {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

/* Duck / Riverfront highlight amenity card */
.amenity-duck-highlight {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  border: 2px solid var(--green-500);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.amenity-duck-highlight::before {
  content: '🏈';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 4rem;
  opacity: 0.12;
  pointer-events: none;
}
.amenity-duck-highlight .amenity-icon-large {
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  box-shadow: 0 4px 16px rgba(42,171,104,.4);
}
.amenity-duck-highlight h3 {
  color: var(--white) !important;
}
.amenity-duck-highlight p {
  color: rgba(255,255,255,.82) !important;
}
.amenity-duck-highlight strong {
  color: var(--green-400);
}
   ─────────────────────────────────────────────────────────────────────────── */
.section-sites {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.sites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.site-card {
  background: var(--white);
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.site-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.site-card-featured {
  border-color: var(--green-600);
  background: linear-gradient(180deg, var(--green-900) 0%, var(--green-800) 100%);
  color: var(--white);
  transform: scale(1.025);
}
.site-card-featured:hover { transform: scale(1.025) translateY(-4px); }

.site-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--neutral-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.site-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--neutral-200);
}
.site-card-featured .site-card-header { border-bottom-color: rgba(255,255,255,.15); }

.site-card-header i {
  font-size: 2rem;
}
.site-card-header.rv i    { color: var(--green-600); }
.site-card-header.monthly i { color: var(--green-400); }
.site-card-header.mobile i { color: var(--green-600); }

.site-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neutral-900);
}
.site-card-featured .site-card-header h3 { color: var(--white); }

.site-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.site-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--neutral-700);
}
.site-card-featured .site-features li { color: rgba(255,255,255,.85); }
.site-features li i {
  color: var(--green-500);
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.site-card-featured .site-features li i { color: var(--green-400); }

/* ───────────────────────────────────────────────────────────────────────────
   WHY SHAMROCK SECTION
   ─────────────────────────────────────────────────────────────────────────── */
.section-why {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,33,20,.92) 0%, rgba(13,51,33,.85) 100%);
}
.why-content {
  position: relative;
  z-index: 1;
}

.why-content .section-header { margin-bottom: var(--space-xl); }
.why-content .section-desc { color: rgba(255,255,255,.7); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-item {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.why-item:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-4px);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(42,171,104,.35);
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.why-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

/* ───────────────────────────────────────────────────────────────────────────
   GALLERY SECTION
   ─────────────────────────────────────────────────────────────────────────── */
.section-gallery {
  padding: var(--space-2xl) 0;
  background: var(--neutral-50);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.875rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
  margin: 0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: var(--white);
  font-size: 0.78rem;
  padding: 1.5rem 0.75rem 0.625rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover figcaption { opacity: 1; }

.gallery-item--large {
  grid-column: span 2;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}
.lightbox[hidden] { display: none !important; }

.lightbox-img-wrap {
  max-width: 900px;
  width: 100%;
  text-align: center;
}
.lightbox-img-wrap img {
  max-height: 80vh;
  max-width: 100%;
  border-radius: var(--radius-md);
  object-fit: contain;
  margin: 0 auto;
}
.lightbox-caption {
  color: rgba(255,255,255,.75);
  font-size: 0.875rem;
  margin-top: 0.875rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10000;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }

.lightbox-nav {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}
.lightbox-nav:hover { background: rgba(255,255,255,.2); }

/* ───────────────────────────────────────────────────────────────────────────
   RATES SECTION
   ─────────────────────────────────────────────────────────────────────────── */
.section-rates {
  padding: var(--space-2xl) 0;
  background: var(--green-900);
}
.section-rates .section-eyebrow { color: var(--green-400); }
.section-rates .section-title   { color: var(--white); }
.section-rates .section-desc    { color: rgba(255,255,255,.7); }

.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.rate-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  transition: background var(--transition), transform var(--transition);
}
.rate-card:hover {
  background: rgba(255,255,255,.11);
  transform: translateY(-4px);
}

.rate-card--featured {
  background: rgba(255,255,255,.14);
  border-color: var(--green-400);
  border-width: 2px;
  transform: scale(1.02);
}
.rate-card--featured:hover { transform: scale(1.02) translateY(-4px); }

.rate-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--neutral-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.rate-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.rate-header i {
  font-size: 1.75rem;
  color: var(--green-400);
}
.rate-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.rate-price {
  text-align: center;
  margin-bottom: 1.5rem;
}
.rate-from {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-400);
}
.rate-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,.55);
  display: block;
  margin-top: 0.25rem;
}

.rate-includes {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.rate-includes li {
  font-size: 0.875rem;
  color: rgba(255,255,255,.75);
  padding-left: 1.25rem;
  position: relative;
}
.rate-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-400);
  font-weight: 700;
}

.rates-note {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.rates-note i { color: var(--green-400); }

/* ───────────────────────────────────────────────────────────────────────────
   LOCAL AREA SECTION
   ─────────────────────────────────────────────────────────────────────────── */
.section-local {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

/* Location Distance Banner */
.location-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
}

.loc-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 2rem;
  flex: 1;
  min-width: 160px;
  justify-content: center;
}
.loc-badge i {
  font-size: 1.75rem;
  color: var(--green-400);
  flex-shrink: 0;
}
.loc-badge div {
  display: flex;
  flex-direction: column;
}
.loc-distance {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  font-family: var(--font-display);
}
.loc-name {
  font-size: 0.78rem;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.03em;
  margin-top: 0.15rem;
}
.loc-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.local-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  transition: box-shadow var(--transition), transform var(--transition);
}
.local-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.local-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
}

.local-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 0.625rem;
}
.local-item p {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.7;
}

/* ───────────────────────────────────────────────────────────────────────────
   CONTACT SECTION
   ─────────────────────────────────────────────────────────────────────────── */
.section-contact {
  padding: var(--space-2xl) 0;
  background: var(--neutral-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 1rem; }

.contact-intro {
  color: var(--neutral-600);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.contact-detail strong { display: block; color: var(--neutral-800); margin-bottom: 0.2rem; }
.contact-detail a { color: var(--green-700); font-weight: 500; }
.contact-detail a:hover { color: var(--green-500); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 1.75rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-group:last-of-type { margin-bottom: 1.5rem; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-700);
}
.form-group label span { color: var(--green-600); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--neutral-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(42,171,104,.15);
}
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #e53e3e;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-status {
  font-size: 0.875rem;
  margin-top: 0.875rem;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
}
.form-status.success {
  background: var(--green-100);
  color: var(--green-800);
  border: 1px solid var(--green-400, #4dc883);
}
.form-status.error {
  background: #fff5f5;
  color: #c53030;
  border: 1px solid #feb2b2;
}

/* ───────────────────────────────────────────────────────────────────────────
   FOOTER
   ─────────────────────────────────────────────────────────────────────────── */
#site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,.8);
  padding-top: var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  text-decoration: none;
  margin-bottom: 1.25rem;
}
.footer-logo:hover { color: var(--green-400); }
.footer-logo .logo-icon { font-size: 2rem; }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,.65);
  margin-bottom: 0.75rem;
}
.footer-address {
  font-size: 0.8rem;
  color: rgba(255,255,255,.5) !important;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 1.25rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-nav ul a {
  color: rgba(255,255,255,.65);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-nav ul a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact p i { color: var(--green-400); width: 16px; }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: var(--white); }

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.875rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,.75);
}
.badge-pill i { color: var(--green-400); }

.footer-bottom {
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--white); }

/* ───────────────────────────────────────────────────────────────────────────
   BACK TO TOP
   ─────────────────────────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
}
.back-to-top:not([hidden]) { display: flex; }
.back-to-top:hover {
  background: var(--green-600);
  transform: translateY(-3px);
}

/* ───────────────────────────────────────────────────────────────────────────
   ANIMATIONS / SCROLL REVEAL
   ─────────────────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ───────────────────────────────────────────────────────────────────────────
   RESPONSIVE STYLES
   ─────────────────────────────────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .about-grid        { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-images      { order: -1; }
  .amenities-grid    { grid-template-columns: repeat(2, 1fr); }
  .sites-grid        { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .site-card-featured{ transform: scale(1); }
  .site-card-featured:hover { transform: translateY(-4px); }
  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .rates-grid        { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto 2.5rem; }
  .rate-card--featured{ transform: scale(1); }
  .local-grid        { grid-template-columns: repeat(2, 1fr); }
  .location-banner   { gap: 0.5rem; padding: 1.5rem; }
  .loc-badge         { padding: 0.5rem 1rem; min-width: 140px; }
  .loc-divider       { height: 44px; }
  .contact-grid      { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .footer-brand      { grid-column: 1 / -1; }
  .gallery-grid      { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --space-xl:  2.5rem;
    --space-2xl: 4rem;
  }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--green-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    box-shadow: -8px 0 32px rgba(0,0,0,.35);
    overflow-y: auto;
    z-index: 1050;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links li a {
    display: block;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
  }
  .nav-links li a.nav-cta { margin-top: 0.5rem; text-align: center; }

  /* Mobile nav overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1040;
    display: none;
  }
  .nav-overlay.active { display: block; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { gap: 1.25rem; }

  .about-highlights { grid-template-columns: 1fr; }
  .amenities-grid   { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr; }
  .local-grid       { grid-template-columns: 1fr; }
  .location-banner  { flex-direction: column; gap: 0.25rem; padding: 1.5rem 1rem; }
  .loc-badge        { justify-content: flex-start; width: 100%; padding: 0.5rem 0.75rem; }
  .loc-divider      { width: 100%; height: 1px; }
  .footer-grid      { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item--large { grid-column: span 2; }

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

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item--large { grid-column: span 1; }

  .hero-stats .stat-divider { display: none; }
  .hero-stats { gap: 1rem; flex-direction: column; align-items: flex-start; }
}
