/*
Theme Name: Covered Bridge Golf
Theme URI: https://coveredbridgegolf.nb.ca
Author: Covered Bridge Golf & Country Club
Author URI: https://coveredbridgegolf.nb.ca
Description: A premium golf course theme for Covered Bridge Golf & Country Club, Hartland, New Brunswick. Inspired by editorial golf club design with cinematic hero video, scroll animations, testimonial slider, and earth-tone palette.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: covered-bridge
Tags: one-column, custom-menu, featured-images, full-width-template
*/

/* ─── VARIABLES ─── */
:root {
  --color-cream: #F5F0E8;
  --color-dark: #1C1F1A;
  --color-olive: #4A5A3C;
  --color-olive-light: #6B7F58;
  --color-rust: #A0522D;
  --color-rust-light: #C0724D;
  --color-sand: #D4C9B0;
  --color-white: #FEFCF9;
  --color-charcoal: #2E322B;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --max-width: 1320px;
  --header-height: 80px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body); background: var(--color-cream);
  color: var(--color-dark); overflow-x: hidden; -webkit-font-smoothing: antialiased;
}

/* ─── HEADER ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-height); display: flex; align-items: center;
  justify-content: flex-end; padding: 0 clamp(1.5rem, 4vw, 3rem);
  transition: background 0.4s, box-shadow 0.4s;
  background: rgba(28, 31, 26, 0.95);
  backdrop-filter: blur(12px);
}
.home .site-header {
  background: transparent;
  backdrop-filter: none;
}
.home .site-header.scrolled {
  background: rgba(28,31,26,0.95);
  backdrop-filter: blur(12px);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 55px; width: auto; transition: opacity 0.3s; border-radius: 4px; }
.logo-img:hover { opacity: 0.85; }
.footer-logo-img { height: 80px; width: auto; margin-bottom: 1.5rem; }

.main-nav { display: flex; align-items: center; gap: 0; list-style: none; padding: 0; margin: 0; flex-wrap: nowrap; }
.main-nav > li { position: relative; list-style: none; padding: 0 0.65rem; }
.main-nav > li > a {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-white);
  text-decoration: none; position: relative; padding: 0.25rem 0; transition: color 0.3s;
  display: block; white-space: nowrap;
}
.main-nav > li > a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--color-rust-light); transition: width 0.3s;
}
.main-nav > li > a:hover { color: var(--color-sand); }
.main-nav > li > a:hover::after { width: 100%; }
.main-nav > li.menu-item-has-children > a::after {
  content: ''; position: static; display: inline-block;
  width: 0; height: 0; margin-left: 6px;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor; border-bottom: none;
  vertical-align: middle; background: none;
}
.nav-cta {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-white) !important; background: var(--color-rust);
  padding: 0.65rem 1.5rem; text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--color-rust-light); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--color-white); margin: 6px 0; transition: 0.3s; }

/* ─── DROPDOWN MENUS ─── */
/* Reset WordPress default submenu styles */
.main-nav ul,
.main-nav ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 0.75rem 0;
  list-style: none !important;
  background: rgba(28, 31, 26, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-top: 2px solid var(--color-rust);
  z-index: 9999;
  /* HIDDEN by default */
  display: none !important;
}
/* Show on hover */
.main-nav li:hover > ul {
  display: block !important;
}
/* Sub-submenu positioning (3rd level flies right) */
.main-nav ul ul {
  top: 0;
  left: 100%;
  border-top: none;
  border-left: 2px solid var(--color-rust);
}
/* Dropdown link styles */
.main-nav ul a,
.main-nav ul ul a {
  display: block !important;
  padding: 0.6rem 1.5rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.06em !important;
  text-transform: none !important;
  color: var(--color-sand) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  background: none !important;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.main-nav ul a::after,
.main-nav ul ul a::after {
  display: none !important;
}
.main-nav ul a:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--color-white) !important;
  padding-left: 1.75rem !important;
}
.main-nav ul li {
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
}

/* ─── MOBILE DROPDOWN ─── */
@media (max-width: 768px) {
  .main-nav.open ul {
    position: static !important;
    min-width: 100% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    box-shadow: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-left: none !important;
    padding: 0.5rem 0 !important;
    margin: 0.5rem 0 !important;
    display: none !important;
  }
  .main-nav.open li.dropdown-open > ul {
    display: block !important;
  }
  .main-nav.open ul a {
    font-size: 0.95rem !important;
    text-align: center !important;
    padding: 0.5rem 1rem !important;
  }
  .main-nav.open ul a:hover {
    padding-left: 1rem !important;
  }
}

/* ─── HERO ─── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(28,31,26,0.25) 0%, rgba(28,31,26,0.05) 40%, rgba(28,31,26,0.55) 75%, rgba(28,31,26,0.9) 100%);
}
.hero-video {
  position: absolute; top: 50%; left: 50%;
  min-width: 100%; min-height: 100%; width: auto; height: auto;
  transform: translate(-50%, -50%); object-fit: cover;
}
@keyframes heroZoom { from { transform: translate(-50%, -50%) scale(1.08); } to { transform: translate(-50%, -50%) scale(1); } }
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 2rem 3vh; max-width: 900px;
  opacity: 1;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-logo {
  display: block;
  height: 120px;
  width: auto;
  margin: 0 auto 1.5rem;
}
.hero-eyebrow {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--color-sand); margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400; color: var(--color-white); line-height: 1.15; margin-bottom: 1rem;
}
.hero h1 em { font-style: italic; color: var(--color-sand); }
.hero-sub {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,0.8); line-height: 1.6; max-width: 620px; margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-white);
  background: var(--color-rust); padding: 1rem 2.5rem; text-decoration: none;
  transition: all 0.3s; display: inline-block;
}
.btn-primary:hover { background: var(--color-rust-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(160,82,45,0.3); }
.btn-outline {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-white);
  background: transparent; border: 1.5px solid rgba(255,255,255,0.4);
  padding: 1rem 2.5rem; text-decoration: none; transition: all 0.3s; display: inline-block;
}
.btn-outline:hover { border-color: var(--color-white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2.5s infinite;
}
.hero-scroll svg { width: 28px; height: 28px; stroke: rgba(255,255,255,0.5); stroke-width: 2; fill: none; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* ─── QUOTE STRIP ─── */
.quote-strip { position: relative; padding: 4.5rem 2rem; text-align: center; overflow: hidden; }
.quote-strip-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(28,31,26,0.84), rgba(28,31,26,0.88)), var(--bg-quote);
  background-size: cover; background-position: center; background-attachment: fixed;
}
.quote-strip blockquote {
  position: relative; z-index: 2; font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 400; font-style: italic;
  color: var(--color-sand); max-width: 800px; margin: 0 auto; line-height: 1.6;
}
.quote-strip cite {
  position: relative; z-index: 2; display: block; margin-top: 1rem;
  font-family: var(--font-body); font-size: 0.78rem; font-style: normal; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-olive-light);
}

/* ─── SECTION ─── */
.section { padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 4vw, 3rem); }

/* ─── INTRO ─── */
.intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem);
  max-width: var(--max-width); margin: 0 auto; align-items: center;
}
.intro-image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.intro-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.intro-image:hover img { transform: scale(1.03); }
.intro-image::after {
  content: ''; position: absolute; top: 1rem; left: 1rem; right: -1rem; bottom: -1rem;
  border: 1.5px solid var(--color-olive); opacity: 0.3; z-index: -1;
}
.section-eyebrow {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-rust); margin-bottom: 1rem;
}
.intro-text h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400; color: var(--color-dark); line-height: 1.15; margin-bottom: 1.5rem;
}
.intro-text h2 em { font-style: italic; color: var(--color-olive); }
.intro-text p { font-size: 1.02rem; font-weight: 300; line-height: 1.8; color: var(--color-charcoal); margin-bottom: 1rem; }
.text-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-rust); text-decoration: none; margin-top: 1rem; transition: gap 0.3s;
}
.text-link:hover { gap: 0.85rem; }
.text-link svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

/* ─── PHOTO BANNER ─── */
.photo-banner { position: relative; height: 350px; min-height: 280px; overflow: hidden; }
.photo-banner img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 60%;
}
.photo-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(28,31,26,0.25), transparent 40%, transparent 60%, rgba(28,31,26,0.15));
}

/* ─── STATS BAR ─── */
.stats-bar { position: relative; padding: 0.75rem 2rem; overflow: hidden; }
.stats-bar-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(74,90,60,0.65), rgba(74,90,60,0.6)), var(--bg-stats);
  background-size: cover; background-position: center;
}
.stats-inner {
  position: relative; z-index: 2; max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center;
}
.stat-item h3 {
  font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400; color: var(--color-cream); line-height: 1; margin-bottom: 0.15rem;
}
.stat-item p {
  font-family: var(--font-body); font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.7);
}

/* ─── EXPERIENCES ─── */
.experiences { max-width: var(--max-width); margin: 0 auto; }
.experiences-header { text-align: center; margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.experiences-header h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400; color: var(--color-dark); line-height: 1.15;
}
.experiences-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.exp-card { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; }
.exp-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.7s ease;
}
.exp-card:hover img { transform: scale(1.06); }
.exp-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(28,31,26,0.8) 0%, rgba(28,31,26,0.1) 50%);
  transition: opacity 0.4s;
}
.exp-card:hover::after { opacity: 0.9; }
.exp-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; z-index: 2; }
.exp-card-content h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--color-white); margin-bottom: 0.5rem;
}
.exp-card-content p {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 300;
  color: rgba(255,255,255,0.75); line-height: 1.6;
  max-height: 0; overflow: hidden; transition: max-height 0.5s ease, margin 0.5s ease;
}
.exp-card:hover .exp-card-content p { max-height: 120px; margin-top: 0.5rem; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--color-charcoal); padding: clamp(4rem, 8vw, 7rem) 2rem; overflow: hidden; }
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-header .section-eyebrow { color: var(--color-rust-light); }
.testimonials-header h2 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400; color: var(--color-cream);
}
.testimonial-slider { max-width: 750px; margin: 0 auto; position: relative; min-height: 200px; }
.testimonial-slide {
  text-align: center; opacity: 0; position: absolute; top: 0; left: 0; right: 0;
  transition: opacity 0.8s ease, transform 0.8s ease; transform: translateY(15px);
}
.testimonial-slide.active { opacity: 1; position: relative; transform: translateY(0); }
.testimonial-slide blockquote {
  font-family: var(--font-display); font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 400; font-style: italic; color: var(--color-sand); line-height: 1.7; margin-bottom: 1.5rem;
}
.testimonial-slide cite {
  font-family: var(--font-body); font-size: 0.78rem; font-style: normal; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-olive-light);
}
.testimonial-dots { display: flex; justify-content: center; gap: 0.75rem; margin-top: 2.5rem; }
.testimonial-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid var(--color-olive-light);
  background: transparent; cursor: pointer; padding: 0; transition: all 0.3s;
}
.testimonial-dots button.active { background: var(--color-rust-light); border-color: var(--color-rust-light); transform: scale(1.2); }

/* ─── STAY & PLAY ─── */
.stay-play { max-width: var(--max-width); margin: 0 auto; }
.stay-play-layout {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.stay-play-text h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400; color: var(--color-dark); line-height: 1.15; margin-bottom: 1.5rem;
}
.stay-play-text h2 em { font-style: italic; color: var(--color-olive); }
.stay-play-text p { font-size: 1.02rem; font-weight: 300; line-height: 1.8; color: var(--color-charcoal); margin-bottom: 1rem; }
.stay-play-features { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0 2rem; }
.feature-tag {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-olive); background: rgba(74,90,60,0.08); border: 1px solid rgba(74,90,60,0.2);
  padding: 0.5rem 1rem;
}
.stay-play-image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.stay-play-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.stay-play-image:hover img { transform: scale(1.03); }
.stay-play-image::before {
  content: 'STAY & PLAY'; position: absolute; top: 1.5rem; left: 1.5rem;
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--color-white); background: var(--color-rust);
  padding: 0.5rem 1rem; z-index: 2;
}

/* ─── GALLERY STRIP ─── */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.gallery-strip-item { position: relative; aspect-ratio: 1; overflow: hidden; }
.gallery-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-strip-item:hover img { transform: scale(1.08); }

/* ─── CTA BANNER ─── */
.cta-banner { position: relative; padding: clamp(5rem, 10vw, 9rem) 2rem; text-align: center; overflow: hidden; }
.cta-banner-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(28,31,26,0.65), rgba(28,31,26,0.82)), var(--bg-cta);
  background-size: cover; background-position: center; background-attachment: fixed;
}
.cta-banner-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-banner h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; color: var(--color-cream); line-height: 1.15; margin-bottom: 1rem;
}
.cta-banner h2 em { font-style: italic; color: var(--color-sand); }
.cta-banner p {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 300;
  color: rgba(245,240,232,0.75); margin-bottom: 2.5rem; line-height: 1.7;
}

/* ─── FOOTER ─── */
.site-footer { background: var(--color-dark); padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem) 2rem; }
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
}
.footer-brand p { font-size: 0.9rem; font-weight: 300; color: rgba(212,201,176,0.7); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212,201,176,0.25); color: var(--color-sand);
  text-decoration: none; font-size: 0.85rem; transition: all 0.3s;
}
.footer-social a:hover { background: var(--color-rust); border-color: var(--color-rust); color: var(--color-white); }
.footer-col h4 {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-cream); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.9rem; font-weight: 300; color: rgba(212,201,176,0.65); text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--color-cream); }
.footer-bottom {
  max-width: var(--max-width); margin: 3rem auto 0; padding-top: 2rem;
  border-top: 1px solid rgba(212,201,176,0.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(212,201,176,0.4); }
.footer-bottom a { color: rgba(212,201,176,0.4); text-decoration: none; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--color-sand); }

/* ─── INNER PAGES ─── */
.page-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--header-height);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(28,31,26,0.4), rgba(28,31,26,0.8)),
    var(--bg-cta);
  background-size: cover;
  background-position: center;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem 2.5rem;
  width: 100%;
  max-width: var(--max-width);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.01em;
}
.page-content {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.page-inner {
  max-width: 860px;
  margin: 0 auto;
}
.page-featured-image {
  margin-bottom: 2rem;
  overflow: hidden;
}
.page-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}
.page-body {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-charcoal);
}
.page-body h1, .page-body h2, .page-body h3, .page-body h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-dark);
  margin: 2rem 0 1rem;
  line-height: 1.2;
}
.page-body h2 { font-size: 1.8rem; }
.page-body h3 { font-size: 1.4rem; }
.page-body h4 { font-size: 1.15rem; }
.page-body p { margin-bottom: 1.2rem; }
.page-body a { color: var(--color-rust); text-decoration: underline; transition: color 0.3s; }
.page-body a:hover { color: var(--color-rust-light); }
.page-body img { max-width: 100%; height: auto; margin: 1.5rem 0; }
.page-body ul, .page-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.page-body li { margin-bottom: 0.5rem; }
.page-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.page-body th, .page-body td {
  padding: 0.75rem 1rem; text-align: left;
  border-bottom: 1px solid rgba(74,90,60,0.15);
}
.page-body th {
  font-family: var(--font-body); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-olive);
}
.page-body blockquote {
  border-left: 3px solid var(--color-rust);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--color-olive);
  background: rgba(74,90,60,0.04);
}

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── WP ADMIN BAR FIX ─── */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .intro { grid-template-columns: 1fr; }
  .intro-image { order: -1; }
  .stay-play-layout { grid-template-columns: 1fr; }
  .stay-play-image { order: -1; }
  .experiences-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .main-nav.open {
    display: flex; flex-direction: column; position: fixed;
    top: var(--header-height); left: 0; right: 0; bottom: 0;
    background: rgba(28,31,26,0.97); backdrop-filter: blur(16px);
    padding: 2rem; gap: 1.5rem; align-items: center; justify-content: center; z-index: 999;
  }
  .main-nav.open a { font-size: 1.1rem; }
  .experiences-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}
