:root {
  --navy: #071424;
  --navy-soft: #102942;
  --blue: #4045a2;
  --blue-light: #eaf4ff;
  --gold: #d9b66f;
  --gold-dark: #b88e43;
  --ink: #17212d;
  --muted: #647282;
  --white: #ffffff;
  --line: rgba(23, 33, 45, 0.12);
  --shadow: 0 22px 55px rgba(7, 20, 36, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 82px; }
body { margin: 0; color: var(--ink); background: #fff; font-family: "DM Sans", Arial, sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: rgba(5, 15, 27, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand { width: clamp(190px, 19vw, 270px); }
.brand img { width: 100%; filter: brightness(0) invert(1); }
nav { display: flex; gap: clamp(16px, 2.7vw, 36px); font-size: 14px; font-weight: 600; }
nav a { transition: color .2s ease; }
nav a:hover { color: var(--gold); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .event-card:focus-visible, .menu-event-tabs button:focus-visible, .gallery-grid button:focus-visible, .album-grid button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.button-gold { color: #17120b; background: var(--gold); }
.button-gold:hover { background: #ebcc8d; }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); }
.button-outline { color: var(--blue); border-color: rgba(64,69,162,.28); background: transparent; }
.button-outline:hover { color: var(--white); background: var(--blue); border-color: var(--blue); }

.hero {
  position: relative;
  min-height: min(740px, calc(100svh - 42px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.hero-background, .hero-shade { position: absolute; inset: 0; }
.hero-background img { width: 100%; height: 100%; object-fit: cover; }
.hero-shade { background: linear-gradient(90deg, rgba(3,11,20,.95), rgba(3,11,20,.72) 53%, rgba(3,11,20,.5)); }
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  padding: 100px 0 30px;
}
.hero-copy { max-width: 700px; }
.eyebrow { margin: 0 0 14px; color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.light { color: var(--gold); }
h1, h2 { margin: 0; font-family: "Playfair Display", Georgia, serif; line-height: 1.04; }
h1 { font-size: clamp(52px, 6vw, 84px); }
h2 { font-size: clamp(38px, 5vw, 68px); }
h3 { margin: 0; }
p { line-height: 1.7; }
.hero-copy > p:not(.eyebrow) { max-width: 650px; margin: 24px 0 30px; color: rgba(255,255,255,.8); font-size: clamp(17px, 1.5vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-showcase { border: 1px solid rgba(255,255,255,.4); border-radius: 12px; padding: 10px; background: rgba(0,0,0,.22); box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.showcase-frame { position: relative; aspect-ratio: 5 / 6; overflow: hidden; border-radius: 8px; background: #000; }
.showcase-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.05); transition: opacity .8s ease, transform 4s ease; }
.showcase-slide.active { opacity: 1; transform: scale(1); }
.showcase-caption { display: flex; align-items: center; gap: 10px; padding: 13px 4px 3px; color: rgba(255,255,255,.82); font-size: 12px; font-weight: 600; text-transform: uppercase; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #60d47b; box-shadow: 0 0 0 6px rgba(96,212,123,.15); }

.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border-bottom: 1px solid var(--line); }
.stats-strip article { min-height: 130px; display: grid; place-content: center; gap: 5px; padding: 20px; text-align: center; border-right: 1px solid var(--line); }
.stats-strip article:last-child { border-right: 0; }
.stats-strip strong { color: var(--blue); font-family: "Playfair Display", Georgia, serif; font-size: clamp(34px, 4vw, 52px); }
.stats-strip span { color: var(--muted); font-size: 13px; font-weight: 600; text-transform: uppercase; }

.about-section, .events-section, .promise-section, .gallery-section, .trust-section, .faq-section { padding: clamp(72px, 9vw, 130px) clamp(18px, 6vw, 88px); }
.about-section { display: grid; grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr); gap: clamp(40px, 8vw, 110px); align-items: center; background: #f7f9fb; }
.about-images { position: relative; min-height: 570px; }
.about-main { position: absolute; inset: 0 12% 10% 0; width: 88%; height: 90%; object-fit: cover; box-shadow: var(--shadow); }
.about-accent { position: absolute; right: 0; bottom: 0; width: 43%; height: 42%; object-fit: cover; border: 8px solid #f7f9fb; box-shadow: var(--shadow); }
.about-images span { position: absolute; top: 24px; right: 0; padding: 18px 22px; color: var(--white); background: var(--blue); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.about-images strong { font-family: "Playfair Display", Georgia, serif; font-size: 32px; }
.section-copy { max-width: 680px; }
.section-copy h2 { margin-bottom: 24px; }
.section-copy p { color: var(--muted); font-size: 17px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 15px; color: var(--blue); font-weight: 700; }

.video-section {
  display: grid;
  grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr);
  gap: clamp(35px, 7vw, 100px);
  align-items: center;
  padding: clamp(72px, 9vw, 130px) clamp(18px, 6vw, 88px);
  color: var(--white);
  background: var(--navy);
}
.video-copy { max-width: 520px; }
.video-copy h2 { margin-bottom: 24px; }
.video-copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); font-size: 17px; }
.video-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.video-facts span { display: grid; gap: 2px; padding: 18px 12px; color: rgba(255,255,255,.56); font-size: 11px; text-transform: uppercase; border-right: 1px solid rgba(255,255,255,.16); }
.video-facts span:last-child { border-right: 0; }
.video-facts strong { color: var(--gold); font-size: 14px; }
.video-frame { border: 1px solid rgba(255,255,255,.22); padding: 9px; background: rgba(255,255,255,.05); box-shadow: 0 28px 80px rgba(0,0,0,.28); }
.video-frame video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #000; }

.kolkata-section {
  display: grid;
  grid-template-columns: minmax(280px, .58fr) minmax(0, 1.42fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: center;
  padding: clamp(72px, 9vw, 130px) clamp(18px, 6vw, 88px);
  background: #f4f8fc;
  overflow: hidden;
}
.kolkata-intro { max-width: 560px; }
.kolkata-intro h2 { margin-bottom: 24px; }
.kolkata-intro p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.kolkata-collage { display: grid; grid-template-columns: .8fr 1.2fr; grid-template-rows: 220px 310px; gap: 10px; }
.kolkata-collage figure { position: relative; margin: 0; overflow: hidden; background: var(--navy); }
.kolkata-collage img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .6s ease; }
.kolkata-collage figure:hover img { transform: scale(1.035); filter: saturate(1.08); }
.kolkata-collage figcaption { position: absolute; left: 14px; bottom: 14px; padding: 7px 10px; color: var(--white); background: rgba(5,15,27,.8); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.city-howrah { grid-column: 1 / -1; }
.city-howrah img { object-position: center 46%; }

.section-heading { max-width: 820px; margin-bottom: 42px; }
.section-heading h2 { margin-bottom: 16px; }
.section-heading > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.events-section { background: var(--white); }
.events-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.event-card { min-height: 210px; display: grid; align-content: space-between; gap: 26px; padding: 24px; border: 1px solid var(--line); border-radius: 4px; background: #fff; text-align: left; transition: transform .22s ease, color .22s ease, background .22s ease, box-shadow .22s ease; }
.event-card:hover, .event-card.active { transform: translateY(-7px); color: var(--white); background: var(--navy-soft); box-shadow: var(--shadow); }
.event-card span { color: var(--gold-dark); font-size: 12px; font-weight: 700; }
.event-card h3 { font-family: "Playfair Display", Georgia, serif; font-size: 26px; }
.event-card p { margin: 0; color: var(--muted); font-size: 13px; }
.event-card:hover p, .event-card.active p { color: rgba(255,255,255,.68); }

.menus-section { display: grid; grid-template-columns: minmax(280px, .62fr) minmax(0, 1fr); gap: clamp(30px, 7vw, 90px); padding: clamp(72px, 9vw, 130px) clamp(18px, 6vw, 88px); color: var(--white); background: var(--navy); }
.menu-intro { align-self: start; position: sticky; top: 110px; }
.menu-intro > p:not(.eyebrow) { color: rgba(255,255,255,.65); }
.menu-event-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.menu-event-tabs button { padding: 9px 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: rgba(255,255,255,.7); background: transparent; }
.menu-event-tabs button.active { color: #17120b; background: var(--gold); border-color: var(--gold); }
.menu-browser { border: 1px solid rgba(255,255,255,.15); border-radius: 6px; background: rgba(255,255,255,.05); overflow: hidden; }
.menu-browser-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px; border-bottom: 1px solid rgba(255,255,255,.14); }
.menu-browser-head span { color: var(--gold); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.menu-browser-head h3 { margin-top: 4px; font-family: "Playfair Display", Georgia, serif; font-size: 34px; }
.menu-courses { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.course { padding: 25px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.course h4 { margin: 0 0 14px; color: var(--gold); font-size: 14px; text-transform: uppercase; }
.course ul { margin: 0; padding: 0; list-style: none; color: rgba(255,255,255,.72); }
.course li { padding: 6px 0; border-bottom: 1px dashed rgba(255,255,255,.1); }

.promise-section { background: var(--blue-light); }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.promise-grid article { min-height: 270px; padding: 30px; border-top: 4px solid var(--blue); background: var(--white); box-shadow: 0 15px 35px rgba(7,20,36,.07); }
.promise-grid span { color: var(--gold-dark); font-weight: 700; }
.promise-grid h3 { margin: 40px 0 12px; font-family: "Playfair Display", Georgia, serif; font-size: 30px; }
.promise-grid p { margin: 0; color: var(--muted); }

.quote-section { display: grid; grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr); gap: clamp(35px, 8vw, 110px); padding: clamp(72px, 9vw, 130px) clamp(18px, 6vw, 88px); color: var(--white); background: linear-gradient(135deg, #091829, #173b5c); }
.quote-copy p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.contact-lines { display: grid; gap: 12px; margin-top: 32px; color: rgba(255,255,255,.75); }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: clamp(22px, 4vw, 38px); border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.quote-form label { display: grid; gap: 8px; color: var(--gold); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.18); border-radius: 3px; padding: 13px; color: var(--white); background: rgba(255,255,255,.08); outline: none; }
.quote-form select option { color: var(--ink); }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--gold); }
.quote-form .full { grid-column: 1 / -1; }

.gallery-section { background: #f7f9fb; }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; grid-auto-rows: 270px; gap: 12px; }
.gallery-grid button { padding: 0; border: 0; overflow: hidden; background: transparent; }
.gallery-grid button:first-child { grid-row: span 2; }
.gallery-grid button:nth-child(5) { grid-column: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid button:hover img { transform: scale(1.05); }
.album-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin: 80px 0 28px; padding-top: 34px; border-top: 1px solid var(--line); }
.album-head .eyebrow { margin-bottom: 8px; }
.album-head h3 { font-family: "Playfair Display", Georgia, serif; font-size: clamp(28px, 4vw, 46px); }
.album-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); grid-auto-rows: 170px; gap: 8px; }
.album-grid button { position: relative; padding: 0; border: 0; overflow: hidden; background: #e4eaf0; }
.album-grid button:nth-child(7n + 1) { grid-row: span 2; }
.album-grid button:nth-child(11n + 4) { grid-column: span 2; }
.album-grid:not(.expanded) button:nth-child(n + 13) { display: none; }
.album-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
.album-grid button:hover img { transform: scale(1.06); filter: saturate(1.08); }

.trust-section { background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.trust-grid article { min-height: 190px; display: grid; place-items: center; align-content: center; gap: 16px; padding: 24px; text-align: center; border-right: 1px solid var(--line); }
.trust-grid article:last-child { border-right: 0; }
.trust-grid img { max-height: 76px; max-width: 160px; object-fit: contain; }
.trust-grid span { color: var(--muted); font-size: 12px; text-transform: uppercase; }
.trust-grid strong { color: var(--ink); }

.venues-section {
  display: grid;
  grid-template-columns: minmax(280px, .58fr) minmax(0, 1.42fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  padding: clamp(72px, 9vw, 130px) clamp(18px, 6vw, 88px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(64,69,162,.35), transparent 34%),
    linear-gradient(135deg, #06111f, #102942 58%, #071424);
  overflow: hidden;
}
.venues-copy { max-width: 620px; }
.venues-copy h2 { margin-bottom: 24px; }
.venues-copy p:not(.eyebrow) { color: rgba(255,255,255,.7); font-size: 17px; }
.venues-copy .text-link { color: var(--gold); }
.venues-showcase { display: grid; grid-template-columns: minmax(220px, .75fr) minmax(0, 1fr); gap: 18px; align-items: stretch; }
.venue-photo-stack { position: relative; min-height: 590px; }
.venue-photo-stack img {
  position: absolute;
  width: 72%;
  height: 44%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 26px 70px rgba(0,0,0,.34);
}
.venue-photo-stack img:first-child { top: 0; left: 0; height: 52%; }
.venue-photo-stack img:nth-child(2) { top: 32%; right: 0; }
.venue-photo-stack img:nth-child(3) { bottom: 0; left: 8%; width: 60%; height: 32%; }
.venue-board { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.venue-board article {
  min-height: 172px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}
.venue-board article:hover { transform: translateY(-6px); border-color: rgba(217,182,111,.55); background: rgba(255,255,255,.11); }
.venue-board span { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.venue-board strong { font-family: "Playfair Display", Georgia, serif; font-size: clamp(25px, 2.4vw, 34px); line-height: 1.05; }
.venue-board p { margin: 0; color: rgba(255,255,255,.64); font-size: 13px; line-height: 1.55; }

.faq-section { display: grid; grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr); gap: clamp(32px, 8vw, 120px); background: var(--blue-light); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 22px 0; font-weight: 700; cursor: pointer; }
.faq-list p { margin: 0 0 22px; color: var(--muted); }

.reviews-section { padding: clamp(72px, 9vw, 130px) clamp(18px, 6vw, 88px); background: var(--blue-light); }
.reviews-heading { display: flex; align-items: end; justify-content: space-between; gap: 45px; margin-bottom: 46px; }
.reviews-heading h2 { max-width: 820px; }
.rating-summary { display: grid; flex: 0 0 210px; justify-items: end; gap: 5px; padding-left: 28px; border-left: 1px solid rgba(64,69,162,.22); }
.rating-summary strong { color: var(--blue); font-family: "Playfair Display", Georgia, serif; font-size: 64px; line-height: 1; }
.rating-summary a { color: var(--muted); font-size: 12px; font-weight: 700; }
.review-stars { color: var(--gold-dark); font-size: 18px; letter-spacing: .08em; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review-card { min-height: 260px; display: grid; align-content: start; padding: 28px; border: 1px solid rgba(64,69,162,.13); border-radius: 4px; background: var(--white); box-shadow: 0 15px 35px rgba(7,20,36,.06); }
.review-card p { margin: 28px 0 auto; color: var(--ink); font-family: "Playfair Display", Georgia, serif; font-size: 22px; line-height: 1.45; }
.review-card strong { margin-top: 28px; color: var(--blue); font-size: 14px; }
.review-card small { margin-top: 4px; color: var(--muted); font-size: 11px; }
.reviews-foot { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 28px; color: var(--muted); font-size: 11px; }
.reviews-foot .text-link { margin-top: 0; }

.office-section {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  gap: clamp(35px, 7vw, 100px);
  align-items: center;
  padding: clamp(72px, 9vw, 130px) clamp(18px, 6vw, 88px);
  background: var(--white);
}
.office-map { position: relative; min-height: 520px; border: 1px solid var(--line); padding: 8px; background: #eef3f8; box-shadow: var(--shadow); overflow: hidden; }
.office-map iframe { display: block; width: 100%; height: 100%; min-height: 502px; border: 0; }
.office-copy { max-width: 580px; }
.office-copy h2 { margin-bottom: 28px; }
.office-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.location-list { display: grid; margin-bottom: 22px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.office-copy address { display: grid; align-content: start; gap: 5px; padding: 20px 0; color: var(--muted); font-style: normal; }
.office-copy address strong { margin-bottom: 4px; color: var(--blue); font-size: 14px; text-transform: uppercase; }
.office-copy address a { margin-top: 12px; color: var(--blue); font-size: 12px; font-weight: 700; }
.office-hours { margin-top: 10px; color: var(--ink); font-weight: 700; }
.office-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

.contact-banner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(55px, 7vw, 90px) clamp(18px, 6vw, 88px); color: var(--white); background: var(--blue); }
.contact-banner h2 { max-width: 880px; }

footer { display: grid; grid-template-columns: 1.4fr .6fr 1fr; gap: 50px; padding: 55px clamp(18px, 6vw, 88px); color: rgba(255,255,255,.68); background: #050f1b; }
footer div { display: grid; align-content: start; gap: 12px; }
footer img { width: 250px; filter: brightness(0) invert(1); }
footer strong { color: var(--gold); text-transform: uppercase; }
footer a:hover { color: var(--gold); }
.photo-credits { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: 10px; line-height: 1.7; }
.photo-credits a { text-decoration: underline; text-underline-offset: 2px; }

.whatsapp-float { position: fixed; z-index: 40; right: 22px; bottom: 22px; display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; color: var(--white); background: #1db954; box-shadow: 0 16px 40px rgba(0,0,0,.28); font-size: 12px; font-weight: 800; }
.lightbox { position: fixed; z-index: 50; inset: 0; display: grid; place-items: center; padding: 28px; background: rgba(0,0,0,.88); opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 92vw; max-height: 84vh; }
.lightbox button { position: absolute; z-index: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); color: var(--white); background: rgba(0,0,0,.4); }
.lightbox-close { top: 20px; right: 20px; padding: 10px 14px; }
.lightbox-prev, .lightbox-next { top: 50%; width: 50px; height: 64px; transform: translateY(-50%); font-family: Georgia, serif; font-size: 44px; line-height: 1; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  nav { display: none; }
  .hero-inner, .about-section, .video-section, .kolkata-section, .menus-section, .quote-section, .venues-section, .faq-section, .office-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-showcase { max-width: 480px; }
  .about-images { min-height: 520px; }
  .menu-intro { position: static; }
  .events-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .album-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .promise-grid, .reviews-grid { grid-template-columns: 1fr; }
  .venues-showcase { grid-template-columns: 1fr; }
  .venue-photo-stack { min-height: 420px; }
  .trust-grid article { border-bottom: 1px solid var(--line); }
}

@media (max-width: 680px) {
  .site-header { padding: 12px 16px; }
  .brand { width: 150px; }
  .site-header .button { min-height: 40px; padding: 0 12px; font-size: 12px; }
  .hero-inner { width: calc(100% - 32px); padding-top: 110px; }
  .hero-showcase { display: none; }
  h1 { font-size: 50px; }
  .hero-actions, .contact-banner { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .stats-strip, .events-grid, .trust-grid, .menu-courses, .gallery-grid { grid-template-columns: 1fr; }
  .stats-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .about-images { min-height: 410px; }
  .gallery-grid button, .gallery-grid button:first-child, .gallery-grid button:nth-child(5) { grid-column: auto; grid-row: auto; min-height: 260px; }
  .video-facts { grid-template-columns: 1fr; }
  .video-facts span { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .video-facts span:last-child { border-bottom: 0; }
  .kolkata-collage { grid-template-columns: 1fr; grid-template-rows: 170px 230px 210px; }
  .city-howrah { grid-column: auto; }
  .album-head { align-items: stretch; flex-direction: column; margin-top: 55px; }
  .album-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 145px; }
  .album-grid button:nth-child(n) { grid-column: auto; grid-row: auto; }
  .album-grid button:nth-child(5n + 1) { grid-row: span 2; }
  .venue-board { grid-template-columns: 1fr; }
  .venue-photo-stack { min-height: 390px; }
  .venue-photo-stack img:first-child { width: 78%; height: 48%; }
  .venue-photo-stack img:nth-child(2) { width: 68%; height: 35%; top: 34%; }
  .venue-photo-stack img:nth-child(3) { width: 68%; height: 30%; left: 0; }
  .quote-form { grid-template-columns: 1fr; }
  .quote-form .full { grid-column: auto; }
  .office-map, .office-map iframe { min-height: 380px; }
  .office-actions { align-items: stretch; flex-direction: column; }
  .reviews-heading, .reviews-foot { align-items: stretch; flex-direction: column; }
  .rating-summary { justify-items: start; padding: 20px 0 0; border-top: 1px solid rgba(64,69,162,.22); border-left: 0; }
  footer { grid-template-columns: 1fr; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-prev, .lightbox-next { width: 42px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
