/* ============================================================
   VINTAGE VALLEY WEDDINGS — style.css
   Designed & Developed by Novelio Technologies — 2026
   ============================================================ */

/* ── 1. GOOGLE FONTS ──────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Lato:wght@300;400;700&family=Great+Vibes&display=swap');

/* ── 2. CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  --cream:        #F7F1E8;
  --ivory:        #FDF8F0;
  --gold:         #C9A96E;
  --gold-light:   #E8D5A3;
  --gold-dark:    #A8884A;
  --charcoal:     #1C1C1C;
  --dark-green:   #2B3D2F;
  --dark-green2:  #223227;
  --sage:         #6B7F62;
  --blush:        #F0E4DA;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 12px rgba(28,28,28,0.08);
  --shadow-md:    0 8px 32px rgba(28,28,28,0.12);
  --shadow-lg:    0 20px 60px rgba(28,28,28,0.18);
  --shadow-gold:  0 8px 32px rgba(201,169,110,0.35);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-full:  999px;
  --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-sub:     'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', -apple-system, sans-serif;
  --font-script:  'Great Vibes', cursive;
  --nav-height:   80px;
}

/* ── 3. CSS RESET ─────────────────────────────────────────── */
*, *::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(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  opacity: 0;
  animation: pageLoad 0.5s ease 0.1s forwards;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}
::selection { background: var(--gold-light); color: var(--charcoal); }

/* ── 4. PAGE LOAD ANIMATION ───────────────────────────────── */
@keyframes pageLoad {
  to { opacity: 1; }
}
body.fade-out { opacity: 0; transition: opacity 0.2s ease; }

/* ── 5. TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 500; }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500; }
p  { font-size: 1.05rem; line-height: 1.85; color: #444; }

.script-label {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
  line-height: 1.4;
}

/* ── 6. LAYOUT UTILITIES ──────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-cream { color: var(--cream) !important; }
.text-gold { color: var(--gold) !important; }
.bg-cream { background: var(--cream); }
.bg-ivory { background: var(--ivory); }
.bg-dark { background: var(--dark-green); }
.bg-blush { background: var(--blush); }
.bg-white { background: var(--white); }

.gold-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem auto;
  border-radius: 2px;
}
.gold-divider-left { margin: 1.2rem 0; }

.section-header { margin-bottom: 3.5rem; }
.section-header h2 { margin-top: 0.5rem; }
.section-header p  { max-width: 680px; margin: 1rem auto 0; }

/* ── 7. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(201,169,110,0.3);
}
.btn-primary:hover { background: var(--gold-dark); box-shadow: var(--shadow-gold); }

.btn-secondary {
  background: var(--dark-green);
  color: var(--white);
}
.btn-secondary:hover { background: var(--dark-green2); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark-green); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--charcoal); }

.btn-outline-dark {
  background: transparent;
  color: var(--dark-green);
  border: 2px solid var(--dark-green);
}
.btn-outline-dark:hover { background: var(--dark-green); color: var(--white); }

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

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── 8. KEYFRAMES ─────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-14px) rotate(5deg); }
  66%       { transform: translateY(-7px) rotate(-3deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(201,169,110,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(201,169,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,169,110,0); }
}
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50%       { transform: translateY(10px) translateX(-50%); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── 9. SCROLL ANIMATIONS ─────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate="fade-up"]     { transform: translateY(50px); }
[data-animate="fade-in"]     { transform: translateY(0); }
[data-animate="slide-left"]  { transform: translateX(-60px); }
[data-animate="slide-right"] { transform: translateX(60px); }
[data-animate="scale-in"]    { transform: scale(0.88); }
[data-animate].animated {
  opacity: 1;
  transform: none;
}
/* Stagger children */
[data-animate="stagger"] > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate="stagger"].animated > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
[data-animate="stagger"].animated > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: none; }
[data-animate="stagger"].animated > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: none; }
[data-animate="stagger"].animated > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: none; }
[data-animate="stagger"].animated > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: none; }
[data-animate="stagger"].animated > *:nth-child(6) { transition-delay: 0.55s; opacity: 1; transform: none; }

/* ── 10. NAVBAR ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 5%;
  transition: var(--transition);
  animation: fadeInDown 0.6s ease 0.3s both;
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: rgba(43, 61, 47, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 6px 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  transition: var(--transition);
}
.nav-logo:hover {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px rgba(201,169,110,0.3);
  transform: scale(1.03);
}
.nav-logo img {
  height: 54px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  padding: 6px 14px;
  border-radius: 4px;
  position: relative;
  transition: var(--transition-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-light); }

.nav-cta { margin-left: 16px; }
.nav-cta .btn { padding: 10px 26px; font-size: 0.85rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--dark-green2);
  padding: 24px 5% 40px;
  z-index: 999;
  transform: translateY(-20px);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,169,110,0.2);
  transition: var(--transition-fast);
}
.mobile-menu a:hover { color: var(--gold); padding-left: 10px; }
.mobile-menu .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* ── 11. HERO SECTIONS ────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-short {
  height: 60vh;
  min-height: 480px;
}
.hero-medium {
  height: 70vh;
  min-height: 500px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,20,20,0.50) 0%,
    rgba(20,20,20,0.25) 50%,
    rgba(20,20,20,0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5%;
  max-width: 900px;
  animation: fadeInDown 0.9s ease 0.5s both;
}
.hero-content h1 {
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  margin: 0.5rem 0 1.2rem;
  line-height: 1.1;
}
.hero-content p {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto 2.4rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hero-content .btn-group { justify-content: center; }

/* Floating decorative sparkles */
.hero-sparkles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.sparkle {
  position: absolute;
  color: var(--gold-light);
  font-size: 1.4rem;
  opacity: 0.7;
  animation: float 4s ease-in-out infinite;
}
.sparkle:nth-child(1) { top: 15%; left: 8%;  animation-delay: 0s;   animation-duration: 4s; }
.sparkle:nth-child(2) { top: 20%; right: 10%; animation-delay: 1s;   animation-duration: 5s; }
.sparkle:nth-child(3) { bottom: 25%; left: 12%; animation-delay: 2s; animation-duration: 3.5s; }
.sparkle:nth-child(4) { bottom: 20%; right: 8%; animation-delay: 0.5s; animation-duration: 4.5s; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce-arrow 2s ease-in-out infinite;
  transition: opacity 0.4s ease;
}
.scroll-indicator svg { width: 20px; height: 20px; stroke: currentColor; }
.scroll-indicator.hidden { opacity: 0; pointer-events: none; }

/* ── 12. FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--dark-green2);
  color: var(--cream);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding: 0 5% 60px;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-brand img {
  height: 70px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(1.1);
}
.footer-brand p {
  color: rgba(247,241,232,0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,169,110,0.4);
  color: var(--gold-light);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(247,241,232,0.7);
  font-size: 0.93rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(247,241,232,0.75);
  font-size: 0.92rem;
}
.footer-contact-item svg {
  width: 18px; height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a { color: inherit; transition: var(--transition-fast); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(201,169,110,0.2);
  padding: 22px 5%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(247,241,232,0.5);
}
.footer-bottom .credit {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.82rem;
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ── 13. MOBILE STICKY BUTTONS ────────────────────────────── */
.sticky-mobile-btns {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9000;
  flex-direction: column;
  gap: 12px;
}
.sticky-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.sticky-btn svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.sticky-btn-call  { background: var(--dark-green); animation: pulse-ring 3s ease infinite; }
.sticky-btn-wa    { background: #25D366; animation: pulse-green 3s ease 1.5s infinite; }
.sticky-btn:hover { transform: translateY(-3px) scale(1.04); }

/* ── 14. HOME PAGE ────────────────────────────────────────── */

/* Trust Bar */
.trust-bar {
  background: var(--dark-green);
  padding: 28px 5%;
}
.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 60px;
  position: relative;
}
.trust-stat + .trust-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(201,169,110,0.4);
}
.trust-stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-stat-label {
  font-size: 0.82rem;
  color: rgba(247,241,232,0.75);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* About Snapshot */
.about-snapshot { background: var(--ivory); }
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.about-image-wrap:hover img { transform: scale(1.02); }
.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 110px;
  height: 110px;
  background: var(--ivory);
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-6deg);
  box-shadow: var(--shadow-md);
}
.about-badge span:first-child {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1.2;
}
.about-badge span:last-child {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--charcoal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-text h2 { margin: 0.5rem 0 1.4rem; }
.about-text p { margin-bottom: 1.6rem; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition-fast);
}
.text-link:hover { gap: 14px; color: var(--gold); }

/* Feature Cards */
.features-section { background: var(--cream); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  animation-play-state: paused;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { animation-play-state: running; }
.feature-icon {
  font-size: 2.6rem;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}
.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--dark-green);
}
.feature-card p { font-size: 0.95rem; color: #666; }

/* Venue Preview */
.venue-preview { background: var(--dark-green); overflow: hidden; }
.venue-preview-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.venue-preview-image {
  position: relative;
  overflow: hidden;
}
.venue-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.venue-preview-image:hover img { transform: scale(1.06); }
.venue-preview-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.venue-preview-content h2 { color: var(--white); margin: 0.5rem 0 1.6rem; }
.venue-preview-content p { color: rgba(247,241,232,0.85); margin-bottom: 2rem; }
.venue-bullets { list-style: none; margin-bottom: 2.5rem; }
.venue-bullets li {
  color: rgba(247,241,232,0.85);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.venue-bullets li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Reviews Carousel */
.reviews-section { background: var(--ivory); }
.reviews-carousel-wrap { position: relative; }
.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transition: var(--transition);
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-stars { color: #F5A623; font-size: 1rem; letter-spacing: 2px; }
.google-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #999;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.google-g {
  width: 18px; height: 18px;
  background: linear-gradient(135deg, #4285F4 25%, #EA4335 25% 50%, #FBBC05 50% 75%, #34A853 75%);
  border-radius: 50%;
  display: inline-block;
}
.review-text {
  font-family: var(--font-sub);
  font-size: 1.02rem;
  font-style: italic;
  color: #444;
  line-height: 1.75;
  flex-grow: 1;
}
.review-text::before { content: '"'; color: var(--gold); font-size: 1.8rem; line-height: 0.5; vertical-align: -0.5rem; margin-right: 4px; }
.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.review-category {
  background: var(--blush);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,169,110,0.3);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  padding: 0;
}
.carousel-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.carousel-arrows {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.carousel-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  font-size: 1.1rem;
}
.carousel-arrow:hover { background: var(--gold); color: var(--charcoal); }

/* Package CTA */
.package-cta {
  background: var(--dark-green);
  position: relative;
  overflow: hidden;
}
.package-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.015) 0,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 14px
  );
}
.package-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.package-cta h2 { color: var(--white); }
.package-cta > .container > p { color: rgba(247,241,232,0.85); max-width: 700px; margin: 1rem auto 2.4rem; }
.package-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 40px;
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: left;
}
.package-highlights li {
  color: rgba(247,241,232,0.8);
  font-size: 0.92rem;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.package-highlights li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* Instagram Strip */
.instagram-strip { background: var(--cream); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-top: 2.5rem;
}
.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insta-item:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43,61,47,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay svg { width: 32px; height: 32px; fill: var(--white); }

/* Inquiry CTA Banner */
.inquiry-banner { background: var(--blush); }
.inquiry-banner h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.inquiry-banner p { color: #666; max-width: 580px; margin: 1rem auto 2rem; }

/* ── 15. WV WEDDINGS PAGE ─────────────────────────────────── */
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.space-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: var(--white);
}
.space-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.space-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.space-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.space-card:hover .space-card-image img { transform: scale(1.06); }
.space-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
}
.space-card-body { padding: 28px; }
.space-card-body h3 { color: var(--dark-green); margin-bottom: 12px; }
.space-card-body p { font-size: 0.93rem; color: #555; margin-bottom: 18px; }
.space-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.space-highlight-tag {
  background: var(--blush);
  color: var(--dark-green);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}

/* Package inclusions */
.inclusions-section { background: var(--dark-green); }
.inclusions-section h2 { color: var(--white); }
.inclusions-section > .container > p { color: rgba(247,241,232,0.8); max-width: 680px; }
.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 3rem 0;
}
.inclusion-col {
  padding: 36px 40px;
}
.inclusion-col:first-child {
  border-right: 1px solid rgba(201,169,110,0.2);
}
.inclusion-col-title {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 18px;
  display: block;
}
.inclusion-list { display: flex; flex-direction: column; gap: 0; }
.inclusion-list li {
  color: rgba(247,241,232,0.85);
  font-size: 0.92rem;
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.inclusion-list li:last-child { border-bottom: none; }
.inclusion-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  width: 16px;
}

/* Location section */
.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.location-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.location-info h3 { margin-bottom: 1.8rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-info-item svg {
  width: 22px; height: 22px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item .info-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
.contact-info-item .info-text a { color: var(--gold-dark); transition: color 0.2s; }
.contact-info-item .info-text a:hover { color: var(--gold); }

/* ── 16. GALLERY PAGE ─────────────────────────────────────── */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 24px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--charcoal);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
}
.masonry-grid {
  columns: 3;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43,61,47,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay svg { width: 40px; height: 40px; stroke: var(--white); fill: none; stroke-width: 2; }
.masonry-item.hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; animation: pageLoad 0.3s ease; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: var(--transition-fast);
  border: none;
}
.lightbox-close:hover { background: var(--gold); color: var(--charcoal); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  transition: var(--transition-fast);
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--charcoal); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* ── 17. TESTIMONIALS PAGE ────────────────────────────────── */
.featured-quote {
  background: var(--dark-green);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.featured-quote::before {
  content: '"';
  position: absolute;
  top: -40px; left: 5%;
  font-family: var(--font-heading);
  font-size: 20rem;
  color: rgba(201,169,110,0.07);
  line-height: 1;
  pointer-events: none;
}
.featured-quote blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 1.6rem;
  line-height: 1.7;
}
.featured-quote cite {
  font-style: normal;
  color: rgba(247,241,232,0.7);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}
.featured-quote .stars-large {
  font-size: 1.4rem;
  color: #F5A623;
  margin: 1rem 0;
  letter-spacing: 4px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--blush);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.t-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--charcoal);
  font-weight: 700;
  flex-shrink: 0;
}
.t-info { flex-grow: 1; }
.t-name {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  color: var(--charcoal);
  font-weight: 600;
}
.t-date { font-size: 0.78rem; color: #999; }
.t-stars { color: #F5A623; font-size: 0.85rem; letter-spacing: 2px; }
.t-text {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  flex-grow: 1;
}
.t-category {
  background: var(--white);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

/* Aggregate Rating */
.aggregate-rating {
  background: var(--ivory);
  padding: 80px 5%;
  text-align: center;
}
.big-rating {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.big-stars { font-size: 2rem; color: #F5A623; letter-spacing: 6px; margin: 1rem 0; }

/* ── 18. CONTACT PAGE ─────────────────────────────────────── */
.contact-section { background: var(--ivory); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 2rem; }

/* Form styles */
.inquiry-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
}
.inquiry-form h3 { margin-bottom: 8px; }
.inquiry-form > p { color: #888; font-size: 0.9rem; margin-bottom: 2rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid #E8E0D6;
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: var(--transition-fast);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e55;
}
.form-error-msg {
  font-size: 0.78rem;
  color: #e55;
  display: none;
}
.form-error-msg.visible { display: block; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note {
  font-size: 0.78rem;
  color: #aaa;
  margin-top: 12px;
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.form-success.visible { display: block; }
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--dark-green);
  color: var(--white);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success h3 { color: var(--dark-green); margin-bottom: 12px; }
.form-success p { color: #666; margin-bottom: 24px; }

.btn-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--charcoal);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn.loading .btn-spinner { display: block; }
.btn.loading .btn-text { opacity: 0.7; }

/* FAQ */
.faq-section { background: var(--dark-green); }
.faq-section h2 { color: var(--white); }
.faq-list { max-width: 820px; margin: 3rem auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(201,169,110,0.25);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  color: var(--white);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-light); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 22px;
  color: rgba(247,241,232,0.75);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── 19. ABOUT PAGE ───────────────────────────────────────── */
.mission-section { background: var(--ivory); text-align: center; }
.mission-section h2 { max-width: 760px; margin: 0.5rem auto 1.6rem; }
.mission-section p { max-width: 780px; margin: 0 auto; }

.team-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.team-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.team-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-image:hover img { transform: scale(1.04); }
.team-info .role-tag {
  display: inline-block;
  background: var(--blush);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.team-info h2 { margin-bottom: 1.4rem; }
.team-contact {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  font-size: 0.95rem;
}
.team-contact-item svg { width: 18px; height: 18px; fill: var(--gold); }
.team-contact-item a { color: var(--gold-dark); }
.team-contact-item a:hover { color: var(--gold); }

/* Values */
.values-section { background: var(--dark-green); }
.values-section h2 { color: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.value-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: var(--gold);
}
.value-icon { font-size: 2.4rem; margin-bottom: 16px; }
.value-card h4 { color: var(--gold-light); margin-bottom: 12px; font-size: 1.1rem; }
.value-card p { color: rgba(247,241,232,0.7); font-size: 0.92rem; }

/* Timeline */
.timeline-section { background: var(--ivory); }
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light), var(--gold));
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 48px;
}
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-spacer { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; text-align: left; }
.timeline-item:nth-child(even) .timeline-spacer { grid-column: 1; }
.timeline-node {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.timeline-dot {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--dark-green);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
}
.timeline-content {
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.timeline-item:hover .timeline-content { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.timeline-year {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.timeline-content p { font-size: 0.92rem; color: #555; margin: 0; }

/* ── 20. SHARED SECTION EXTRAS ────────────────────────────── */
.gallery-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2.5rem;
}
.gallery-teaser-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 240px;
  transition: var(--transition);
}
.gallery-teaser-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-teaser-item:hover img { transform: scale(1.06); }

/* ── 21. MEDIA QUERIES ─────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  :root { --nav-height: 70px; }
  h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
  h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid   { grid-template-columns: repeat(2, 1fr); }
  .package-highlights { grid-template-columns: repeat(2, 1fr); }
  .reviews-carousel { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .masonry-grid { columns: 2; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .venue-preview-content { padding: 60px 40px; }
  .spaces-grid { grid-template-columns: repeat(2, 1fr); }
  .inclusions-grid { grid-template-columns: 1fr; }
  .inclusion-col:first-child { border-right: none; border-bottom: 1px solid rgba(201,169,110,0.2); }
  .location-split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-split { grid-template-columns: 1fr; gap: 40px; }
  .timeline::before { left: 24px; }
  .timeline-item {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
    text-align: left;
  }
  .timeline-node { grid-column: 1; grid-row: 1; }
  .timeline-spacer { display: none; }
  .timeline-dot { width: 44px; height: 44px; }
}

/* Mobile */
@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .sticky-mobile-btns { display: flex; }

  .hero-bg { background-attachment: scroll; }
  .about-split, .venue-preview-split, .about-snapshot .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { bottom: -12px; left: -8px; width: 88px; height: 88px; }
  .about-image-wrap img { height: 400px; }
  .venue-preview-split { grid-template-columns: 1fr; }
  .venue-preview-image { height: 300px; }
  .venue-preview-content { padding: 44px 28px; }
  .trust-bar-inner { flex-direction: column; gap: 28px; }
  .trust-stat + .trust-stat::before { display: none; }
  .trust-stat { padding: 0; }
  .features-grid, .spaces-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .reviews-carousel { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .package-highlights { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-teaser-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .inquiry-form { padding: 32px 24px; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; justify-content: center; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .team-image img { height: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .timeline-item {
    grid-template-columns: 44px 1fr;
  }
}

/* Small */
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .hero { min-height: 500px; }
  .values-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-teaser-grid { grid-template-columns: 1fr; }
  .reviews-carousel { display: flex; flex-direction: column; }
  .big-rating { font-size: 4rem; }
}
