/* ==========================================================================
   Siddharth Banquets — stylesheet
   Palette: Sand & Charcoal (light) · accent brushed gold
   Type: Fraunces (display) · Inter (UI/body)
   ========================================================================== */

:root {
  /* colour */
  --bg: #faf8f5;
  --panel: #f0ebe3;
  --panel-soft: #f6f2ec;
  --ink: #1f1d1a;
  --ink-soft: #3d3830;
  --muted: #6b6459;
  --gold: #c0a062;
  --gold-deep: #a5854a;
  --gold-wash: #f5eeddcc;
  --line: #e3dcd1;
  --line-strong: #d3c9b9;
  --white: #fff;
  --dark: #1f1d1a;
  --dark-soft: #2b2823;

  /* layout */
  --wrap: 1200px;
  --header-h: 88px;
  --header-h-sm: 66px;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  /* type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* depth */
  --shadow-xs: 0 1px 2px rgba(31, 29, 26, .05);
  --shadow-sm: 0 4px 16px rgba(31, 29, 26, .06);
  --shadow-md: 0 14px 40px rgba(31, 29, 26, .09);
  --shadow-lg: 0 30px 80px rgba(31, 29, 26, .16);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: -.005em;
  color: var(--ink-soft);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .22s ease; }
a:hover { color: var(--gold-deep); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "SOFT" 20, "WONK" 0;
  line-height: 1.14;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  color: var(--ink);
}
p { margin: 0 0 1.15em; }
ul { margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 14px; top: -60px; z-index: 999;
  background: var(--ink); color: #fff; padding: 11px 20px; border-radius: 8px;
  font-size: .9rem; transition: top .2s ease;
}
.skip-link:focus { top: 14px; color: #fff; }

/* serif italic accent line — replaces the old script font */
.accent {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "SOFT" 60, "WONK" 1;
  color: var(--gold-deep);
  letter-spacing: -.01em;
  line-height: 1.2;
}

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(250, 248, 245, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: height .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.is-stuck {
  height: var(--header-h-sm);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(31, 29, 26, .06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }

.logo { display: block; flex-shrink: 0; line-height: 0; }
.logo img { width: 216px; height: auto; transition: width .3s ease; }
.site-header.is-stuck .logo img { width: 178px; }
.logo--footer { display: inline-block; }
.footer-logo { width: 250px; height: auto; }

.site-nav { display: flex; align-items: center; gap: 10px; }
.nav-list { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-list a {
  display: block; position: relative;
  padding: 9px 15px; border-radius: 8px;
  color: var(--ink-soft);
  font-size: .875rem; font-weight: 400;
  letter-spacing: .01em;
  transition: color .22s ease, background .22s ease;
}
.nav-list a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px;
  height: 1.5px; background: var(--gold); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}
.nav-list a:hover { color: var(--ink); background: rgba(192, 160, 98, .09); }
.nav-list a[aria-current="page"] { color: var(--ink); font-weight: 500; }
.nav-list a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { margin-left: 12px; }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  background: none; border: 0; padding: 0; position: relative; flex-shrink: 0;
}
.nav-toggle span {
  position: absolute; left: 11px; right: 11px; height: 1.8px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21.5px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; border: 1px solid var(--ink); border-radius: 100px;
  background: var(--ink); color: #fff;
  font-size: .875rem; font-weight: 400; letter-spacing: .005em;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .22s ease, box-shadow .25s ease;
}
.btn:hover { background: var(--dark-soft); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn--gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--light { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .55); color: #fff; backdrop-filter: blur(6px); }
.btn--light:hover { background: #fff; border-color: #fff; color: var(--ink); }
.btn--sm { padding: 10px 20px; font-size: .82rem; }

/* ---------- hero ---------- */
.hero {
  position: relative; margin-top: var(--header-h);
  height: min(84vh, 780px); min-height: 460px;
  overflow: hidden; background: var(--panel);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.hero--page { height: min(44vh, 400px); min-height: 260px; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.04);
  transition: opacity 1.4s ease, transform 7s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(31, 29, 26, .28) 0%, rgba(31, 29, 26, .1) 40%, rgba(31, 29, 26, .66) 100%);
}
.hero-caption {
  position: absolute; inset: auto 0 0 0; z-index: 3;
  padding: 0 28px 76px; text-align: center; color: #fff;
}
.hero-caption .accent { color: rgba(255, 255, 255, .93); font-size: clamp(2rem, 5.4vw, 3.9rem); font-weight: 300; margin-bottom: .18em; text-shadow: 0 2px 30px rgba(0, 0, 0, .35); }
.hero-caption .tagline {
  margin: 0; font-size: clamp(.72rem, 1.5vw, .84rem); font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: rgba(255, 255, 255, .84);
  text-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}
.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 46px; height: 46px; border: 1px solid rgba(255, 255, 255, .3); border-radius: 50%;
  background: rgba(255, 255, 255, .1); color: #fff;
  display: grid; place-items: center;
  backdrop-filter: blur(8px); transition: background .25s ease;
}
.hero-nav:hover { background: rgba(255, 255, 255, .26); }
.hero-nav--prev { left: 22px; }
.hero-nav--next { right: 22px; }
.hero-nav svg { width: 19px; height: 19px; }
.hero-dots { position: absolute; left: 0; right: 0; bottom: 32px; z-index: 4; display: flex; justify-content: center; gap: 8px; }
.hero-dots button {
  width: 28px; height: 2.5px; padding: 0; border: 0; border-radius: 3px;
  background: rgba(255, 255, 255, .38); transition: background .25s ease, width .3s ease;
}
.hero-dots button.is-active { background: #fff; width: 44px; }

.hero--page .hero-slide { opacity: 1; transform: none; }
/* inner-page banners carry text over the middle of the image, so they need a
   flatter, heavier scrim than the homepage hero */
.hero--page .hero-slide::after { background: rgba(31, 29, 26, .52); }
.hero--page .page-title { position: absolute; inset: 0; z-index: 3; display: grid; place-content: center; text-align: center; padding: 0 28px; }
.hero--page h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); margin: 0 0 .3em; text-shadow: 0 2px 24px rgba(0, 0, 0, .4); }
.breadcrumb { list-style: none; display: flex; justify-content: center; gap: 9px; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .78); }
.breadcrumb a { color: rgba(255, 255, 255, .95); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li + li::before { content: "/"; margin-right: 9px; color: rgba(255, 255, 255, .45); }

/* ---------- sections ---------- */
.section { padding: clamp(64px, 8.5vw, 118px) 0; }
.section--panel { background: var(--panel-soft); }
.section--tight { padding-top: 0; }

.section-head { text-align: center; max-width: 740px; margin: 0 auto clamp(38px, 5vw, 62px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .7rem; font-weight: 500; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 1.1em;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--gold); }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin: 0 0 .4em; }
.section-head .accent { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: .3em; }
.section-head p { color: var(--muted); margin: 0 auto; max-width: 620px; font-size: 1.02rem; }
.section-head p + p { margin-top: 1em; }

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5.5vw, 84px); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.split-body h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: .5em; }
.split-body .accent { font-size: clamp(1.5rem, 2.8vw, 2rem); margin-bottom: .25em; }
.split-body p { color: var(--muted); }

/* ---------- grid & cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.feature {
  background: var(--white); padding: 38px 32px;
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1), box-shadow .32s ease, border-color .32s ease;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.feature-icon {
  width: 50px; height: 50px; margin-bottom: 22px;
  display: grid; place-items: center; border-radius: 12px;
  background: var(--gold-wash); color: var(--gold-deep);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.22rem; margin-bottom: .45em; }
.feature p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  text-align: center; padding: 34px 20px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
}
.stat-num {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.1rem, 4.6vw, 3.1rem); color: var(--ink); line-height: 1;
  letter-spacing: -.03em;
}
.stat-num sup { font-size: .42em; color: var(--gold-deep); vertical-align: super; margin-left: 2px; }
.stat-label { font-size: .72rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 1em; }

/* ---------- events ---------- */
.event-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4 / 3; display: block; background: var(--panel); margin: 0;
}
.event-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.4, 0, .2, 1); }
.event-card:hover img { transform: scale(1.06); }
.event-card figcaption {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 28px 26px; color: #fff;
  background: linear-gradient(to top, rgba(31, 29, 26, .86) 0%, rgba(31, 29, 26, .35) 60%, transparent 100%);
}
.event-card h3 { color: #fff; font-size: 1.3rem; margin: 0; }
.event-card span { font-size: .68rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

/* ---------- reviews ---------- */
.rating-summary {
  display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--line); border-radius: 100px;
  padding: 14px 28px; margin: 0 auto clamp(30px, 4vw, 46px); width: fit-content;
  box-shadow: var(--shadow-xs);
}
.rating-score { font-family: var(--font-display); font-size: 1.9rem; line-height: 1; color: var(--ink); }
.rating-meta { font-size: .84rem; color: var(--muted); }
.g-logo { width: 20px; height: 20px; flex-shrink: 0; }

.review-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 14px; margin: 0;
}
.review-head { display: flex; align-items: center; gap: 13px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--panel); color: var(--gold-deep);
  display: grid; place-items: center; font-weight: 500; font-size: .95rem;
  object-fit: cover; overflow: hidden;
}
.review-name { font-weight: 500; color: var(--ink); font-size: .95rem; line-height: 1.3; }
.review-when { font-size: .78rem; color: var(--muted); }
.review-card p { color: var(--muted); margin: 0; font-size: .96rem; }
.stars { display: flex; gap: 2px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; }
.stars .off { color: var(--line-strong); }
.review-skeleton { min-height: 190px; background: linear-gradient(100deg, var(--panel-soft) 30%, var(--panel) 50%, var(--panel-soft) 70%); background-size: 220% 100%; animation: shimmer 1.4s infinite linear; border-radius: var(--radius); border: 1px solid var(--line); }
@keyframes shimmer { to { background-position: -220% 0; } }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); margin-bottom: 12px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 20px 54px 20px 24px; position: relative;
  font-family: var(--font-display); font-size: 1.12rem; color: var(--ink);
  line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 24px; top: 50%;
  width: 10px; height: 10px; margin-top: -6px;
  border-right: 1.6px solid var(--gold-deep); border-bottom: 1.6px solid var(--gold-deep);
  transform: rotate(45deg); transition: transform .3s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq-item summary:hover { color: var(--gold-deep); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { margin: 0; color: var(--muted); font-size: .97rem; }
@media (max-width: 640px) {
  .faq-item summary { padding: 17px 46px 17px 18px; font-size: 1.03rem; }
  .faq-answer { padding: 0 18px 18px; }
}

/* ---------- video ---------- */
.video-frame {
  position: relative; padding-top: 56.25%;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--ink);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- gallery filters ---------- */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin: 0 auto clamp(22px, 3vw, 34px);
}
.filter-btn {
  padding: 10px 20px; border: 1px solid var(--line-strong); border-radius: 100px;
  background: transparent; color: var(--ink-soft);
  font-family: var(--font-body); font-size: .85rem; font-weight: 400;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.filter-btn span {
  display: inline-block; margin-left: 6px; font-size: .75rem;
  color: var(--muted); transition: color .22s ease;
}
.filter-btn:hover { border-color: var(--gold); color: var(--ink); }
.filter-btn.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.filter-btn.is-active span { color: rgba(255,255,255,.62); }
.gallery-count {
  text-align: center; color: var(--muted); font-size: .88rem;
  margin: 0 0 22px; min-height: 1.2em;
}
.gallery-item.is-hidden { display: none; }
@media (max-width: 640px) {
  .gallery-filters { gap: 8px; }
  .filter-btn { padding: 8px 15px; font-size: .8rem; }
}

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  aspect-ratio: 3 / 2; padding: 0; border: 0; background: var(--panel); cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.4, 0, .2, 1); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(31, 29, 26, 0); transition: background .35s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { background: rgba(31, 29, 26, .18); }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 18, 16, .96);
  display: none; place-items: center; padding: 5vh 4vw;
  backdrop-filter: blur(6px);
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: 100%; max-height: 88vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; border: 1px solid rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .08); color: #fff;
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  transition: background .25s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255, 255, 255, .22); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox svg { width: 20px; height: 20px; }
.lightbox-counter {
  position: absolute; bottom: 24px; left: 0; right: 0; text-align: center;
  color: rgba(255, 255, 255, .7); font-size: .82rem; letter-spacing: .16em;
}

/* ---------- floor plans ---------- */
.hall-card {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--white); display: flex; flex-direction: column;
}
.hall-card > img { width: 100%; background: var(--white); padding: 30px; }
.hall-body { padding: 28px 30px 32px; border-top: 1px solid var(--line); }
.hall-body h3 { font-size: 1.4rem; margin-bottom: .5em; }
.spec-list { list-style: none; margin-top: 18px; }
.spec-list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .93rem;
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list .k { color: var(--muted); }
.spec-list .v { font-weight: 500; color: var(--ink); text-align: right; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact-block { margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.contact-block:last-child { border-bottom: 0; margin-bottom: 0; }
.contact-block h3 { font-size: 1.05rem; margin-bottom: .6em; display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-weight: 500; }
.contact-block h3 svg { width: 17px; height: 17px; color: var(--gold-deep); flex-shrink: 0; }
.contact-block address { font-style: normal; color: var(--muted); }
.contact-block a:hover { color: var(--gold-deep); }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 500; letter-spacing: .04em; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .95rem; font-weight: 300; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--bg); width: 100%;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(192, 160, 98, .16);
}
.form-note { font-size: .87rem; color: var(--muted); margin-top: 16px; }
.form-status { padding: 15px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: .92rem; }
.form-status--ok { background: #eef6ef; border: 1px solid #c3ddc6; color: #2b5e31; }
.form-status--err { background: #fbeeed; border: 1px solid #e8c6c2; color: #8a3025; }

.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); line-height: 0; }
.map-frame iframe { width: 100%; height: 440px; border: 0; display: block; filter: grayscale(.25); }

/* ---------- CTA ---------- */
.cta-band {
  position: relative; padding: clamp(66px, 8vw, 108px) 0; text-align: center;
  background: var(--ink) center/cover no-repeat; color: #fff;
  border-radius: var(--radius-lg); overflow: hidden;
  margin: 0 auto; max-width: calc(var(--wrap) - 0px);
}
.cta-wrap { padding: 0 28px; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: rgba(31, 29, 26, .68); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); }
.cta-band .accent { color: var(--gold); font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: .35em; }
.cta-band p { color: rgba(255, 255, 255, .82); max-width: 580px; margin: 0 auto 2em; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-outer { padding: 0 28px clamp(64px, 8vw, 100px); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .66); padding: clamp(58px, 6vw, 84px) 0 0; font-size: .93rem; font-weight: 300; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr; gap: clamp(32px, 5vw, 64px); }
.site-footer h4 {
  color: #fff; font-family: var(--font-body);
  font-size: .72rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 1.7em;
}
.site-footer a { color: rgba(255, 255, 255, .66); }
.site-footer a:hover { color: var(--gold); }
.site-footer .logo { margin-bottom: 24px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 5px; }
.footer-bottom {
  margin-top: clamp(42px, 5vw, 60px); padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .84rem; color: rgba(255, 255, 255, .45);
}

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .38);
  transition: transform .25s cubic-bezier(.4, 0, .2, 1);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 66px; }
  .nav-toggle { display: block; }

  /* backdrop-filter makes the header a containing block for fixed-position
     descendants, which would trap the off-canvas menu inside it. Drop the
     frosted effect on mobile — it also costs the least here. */
  .site-header {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-nav {
    position: fixed; inset: var(--header-h) 0 0 0;
    display: block;
    background: var(--bg);
    padding: 24px 28px 44px;
    transform: translateX(100%);
    transition: transform .38s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }
  .site-nav.is-open { transform: none; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a { padding: 17px 4px; font-size: 1.05rem; border-radius: 0; border-bottom: 1px solid var(--line); }
  .nav-list a::after { display: none; }
  .nav-cta { margin: 22px 0 0; }
  .nav-cta .btn { width: 100%; }
  body.nav-open { overflow: hidden; }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .grid--3, .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-nav { width: 40px; height: 40px; }
  .hero-nav--prev { left: 12px; }
  .hero-nav--next { right: 12px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .hero { height: min(76vh, 580px); border-radius: 0 0 var(--radius) var(--radius); }
  .hero-caption { padding-bottom: 64px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat { padding: 26px 12px; }
  .feature { padding: 30px 24px; }
  .hall-card > img { padding: 18px; }
  .cta-outer { padding: 0 16px clamp(56px, 8vw, 90px); }
  .cta-band { border-radius: var(--radius); }
  .rating-summary { width: 100%; border-radius: var(--radius); }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 14px; right: 14px; }
  .wa-float { width: 50px; height: 50px; right: 16px; bottom: 16px; }
  .map-frame iframe { height: 340px; }
  .logo img { width: 172px; }
  .site-header.is-stuck .logo img { width: 158px; }
  .footer-logo { width: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-slide { transform: none !important; }
}

@media print {
  .site-header, .hero-nav, .hero-dots, .wa-float, .site-footer, .nav-toggle, .cta-band { display: none !important; }
  .hero { margin-top: 0; height: 200px; }
  body { background: #fff; }
}
