/* ═══════════════════════════════════════════════════════════════
   DIGHA CLUB BANQUET HALL — "Royal Heritage" design system
   Palette: deep maroon · antique gold · ivory
   Type:    Cormorant Garamond (display) · Jost (body)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --maroon:      #4A0E0E;
  --maroon-deep: #3A0A0A;
  --maroon-ink:  #2B0707;
  --gold:        #C9A227;
  --gold-soft:   #E3C878;
  --gold-deep:   #8F7112;   /* AA-contrast gold for small text on ivory */
  --ivory:       #FAF6EF;
  --ivory-warm:  #F2EADC;
  --ink:         #33271D;
  --ink-soft:    #5C4E40;
  --wa-green:    #25D366;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Jost', 'Segoe UI', Helvetica, Arial, sans-serif;

  --jaali-ivory: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56'%3E%3Cg fill='none' stroke='%23C9A227' stroke-opacity='.10'%3E%3Cpath d='M28 0 56 28 28 56 0 28Z'/%3E%3Ccircle cx='28' cy='28' r='5'/%3E%3C/g%3E%3C/svg%3E");
  --jaali-maroon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56'%3E%3Cg fill='none' stroke='%23C9A227' stroke-opacity='.07'%3E%3Cpath d='M28 0 56 28 28 56 0 28Z'/%3E%3Ccircle cx='28' cy='28' r='5'/%3E%3C/g%3E%3C/svg%3E");

  --nav-h: 76px;
  --ease-out: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

::selection { background: var(--gold); color: var(--maroon-ink); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container { width: min(1180px, 92%); margin-inline: auto; }

section[id], header[id] { scroll-margin-top: calc(var(--nav-h) + 10px); }

body.no-scroll { overflow: hidden; }

/* ═══ NAVIGATION ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding-block: 1.05rem;
  background: linear-gradient(180deg, rgba(23, 5, 5, .62), rgba(23, 5, 5, 0));
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}
.nav.is-scrolled {
  padding-block: .55rem;
  background: rgba(30, 7, 7, .92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(201, 162, 39, .28), 0 14px 40px -20px rgba(0, 0, 0, .55);
}

.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.nav__brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.nav__logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .35));
}
.nav__name { display: flex; flex-direction: column; line-height: 1.05; }
.nav__name-main { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; color: var(--ivory); }
.nav__name-sub { font-size: .6rem; text-transform: uppercase; letter-spacing: .38em; color: var(--gold-soft); margin-top: .22em; }

.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a:not(.btn) {
  position: relative;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  text-decoration: none;
  color: rgba(250, 246, 239, .88);
  padding-block: .3rem;
  transition: color .3s ease;
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav__links a:not(.btn):hover { color: var(--gold-soft); }
.nav__links a:not(.btn):hover::after { transform: scaleX(1); }

.nav__burger {
  display: none;
  position: relative;
  z-index: 110;
  width: 34px; height: 26px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav__burger span {
  position: absolute;
  left: 3px; right: 3px;
  height: 2px;
  background: var(--ivory);
  transition: transform .35s var(--ease-out), opacity .25s ease, top .35s var(--ease-out);
}
.nav__burger span:nth-child(1) { top: 4px; }
.nav__burger span:nth-child(2) { top: 12px; }
.nav__burger span:nth-child(3) { top: 20px; }
.nav--open .nav__burger span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.nav--open .nav__burger span:nth-child(2) { opacity: 0; }
.nav--open .nav__burger span:nth-child(3) { top: 12px; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .nav__burger { display: block; }
  .nav__links {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 105;
    flex-direction: column;
    justify-content: center;
    gap: 2.1rem;
    background: rgba(30, 7, 7, .97) var(--jaali-maroon);
    transform: translateY(-102%);
    visibility: hidden;         /* belt-and-braces: closed menu can never show */
    pointer-events: none;
    transition: transform .55s var(--ease-out), visibility .55s;
  }
  .nav--open .nav__links {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav__links a:not(.btn) { font-size: 1.05rem; }
  .nav__cta-item { margin-top: .6rem; }
}

/* ═══ BUTTONS ══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  text-decoration: none;
  padding: .9rem 2rem;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease,
              transform .3s var(--ease-out), box-shadow .3s ease;
}
.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--maroon-ink);
}
.btn--gold:hover {
  background: #D9B542;
  border-color: #D9B542;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(201, 162, 39, .55);
}
.btn--ghost {
  border-color: rgba(250, 246, 239, .65);
  color: var(--ivory);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  background: rgba(201, 162, 39, .1);
  transform: translateY(-2px);
}
.btn--ghost-gold {
  border-color: rgba(201, 162, 39, .65);
  color: var(--gold-soft);
}
.btn--ghost-gold:hover {
  background: var(--gold);
  color: var(--maroon-ink);
  transform: translateY(-2px);
}
.btn--ghost-maroon {
  border-color: rgba(74, 14, 14, .45);
  color: var(--maroon);
}
.btn--ghost-maroon:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, .12);
  transform: translateY(-2px);
}
.btn--sm { padding: .62rem 1.25rem; font-size: .76rem; }
.btn--block { width: 100%; }
.btn__wa { width: 19px; height: 19px; flex-shrink: 0; }

/* ═══ ORNAMENT DIVIDER ═════════════════════════════════════ */
.orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  margin: 1.1rem auto 1.7rem;
  width: fit-content;
}
.orn--left { margin-inline: 0; justify-content: flex-start; }
.orn__line {
  width: 58px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, .75));
}
.orn__line:last-child { background: linear-gradient(90deg, rgba(201, 162, 39, .75), transparent); }
.orn__diamond {
  width: 8px; height: 8px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ═══ HERO ═════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--maroon-ink);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenburns 18s var(--ease-out) both;
}
@keyframes kenburns {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}
.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 62% 54% at center 45%, rgba(20, 4, 4, .5) 0%, rgba(20, 4, 4, 0) 74%),
    radial-gradient(ellipse at center 40%, rgba(20, 4, 4, 0) 0%, rgba(20, 4, 4, .42) 80%),
    linear-gradient(180deg, rgba(23, 5, 5, .72) 0%, rgba(43, 7, 7, .52) 45%, rgba(58, 10, 10, .86) 100%);
}

.hero__content { position: relative; z-index: 2; padding-block: 7.5rem 5.5rem; }

.hero__eyebrow {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .36em;
  color: var(--gold-soft);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .65);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(3.1rem, 9.5vw, 5.7rem);
  line-height: 1.02;
  color: var(--ivory);
  text-wrap: balance;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5), 0 16px 48px rgba(0, 0, 0, .6);
}
.hero__title-sub {
  display: block;
  font-weight: 500;
  font-size: clamp(1.15rem, 3.2vw, 1.9rem);
  letter-spacing: .42em;
  text-indent: .42em; /* optically centers the letterspaced line */
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: .7rem;
}
.hero__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  color: rgba(250, 246, 239, .95);
  margin-top: 1.5rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .65);
}
.hero__events {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(250, 246, 239, .78);
  margin-top: 1.15rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .65);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1.7rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
}
.hero__scroll-text {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .34em;
  color: rgba(250, 246, 239, .6);
}
.hero__scroll-chevron {
  width: 10px; height: 10px;
  border-right: 1.5px solid rgba(250, 246, 239, .75);
  border-bottom: 1.5px solid rgba(250, 246, 239, .75);
  transform: rotate(45deg);
  animation: dip 2.2s ease-in-out infinite;
}
@keyframes dip {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: .9; }
  50%      { transform: rotate(45deg) translate(5px, 5px); opacity: .35; }
}

/* Hero entrance sequence */
.anim { opacity: 0; animation: fadeUp .95s var(--ease-out) forwards; }
.anim-1 { animation-delay: .15s; }
.anim-2 { animation-delay: .3s; }
.anim-3 { animation-delay: .45s; }
.anim-4 { animation-delay: .65s; }
.anim-5 { animation-delay: .8s; }
.anim-6 { animation-delay: .95s; }
.anim-7 { animation-delay: 1.35s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══ SECTION SHELLS ═══════════════════════════════════════ */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section--ivory { background: var(--ivory) var(--jaali-ivory); }
.section--maroon { background: var(--maroon) var(--jaali-maroon); }

.section__head {
  max-width: 660px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.6rem, 6vw, 4rem);
}
.section__lead { font-size: 1.05rem; color: var(--ink-soft); }
.section--maroon .section__lead { color: rgba(250, 246, 239, .7); }

.kicker {
  font-size: .78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .34em;
  color: var(--gold-deep);
  margin-bottom: .9rem;
}
.kicker--gold { color: var(--gold-soft); }

.h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.05rem, 4.6vw, 3.1rem);
  line-height: 1.12;
  color: var(--maroon);
  text-wrap: balance;
}
.h2--ivory { color: var(--ivory); }

/* ═══ SCROLL REVEAL ════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s ease, transform .75s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: none; }

/* gentle stagger inside grids */
.about__list .reveal:nth-child(2),
.amenities__grid .reveal:nth-child(2) { transition-delay: .08s; }
.about__list .reveal:nth-child(3),
.amenities__grid .reveal:nth-child(3) { transition-delay: .16s; }
.about__list .reveal:nth-child(4) { transition-delay: .24s; }
.about__list .reveal:nth-child(5) { transition-delay: .32s; }
.about__list .reveal:nth-child(6) { transition-delay: .4s; }
.gallery__mosaic .reveal:nth-child(3n+2) { transition-delay: .1s; }
.gallery__mosaic .reveal:nth-child(3n)   { transition-delay: .2s; }

/* ═══ ABOUT / THE VENUE ════════════════════════════════════ */
.about { padding-bottom: 0; } /* the stats band closes this section flush */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about__text > p { margin-bottom: 1.1rem; color: var(--ink-soft); }

.about__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem 1.5rem;
  margin-top: 1.7rem;
}
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .95rem;
  color: var(--ink);
}
.tick {
  width: 7px; height: 7px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  margin-top: .5em;
  flex-shrink: 0;
}

.about__media {
  position: relative;
  padding: 0 0 19% 0;
}
.about__photo-main {
  position: relative;
  width: 88%;
  margin-left: auto;
}
.about__photo-main::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(16px, 16px);
  border: 1px solid rgba(201, 162, 39, .65);
  z-index: 0;
  pointer-events: none;
}
.about__photo-main img { position: relative; z-index: 1; border-radius: 2px; }
.about__photo-overlap {
  position: absolute;
  left: 0; bottom: 0;
  width: 54%;
  z-index: 2;
  border: 6px solid var(--ivory);
  border-radius: 2px;
  box-shadow: 0 30px 60px -22px rgba(43, 7, 7, .45);
}

/* ═══ STATS BAND ═══════════════════════════════════════════ */
.stats {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  background: var(--maroon) var(--jaali-maroon);
  padding: clamp(2.6rem, 5vw, 3.4rem) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat { position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -0.75rem; top: 12%;
  height: 76%;
  width: 1px;
  background: rgba(201, 162, 39, .28);
}
.stat__num {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  color: var(--gold-soft);
}
.stat__label {
  display: block;
  margin-top: .3rem;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(250, 246, 239, .68);
}

/* ═══ GALLERY — SCROLL SHOWCASE ════════════════════════════ */
.gallery { padding-top: clamp(2.8rem, 5vw, 4rem); } /* stats band above already separates */

/* Fallback (no JS): the four featured slides render as stacked figures */
.showcase { margin-top: clamp(1rem, 3vw, 2rem); }
.showcase__sticky { position: relative; }
.showcase__slide {
  position: relative;
  margin-bottom: 2.5rem;
  display: grid;
  place-items: center;
}
.showcase__bg { display: none; }
.showcase__frame {
  position: relative;
  z-index: 2;
  display: block;
  width: min(92vw, 1060px);
}
.showcase__frame img {
  width: auto;
  max-width: 100%;
  max-height: 66vh;
  margin-inline: auto;
  border-radius: 3px;
  border: 1px solid rgba(201, 162, 39, .4);
  box-shadow: 0 42px 90px -32px rgba(20, 4, 4, .75);
}
.showcase__label {
  position: relative;
  z-index: 3;
  margin-top: 1rem;
  text-align: center;
}
.showcase__count {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .32em;
  color: var(--gold-deep);
  margin-bottom: .4rem;
}
.showcase__title {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 4.2vw, 2.9rem);
  line-height: 1.05;
  color: var(--maroon);
}
.showcase__progress, .showcase__hint { display: none; }

/* Scroll-driven mode (JS on): pinned full-screen slides over blurred backdrops */
html.js .showcase {
  height: calc(4 * 100vh);
  height: calc(4 * 100svh);
  margin-top: 0;
}
html.js .showcase__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--maroon-ink);
}
html.js .showcase__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease, visibility .6s;
}
/* backdrop decor: warm stage-light washes + fairy-light bokeh over the blur */
html.js .showcase__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle 70px at 8% 18%,  rgba(227, 200, 120, .17), transparent 70%),
    radial-gradient(circle 40px at 16% 34%, rgba(227, 200, 120, .13), transparent 70%),
    radial-gradient(circle 90px at 88% 22%, rgba(227, 200, 120, .15), transparent 70%),
    radial-gradient(circle 46px at 79% 39%, rgba(227, 200, 120, .11), transparent 70%),
    radial-gradient(circle 34px at 30% 10%, rgba(240, 227, 188, .13), transparent 70%),
    radial-gradient(circle 52px at 68% 8%,  rgba(240, 227, 188, .11), transparent 70%),
    radial-gradient(circle 26px at 45% 16%, rgba(227, 200, 120, .13), transparent 70%),
    radial-gradient(circle 60px at 94% 68%, rgba(227, 200, 120, .11), transparent 70%),
    radial-gradient(circle 44px at 5% 74%,  rgba(227, 200, 120, .11), transparent 70%),
    radial-gradient(circle 30px at 12% 55%, rgba(240, 227, 188, .09), transparent 70%),
    radial-gradient(circle 36px at 90% 50%, rgba(240, 227, 188, .09), transparent 70%),
    radial-gradient(ellipse 42% 55% at 0% 0%,   rgba(201, 162, 39, .18), transparent 72%),
    radial-gradient(ellipse 42% 55% at 100% 0%, rgba(201, 162, 39, .18), transparent 72%),
    radial-gradient(ellipse at center, rgba(43, 7, 7, .18) 0%, rgba(23, 5, 5, .66) 100%);
}
/* gold hairline frame + jaali lattice across the backdrop */
html.js .showcase__slide::after {
  content: "";
  position: absolute;
  inset: clamp(12px, 2.2vw, 26px);
  z-index: 1;
  border: 1px solid rgba(201, 162, 39, .3);
  background: var(--jaali-maroon);
  pointer-events: none;
}
html.js .showcase__slide.is-active { opacity: 1; visibility: visible; }
html.js .showcase__bg {
  display: block;
  position: absolute;
  inset: -44px;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: blur(26px) brightness(.42) saturate(1.05);
  transform: scale(1.12);
}
html.js .showcase__frame {
  transform: scale(.94);
  transition: transform .9s var(--ease-out);
}
html.js .showcase__slide.is-active .showcase__frame { transform: scale(1); }
html.js .showcase__label {
  position: absolute;
  left: clamp(1.2rem, 6vw, 4.5rem);
  bottom: clamp(1.5rem, 6vh, 3.2rem);
  margin: 0;
  text-align: left;
}
html.js .showcase__count {
  color: var(--gold-soft);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .6);
}
html.js .showcase__title {
  color: var(--ivory);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .65);
}
html.js .showcase__progress {
  display: flex;
  gap: .45rem;
  position: absolute;
  right: clamp(1.2rem, 5vw, 4.5rem);
  bottom: clamp(1.7rem, 6.5vh, 3.5rem);
  z-index: 3;
}
html.js .showcase__progress span {
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg,
    var(--gold) calc(var(--p, 0) * 100%),
    rgba(250, 246, 239, .28) calc(var(--p, 0) * 100%));
}
html.js .showcase__hint {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 3;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .32em;
  color: rgba(250, 246, 239, .55);
  opacity: 0;
  transition: opacity .5s ease;
}
html.js .showcase__sticky[data-active="0"] .showcase__hint { opacity: 1; }

@media (max-width: 700px) {
  html.js .showcase__frame { width: 94vw; }
  html.js .showcase__frame img { max-height: 52vh; }
  html.js .showcase__progress span { width: 26px; }
  html.js .showcase__hint { display: none; }
}

/* ═══ GALLERY — ASYMMETRIC MOSAIC ══════════════════════════ */
.gallery__mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 1rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
}
.gcard--tall { grid-row: span 2; }
.gcard--wide { grid-column: span 2; }
.gcard a {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 3px;
  background: var(--maroon-ink);
}
.gcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out), opacity .5s ease;
}
@media (max-width: 1000px) {
  /* 2 columns pack this span mix into a perfect rectangle at every width */
  .gallery__mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 700px) {
  .gallery__mosaic { grid-auto-rows: 150px; gap: .7rem; }
}
.gcard a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 7, 7, 0) 55%, rgba(43, 7, 7, .78) 100%);
  opacity: 0;
  transition: opacity .45s ease;
}
.gcard figcaption {
  position: absolute;
  left: 1.1rem; bottom: .95rem;
  z-index: 2;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s var(--ease-out);
  pointer-events: none;
}
.gcard a:hover img, .gcard a:focus-visible img { transform: scale(1.06); }
.gcard a:hover::after, .gcard a:focus-visible::after { opacity: 1; }
.gcard a:hover figcaption, .gcard a:focus-visible figcaption { opacity: 1; transform: translateY(0); }

/* ═══ AMENITIES ════════════════════════════════════════════ */
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.acard {
  padding: 2.2rem 1.9rem;
  border: 1px solid rgba(201, 162, 39, .3);
  border-radius: 3px;
  background: rgba(250, 246, 239, .035);
  transition: transform .4s var(--ease-out), border-color .4s ease, background .4s ease;
}
.acard:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, .65);
  background: rgba(250, 246, 239, .06);
}
.acard__icon { display: block; width: 42px; height: 42px; color: var(--gold-soft); }
.acard__icon svg { width: 100%; height: 100%; }
.acard h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ivory);
  margin: 1rem 0 .45rem;
}
.acard p { font-size: .95rem; color: rgba(250, 246, 239, .72); }

/* ═══ REVIEWS STRIP ════════════════════════════════════════ */
.reviews {
  max-width: 760px;
  margin: clamp(4rem, 8vw, 5.5rem) auto 0;
  text-align: center;
}
.reviews__mark {
  display: block;
  font-family: var(--serif);
  font-size: 5rem;
  line-height: .4;
  color: rgba(201, 162, 39, .45);
  margin-bottom: 1.4rem;
}
.reviews__track { position: relative; min-height: 100px; }
.review {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease, visibility .6s;
}
.review.is-active {
  position: relative; /* the active quote defines the track height */
  opacity: 1;
  visibility: visible;
}
.review p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  line-height: 1.55;
  color: rgba(250, 246, 239, .93);
}
.review cite {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold-soft);
}
.reviews__dots { display: flex; justify-content: center; gap: .6rem; margin: 1.6rem 0 1.8rem; }
.reviews__dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 162, 39, .7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .3s ease, transform .3s ease;
}
.reviews__dots button.is-active { background: var(--gold); transform: scale(1.2); }

/* ═══ CONTACT ══════════════════════════════════════════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(2.2rem, 5vw, 3.5rem);
  align-items: start;
}

.form {
  background: #FFFDF8;
  border: 1px solid rgba(201, 162, 39, .38);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: clamp(1.7rem, 4vw, 2.6rem);
  box-shadow: 0 28px 60px -34px rgba(43, 7, 7, .35);
}
.form__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--maroon);
  margin-bottom: 1.5rem;
}
.field { margin-bottom: 1.25rem; }
.field__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.3rem;
}
.field label {
  display: block;
  font-size: .74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--ink-soft);
  margin-bottom: .4rem;
}
.field input,
.field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid rgba(51, 39, 29, .28);
  padding: .62rem .1rem;
  border-radius: 0;
  transition: border-color .3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%238F7112' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .2rem center;
  cursor: pointer;
}
.field input::placeholder { color: rgba(92, 78, 64, .55); }
.field input:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--gold);
  box-shadow: 0 1px 0 var(--gold);
}
.form__error {
  color: #A32020;
  font-size: .9rem;
  margin: -0.4rem 0 1rem;
}
.form__note {
  margin-top: .9rem;
  font-size: .84rem;
  text-align: center;
  color: var(--ink-soft);
}

.contact__info { display: flex; flex-direction: column; }
.finfo {
  display: flex;
  gap: 1.15rem;
  margin-bottom: 1.7rem;
}
.finfo__icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 162, 39, .5);
  border-radius: 50%;
  color: var(--gold-deep);
}
.finfo__icon svg { width: 22px; height: 22px; }
.finfo h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.22rem;
  color: var(--maroon);
  margin-bottom: .15rem;
}
.finfo p { font-size: .97rem; color: var(--ink-soft); }
.finfo a {
  text-decoration-color: rgba(201, 162, 39, .6);
  text-underline-offset: 3px;
  transition: color .3s ease;
}
.finfo a:hover { color: var(--maroon); }

.contact__map {
  position: relative;
  margin-top: .4rem;
  border: 1px solid rgba(201, 162, 39, .45);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 50px -30px rgba(43, 7, 7, .35);
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: 340px;
  filter: saturate(.92) contrast(1.02);
}
.contact__directions {
  position: absolute;
  right: .9rem; bottom: .9rem;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .45);
}

/* ═══ FOOTER ═══════════════════════════════════════════════ */
.footer {
  background: var(--maroon-ink) var(--jaali-maroon);
  padding: 3.6rem 0 2.1rem;
  text-align: center;
}
.footer__logo {
  display: block;
  width: min(230px, 62vw);
  height: auto;
  margin: 0 auto 1.1rem;
}
.footer__meta { font-size: .9rem; color: rgba(250, 246, 239, .55); }
.footer__meta a { color: inherit; text-decoration-color: rgba(201, 162, 39, .5); text-underline-offset: 3px; }
.footer__meta a:hover { color: var(--gold-soft); }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  margin: 1.5rem 0 .4rem;
}
.footer__links a {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  text-decoration: none;
  color: rgba(250, 246, 239, .72);
  transition: color .3s ease;
}
.footer__links a:hover { color: var(--gold-soft); }
.footer__rule {
  width: 230px;
  height: 1px;
  margin: 1.2rem auto;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, .6), transparent);
}
.footer__copy { font-size: .8rem; color: rgba(250, 246, 239, .42); }
.footer__credit { margin-top: .4rem; font-size: .8rem; color: rgba(250, 246, 239, .45); }
.footer__credit a {
  color: rgba(250, 246, 239, .68);
  text-decoration-color: rgba(201, 162, 39, .5);
  text-underline-offset: 3px;
  transition: color .3s ease;
}
.footer__credit a:hover { color: var(--gold-soft); }
.footer__heart {
  display: inline-block;
  animation: heartbeat 1.9s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  12%      { transform: scale(1.22); }
  24%      { transform: scale(1); }
  36%      { transform: scale(1.14); }
  48%      { transform: scale(1); }
}

/* ═══ FLOATING WHATSAPP ════════════════════════════════════ */
.wa-float {
  position: fixed;
  right: 1.35rem; bottom: 1.35rem;
  z-index: 90;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  background: var(--wa-green);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, .45);
  transition: transform .3s var(--ease-out);
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08); }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa-green);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: .8; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ═══ BOOK-NOW POPUP ═══════════════════════════════════════ */
.popup {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(20, 4, 4, .62);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .35s ease;
}
.popup[hidden] { display: none; }
.popup.is-open { opacity: 1; }

.popup__card {
  position: relative;
  width: min(100%, 430px);
  max-height: calc(100vh - 2.4rem);
  overflow: auto;
  background: #FFFDF8;
  border: 1px solid rgba(201, 162, 39, .45);
  border-radius: 6px;
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, .65);
  transform: translateY(20px) scale(.97);
  transition: transform .45s var(--ease-out);
}
.popup.is-open .popup__card { transform: none; }

.popup__close {
  position: absolute;
  top: .45rem; right: .7rem;
  z-index: 2;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  color: rgba(250, 246, 239, .95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .6);
  transition: color .3s ease, transform .3s ease;
}
.popup__close:hover { color: var(--gold-soft); transform: rotate(90deg); }

.popup__media {
  position: relative;
  height: 148px;
  overflow: hidden;
}
.popup__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popup__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 7, 7, .25) 0%, rgba(43, 7, 7, 0) 40%, rgba(255, 253, 248, .95) 96%);
}

.popup__body { padding: .9rem 1.7rem 1.6rem; text-align: center; }
.popup__kicker {
  font-size: .68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--gold-deep);
}
.popup__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--maroon);
  margin-top: .3rem;
}
.orn--tight { margin: .7rem auto 1rem; }
.popup__text { font-size: .93rem; color: var(--ink-soft); }
.popup__cta {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1.2rem;
}
.popup__phone { margin-top: .9rem; font-size: .86rem; color: var(--ink-soft); }
.popup__phone a {
  color: var(--maroon);
  font-weight: 500;
  text-decoration-color: rgba(201, 162, 39, .6);
  text-underline-offset: 3px;
}

@media (max-height: 620px) {
  .popup__media { display: none; } /* short screens: keep the card fully visible */
}

/* ═══ LIGHTBOX ═════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  background: rgba(20, 4, 4, .95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .35s ease;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }

.lightbox__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-width: 0;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  border-radius: 3px;
  box-shadow: 0 30px 90px -30px rgba(0, 0, 0, .8);
}
.lightbox__stage figcaption {
  margin-top: .9rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(250, 246, 239, .9);
}
.lightbox__count {
  margin-top: .25rem;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .26em;
  color: var(--gold-soft);
}
.lightbox__nav {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  color: rgba(250, 246, 239, .75);
  padding: 1.2rem .9rem;
  transition: color .3s ease, transform .3s ease;
}
.lightbox__nav:hover { color: var(--gold-soft); transform: scale(1.15); }
.lightbox__close {
  position: absolute;
  top: .8rem; right: 1.1rem;
  z-index: 5;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(250, 246, 239, .85);
  transition: color .3s ease, transform .3s ease;
}
.lightbox__close:hover { color: var(--gold-soft); transform: rotate(90deg); }

@media (max-width: 700px) {
  .lightbox { grid-template-columns: 1fr; }
  .lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .7);
  }
  .lightbox__nav--prev { left: .3rem; }
  .lightbox__nav--next { right: .3rem; }
  .lightbox__nav:hover { transform: translateY(-50%) scale(1.1); }
}

/* ═══ RESPONSIVE ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { order: -1; max-width: 560px; margin-inline: auto; width: 100%; }
  .contact__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .stat:nth-child(3)::before { display: none; }
}
@media (max-width: 700px) {
  .hero__scroll { display: none; } /* phones scroll naturally; cue only crowds the hero */
  .hero__content { padding-block: 6.5rem 3.5rem; }
}
@media (max-width: 560px) {
  .about__list { grid-template-columns: 1fr; }
  .field__row { grid-template-columns: 1fr; }
  .hero__events { max-width: 320px; margin-inline: auto; }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    max-width: 300px;
    margin-inline: auto;
  }
  .btn { padding: .85rem 1.5rem; }
  .stat__label { letter-spacing: .14em; }
}

/* ═══ REDUCED MOTION ═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .anim, .reveal { opacity: 1 !important; transform: none !important; }
  .hero__bg img { animation: none !important; }
}
