/* ============================================================
   Walter's Vineyard — Main Stylesheet
   ✏️  TO CHANGE COLOURS: edit the CSS variables in :root below
   ============================================================ */

@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=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --green:        #2C4A35;
  --green-dark:   #1E3326;
  --green-light:  #3D6348;
  --cream:        #F5EFE0;
  --cream-dark:   #EDE4CC;
  --gold:         #C4963A;
  --gold-light:   #D4A84A;
  --charcoal:     #1F1F1F;
  --gray:         #6B6B6B;
  --gray-light:   #E8E2D6;
  --white:        #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-height:   90px;
  --max-width:    1200px;
  --section-pad:  100px;
  --radius:       4px;
  --transition:   all 0.3s ease;
  --shadow:       0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.16);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { line-height: 1.75; color: var(--gray); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.75;
}

/* ── Layout helpers ─────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: var(--section-pad) 0; }
.section-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-green  { color: var(--green); }
.bg-cream    { background: var(--cream); }
.bg-green    { background: var(--green); }
.bg-green-dark { background: var(--green-dark); }
.divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
}
.divider-left { margin-left: 0; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

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

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding-left: 0;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.btn-ghost::after { content: ' →'; transition: var(--transition); }
.btn-ghost:hover::after { margin-left: 4px; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.transparent { background: transparent; }
.nav.solid {
  background: var(--green-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
/* On non-hero pages nav is always solid */
.nav.always-solid {
  background: var(--green-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 2.5rem;
}
.nav-logo img { width: 150px; height: auto !important; filter: brightness(0) invert(1); max-width: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--white) !important; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--green-dark);
  padding: 1.5rem 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-lg);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a:hover { color: var(--gold); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,35,25,0.35) 0%,
    rgba(20,35,25,0.52) 60%,
    rgba(20,35,25,0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 800px;
}
.hero-content .section-label { color: rgba(255,255,255,0.75); }
.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content h1 em { font-style: italic; color: var(--gold-light); }
.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: bounce 2.5s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.4);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Stats bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--green-dark);
  padding: 1.5rem 0;
}
.stats-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  color: var(--white);
}
.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ── Feature grid (3-up) ────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature-card img {
  width: 100%; height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feature-card:hover img { transform: scale(1.04); }
.feature-card-body { padding: 1.75rem; }
.feature-card-body h3 { color: var(--green); margin-bottom: 0.6rem; }
.feature-card-body p { font-size: 0.95rem; }

/* ── Event types ────────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.event-type-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.event-type-card:hover {
  background: var(--white);
  border-top-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.event-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.event-type-card h3 {
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.event-type-card p { font-size: 0.9rem; }

/* ── Gallery grid ───────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(20,35,25,0);
  transition: background 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(20,35,25,0.25); }
.gallery-item-overlay svg {
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; transform: scale(1); }

/* Gallery teaser (6 on home) */
.gallery-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 8px;
  margin-top: 3rem;
}
.gallery-teaser .gallery-item { aspect-ratio: unset; height: 100%; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,15,10,0.95);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  color: var(--white); font-size: 2rem; background: none;
  opacity: 0.7; transition: opacity 0.2s;
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: none;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.24); }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
}


/* ── Split section ──────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}
.split-img { position: relative; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
}
.split-content p { margin: 1rem 0 2rem; }

/* ── CTA section ────────────────────────────────────────────── */
.cta-section {
  background: var(--green);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/photo-45.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Page hero (sub-pages) ──────────────────────────────────── */
.page-hero {
  padding-top: var(--nav-height);
  background: var(--green-dark);
  padding-bottom: 4rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.2;
}
.page-hero .container { position: relative; z-index: 1; padding-top: 4rem; }
.page-hero h1 { color: var(--white); margin: 1rem 0 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 540px; margin: 0 auto; }

/* ── Pricing cards ──────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.pricing-card {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 2.5rem;
  background: var(--white);
}
.pricing-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -1px; right: 2rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 0 0 var(--radius) var(--radius);
}
.pricing-card h3 { color: var(--green); margin-bottom: 0.4rem; }
.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 1rem 0 0.25rem;
  line-height: 1;
}
.pricing-card .price-note { font-size: 0.85rem; color: var(--gray); margin-bottom: 1.5rem; }
.pricing-card ul { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-card ul li {
  font-size: 0.9rem; color: var(--gray);
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.pricing-card ul li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── Amenities grid ─────────────────────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.amenity-item {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  transition: var(--transition);
}
.amenity-item:hover { box-shadow: var(--shadow); border-color: var(--cream-dark); }
.amenity-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.amenity-item p { font-size: 0.85rem; font-weight: 500; color: var(--charcoal); }

/* ── Inquiry form ───────────────────────────────────────────── */
.book-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(44,74,53,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.form-note { font-size: 0.82rem; color: var(--gray); }

.form-success {
  display: none;
  background: #e8f5ec;
  border: 1px solid #b8dfc0;
  border-radius: var(--radius);
  padding: 1.5rem;
  color: #2C4A35;
  font-size: 0.95rem;
  margin-top: 1rem;
}
.form-error {
  display: none;
  background: #fdf0f0;
  border: 1px solid #f5c0c0;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  color: #8B2020;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Sidebar contact card */
.contact-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.contact-card h3 { color: var(--green); margin-bottom: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-item-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.contact-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.15rem;
}
.contact-item-value { font-size: 0.95rem; color: var(--charcoal); }
.contact-item-value a:hover { color: var(--green); }
.contact-divider { border: none; border-top: 1px solid var(--cream-dark); margin: 1.5rem 0; }

/* ── About page ─────────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-stack {
  position: relative;
  height: 480px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 90%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-text h2 { color: var(--green); margin: 0.5rem 0 1rem; }
.about-text p { margin-bottom: 1rem; }
.about-highlights {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-top: 1.5rem;
}
.about-highlight-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
}
.about-highlight-item::before {
  content: '✦';
  color: var(--gold); flex-shrink: 0; margin-top: 2px;
}
.about-highlight-item span { font-size: 0.95rem; color: var(--gray); }

/* ── Full gallery page ──────────────────────────────────────── */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 2rem;
}
.gallery-full-grid .gallery-item { aspect-ratio: 4/3; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo img { width: 135px; height: auto !important; margin-bottom: 1rem; filter: brightness(0) invert(1); max-width: none; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 240px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 0.65rem; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

/* ── Virtual tour banner ────────────────────────────────────── */
.tour-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  padding: 3rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 4rem;
  color: var(--white);
}
.tour-banner h3 { color: var(--white); margin-bottom: 0.5rem; }
.tour-banner p { color: rgba(255,255,255,0.75); max-width: 400px; margin: 0 auto 1.5rem; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid  { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-full-grid { grid-template-columns: repeat(3, 1fr); }
  .about-story { gap: 3rem; }
  .split-content { padding: 3.5rem 2.5rem; }
  /* 3-tier pricing grid → 1 column on tablet */
  .pricing-three { grid-template-columns: 1fr !important; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo img { width: 112px; }
  .feature-grid { grid-template-columns: 1fr; }
  .events-grid  { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-teaser { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-teaser .gallery-item { height: 180px; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split-img { height: 320px; }
  .split-content { padding: 2.5rem 1.5rem; }
  .book-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-bar-inner { gap: 1.5rem; }
  .stat-divider { display: none; }
  .about-story { grid-template-columns: 1fr; }
  .about-img-stack { height: 300px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
}
