/* ============================================
   BLUEBERRY EXOTIC V3 — MASTER STYLESHEET
   Dark · Sultry · World-Class
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,700&family=Raleway:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --black:       #080808;
  --dark:        #0f0f0f;
  --card:        #161616;
  --card-border: #2a2a2a;
  --red:         #c41e3a;
  --red-dark:    #8b0000;
  --gold:        #d4af37;
  --gold-light:  #f0d060;
  --white:       #ffffff;
  --off-white:   #e8e0d5;
  --grey:        #999;
  --nav-h:       80px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  color: var(--white);
}
.serif-italic { font-family: 'Cormorant Garamond', serif; font-style: italic; }
.gold-text { color: var(--gold); }
.red-text  { color: var(--red); }

/* ---------- Utility ---------- */
.container { width: 90%; max-width: 1280px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 14px;
  margin-bottom: 1.2rem;
}
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  margin: 1.4rem auto;
}
.divider.left { margin: 1.4rem 0; }
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}
.btn:hover::before { transform: scaleX(1); }
.btn-gold {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}
.btn-gold::before { background: var(--gold-light); }
.btn-gold:hover { color: var(--black); }
.btn-outline {
  color: var(--gold);
  background: transparent;
  border-color: var(--gold);
}
.btn-outline::before { background: var(--gold); }
.btn-outline:hover { color: var(--black); }
.btn-red {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}
.btn-red::before { background: var(--red-dark); }
.btn-red:hover { color: var(--white); }

/* ---------- NAVIGATION ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(8,8,8,0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.8);
}
#navbar .nav-inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 52px;
  width: auto;
  filter: brightness(1.1);
}
.nav-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav-logo .logo-text span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--off-white);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 9px 22px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  transition: background var(--transition);
}
.nav-links .nav-cta:hover { background: var(--gold-light); }
.nav-links .nav-cta::after { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  z-index: 999;
  padding: 2rem 0;
  border-top: 1px solid var(--card-border);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--off-white);
  border-bottom: 1px solid var(--card-border);
  transition: color var(--transition), padding-left var(--transition);
}
.nav-mobile a:hover { color: var(--gold); padding-left: 2.5rem; }
.nav-mobile .nav-cta { color: var(--gold) !important; }

/* ---------- HERO ---------- */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  animation: kenBurns 25s ease-in-out infinite;
}
.hero-slide.active { opacity: 1; }
@keyframes kenBurns {
  0%   { transform: scale(1.0)   translate(0%, 0%); }
  25%  { transform: scale(1.08)  translate(-1%, -1%); }
  50%  { transform: scale(1.12)  translate(1%, 0.5%); }
  75%  { transform: scale(1.06)  translate(-0.5%, 1%); }
  100% { transform: scale(1.0)   translate(0%, 0%); }
}
/* Each slide gets offset animation so they don't sync */
.hero-slide:nth-child(2) { animation-delay: -6s; }
.hero-slide:nth-child(3) { animation-delay: -12s; }
.hero-slide:nth-child(4) { animation-delay: -18s; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.75) 0%,
    rgba(139,0,0,0.15) 50%,
    rgba(8,8,8,0.85) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
  max-width: 880px;
}
.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--off-white);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--gold), transparent);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero slide dots */
.hero-dots {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ---------- STATS BAR ---------- */
#stats-bar {
  background: var(--card);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { padding: 1rem; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ---------- SECTIONS ---------- */
section { padding: 6rem 0; }
section.dark-section { background: var(--dark); }
section.black-section { background: var(--black); }
section.card-section  { background: var(--card); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.section-header p { color: var(--grey); font-size: 1rem; }

/* ---------- ABOUT / INTRO ---------- */
#about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
#about .about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}
#about .about-images img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.1);
  transition: var(--transition);
}
#about .about-images img:hover {
  filter: brightness(1) contrast(1.1);
  transform: scale(1.02);
}
#about .about-images img:nth-child(1) { margin-top: 2rem; }
#about .about-images img:nth-child(2) { margin-top: -2rem; }
#about .about-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 1.5rem; }
#about .about-text p  { color: var(--grey); margin-bottom: 1.2rem; font-size: 0.97rem; }
#about .about-text .highlight {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--off-white);
}

/* ---------- SERVICES ---------- */
#services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: brightness(0.6);
}
.service-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.8);
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--transition);
}
.service-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  transform: translateY(8px);
  transition: var(--transition);
}
.service-card p {
  font-size: 0.87rem;
  color: var(--off-white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  max-height: 0;
  overflow: hidden;
}
.service-card:hover h3 { transform: translateY(0); }
.service-card:hover p { opacity: 1; transform: translateY(0); max-height: 100px; }
.service-card-link {
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.4s 0.1s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-link::after { content: '→'; }
.service-card:hover .service-card-link { opacity: 1; }

/* ---------- IMAGE GALLERY / MASONRY ---------- */
.gallery-masonry {
  columns: 3;
  column-gap: 10px;
  gap: 10px;
}
.gallery-masonry .gal-item {
  break-inside: avoid;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}
.gallery-masonry .gal-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.85) saturate(0.9);
}
.gallery-masonry .gal-item:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.1);
}
/* Placeholder frames */
.gal-placeholder {
  break-inside: avoid;
  margin-bottom: 10px;
  aspect-ratio: 3/4;
  background: var(--card);
  border: 2px dashed var(--card-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--grey);
}
.gal-placeholder svg { opacity: 0.3; }
.gal-placeholder span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ---------- QUOTE SECTION ---------- */
.quote-section {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '"';
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 20rem;
  color: rgba(212,175,55,0.05);
  line-height: 1;
  pointer-events: none;
}
.quote-section blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  max-width: 860px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}
.quote-section cite {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- EDITORIAL SPLIT ---------- */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}
.editorial-split .edit-image {
  position: relative;
  overflow: hidden;
}
.editorial-split .edit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: transform 0.8s ease;
}
.editorial-split:hover .edit-image img { transform: scale(1.04); }
.editorial-split .edit-content {
  background: var(--card);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
}
.editorial-split .edit-content h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1.5rem; }
.editorial-split .edit-content p  { color: var(--grey); margin-bottom: 1.2rem; font-size: 0.95rem; }

/* ---------- TESTIMONIALS ---------- */
#testimonials { background: var(--dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  padding: 2.5rem;
  position: relative;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: var(--gold); }
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: 1rem; left: 1.5rem;
  line-height: 1;
}
.testimonial-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--off-white);
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
}
.testimonial-author .name { font-weight: 700; font-size: 0.88rem; color: var(--white); }
.testimonial-author .role { font-size: 0.72rem; color: var(--grey); letter-spacing: 0.1em; }
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.3rem; }

/* ---------- FAQ ---------- */
#faq { background: var(--black); }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--card-border);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 0;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--off-white);
  transition: color var(--transition);
}
.faq-question:hover h4 { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 300;
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
}
.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--grey);
  font-size: 0.93rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #8b0000 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-gold { font-size: 0.85rem; padding: 16px 44px; }

/* ---------- FORM SECTION ---------- */
.form-section { background: var(--dark); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.form-intro h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1.5rem; }
.form-intro p   { color: var(--grey); margin-bottom: 1.2rem; font-size: 0.95rem; }
.form-intro .contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--off-white);
  font-size: 0.9rem;
}
.form-intro .contact-detail svg { color: var(--gold); flex-shrink: 0; }
.application-form {
  background: var(--card);
  border: 1px solid var(--card-border);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--card-border);
  color: var(--white);
  padding: 12px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4af37' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group select option { background: var(--dark); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--gold);
  margin-top: 2px;
}
.form-check label {
  font-size: 0.83rem;
  color: var(--grey);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
}
.form-check label a { color: var(--gold); text-decoration: underline; }
.form-submit .btn { width: 100%; text-align: center; padding: 16px; font-size: 0.82rem; }
.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--grey);
  margin-top: 1rem;
}

/* ---------- VENUES PAGE ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.benefit-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  padding: 2.5rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.benefit-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.benefit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.benefit-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.benefit-card p  { color: var(--grey); font-size: 0.88rem; }

/* ---------- PRIVACY PAGE ---------- */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
}
.policy-content h2 {
  font-size: 1.6rem;
  color: var(--gold);
  margin: 2.5rem 0 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--card-border);
}
.policy-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.policy-content p  { color: var(--grey); margin-bottom: 1rem; font-size: 0.94rem; line-height: 1.8; }
.policy-content ul { margin: 1rem 0 1rem 1.5rem; color: var(--grey); font-size: 0.94rem; }
.policy-content ul li { margin-bottom: 0.5rem; list-style: disc; }
.policy-content a  { color: var(--gold); text-decoration: underline; }

/* ---------- PAGE HERO ---------- */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  animation: kenBurns 20s ease-in-out infinite;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.4), rgba(8,8,8,0.7));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
}
.page-hero-content .section-tag { margin-bottom: 1rem; }
.page-hero-content h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 1rem; }
.page-hero-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--off-white);
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- FOOTER ---------- */
#footer {
  background: var(--dark);
  border-top: 1px solid var(--card-border);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}
.footer-brand .logo-text span { color: var(--gold); }
.footer-brand p { color: var(--grey); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.8rem;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.1);
}
.footer-col h5 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col a {
  display: block;
  color: var(--grey);
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col a:hover { color: var(--off-white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--grey); }
.footer-bottom a { color: var(--gold); }
.footer-legal {
  text-align: center;
  padding: 1rem 0 0;
  font-size: 0.74rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- ANIMATIONS (scroll reveal) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger children */
.stagger .reveal:nth-child(1) { transition-delay: 0s; }
.stagger .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .service-card:nth-child(3) { display: none; }
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  #about .about-grid { grid-template-columns: 1fr; }
  #about .about-images { display: flex; gap: 10px; }
  #about .about-images img { flex: 1; margin: 0 !important; }
  .editorial-split { grid-template-columns: 1fr; }
  .editorial-split .edit-image { height: 300px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-row  { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
}
@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:nth-child(3) { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 4rem 0; }
  .gallery-masonry { columns: 1; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
