/* ===== DESIGN TOKENS ===== */
:root {
  --maroon: #6b1e3c;
  --maroon-deep: #4a1329;
  --gold: #c8a15a;
  --gold-soft: #e3c98f;
  --blush: #f7ede8;
  --cream: #fbf7f2;
  --ink: #2b2028;
  --muted: #7a6b72;
  --white: #ffffff;
  --line: #ece3dc;
  --shadow-sm: 0 6px 20px rgba(74, 19, 41, 0.08);
  --shadow-md: 0 18px 50px rgba(74, 19, 41, 0.14);
  --radius: 18px;
  --radius-lg: 28px;
  --serif: "Marcellus", "Times New Roman", serif;
  --display: "Marcellus", "Times New Roman", serif;
  --sans: "Marcellus", "Times New Roman", serif;
  --maxw: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 500; font-size: 0.95rem;
  padding: 14px 26px; border-radius: 999px; border: none;
  cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--maroon); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--maroon-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--maroon); border: 1.5px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-light { background: #fff; color: var(--maroon); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(251, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(74,19,41,.06);
  padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 1.55rem; font-weight: 700; color: #fff; }
.logo .custom-logo { display: block; width: auto; max-width: 220px; height: 54px; object-fit: contain; }
.site-header.scrolled .logo { color: var(--maroon); }
.logo-text em { color: var(--gold); font-style: italic; }
.logo-light { color: #fff; }

.menu { margin: 0; padding: 0; list-style: none; }
.nav, .header-menu { display: flex; align-items: center; gap: 30px; }
.header-menu .menu-item { position: relative; list-style: none; }
.nav a { color: rgba(255,255,255,.9); font-weight: 400; font-size: .95rem; transition: color .2s; }
.nav a:hover { color: var(--gold-soft); }
.site-header.scrolled .nav a { color: var(--ink); }
.site-header.scrolled .nav a:hover { color: var(--maroon); }
.header-menu > .menu-item:last-child > a {
  display: inline-flex; padding: 11px 22px; border: 1.5px solid var(--gold); border-radius: 999px;
  color: var(--maroon) !important; background: var(--gold-soft); white-space: nowrap;
}
.header-menu .sub-menu {
  position: absolute; top: calc(100% + 12px); left: -18px; min-width: 210px; padding: 12px;
  border-radius: 12px; background: var(--maroon-deep); box-shadow: var(--shadow-md); list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease;
}
.header-menu .menu-item:hover > .sub-menu, .header-menu .menu-item:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.header-menu .sub-menu a { display: block; padding: 8px 10px; color: #fff !important; white-space: nowrap; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: .3s; }
.site-header.scrolled .nav-toggle span { background: var(--maroon); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: url("https://img.magnific.com/free-photo/traditional-indian-wedding-dress-bride-attire-groom_8353-9784.jpg") center 32%/cover no-repeat;
  padding: 140px 0 60px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(74,19,41,.55) 0%, rgba(43,32,40,.35) 40%, rgba(74,19,41,.75) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; }
.hero-eyebrow {
  font-family: var(--sans); letter-spacing: .28em; text-transform: uppercase;
  font-size: .78rem; color: var(--gold-soft); margin-bottom: 18px; font-weight: 500;
}
.hero-title {
  font-family: var(--serif); font-weight: 600; font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 1.05; margin-bottom: 18px;
}
.hero-title span { color: var(--gold-soft); font-style: italic; }
.hero-sub { max-width: 620px; margin: 0 auto 40px; font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,.9); font-weight: 300; }

/* ===== SEARCH BAR ===== */
.search-bar {
  display: flex; align-items: flex-end; gap: 8px; flex-wrap: wrap;
  background: rgba(255,255,255,.96); padding: 16px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); max-width: 940px; margin: 0 auto;
}
.search-field { flex: 1 1 180px; text-align: left; padding: 6px 14px; }
.search-field + .search-field { border-left: 1px solid var(--line); }
.search-field label {
  display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: 4px; padding-left: 26px;
}
.field-input { display: flex; align-items: center; gap: 8px; }
.field-input input, .field-input select {
  border: none; outline: none; background: transparent; font-family: var(--sans);
  font-size: .98rem; color: var(--ink); width: 100%; cursor: pointer;
}
.field-input input { cursor: text; }
.search-btn { flex: 0 0 auto; margin: 0 0 2px; height: 54px; font-size: 1rem; }

.hero-stats {
  display: flex; justify-content: center; gap: 46px; margin-top: 44px; flex-wrap: wrap;
}
.hero-stats div { text-align: center; }
.hero-stats strong { display: block; font-family: var(--serif); font-size: 2rem; color: #fff; }
.hero-stats span { font-size: .82rem; color: var(--gold-soft); letter-spacing: .05em; }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--blush); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.eyebrow {
  font-size: .78rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--maroon); line-height: 1.1; margin-bottom: 16px;
}
.section-desc { color: var(--muted); font-size: 1.02rem; font-weight: 300; }

/* ===== FEATURED (big stacked cards) ===== */
.featured-list { display: flex; flex-direction: column; gap: 40px; }
.feature-card {
  display: grid; grid-template-columns: 1.15fr 1fr; background: #fff;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.feature-card:nth-child(even) { grid-template-columns: 1fr 1.15fr; }
.feature-card:nth-child(even) .feature-media { order: 2; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-media { position: relative; min-height: 340px; overflow: hidden; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.feature-card:hover .feature-media img { transform: scale(1.06); }
.feature-badge {
  position: absolute; top: 18px; left: 18px; background: var(--gold); color: #fff;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  padding: 7px 16px; border-radius: 999px;
}
.feature-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.feature-loc { color: var(--gold); font-size: .85rem; font-weight: 500; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.feature-body h3 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--maroon); line-height: 1.15; margin-bottom: 14px; }
.feature-body p { color: var(--muted); font-weight: 300; margin-bottom: 22px; }
.feature-meta { display: flex; gap: 24px; margin-bottom: 26px; flex-wrap: wrap; }
.feature-meta span { font-size: .88rem; color: var(--ink); display: flex; align-items: center; gap: 7px; }
.feature-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.feature-price strong { font-family: var(--serif); font-size: 1.5rem; color: var(--maroon); }
.feature-price span { font-size: .82rem; color: var(--muted); }

.rating { display: inline-flex; align-items: center; gap: 5px; background: var(--blush); color: var(--maroon); font-weight: 600; font-size: .82rem; padding: 5px 12px; border-radius: 999px; }

/* ===== VENUE GRID ===== */
.filter-chips { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.chip {
  border: 1.5px solid var(--line); background: #fff; color: var(--muted);
  padding: 9px 22px; border-radius: 999px; font-family: var(--sans); font-size: .9rem;
  cursor: pointer; transition: .25s;
}
.chip:hover { border-color: var(--gold); color: var(--maroon); }
.chip.active { background: var(--maroon); border-color: var(--maroon); color: #fff; }

.venue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.venue-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .35s ease, box-shadow .35s ease;
  display: flex; flex-direction: column;
}
.venue-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.venue-media { position: relative; height: 220px; overflow: hidden; }
.venue-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.venue-card:hover .venue-media img { transform: scale(1.07); }
.venue-tag {
  position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92);
  color: var(--maroon); font-size: .72rem; font-weight: 600; padding: 5px 12px; border-radius: 999px;
}
.venue-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.venue-loc { color: var(--gold); font-size: .82rem; margin-bottom: 6px; display: flex; align-items: center; gap: 5px; }
.venue-body h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--maroon); margin-bottom: 10px; }
.venue-info { display: flex; gap: 16px; color: var(--muted); font-size: .82rem; margin-bottom: 18px; flex-wrap: wrap; }
.venue-info span { display: flex; align-items: center; gap: 5px; }
.venue-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 16px; }
.venue-foot .price strong { font-family: var(--serif); font-size: 1.2rem; color: var(--maroon); }
.venue-foot .price span { font-size: .74rem; color: var(--muted); display: block; }
.venue-foot a { color: var(--maroon); font-size: .88rem; font-weight: 500; display: inline-flex; align-items: center; gap: 5px; }
.venue-foot a:hover { color: var(--gold); }

.empty { text-align: center; color: var(--muted); grid-column: 1/-1; padding: 40px; }

/* ===== LOCATIONS ===== */
.location-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.location-card {
  position: relative; height: 300px; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; box-shadow: var(--shadow-sm);
}
.location-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.location-card:hover img { transform: scale(1.08); }
.location-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(74,19,41,.85) 100%);
}
.location-label { position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2; color: #fff; }
.location-label h3 { font-family: var(--serif); font-size: 1.5rem; }
.location-label span { font-size: .82rem; color: var(--gold-soft); }

/* ===== STEPS ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.step { text-align: center; padding: 40px 28px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .3s; }
.step:hover { transform: translateY(-6px); }
.step-num { font-family: var(--serif); font-size: 2.6rem; color: var(--gold); margin-bottom: 12px; }
.step h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--maroon); margin-bottom: 10px; }
.step p { color: var(--muted); font-weight: 300; font-size: .95rem; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(120deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: #fff; padding: 70px 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-inner h2 { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,.85); font-weight: 300; max-width: 520px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--maroon-deep); color: rgba(255,255,255,.8); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-bottom: 46px; }
.footer-brand p { margin-top: 16px; font-weight: 300; max-width: 280px; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-weight: 600; margin-bottom: 18px; font-size: 1rem; }
.site-footer a { display: block; color: rgba(255,255,255,.7); margin-bottom: 12px; font-weight: 300; transition: color .2s; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 26px; font-size: .85rem; font-weight: 300; }
.footer-bottom a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal-menu { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal-menu a { margin-bottom: 0; }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   INNER PAGES
   ============================================================ */

/* Solid header for inner pages (no hero behind it) */
.site-header.solid {
  background: rgba(251, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(74,19,41,.06);
  padding: 12px 0;
}
.site-header.solid .logo { color: var(--maroon); }
.site-header.solid .nav a { color: var(--ink); }
.site-header.solid .nav a:hover { color: var(--maroon); }
.site-header.solid .nav-toggle span { background: var(--maroon); }

/* Inner page banner */
.inner-hero {
  position: relative; padding: 170px 0 80px; color: #fff; text-align: center;
  background: linear-gradient(rgba(74,19,41,.72), rgba(43,32,40,.82)),
              url("https://img.magnific.com/free-photo/love-story-indian-couple-posed-outdoor-sitting-bench-together_627829-13661.jpg") center 40%/cover;
}
.inner-hero .eyebrow { color: var(--gold-soft); }
.inner-hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 12px; }
.inner-hero p { max-width: 620px; margin: 0 auto; color: rgba(255,255,255,.9); font-weight: 300; }

/* Breadcrumb */
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.8); margin-bottom: 18px; }
.breadcrumb a { color: var(--gold-soft); }
.breadcrumb span { margin: 0 8px; opacity: .6; }

/* ===== VENUE DETAIL ===== */
.detail-top { padding: 150px 0 30px; }
.detail-crumb { font-size: .85rem; color: var(--muted); margin-bottom: 16px; }
.detail-crumb a { color: var(--maroon); }
.detail-crumb span { margin: 0 8px; }
.detail-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.detail-head h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 4vw, 3rem); color: var(--maroon); line-height: 1.1; }
.detail-head .venue-loc { font-size: .95rem; margin-top: 8px; }
.detail-head .rating { font-size: .95rem; padding: 8px 16px; }

/* Gallery */
.gallery { display: grid; grid-template-columns: 3fr 1fr; gap: 14px; margin-bottom: 20px; }
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; height: 460px; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-rows: repeat(4, 1fr); gap: 14px; }
.thumb { border-radius: var(--radius); overflow: hidden; cursor: pointer; height: 106px; border: 2px solid transparent; transition: border-color .2s; }
.thumb.active { border-color: var(--gold); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Detail body layout */
.detail-wrap { display: grid; grid-template-columns: 1fr 380px; gap: 46px; align-items: start; padding-bottom: 96px; }
.detail-block { margin-bottom: 48px; }
.detail-block h2 { font-family: var(--serif); font-size: 1.8rem; color: var(--maroon); margin-bottom: 18px; }
.detail-block p { color: var(--muted); margin-bottom: 14px; }

.quick-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 46px; }
.fact { background: var(--blush); border-radius: var(--radius); padding: 22px 18px; text-align: center; }
.fact .ic { font-size: 1.4rem; }
.fact strong { display: block; font-family: var(--serif); font-size: 1.15rem; color: var(--maroon); margin-top: 6px; }
.fact span { font-size: .78rem; color: var(--muted); }

.amenities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 26px; }
.amenities li { list-style: none; display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: .95rem; }

.highlight-list li { list-style: none; display: flex; gap: 14px; margin-bottom: 18px; color: var(--muted); }
.highlight-list strong { display: block; color: var(--maroon); font-family: var(--serif); font-size: 1.15rem; margin-bottom: 2px; }

/* Accordion */
.accordion-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; background: #fff; }
.accordion-head { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; font-weight: 500; color: var(--maroon); }
.accordion-head .price-tag { color: var(--gold); font-family: var(--serif); font-size: 1.1rem; }
.accordion-head .plus { transition: transform .3s; color: var(--gold); font-size: 1.3rem; }
.accordion-item.open .plus { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-item.open .accordion-body { max-height: 320px; }
.accordion-body-inner { padding: 0 24px 22px; color: var(--muted); }
.accordion-body-inner ul { padding-left: 18px; margin-top: 8px; }

/* Booking card (sticky) */
.booking-card {
  position: sticky; top: 100px; background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 30px; border: 1px solid var(--line);
}
.booking-card .price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.booking-card .price-row strong { font-family: var(--serif); font-size: 2rem; color: var(--maroon); }
.booking-card .price-row span { color: var(--muted); font-size: .85rem; }
.booking-card .sub { color: var(--muted); font-size: .85rem; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.booking-card .form-group { margin-bottom: 14px; }
.booking-card .btn { width: 100%; justify-content: center; }
.booking-card .assurance { text-align: center; font-size: .8rem; color: var(--muted); margin-top: 14px; }
.booking-card .call { text-align: center; margin-top: 16px; font-size: .9rem; }
.booking-card .call a { color: var(--maroon); font-weight: 600; }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.review { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--maroon); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.1rem; }
.review-top strong { display: block; color: var(--ink); }
.review-top span { font-size: .8rem; color: var(--muted); }
.review .stars { color: var(--gold); margin-bottom: 8px; }
.review p { color: var(--muted); font-size: .92rem; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 20px; display: flex; flex-direction: column; }
.form-group label { font-size: .85rem; font-weight: 500; color: var(--ink); margin-bottom: 7px; }
.form-group label .req { color: var(--maroon); }
.form-control {
  font-family: var(--sans); font-size: .95rem; color: var(--ink); background: var(--cream);
  border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 16px; outline: none;
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,161,90,.18); background: #fff; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-error { color: #b23a48; font-size: .78rem; margin-top: 6px; display: none; }
.form-group.invalid .form-control { border-color: #d46a76; background: #fdf3f4; }
.form-group.invalid .field-error { display: block; }
.form-success {
  background: #eaf6ec; color: #2f7d46; border: 1px solid #bfe3c7; border-radius: 12px;
  padding: 14px 18px; font-size: .9rem; margin-top: 16px; display: none;
}
.form-success.show { display: block; animation: pop .4s ease; }
@keyframes pop { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Consultation page layout */
.consult-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.consult-info h2 { font-family: var(--serif); font-size: 2.2rem; color: var(--maroon); margin-bottom: 16px; }
.consult-info > p { color: var(--muted); margin-bottom: 28px; }
.consult-perks li { list-style: none; display: flex; gap: 14px; margin-bottom: 20px; }
.consult-perks strong { display: block; color: var(--maroon); font-family: var(--serif); font-size: 1.15rem; }
.consult-perks span { color: var(--muted); font-size: .9rem; }
.form-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 40px; border: 1px solid var(--line); }
.form-card h3 { font-family: var(--serif); font-size: 1.6rem; color: var(--maroon); margin-bottom: 6px; }
.form-card .form-lead { color: var(--muted); font-size: .9rem; margin-bottom: 26px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-story img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); height: 460px; width: 100%; object-fit: cover; }
.about-story h2 { font-family: var(--serif); font-size: 2.4rem; color: var(--maroon); margin-bottom: 18px; }
.about-story p { color: var(--muted); margin-bottom: 16px; }
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-band .stat { text-align: center; }
.stat-band strong { display: block; font-family: var(--serif); font-size: 2.6rem; color: var(--gold); }
.stat-band span { color: var(--muted); font-size: .9rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value-card { background: #fff; border-radius: var(--radius); padding: 34px 28px; box-shadow: var(--shadow-sm); transition: transform .3s; }
.value-card:hover { transform: translateY(-6px); }
.value-card h3 { font-family: var(--serif); font-size: 1.35rem; color: var(--maroon); margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: .93rem; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card { text-align: center; }
.team-card img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius); margin-bottom: 16px; }
.team-card h3 { font-family: var(--serif); font-size: 1.25rem; color: var(--maroon); }
.team-card span { color: var(--gold); font-size: .85rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-info h2 { font-family: var(--serif); font-size: 2rem; color: var(--maroon); margin-bottom: 16px; }
.contact-info > p { color: var(--muted); margin-bottom: 30px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-item strong { display: block; color: var(--maroon); font-family: var(--serif); font-size: 1.15rem; margin-bottom: 3px; }
.contact-item span, .contact-item a { color: var(--muted); font-size: .93rem; display: block; }
.contact-item a:hover { color: var(--gold); }
.contact-socials { display: flex; gap: 12px; margin-top: 30px; }
.contact-socials a { background: var(--blush); color: var(--maroon); display: flex; align-items: center; justify-content: center; padding: 8px 12px; border-radius: 999px; font-size: .85rem; transition: .25s; }
.contact-socials a:hover { background: var(--maroon); color: #fff; transform: translateY(-3px); }
.map-embed { margin-top: 30px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ============================================================
   ALL VENUES PAGE
   ============================================================ */
.nav a[aria-current="page"] { color: var(--gold-soft); }
.site-header.scrolled .nav a[aria-current="page"] { color: var(--maroon); font-weight: 600; }
.venues-hero {
  position: relative; min-height: 76vh; display: flex; align-items: center;
  background: url("https://img.magnific.com/free-photo/hindu-indian-wedding-ceremony-rituals-traditions-vivaah-homa-sacred-fire-rituals_181624-58217.jpg") center 46%/cover no-repeat;
  padding: 150px 0 86px;
}
.venues-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43,32,40,.42), rgba(74,19,41,.78)); }
.venues-hero-content { position: relative; z-index: 1; color: #fff; text-align: center; }
.venues-hero h1 { max-width: 820px; margin: 0 auto 20px; font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.06; font-weight: 600; }
.venues-hero h1 span { color: var(--gold-soft); font-style: italic; }
.venues-hero-content > p { max-width: 660px; margin: 0 auto 38px; color: rgba(255,255,255,.9); font-size: 1.08rem; font-weight: 300; }
.venues-search { display: flex; align-items: flex-end; max-width: 820px; margin: 0 auto; padding: 15px; border-radius: var(--radius-lg); background: rgba(255,255,255,.97); box-shadow: var(--shadow-md); }
.venues-search .search-field { min-width: 0; }
.venues-search .search-btn { min-width: 150px; justify-content: center; }
.catalogue-count { margin: -24px 0 28px; color: var(--muted); font-size: .88rem; text-align: center; }
.all-venues-grid { align-items: stretch; }
.all-venues-grid .venue-card { min-height: 420px; }

.venue-enquiry { position: relative; overflow: hidden; padding: 100px 0; background: var(--maroon-deep); color: #fff; }
.venue-enquiry::before { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(227,201,143,.18); border-radius: 50%; left: -250px; top: -230px; }
.venue-enquiry-wrap { position: relative; display: grid; grid-template-columns: 1fr .92fr; gap: 78px; align-items: center; }
.venue-enquiry-copy .eyebrow { color: var(--gold-soft); }
.venue-enquiry-copy h2 { max-width: 630px; font-family: var(--serif); font-size: clamp(2.35rem, 4.5vw, 4rem); line-height: 1.12; font-weight: 600; margin-bottom: 24px; }
.venue-enquiry-copy > p { max-width: 590px; color: rgba(255,255,255,.74); font-weight: 300; margin-bottom: 38px; }
.enquiry-promises { display: grid; gap: 20px; }
.enquiry-promises div { padding-left: 22px; border-left: 2px solid var(--gold); }
.enquiry-promises strong { display: block; font-family: var(--serif); font-size: 1.15rem; margin-bottom: 2px; }
.enquiry-promises span { color: rgba(255,255,255,.65); font-size: .88rem; }
.venue-enquiry-form { background: #fff; color: var(--ink); padding: 42px; border-radius: var(--radius-lg); box-shadow: 0 28px 70px rgba(20,5,12,.28); }
.venue-enquiry-form h3 { font-family: var(--serif); color: var(--maroon); font-size: 1.8rem; line-height: 1.2; margin-bottom: 6px; }
.venue-enquiry-form > p { color: var(--muted); font-size: .9rem; margin-bottom: 26px; }
.venue-enquiry-form .btn { width: 100%; justify-content: center; }

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.privacy-hero {
  position: relative; min-height: 470px; display: flex; align-items: center;
  padding: 150px 0 80px;
  background: url("https://img.magnific.com/free-photo/hands-indian-bride-groom-intertwined-together-making-authentic-wedding-ritual_8353-10047.jpg") center 52%/cover no-repeat;
}
.privacy-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43,32,40,.46), rgba(74,19,41,.82)); }
.privacy-hero-content { position: relative; z-index: 1; color: #fff; text-align: center; }
.privacy-hero h1 { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 4.8rem); line-height: 1.05; font-weight: 600; margin-bottom: 18px; }
.privacy-hero p { max-width: 680px; margin: 0 auto 18px; color: rgba(255,255,255,.88); font-size: 1.05rem; font-weight: 300; }
.privacy-hero span { color: var(--gold-soft); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.privacy-section { background: var(--cream); }
.privacy-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 50px; align-items: start; }
.privacy-nav { position: sticky; top: 110px; padding: 26px; background: var(--blush); border: 1px solid var(--line); border-radius: var(--radius); }
.privacy-nav > p { color: var(--maroon); font-family: var(--serif); font-size: 1.25rem; font-weight: 600; margin-bottom: 16px; }
.privacy-nav nav { display: grid; gap: 10px; }
.privacy-nav a { color: var(--muted); font-size: .82rem; line-height: 1.4; transition: color .2s ease; }
.privacy-nav a:hover { color: var(--maroon); }
.privacy-content { padding: 52px 58px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.privacy-content section { scroll-margin-top: 110px; }
.privacy-content section + section { margin-top: 44px; padding-top: 42px; border-top: 1px solid var(--line); }
.privacy-content h2 { color: var(--maroon); font-family: var(--serif); font-size: clamp(1.55rem, 3vw, 2rem); line-height: 1.25; margin-bottom: 16px; }
.privacy-content h3 { color: var(--ink); font-family: var(--serif); font-size: 1.2rem; margin: 24px 0 10px; }
.privacy-content p { color: var(--muted); margin-bottom: 14px; }
.privacy-content ul { padding-left: 22px; color: var(--muted); }
.privacy-content li { margin-bottom: 10px; padding-left: 6px; }
.privacy-content strong { color: var(--ink); }
.privacy-content address { padding: 22px 24px; background: var(--blush); border-left: 3px solid var(--gold); border-radius: 0 12px 12px 0; color: var(--muted); font-style: normal; line-height: 1.8; }
.privacy-content address a { color: var(--maroon); font-weight: 500; }

/* Inner-page responsive */
@media (max-width: 960px) {
  .detail-wrap { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-thumbs { grid-template-rows: none; grid-template-columns: repeat(4, 1fr); }
  .thumb { height: 80px; }
  .quick-facts { grid-template-columns: repeat(2, 1fr); }
  .amenities { grid-template-columns: repeat(2, 1fr); }
  .consult-wrap, .about-story, .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .venue-enquiry-wrap { grid-template-columns: 1fr; gap: 48px; }
  .privacy-layout { grid-template-columns: 1fr; gap: 28px; }
  .privacy-nav { position: static; }
  .privacy-nav nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .quick-facts, .amenities, .form-row, .stat-band, .team-grid { grid-template-columns: 1fr; }
  .form-card, .consult-info { padding: 0; }
  .form-card { padding: 28px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .venue-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-card, .feature-card:nth-child(even) { grid-template-columns: 1fr; }
  .feature-card:nth-child(even) .feature-media { order: 0; }
  .feature-media { min-height: 260px; }
}
@media (max-width: 760px) {
  .nav {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 74%;
    background: var(--maroon-deep); flex-direction: column; align-items: flex-start;
    padding: 100px 34px; gap: 22px; transition: right .35s ease; box-shadow: -10px 0 40px rgba(0,0,0,.3);
  }
  .header-menu { width: 100%; flex-direction: column; align-items: stretch; gap: 22px; }
  .header-menu .sub-menu { position: static; display: none; margin: 10px 0 0 14px; padding: 0 0 0 14px; border-left: 1px solid rgba(255,255,255,.25); background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .header-menu .menu-item:hover > .sub-menu, .header-menu .menu-item:focus-within > .sub-menu { display: block; }
  .header-menu > .menu-item:last-child > a { justify-content: center; }
  .nav.open { right: 0; }
  .nav a { color: #fff !important; font-size: 1.05rem; }
  .site-header.scrolled .nav a { color: #fff; }
  .nav-toggle { display: flex; z-index: 200; }
  .search-field + .search-field { border-left: none; border-top: 1px solid var(--line); }
  .search-btn { width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 30px; }
  .venues-hero { min-height: auto; padding: 130px 0 70px; }
  .venues-search { display: grid; gap: 4px; }
  .venues-search .search-field + .search-field { border-left: none; border-top: 1px solid var(--line); }
  .venues-search .search-btn { width: 100%; }
}
@media (max-width: 520px) {
  .venue-grid, .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .feature-body { padding: 30px; }
  .venue-enquiry { padding: 74px 0; }
  .venue-enquiry-form { padding: 28px 22px; }
  .privacy-hero { min-height: 410px; padding: 130px 0 66px; }
  .privacy-content { padding: 34px 24px; }
  .privacy-nav nav { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
