/* ============================================================
   SHAANDAAR EVENTS JAIPUR – LANDING PAGE STYLESHEET
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #FAF6F0;
  --cream2:   #F4EDE3;
  --gold:     #C9A84C;
  --gold-lt:  #E8C97A;
  --maroon:   #6B1A2A;
  --maroon2:  #8B2035;
  --charcoal: #1C1C1C;
  --mid:      #5A4A3A;
  --border:   #E2D5C3;
  --white:    #FFFFFF;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--charcoal); overflow-x: hidden; }

/* ── UTILITY ── */
.serif        { font-family: 'Cormorant Garamond', serif; }
.gold         { color: var(--gold); }
.container    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label{ font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.section-title{ font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,4vw,52px); font-weight: 600; line-height: 1.15; color: var(--charcoal); }
.divider      { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); margin: 20px 0; }
.divider.center{ margin: 20px auto; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon2));
  color: var(--white); padding: 14px 28px; border-radius: 3px;
  font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer; transition: all .3s;
}
.btn-primary:hover { background: linear-gradient(135deg, var(--maroon2), #a02540); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107,26,42,.3); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--gold); color: var(--gold); padding: 13px 28px; border-radius: 3px;
  font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; background: transparent; cursor: pointer; transition: all .3s;
}
.btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

/* ── TOPBAR ── */
.topbar {
  background: var(--maroon); color: var(--white);
  text-align: center; padding: 9px 24px;
  font-size: 13px; letter-spacing: .5px;
}
.topbar a { color: var(--gold-lt); text-decoration: none; font-weight: 600; }

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250,246,240,.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border); padding: 0 24px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.nav-logo img  { height: 44px; }
.nav-links     { display: flex; gap: 32px; list-style: none; }
.nav-links a   { font-size: 13px; color: var(--mid); text-decoration: none; font-weight: 500; letter-spacing: .5px; transition: color .2s; }
.nav-links a:hover { color: var(--maroon); }
.nav-cta       { display: flex; align-items: center; gap: 12px; }
.nav-call {
  display: flex; align-items: center; gap: 7px;
  color: var(--maroon); font-weight: 600; font-size: 14px; text-decoration: none;
  border: 1.5px solid var(--maroon); padding: 8px 16px; border-radius: 3px; transition: all .25s;
}
.nav-call:hover { background: var(--maroon); color: var(--white); }
.hamburger     { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span{ width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all .3s; }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--cream); z-index: 2000;
  flex-direction: column; padding: 80px 32px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--charcoal); text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-menu-close { position: absolute; top: 24px; right: 24px; font-size: 28px; cursor: pointer; color: var(--charcoal); background: none; border: none; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(rgba(15,8,0,.55), rgba(15,8,0,.55)),
              url('https://shaandaar-cdn.b-cdn.net/homehd/header.jpg') center/cover no-repeat fixed;
  display: flex; align-items: center; padding: 80px 24px;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.hero-left      { color: var(--white); }
.hero-label     { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-lt); font-weight: 600; margin-bottom: 16px; }
.hero-h1        { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px,5.5vw,72px); font-weight: 600; line-height: 1.1; margin-bottom: 24px; }
.hero-h1 em     { color: var(--gold-lt); font-style: italic; }
.hero-sub       { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.82); margin-bottom: 36px; max-width: 520px; }
.hero-stats     { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stat      { border-left: 2px solid var(--gold); padding-left: 14px; }
.hero-stat strong{ display: block; font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--gold-lt); line-height: 1; }
.hero-stat span { font-size: 12px; color: rgba(255,255,255,.7); letter-spacing: .5px; }
.hero-btns      { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--white); font-size: 14px; font-weight: 600;
  border: 2px solid rgba(255,255,255,.5); padding: 13px 24px; border-radius: 3px;
  text-decoration: none; transition: all .3s; letter-spacing: .5px;
}
.btn-call:hover { border-color: var(--gold-lt); color: var(--gold-lt); }

/* Hero Form */
.hero-form-wrap { background: var(--white); border-radius: 6px; padding: 36px 32px; box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.form-title     { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--maroon); margin-bottom: 6px; }
.form-sub       { font-size: 12.5px; color: var(--mid); margin-bottom: 22px; }
.form-row       { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group     { margin-bottom: 14px; }
.form-group.full{ grid-column: 1 / -1; }
.form-group label { display: block; font-size: 11px; font-weight: 600; letter-spacing: .5px; color: var(--mid); margin-bottom: 5px; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 3px; font-size: 13.5px; font-family: 'Inter', sans-serif;
  background: var(--cream); color: var(--charcoal); transition: border .2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235A4A3A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-submit {
    width: 100%;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-note   { text-align: center; font-size: 11px; color: #999; margin-top: 10px; }
.form-success{ display: none; text-align: center; padding: 20px; }
.form-success.show { display: block; }

/* ── TRUST SCROLL BAR ── */
.trust-bar    { background: var(--maroon); overflow: hidden; }
.trust-scroll { display: flex; animation: scrollX 28s linear infinite; width: max-content; }
.trust-scroll:hover { animation-play-state: paused; }
.trust-item   { display: flex; align-items: center; gap: 10px; padding: 18px 40px; white-space: nowrap; border-right: 1px solid rgba(255,255,255,.2); color: var(--white); }
.trust-item .ti-icon { font-size: 20px; }
.trust-item .ti-text strong { display: block; font-size: 14px; font-weight: 600; }
.trust-item .ti-text span   { font-size: 11px; color: var(--gold-lt); letter-spacing: .5px; }
@keyframes scrollX { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── GOOGLE REVIEWS ── */
#reviews        { padding: 80px 0; background: var(--white); }
.reviews-header { text-align: center; margin-bottom: 50px; }
.google-badge {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--cream); border: 1.5px solid var(--border); border-radius: 50px;
  padding: 14px 28px; margin-bottom: 32px;
}
.google-logo  { width: 80px; }
.google-rating{ font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 700; color: var(--charcoal); line-height: 1; }
.stars-row    { display: flex; gap: 2px; }
.star         { color: #FBBC04; font-size: 18px; }
.review-count { font-size: 13px; color: var(--mid); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card  {
  background: var(--cream); border: 1px solid var(--border); border-radius: 6px;
  padding: 28px; transition: all .3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(107,26,42,.1); }
.review-card .quote-icon { font-size: 48px; color: var(--gold); line-height: .8; font-family: Georgia, serif; margin-bottom: 12px; }
.review-text  { font-size: 14px; line-height: 1.7; color: var(--mid); margin-bottom: 20px; font-style: italic; }
.reviewer     { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--maroon); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.reviewer-name{ font-weight: 600; font-size: 14px; }
.reviewer-date{ font-size: 11.5px; color: #999; }
.reviews-cta  { text-align: center; margin-top: 36px; }
.review-link  { color: var(--maroon); font-weight: 600; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.review-link:hover { color: var(--gold); }

/* ── VENUES ── */
#venues        { padding: 80px 0; background: var(--cream2); }
.venues-header { text-align: center; margin-bottom: 50px; }
.venues-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.venue-card    { background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.08); transition: all .35s; }
.venue-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(107,26,42,.15); }
.venue-img-wrap { overflow: hidden; }
.venue-img     { width: 100%; height: 220px; object-fit: cover; transition: transform .5s; display: block; }
.venue-card:hover .venue-img { transform: scale(1.06); }
.venue-body    { padding: 22px; }
.venue-name    { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.venue-tag     { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.venue-desc    { font-size: 13.5px; color: var(--mid); line-height: 1.6; margin-bottom: 14px; }
.venue-capacity{ font-size: 12px; color: var(--mid); display: flex; align-items: center; gap: 6px; }
.venue-cta     { text-align: center; margin-top: 36px; }
.venue-promo   { background: linear-gradient(135deg,var(--maroon),#4a0e1a); display:flex; align-items:center; justify-content:center; text-align:center; min-height:300px; }

/* ── GALLERY ── */
#gallery        { padding: 80px 0; background: var(--charcoal); }
#gallery .section-label { color: var(--gold-lt); }
#gallery .section-title { color: var(--white); }
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-sub    { color: rgba(255,255,255,.65); font-size: 16px; margin-top: 10px; }
.gallery-grid   {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 10px; margin-bottom: 36px;
}
.g-item         { overflow: hidden; border-radius: 4px; position: relative; }
.g-item img     { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.g-item:hover img { transform: scale(1.1); }
.g-item.tall    { grid-row: span 2; }
.g-item.wide    { grid-column: span 2; }
.g-overlay      { position: absolute; inset: 0; background: linear-gradient(to top, rgba(107,26,42,.7), transparent); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 16px; }
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span { color: var(--white); font-size: 12px; font-weight: 500; letter-spacing: .5px; }
.gallery-cta    { text-align: center; margin-top: 20px; }

/* ── SERVICES ── */
#services        { padding: 80px 0; background: var(--cream); }
.services-header { text-align: center; margin-bottom: 50px; }
.services-sub    { color: var(--mid); font-size: 15px; max-width: 560px; margin: 16px auto 0; }
.services-grid   { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card    {
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  padding: 28px 22px; text-align: center; transition: all .3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transform: scaleX(0); transition: transform .3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 32px; margin-bottom: 14px; }
.service-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--charcoal); }
.services-cta { text-align: center; margin-top: 48px; }

/* ── VIDEO TESTIMONIALS ── */
#video-testimonials { padding: 80px 0; background: var(--cream2); }
.vt-header  { text-align: center; margin-bottom: 48px; }
.vt-sub     { color: var(--mid); font-size: 15px; max-width: 500px; margin: 10px auto 0; }
.video-wrap { max-width: 100%; margin: 0 auto; border-radius: 8px; overflow: hidden; box-shadow: 0 20px 60px rgba(107,26,42,.2); position: relative; padding-top: 56.25%; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ── ABOUT ── */
#about        { padding: 80px 0; background: var(--white); }
.about-inner  { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-images { position: relative; }
.about-img-main   { width: 80%; border-radius: 6px; box-shadow: 0 20px 50px rgba(0,0,0,.15); display: block; }
.about-img-accent { width: 55%; position: absolute; bottom: -30px; right: 0; border-radius: 6px; box-shadow: 0 12px 32px rgba(0,0,0,.2); border: 5px solid var(--white); }
.about-years  { position: absolute; top: 20px; left: -20px; background: var(--maroon); color: var(--white); padding: 20px 18px; border-radius: 6px; text-align: center; }
.about-years strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 700; color: var(--gold-lt); line-height: 1; }
.about-years span   { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; }
.about-content p  { font-size: 15px; line-height: 1.8; color: var(--mid); margin-bottom: 18px; }
.about-stats  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.about-stat   { text-align: center; padding: 18px; background: var(--cream); border-radius: 4px; }
.about-stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 700; color: var(--maroon); }
.about-stat span   { font-size: 11px; color: var(--mid); letter-spacing: .5px; text-transform: uppercase; }
.about-cta    { margin-top: 28px; }

/* ── AWARDS ── */
#awards       { padding: 70px 0; background: var(--cream2); }
.awards-header{ text-align: center; margin-bottom: 40px; }
.awards-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--mid); margin-bottom: 8px; }
.awards-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--charcoal); }
.awards-grid  { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.award-badge  { text-align: center; width: 160px; padding: 28px 16px; background: var(--white); border-radius: 6px; border: 1px solid var(--border); transition: all .3s; }
.award-badge:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(107,26,42,.1); }
.award-laurel { margin-bottom: 10px; }
.award-laurel img { width: 64px; }
.award-name   { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-weight: 700; color: var(--maroon); margin-bottom: 4px; }
.award-org    { font-size: 11px; color: var(--mid); letter-spacing: .5px; margin-bottom: 4px; }
.award-year   { font-size: 13px; font-weight: 700; color: var(--gold); }

/* ── FAQ ── */
#faq         { padding: 80px 0; background: var(--white); }
.faq-header  { text-align: center; margin-bottom: 50px; }
.faq-sub     { color: var(--mid); font-size: 15px; }
.faq-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 960px; margin: 0 auto; }
.faq-item    { border: 1.5px solid var(--border); border-radius: 4px; overflow: hidden; }
.faq-q       {
  width: 100%; text-align: left; padding: 18px 22px; background: var(--cream);
  border: none; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--charcoal);
  display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: background .2s;
}
.faq-q:hover { background: var(--cream2); }
.faq-q.open  { background: var(--maroon); color: var(--white); }
.faq-icon    { font-size: 18px; flex-shrink: 0; transition: transform .3s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a       { max-height: 0; overflow: hidden; transition: max-height .35s ease; font-size: 13.5px; line-height: 1.7; color: var(--mid); padding: 0 22px; }
.faq-a.open  { max-height: 200px; padding: 16px 22px; }

/* ── CONTACT / BOTTOM FORM ── */
#contact        { padding: 80px 0; background: linear-gradient(135deg, var(--maroon) 0%, #4a0e1a 100%); }
.contact-inner  { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-left   { color: var(--white); }
.contact-left .section-label { color: var(--gold-lt); }
.contact-left .section-title { color: var(--white); }
.contact-left p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.8); margin: 20px 0 32px; }
.contact-info   { display: flex; flex-direction: column; gap: 18px; }
.ci-item        { display: flex; align-items: flex-start; gap: 14px; }
.ci-icon        { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.ci-text strong { display: block; font-size: 13px; letter-spacing: .5px; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 2px; }
.ci-text span, .ci-text a { font-size: 15px; color: rgba(255,255,255,.9); text-decoration: none; }
.ci-text a:hover { color: var(--gold-lt); }
.contact-urgency { background: rgba(255,255,255,.1); border: 1px solid rgba(201,168,76,.4); border-radius: 4px; padding: 16px 20px; margin-top: 28px; font-size: 13.5px; color: rgba(255,255,255,.9); line-height: 1.6; }
.contact-urgency strong { color: var(--gold-lt); }
.contact-form-wrap { background: var(--white); border-radius: 6px; padding: 40px 36px; }

/* ── FOOTER ── */
footer         { background: #0F0A06; color: rgba(255,255,255,.7); padding: 60px 0 0; }
.footer-inner  { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img  { height: 40px; filter: brightness(0) invert(1); }
.footer-brand p    { font-size: 13.5px; line-height: 1.8; margin: 16px 0 24px; max-width: 280px; }
.footer-social     { display: flex; gap: 12px; }
.footer-social a   { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); text-decoration: none; font-size: 13px; transition: all .25s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4     { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col a      { display: block; font-size: 13.5px; color: rgba(255,255,255,.65); text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover{ color: var(--white); }
.footer-bottom     { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; font-size: 12px; color: rgba(255,255,255,.4); }
.footer-bottom a   { color: rgba(255,255,255,.4); text-decoration: none; }

/* ── STICKY & FLOATS ── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--white); border-top: 1.5px solid var(--border);
  padding: 14px 24px; display: none; align-items: center; justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.sticky-cta.visible { display: flex; }
.sticky-cta p       { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.sticky-cta p span  { color: var(--maroon); }
.sc-btns {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
}
.whatsapp-float {
  position: fixed; bottom: 80px; right: 20px; z-index: 901;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25); text-decoration: none;
  font-size: 26px; color: var(--white); transition: transform .3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ── FADE-IN ANIMATION ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.venue-card i {
    color: #fff;
}
.stars-row i {
    color: #ffba18;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr; max-width: 600px; }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
  .venues-grid   { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .about-inner   { grid-template-columns: 1fr; }
  .about-images  { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .g-item.tall   { grid-row: span 1; }
  .g-item.wide   { grid-column: span 1; }
}
@media (max-width: 768px) {
  .nav-links, .nav-call { display: none; }
  .hamburger    { display: flex; }
  .form-row     { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .venues-grid  { grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .faq-grid     { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .sticky-cta p { font-size: 12px; }
  .awards-grid  { gap: 16px; }
  .award-badge  { width: 140px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  nav .btn-primary { display: none; }
}
