:root {
  --maroon: #6B1E1E;
  --maroon-dark: #4a1212;
  --maroon-light: #8a2a2a;
  --gold: #D4AF37;
  --gold-light: #e8cc6a;
  --gold-dark: #b8941e;
  --cream: #FFF8EE;
  --cream-dark: #f5eddb;
  --charcoal: #222222;
  --charcoal-light: #444444;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}
.reveal{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease,transform 0.6s ease;

}
.reveal.visible{
  opacity: 1;
  transform:translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(107,30,30,0.97);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  border-bottom: 1px solid rgba(212,175,55,0.3);
}
.nav-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 1.9rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-decoration: none;

  
  
}
.logo-img{
 
height: 15vh;
padding: 0;
margin: 0;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--maroon) !important;
  padding: 8px 20px !important;
  border-radius: 2px;
  font-weight: 700 !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--maroon-dark) 0%, var(--maroon) 50%, #3a0d0d 100%);
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 5% 60px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 60%, rgba(212,175,55,0.07) 0%, transparent 70%),
    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='%23D4AF37' fill-opacity='0.04'%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");
  pointer-events: none;
}
.hero-ornament {
  position: absolute;
  font-size: 28rem;
  color: rgba(212,175,55,0.04);
  font-family: 'Great Vibes', cursive;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.hero-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255,248,238,0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,248,238,0.75);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 3px;
  padding: 6px 18px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 14px 36px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid rgba(212,175,55,0.6);
  color: var(--gold);
  padding: 14px 36px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(212,175,55,0.6);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(212,175,55,0.6), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* SECTIONS */
section { padding: 90px 5%; }
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
  font-weight: 600;
  text-align: center;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--maroon);
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}
.section-lead {
  text-align: center;
  color: var(--charcoal-light);
  font-size: 0.95rem;
  line-height: 1.9;
  max-width: 600px;
  margin: 1rem auto 0;
  font-weight: 300;
}

/* STATS */
.stats { background: var(--maroon); padding: 50px 5%; }
.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,248,238,0.6);
  margin-top: 6px;
  font-weight: 500;
}

/* ABOUT */
.about { background: var(--cream); }
.about-grid {
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 60%, var(--maroon-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.about-img-placeholder .icon { font-size: 5rem; opacity: 0.4; }
.about-img-placeholder p { color: rgba(255,248,238,0.5); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }
.about-img-accent {
    
  position: absolute;
  bottom: -20px; right: -20px;
  width: 180px; height: 180px;
  border: 2px solid var(--gold);
  z-index: -1;
}
.about-year-badge {
  position: absolute;
  top: -20px; left: -20px;
  background: var(--gold);
  color: var(--maroon-dark);
  width: 100px; height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-year-badge strong { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.about-year-badge span { font-size: 0.6rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; }
.about-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--maroon); margin-bottom: 1rem; font-weight: 700; }
.about-text p { color: var(--charcoal-light); line-height: 1.9; font-size: 0.95rem; margin-bottom: 1rem; font-weight: 300; }
.about-list { list-style: none; margin: 1.5rem 0; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(107,30,30,0.1);
  font-size: 0.9rem;
  color: var(--charcoal);
}
.about-list li::before { content: '✦'; color: var(--gold-dark); font-size: 0.7rem; flex-shrink: 0; }

/* OFFERINGS */
.offerings { background: var(--cream-dark);
padding-bottom: 0;
 }
.offerings-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.offering-card1,.offering-card2,.offering-card3 {
  border-bottom: 3px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 300px;
  border-radius: 20px;
  box-shadow: 10px 20px 10px rgba(52, 1, 1, 0.7);
}
.offering-card1{
  background-image:  linear-gradient(rgba(0, 0, 0, 0.5)) ,url(sweetshop.jpeg);

}
.offering-card2{
  background-image:  linear-gradient(rgba(0, 0, 0, 0.5)) ,url(dining.jpeg);

}
.offering-card3{
  background-image:  linear-gradient(rgba(0, 0, 0, 0.5)) ,url(partyhall1.jpeg);

}
.offering-card1::before,.offering-card2::before,.offering-card3::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.offering-card1:hover,.offering-card2:hover,.offering-card3:hover { transform: scale(1.07);  }

.offering-card1:hover::before,.offering-card2:hover::before,.offering-card3:hover::before { transform: scaleX(1); }


.offering-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color:var(--gold); font-weight: 700;margin: 5vh; }
.offering-desc { color:var(--gold); font-size: 0.88rem; line-height: 1.8; font-weight: 300;margin: 5vh; }

/* MENU */
.menu-section { background: var(--cream); }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 2.5rem auto 2rem;
  border: 1px solid rgba(107,30,30,0.2);
  width: fit-content;
}
.menu-tab {
  padding: 10px 28px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--charcoal-light);
  transition: background 0.3s, color 0.3s;
}
.menu-tab.active { background: var(--maroon); color: var(--gold); }
.menu-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(107,30,30,0.1);
}
.menu-item {
  background: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.menu-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--charcoal); font-weight: 600; margin-bottom: 4px; }
.menu-item-desc { font-size: 0.8rem; color: var(--charcoal-light); font-weight: 300; }
.menu-item-price { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold-dark); font-weight: 700; flex-shrink: 0; }

/* PARTY HALL */

.party-hall {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 5%;
}
.party-hall::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='%23D4AF37' fill-opacity='0.04'%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/svg%3E");
  pointer-events: none;
}
.party-hall .section-eyebrow { color: rgba(212,175,55,0.8); }
.party-hall .section-title { color: var(--white); }
.party-hall .section-lead { color: rgba(255,248,238,0.65); }
.party-inner {
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
}
.party-features { color: var(--white); }
.party-features h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--gold-light); margin-bottom: 1.5rem; font-weight: 600; }
.party-feature-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.party-feature-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.party-feature-text strong { display: block; color: var(--gold-light); font-size: 0.9rem; font-weight: 600; margin-bottom: 3px; }
.party-feature-text span { color: rgba(255,248,238,0.6); font-size: 0.82rem; font-weight: 300; }

/* BOOKING FORM */
.booking-form {
  background: var(--cream);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.booking-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--maroon); font-weight: 700; margin-bottom: 0.3rem; text-align: center; }
.booking-form p { text-align: center; font-size: 0.8rem; color: var(--charcoal-light); margin-bottom: 1.5rem; font-weight: 300; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--maroon); margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(107,30,30,0.25);
  background: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 2px;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold-dark); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  background: var(--maroon);
  color: var(--gold);
  border: none;
  padding: 14px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--maroon-dark); }
.form-note { text-align: center; font-size: 0.75rem; color: var(--charcoal-light); margin-top: 0.8rem; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* GALLERY */
.gallery { background: var(--cream-dark); }
.gallery-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item { 
 overflow: hidden; position: relative; 
display: flex;
align-items: end;
}
.gallery-item.tall { grid-row: span 2; height: 100%;
  background-image:linear-gradient(rgba(56, 5, 5, 0.2)), url(banquethall.jpeg);

 }
.gallery-item.celebrations { grid-column: span 2;
background-image:linear-gradient(rgba(56, 5, 5, 0.2)), url(celebration.jpeg); 

}
.gallery-item.sweetcounter{
  background-image: url(sweetshop.jpeg);
  
}
.gallery-item.dininghall{grid-column: span 2;
  background-image: linear-gradient(rgba(56, 5, 5, 0.2)),url(dininghall.jpeg);
 

}
.gallery-item.ambiance{
  background-image: linear-gradient(rgba(56, 5, 5, 0.2)),url(ambience.jpeg);
 }
 .gallery-item.tall,.gallery-item.celebrations,.gallery-item.sweetcounter,.gallery-item.dininghall,.gallery-item.ambiance{
   background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
min-height: 250px;
   border-radius: 10px;
   overflow: hidden;
   margin: 0;
   padding: 0;
   transition: transform 0.4s ease;
   
 }
.lable{
  height: 30px;
  width: 100%;
  background-color: rgba(56, 5, 5, 0.8);
  color: var(--gold);
  font-weight: 600;
  border: none;
  outline: none;
  position: relative;
  margin: 0;
  padding: 5px;

}
.lable::before{
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(to top, rgba(56, 5, 5, 0.8),transparent);
  pointer-events: none;
  display: block;

}

.gallery-item:hover  { transform: scale(1.03); }

/* VIDEO SECTION ////////////////////////////////////*/
.video-section {
  padding: 80px 40px;
  background: #FFF8EE;
  text-align: center;
  
}

.video-section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--maroon);
  margin-bottom: 10px;
}

.video-section-header h2 span {
  color: var(--gold-dark);
}

.video-section-header p {
  font-family: 'Raleway', sans-serif;
  color: #6B1E1E;
  margin-bottom: 50px;
  font-size: 1.2rem;
}

.video-slider-wrapper {
  overflow: hidden;
  position: relative;
}

.video-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.video-card {
  flex: 0 0 calc(33.33% - 16px);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(107, 30, 30, 0.12);
}

.video-card video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.video-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  color: #6B1E1E;
  padding: 12px;
  font-weight: 600;
}

/* Dots - hidden on desktop */
.video-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D4AF3766;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #D4AF37;
}

/* MOBILE */
@media (max-width: 768px) {
  .video-section {
    padding: 60px 0px;
  }

  .video-section-header {
    padding: 0 20px;
  }

  .video-track {
    width: 300%;          /* 3 slides x 100% */
    gap: 0;
  }

  .video-card {
    flex: 0 0 calc(100vw - 40px);
    margin: 0 20px;
    
  }
  
  .video-dots {
    display: flex;
  }
}

/* ---- Poster Section ---- */
.poster-section {
  background: #FFF8EE;
  padding: 60px 0;
  overflow: hidden;
}

.poster-section .section-title {
  text-align: center;
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  color: #6B1E1E;
  margin-bottom: 8px;
}



.poster-slider-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.poster-track-container {
  overflow: hidden;
  border-radius: 12px;
}

.poster-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.poster-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #222; */
  min-height: 340px;
}


.poster-slide img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: contain;
  object-position: center;
  /* background: #111; */

}

.poster-arrow {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #6B1E1E;
  border: 2px solid #D4AF37;
  color: #D4AF37;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, color 0.2s;
  user-select: none;
}

.poster-arrow:hover {
  background: #D4AF37;
  color: #6B1E1E;
}

.poster-arrow.prev { left: 6px; }
.poster-arrow.next { right: 6px; }

.poster-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  overflow: hidden;
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
}

.poster-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D4AF37;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
}
.end{
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3px;
  width: 100vw;
  font-size: 1px;
  background-color: var(--cream-dark);
}
@media (max-width: 768px) {
  .poster-slider-wrapper {
    padding: 0 16px;
  }
  .poster-arrow {
    display: none;
  }
  .poster-slide img {
    height: 320px;
  }
}

/* REVIEWS */
.testimonials { background: var(--cream); }
.testimonials-grid {
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card { background: var(--white); padding: 2rem; border-left: 3px solid var(--gold); }
.testimonial-quote { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--gold); line-height: 0.8; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.9rem; line-height: 1.8; color: var(--charcoal-light); margin-bottom: 1.2rem; font-weight: 300; font-style: italic; }
.testimonial-author strong { display: block; font-size: 0.85rem; color: var(--maroon); font-weight: 700; }
.testimonial-author span { font-size: 0.75rem; color: var(--charcoal-light); font-weight: 300; }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }

/* CONTACT */
.contact { background: var(--maroon); }
.contact .section-eyebrow { color: rgba(212,175,55,0.7); }
.contact .section-title { color: var(--white); }
.contact-grid {
  max-width: 1000px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.contact-item { text-align: center; padding: 2rem 1rem; border: 1px solid rgba(212,175,55,0.2); }
.contact-icon { font-size: 2rem; margin-bottom: 1rem; }
.contact-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold-light); margin-bottom: 0.5rem; font-weight: 600; }
.contact-item p, .contact-item a { color: rgba(255,248,238,0.65); font-size: 0.88rem; line-height: 1.7; font-weight: 300; text-decoration: none; }
.contact-item a:hover { color: var(--gold); }

/* FOOTER */
footer {
  background: var(--maroon-dark);
  padding: 30px 5%;
  text-align: center;
  border-top: 1px solid rgba(212,175,55,0.2);
}
.footer-logo { font-family: 'Great Vibes', cursive; font-size: 2.2rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.72rem; letter-spacing: 3px; color: rgba(212,175,55,0.5); text-transform: uppercase; margin-bottom: 1rem; }
.footer-copy { font-size: 0.78rem; color: rgba(255,248,238,0.35); }

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.show { opacity: 1; pointer-events: all; }
.modal {
  background: var(--cream);
  padding: 3rem 2.5rem;
  max-width: 440px;
  width: 90%;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s;
}
.modal-overlay.show .modal { transform: translateY(0); }
.modal-icon { font-size: 3rem; margin-bottom: 1rem; }
.modal h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--maroon); margin-bottom: 0.8rem; }
.modal p { font-size: 0.9rem; color: var(--charcoal-light); line-height: 1.7; margin-bottom: 1.5rem; font-weight: 300; }
.modal-close { background: var(--maroon); color: var(--gold); border: none; padding: 12px 32px; font-family: 'Raleway', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; }

/* MOBILE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--maroon-dark);
    padding: 2rem;
    gap: 1.5rem;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .offerings-grid { grid-template-columns: 1fr; }
  .party-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  /* .gallery-item.tall .gallery-placeholder { min-height: 200px; } */
  .gallery-item.celebrations { grid-column: span 1; }
  .gallery-item.dininghall { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
