/* ==========================================================================
   Looks By SNP — Main Stylesheet
   Built by AAU Studios | aaustudios.com
   ========================================================================== */

/* CSS Variables */
:root {
  --plum: #2D1B2E;
  --plum-dark: #1A0F1A;
  --plum-mid: #3D2540;
  --mauve: #9E6B7A;
  --gold: #D4AF7A;
  --gold-light: #F5ECD9;
  --gold-dark: #c49a5a;
  --blush: #FDF8F8;
  --text: #1A0F1A;
  --muted: #7A6470;
  --border: rgba(158, 107, 122, 0.2);
  --border-focus: #D4AF7A;
  --white: #FFFFFF;
  --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--blush);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  font-weight: 400;
}

/* Utility Classes */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-plum { color: var(--plum); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }

/* Section Layout */
.snp-section { padding: 100px 80px; }
.snp-section-dark { background: var(--plum); }
.snp-section-light { background: var(--blush); }
.snp-section-white { background: var(--white); }

.section-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-eyebrow.centered { justify-content: center; }
.section-eyebrow.centered::before { display: none; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  color: var(--plum);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--mauve); }
.section-title.on-dark { color: var(--white); }
.section-title.on-dark em { color: var(--gold); }

.section-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 580px;
  font-weight: 300;
}
.section-sub.on-dark { color: rgba(255,255,255,0.6); }

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--plum);
  padding: 16px 36px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); color: var(--plum); }

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 16px 36px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
  display: inline-block;
  background: var(--plum);
  color: var(--white);
  padding: 14px 32px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-dark:hover { background: var(--plum-mid); transform: translateY(-2px); color: var(--white); }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
#snp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  transition: var(--transition);
}
#snp-nav.scrolled {
  background: rgba(45, 27, 46, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}
.nav-logo img {
  height: 50px;
  object-fit: contain;
  width: auto;
}
.nav-logo .site-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 2px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-menu li a {
  color: rgba(255,255,255,0.85);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item a { color: var(--gold); }

.nav-menu .menu-book a {
  background: var(--gold);
  color: var(--plum) !important;
  padding: 10px 22px;
  font-size: 10px;
  letter-spacing: 2px;
}
.nav-menu .menu-book a:hover { background: var(--gold-dark) !important; color: var(--plum) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4.5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--plum);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-book {
  margin-top: 10px;
  background: var(--gold);
  color: var(--plum) !important;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 32px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--plum) 0%, #4A2550 50%, var(--plum) 100%);
}
.hero-bg-img {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 60%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.3;
  mix-blend-mode: luminosity;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--plum) 35%, transparent 75%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 700px;
  animation: heroFadeIn 1.2s ease forwards;
  opacity: 0;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 300;
}
.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  max-width: 480px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.stats-strip {
  background: var(--plum);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(212,175,122,0.15);
}
.stat-item {
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid rgba(212,175,122,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-section { background: var(--blush); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.service-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(45,27,46,0.1); }
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: var(--gold); }
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 14px;
}
.service-desc { font-size: 13px; color: var(--muted); line-height: 1.8; font-weight: 300; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-section {
  background: var(--plum);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.about-image {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--plum));
}
.about-content {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-body {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 2;
  margin-top: 20px;
  font-weight: 300;
}
.about-body p + p { margin-top: 16px; }
.about-signature {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-style: italic;
  color: var(--gold);
  margin-top: 36px;
}
.about-sig-sub {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-top: 4px;
}
.about-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.pillar-tag {
  border: 1px solid rgba(212,175,122,0.3);
  color: var(--gold);
  padding: 6px 16px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ==========================================================================
   FOUNDER
   ========================================================================== */
.founder-section {
  background: var(--blush);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 80px;
}
.founder-img-wrap { position: relative; }
.founder-frame {
  position: relative;
  display: block;
}
.founder-frame::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px;
  right: -20px; bottom: -20px;
  border: 1px solid var(--gold);
  z-index: 0;
}
.founder-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  object-position: center top;
}
.founder-badge {
  position: absolute;
  bottom: 20px;
  right: -30px;
  background: var(--gold);
  padding: 20px 24px;
  z-index: 2;
  text-align: center;
}
.founder-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--plum);
  line-height: 1;
}
.founder-badge-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--plum);
  margin-top: 4px;
}
.founder-quote {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--plum);
  line-height: 1.7;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
  margin: 28px 0;
}
.founder-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 2;
  font-weight: 300;
  margin-top: 16px;
}
.founder-body p + p { margin-top: 14px; }
.founder-cta { margin-top: 36px; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-section { background: var(--plum); padding: 80px; }
.gallery-header { text-align: center; margin-bottom: 50px; }
.gallery-filters {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(212,175,122,0.3);
  color: rgba(255,255,255,0.5);
  padding: 10px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--plum);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,27,46,0.65);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-overlay-label {
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
}
.gallery-overlay-icon { font-size: 24px; display: block; margin-bottom: 6px; }

/* ==========================================================================
   VIDEOS
   ========================================================================== */
.videos-section { background: var(--blush); padding: 100px 80px; }
.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.video-card video {
  width: 100%;
  display: block;
  max-height: 500px;
  object-fit: cover;
}
.video-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(45,27,46,0.9), transparent);
  padding: 28px 20px 16px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  pointer-events: none;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section { background: var(--plum); padding: 100px 80px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,122,0.1);
  padding: 40px 32px;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(212,175,122,0.4); }
.stars { color: var(--gold); font-size: 12px; letter-spacing: 3px; margin-bottom: 20px; }
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-service {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
  letter-spacing: 1px;
}

/* ==========================================================================
   BOOKING / CONTACT
   ========================================================================== */
.booking-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.booking-info {
  background: var(--plum);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booking-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(212,175,122,0.12);
}
.booking-icon {
  width: 36px;
  height: 36px;
  background: rgba(212,175,122,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.booking-detail-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.booking-detail-val { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 300; line-height: 1.6; }
.booking-socials { display: flex; gap: 10px; margin-top: 36px; }
.social-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212,175,122,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 700;
  transition: var(--transition);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.booking-form-wrap {
  background: var(--blush);
  padding: 80px 60px;
}
.snp-form { margin-top: 32px; }
.snp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.snp-group { margin-bottom: 18px; }
.snp-group label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.snp-group label .req { color: var(--gold); margin-left: 2px; }
.snp-group input,
.snp-group select,
.snp-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 13px 15px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  border-radius: 1px;
}
.snp-group input:focus,
.snp-group select:focus,
.snp-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,122,0.1);
}
.snp-group textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.snp-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239E6B7A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.snp-submit {
  width: 100%;
  background: var(--plum);
  color: var(--white);
  border: none;
  padding: 17px 32px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 4px;
}
.snp-submit:hover { background: var(--plum-mid); letter-spacing: 4px; }
.snp-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
  line-height: 1.6;
}
.snp-success {
  display: none;
  background: rgba(45,122,79,0.1);
  border: 1px solid #2D7A4F;
  color: #2D7A4F;
  padding: 16px 20px;
  font-size: 13px;
  margin-top: 16px;
  text-align: center;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section { background: var(--blush); padding: 100px 80px; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}
.faq-item {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--plum);
  transition: color 0.3s;
  gap: 12px;
}
.faq-question:hover { color: var(--mauve); }
.faq-icon {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
  padding: 0 28px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 28px 24px; }
.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--plum);
  transform: rotate(45deg);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: var(--gold);
  padding: 70px 80px;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--plum);
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 14px;
  color: rgba(45,27,46,0.7);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-dark { background: var(--plum); color: var(--white); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
#snp-footer { background: var(--plum); }
.footer-main {
  padding: 70px 80px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  border-bottom: 1px solid rgba(212,175,122,0.12);
}
.footer-logo-img { height: 55px; margin-bottom: 16px; filter: brightness(1.1); }
.footer-about {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.9;
  font-weight: 300;
  max-width: 280px;
}
.footer-heading {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  font-weight: 300;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-contact-icon { color: var(--gold); font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-val { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.6; }

.footer-bottom {
  padding: 28px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); font-weight: 300; }
.footer-social { display: flex; gap: 10px; }
.footer-social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212,175,122,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social-icon:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 90vh; position: relative; }
.lightbox-img { max-width: 100%; max-height: 85vh; object-fit: contain; display: block; }
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  color: var(--gold);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  z-index: 2001;
  background: none;
  border: none;
  font-family: serif;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 0.7; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   BLOG / POSTS
   ========================================================================== */
.blog-page { background: var(--blush); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.post-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(45,27,46,0.1); }
.post-thumb { aspect-ratio: 16/10; overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-body { padding: 28px; }
.post-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.post-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--plum);
  line-height: 1.3;
  margin-bottom: 12px;
}
.post-excerpt { font-size: 13px; color: var(--muted); line-height: 1.8; font-weight: 300; }
.post-meta { font-size: 10px; color: rgba(0,0,0,0.3); margin-top: 16px; letter-spacing: 1px; }
.post-read-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mauve);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.3s;
}
.post-read-more:hover { color: var(--plum); }

/* Single Post */
.single-post { max-width: 760px; margin: 0 auto; padding: 120px 40px 80px; }
.single-post h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); color: var(--plum); margin-bottom: 20px; }
.single-post .post-content { font-size: 15px; color: var(--text); line-height: 1.9; font-weight: 300; }
.single-post .post-content p { margin-bottom: 20px; }
.single-post .post-content h2 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--plum); margin: 36px 0 16px; }
.single-post .post-content h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--plum); margin: 28px 0 12px; }
.single-post .post-content img { margin: 28px 0; border-radius: 2px; }
.single-post .post-content strong { font-weight: 600; color: var(--plum); }

/* ==========================================================================
   WPCF7 FORM OVERRIDES
   ========================================================================== */
.wpcf7-form .snp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wpcf7-form .snp-group { margin-bottom: 18px; }
.wpcf7-form .snp-group label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 13px 15px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  border-radius: 1px;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,122,0.1);
}
.wpcf7-form textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.wpcf7-form .wpcf7-radio { display: flex; gap: 12px; flex-wrap: wrap; }
.wpcf7-form .wpcf7-radio .wpcf7-list-item { flex: 1; margin: 0; }
.wpcf7-form .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: var(--blush);
  border: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.wpcf7-form .snp-policy {
  background: rgba(212,175,122,0.08);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  margin-bottom: 22px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.wpcf7-form input[type="submit"] {
  width: 100%;
  background: var(--plum);
  color: var(--white);
  border: none;
  padding: 17px 32px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 1px;
}
.wpcf7-form input[type="submit"]:hover { background: var(--plum-mid); letter-spacing: 4px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 1024px) {
  #snp-nav { padding: 0 24px; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .snp-section { padding: 70px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-section,
  .booking-section { grid-template-columns: 1fr; }
  .about-image { min-height: 350px; }
  .founder-section { grid-template-columns: 1fr; padding: 70px 24px; gap: 40px; }
  .gallery-section { padding: 70px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 50px 24px 40px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 16px; text-align: center; }
  .hero-content { padding: 0 24px; }
  .hero h1 { font-size: 42px; }
  .videos-section { padding: 70px 24px; }
  .videos-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 50px 24px; }
  .booking-info,
  .booking-form-wrap { padding: 60px 40px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .snp-row { grid-template-columns: 1fr; }
  .wpcf7-form .snp-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .booking-info,
  .booking-form-wrap { padding: 50px 24px; }
  .about-content { padding: 50px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   V3 FIXES — NAV, SOCIAL ICONS, FORMS
   ========================================================================== */

/* NAV — rebuilt layout: logo | links | right(socials + book btn + hamburger) */
#snp-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Desktop nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: rgba(255,255,255,0.82);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
    text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* Right side cluster */
.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

/* Social icons in nav */
.nav-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: rgba(255,255,255,0.55);
    transition: color 0.3s;
    text-decoration: none;
}
.nav-social-icon:hover { color: var(--gold); }

/* Book Now button */
.nav-book-btn {
    background: var(--gold);
    color: var(--plum) !important;
    padding: 10px 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 1px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s;
}
.nav-book-btn:hover { background: var(--gold-dark); color: var(--plum) !important; }

/* Mobile menu close button */
.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}
.mobile-menu-close:hover { color: var(--gold); }

/* Mobile menu socials */
.mobile-socials {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}
.mob-social-icon {
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
    text-decoration: none;
}
.mob-social-icon:hover { color: var(--gold); }

/* Remove old nav-menu styles that caused duplication */
.nav-menu { display: none !important; }

/* Responsive nav */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-socials { display: none; }
    .nav-book-btn { display: none; }
    .hamburger { display: flex; }
}
@media (min-width: 1025px) {
    .hamburger { display: none !important; }
}

/* ==========================================================================
   BOOKING & CONTACT PAGE TEMPLATES
   ========================================================================== */
.snp-page-hero {
    background: var(--plum);
    padding: 100px 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.snp-page-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,122,0.1);
}
.snp-page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,122,0.08);
}
.snp-page-hero .page-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}
.snp-page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}
.snp-page-hero h1 em { font-style: italic; color: var(--gold); }
.snp-page-hero p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Full page booking/contact layout */
.snp-booking-page,
.snp-contact-page {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    min-height: 70vh;
}
.snp-page-sidebar {
    background: var(--plum);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.snp-page-form-wrap {
    background: var(--blush);
    padding: 60px 50px;
}

/* Policy note box */
.snp-policy {
    background: rgba(212,175,122,0.1);
    border-left: 3px solid var(--gold);
    padding: 14px 18px;
    margin-bottom: 22px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7;
    border-radius: 0 2px 2px 0;
}
.snp-policy strong { color: var(--plum); font-weight: 600; }

/* Radio group */
.snp-radio-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.snp-radio-option { flex: 1; min-width: 130px; }
.snp-radio-option input[type="radio"] { display: none; }
.snp-radio-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--muted);
    border-radius: 1px;
}
.snp-radio-option input[type="radio"]:checked + label {
    background: var(--plum);
    border-color: var(--plum);
    color: var(--white);
}
.snp-radio-option label:hover { border-color: var(--mauve); color: var(--mauve); }

/* Alt contact cards */
.contact-alt-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}
.contact-alt-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,122,0.15);
    padding: 16px 20px;
    border-radius: 2px;
    transition: border-color 0.3s;
}
.contact-alt-card:hover { border-color: rgba(212,175,122,0.4); }
.contact-alt-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}
.contact-alt-value {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}
.contact-alt-value a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.contact-alt-value a:hover { color: var(--gold); }
.contact-alt-sub {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    margin-top: 3px;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .snp-booking-page,
    .snp-contact-page { grid-template-columns: 1fr; }
    .snp-page-hero { padding: 100px 24px 50px; }
    .snp-page-sidebar,
    .snp-page-form-wrap { padding: 50px 24px; }
}

/* ==========================================================================
   V4 FIXES
   ========================================================================== */

/* 1. GLOBAL HEADER FIX — force nav dark bg on ALL pages, not just scrolled */
#snp-nav {
  background: rgba(45, 27, 46, 0.97) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}
/* On front page, start transparent and scroll to dark */
.home #snp-nav {
  background: transparent !important;
  box-shadow: none;
}
.home #snp-nav.scrolled {
  background: rgba(45, 27, 46, 0.97) !important;
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

/* 2. MOBILE — services grid full width stacked */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 2px;
  }
  .service-card {
    padding: 32px 24px;
  }
}

/* 3. FOOTER services list — already handled in PHP, CSS stays same */

/* 4. FOOTER SOCIAL ICONS — make them proper size for SVG icons */
.footer-social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social-icon svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* 5. GALLERY PAGE */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 40px;
}
.gallery-page-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-page-item.landscape { aspect-ratio: 4/3; }
.gallery-page-item img,
.gallery-page-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-page-item:hover img,
.gallery-page-item:hover video { transform: scale(1.06); }
.gallery-page-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,27,46,0.6);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.gallery-page-item:hover .gallery-page-item-overlay { opacity: 1; }
.gallery-overlay-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Social feed section */
.social-feed-section {
  background: var(--blush);
  padding: 80px;
  text-align: center;
}
.social-feed-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.social-feed-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
}
.social-feed-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-feed-btn.ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
.social-feed-btn.tt {
  background: #000000;
  color: #fff;
}
.social-feed-btn:hover { transform: translateY(-2px); opacity: 0.9; }

/* 6. FAQ PAGE — accordion */
.faq-page-section { background: var(--blush); padding: 80px; }
.faq-category-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 40px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.faq-accordion { display: flex; flex-direction: column; gap: 2px; }
.faq-acc-item {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-acc-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--plum);
  gap: 16px;
  user-select: none;
  transition: background 0.2s;
}
.faq-acc-question:hover { background: rgba(45,27,46,0.02); }
.faq-acc-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: all 0.3s;
}
.faq-acc-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
  padding: 0 24px;
}
.faq-acc-item.open .faq-acc-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}
.faq-acc-item.open .faq-acc-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--plum);
  transform: rotate(45deg);
}
/* FAQ CTA Banner */
.faq-cta-banner {
  background: var(--plum);
  padding: 60px 80px;
  text-align: center;
}
.faq-cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 42px);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 12px;
}
.faq-cta-banner h2 em { font-style: italic; color: var(--gold); }
.faq-cta-banner p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.8;
  font-weight: 300;
}
.faq-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* About page video */
.about-video-section {
  background: var(--plum);
  padding: 80px;
  text-align: center;
}
.about-video-wrap {
  max-width: 760px;
  margin: 40px auto 0;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.about-video-wrap video {
  width: 100%;
  display: block;
  max-height: 500px;
  object-fit: cover;
}
.about-video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(45,27,46,0.9), transparent);
  padding: 28px 20px 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  pointer-events: none;
}

@media (max-width: 900px) {
  .gallery-page-grid { grid-template-columns: repeat(2,1fr); }
  .social-feed-section,
  .faq-page-section,
  .faq-cta-banner,
  .about-video-section { padding: 60px 24px; }
}
@media (max-width: 600px) {
  .gallery-page-grid { grid-template-columns: 1fr; }
  .faq-cta-btns { flex-direction: column; align-items: center; }
}

/* ==========================================================================
   V6 — MOBILE NAV REDESIGN + ALL FIXES
   ========================================================================== */

/* ── MOBILE MENU — slide in from right, modern ── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(320px, 85vw);
  background: #1A0F1A;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}

/* Backdrop */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(4px);
}
.mobile-menu-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* Gold top accent bar inside menu */
.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

/* Close button */
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
  padding: 0;
}
.mobile-menu-close:hover {
  background: rgba(212,175,122,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* Brand mark inside mobile menu */
.mobile-menu-brand {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  opacity: 0.7;
}

/* Nav links */
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu nav a {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu nav a::after {
  content: '›';
  font-size: 16px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s;
}
.mobile-menu nav a:hover {
  color: var(--white);
  padding-left: 6px;
}
.mobile-menu nav a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Book Now button */
.mobile-menu .mobile-book {
  display: block;
  background: var(--gold);
  color: var(--plum) !important;
  text-align: center;
  padding: 14px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-top: 24px;
  transition: all 0.2s;
  border-bottom: none !important;
}
.mobile-menu .mobile-book::after { display: none !important; }
.mobile-menu .mobile-book:hover {
  background: var(--gold-dark) !important;
  padding-left: 24px !important;
  color: var(--plum) !important;
}

/* Social icons */
.mobile-socials {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mob-social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.2s;
}
.mob-social-icon svg {
  width: 16px;
  height: 16px;
}
.mob-social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,122,0.1);
}

/* Hamburger animation */
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4.5px); }

/* Gallery 4-video grid */
.videos-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .videos-grid-4 { grid-template-columns: 1fr; }
  .mobile-menu { width: min(300px, 90vw); padding: 60px 28px 40px; }
}
