/* ==========================================================================
   GNCC — Good News Convention Centre
   Design system: clean & corporate. Navy + warm gold accent, generous
   whitespace, confident typography. Framework-free, single stylesheet.
   ========================================================================== */

:root {
  /* Palette */
  --ink:        #0e1b2c;   /* near-black navy, body text */
  --navy:       #0a2540;   /* primary brand */
  --navy-700:   #123254;
  --slate:      #5a6b7b;   /* secondary text */
  --gold:       #b8893a;   /* accent */
  --gold-soft:  #d8b878;
  --line:       #e6eaef;   /* hairlines */
  --bg:         #ffffff;
  --bg-soft:    #f6f8fb;   /* alternating sections */
  --bg-navy:    #08203a;   /* dark sections */
  --white:      #ffffff;

  /* Type */
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Scale & layout */
  --maxw: 1180px;
  --gut: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(10,37,64,.06), 0 6px 18px rgba(10,37,64,.05);
  --shadow:    0 10px 40px rgba(10,37,64,.10);
  --shadow-lg: 0 24px 70px rgba(10,37,64,.16);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----- Reset ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Accessibly-hidden honeypot — clipped, so it never widens the page */
.hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; font-weight: 700; letter-spacing: -.02em; color: var(--navy); }

/* ----- Layout helpers -------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(2.75rem, 5vw, 4.5rem); }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--bg-navy); color: #cdd9e6; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .73rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); opacity: .7; }

.section__head { max-width: 600px; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.section__head h2 { font-size: clamp(1.65rem, 2.6vw, 2.25rem); margin-top: .7rem; }
.section__head p { color: var(--slate); margin-top: .85rem; font-size: 1.02rem; }
.section--navy .section__head p { color: #9fb2c6; }
.center { text-align: center; margin-inline: auto; }

/* ----- Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.6rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: #fff; box-shadow: 0 8px 24px rgba(184,137,58,.35); }
.btn--gold:hover { background: #a5792f; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(184,137,58,.45); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn--wa { background: #25d366; color: #fff; }
.btn--wa:hover { background: #1eb858; transform: translateY(-2px); }

/* ----- Top announcement bar -------------------------------------------- */
.topbar {
  background: var(--navy);
  color: #cbd8e6;
  font-size: .85rem;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .55rem; }
.topbar a { color: #fff; font-weight: 500; }
.topbar a:hover { color: var(--gold-soft); }
.topbar__links { display: flex; gap: 1.4rem; align-items: center; }
.topbar__links svg { width: 15px; height: 15px; display: inline-block; vertical-align: -2px; margin-right: .35rem; opacity: .8; }
@media (max-width: 700px) { .topbar__area { display: none; } }

/* ----- Header / nav ---------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.is-stuck { border-color: var(--line); box-shadow: 0 4px 24px rgba(10,37,64,.06); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: .9rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 11px; flex: none;
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  color: var(--gold-soft);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.brand__mark svg { width: 23px; height: 23px; }
.brand__name { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.02rem; line-height: 1.1; }
.brand__name small { display: block; font-size: .72rem; font-weight: 500; color: var(--slate); letter-spacing: .03em; text-transform: uppercase; }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { font-weight: 500; font-size: .98rem; color: var(--ink); position: relative; padding-block: .3rem; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold); transition: width .25s var(--ease); }
.nav__links a:hover::after, .nav__links a[aria-current]::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: .8rem; }
.nav__toggle { display: none; background: none; border: none; padding: .4rem; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.nav__toggle span + span { margin-top: 5px; }

@media (max-width: 940px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: block; }
  .nav__links.is-open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; padding: 1.5rem var(--gut); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
}

/* ----- Hero ------------------------------------------------------------ */
.hero { position: relative; overflow: hidden; background: var(--bg-navy); color: #fff; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg .ph { width: 100%; height: 100%; border-radius: 0; }
/* Crossfading slideshow with a slow Ken Burns zoom */
.hero__slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: 0; transition: opacity 1.6s ease;
  transform: scale(1.06);
}
.hero__slide.is-active { opacity: 1; animation: kenburns 8s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.16); } }
@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: none; transform: none; }
  .hero__slide.is-active { animation: none; }
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,32,58,.72) 0%, rgba(8,32,58,.78) 55%, rgba(8,32,58,.92) 100%),
    radial-gradient(1200px 600px at 75% -10%, rgba(184,137,58,.22), transparent 60%);
}
.hero__inner { position: relative; z-index: 2; padding-block: clamp(3.5rem, 9vw, 6.5rem); max-width: 720px; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5.2vw, 3.9rem); line-height: 1.04; }
.hero h1 .accent { color: var(--gold-soft); }
.hero p.lead { color: #cdd9e6; font-size: clamp(1rem, 1.7vw, 1.18rem); margin-top: 1.2rem; max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero__trust { margin-top: 1.6rem; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: #9fb2c6; font-weight: 500; }
@media (max-width: 600px) {
  .hero__cta { gap: .6rem; }
  .hero__cta .btn { flex: 1 1 0; min-width: 0; white-space: normal; padding: .8rem .7rem; font-size: .92rem; line-height: 1.15; }
  .hero__trust { font-size: .72rem; letter-spacing: .08em; }
}

/* Scroll cue */
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.1rem; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7);
}
.hero__scroll-wheel { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.5); border-radius: 12px; position: relative; }
.hero__scroll-wheel::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.6s ease-in-out infinite; }
@keyframes scrolldot { 0%,100% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; transform: translate(-50%, 9px); } }
@media (max-width: 640px) { .hero__scroll { display: none; } }
.hero__badge { display: inline-flex; align-items: center; gap: .6rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); padding: .5rem 1rem; border-radius: 100px; font-size: .85rem; font-weight: 500; color: #e7eef5; backdrop-filter: blur(6px); }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d058; box-shadow: 0 0 0 4px rgba(52,208,88,.25); }

/* Hero stat strip */
.hero__stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero__stats div { padding: 1.2rem .5rem; text-align: center; border-left: 1px solid rgba(255,255,255,.14); }
.hero__stats div:first-child { border-left: none; }
.hero__stats b { display: block; font-family: var(--font-display); font-size: clamp(1.45rem, 3vw, 2rem); color: #fff; font-weight: 800; letter-spacing: -.02em; }
.hero__stats span { font-size: .82rem; color: #9fb2c6; text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 640px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__stats div:nth-child(3) { border-left: none; }
  .hero__stats div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
}

/* ----- Placeholder component ------------------------------------------- */
.ph {
  position: relative; width: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(10,37,64,.025) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, #eef2f7, #dde5ee);
  color: var(--navy);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  overflow: hidden;
}
.ph__mark { width: 46px; height: 46px; color: var(--navy); }
.ph__label { font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--navy-700); padding-inline: 1rem; text-align: center; }
.ph__hint { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; color: var(--slate); opacity: .7; }

/* ----- Offerings grid -------------------------------------------------- */
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; }
.offer {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.offer:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.offer__icon { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, #fbf3e3, #f3e3c2); color: var(--gold); display: grid; place-items: center; margin-bottom: 1rem; }
.offer__icon svg { width: 23px; height: 23px; }
.offer h3 { font-size: 1.1rem; margin-bottom: .45rem; }
.offer p { color: var(--slate); font-size: .92rem; }

/* ----- Split feature --------------------------------------------------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev .split__media { order: -1; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--rev .split__media { order: 0; } }
.split__media .ph { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3; }
.split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split h2 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); }
.split p { color: var(--slate); margin-top: .9rem; }
.section--navy .split p { color: #9fb2c6; }
.ticks { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: .85rem; }
.ticks li { display: flex; gap: .8rem; align-items: flex-start; font-weight: 500; color: var(--ink); }
.section--navy .ticks li { color: #dce6f0; }
.ticks li svg { flex: none; width: 22px; height: 22px; color: var(--gold); margin-top: 2px; }

/* ----- Gallery --------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 1rem; }
.gallery .g-tall { grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }

.gcell {
  position: relative; overflow: hidden; border: 0; padding: 0; margin: 0;
  border-radius: var(--radius); cursor: pointer; background: var(--bg-soft);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.gcell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.gcell:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.gcell:hover img { transform: scale(1.08); }
.gcell:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.gcell__overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  padding: 1rem 1.1rem;
  background: linear-gradient(to top, rgba(8,20,36,.72) 0%, rgba(8,20,36,.15) 45%, transparent 70%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.gcell:hover .gcell__overlay, .gcell:focus-visible .gcell__overlay { opacity: 1; }
.gcell__cap { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1rem; letter-spacing: -.01em; text-align: left; }
.gcell__overlay::after {
  content: ""; position: absolute; top: .9rem; right: .9rem; width: 38px; height: 38px;
  border-radius: 50%; background: rgba(255,255,255,.92);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230a2540' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
@media (max-width: 760px) {
  /* Horizontal swipe carousel — peek of the next card, snap to centre */
  .gallery {
    display: flex; grid-template-columns: none; grid-auto-rows: auto; gap: .8rem;
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding-bottom: .4rem;
    margin-inline: calc(var(--gut) * -1); padding-inline: var(--gut);
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery .gcell, .gallery .g-tall, .gallery .g-wide {
    flex: 0 0 80%; grid-row: auto; grid-column: auto; height: 230px; scroll-snap-align: center;
  }
  .gcell__overlay { opacity: 1; background: linear-gradient(to top, rgba(8,20,36,.66) 0%, transparent 60%); padding: .7rem .8rem; }
  .gcell__cap { font-size: .85rem; }
  .gcell__overlay::after { width: 30px; height: 30px; top: .6rem; right: .6rem; background-size: 15px; }
}

/* ----- Lightbox -------------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center;
  background: rgba(6,15,28,.92); backdrop-filter: blur(6px);
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.is-open { display: flex; animation: lbfade .25s ease; }
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
body.lb-lock { overflow: hidden; }
.lightbox__stage { margin: 0; max-width: 1100px; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.lightbox__stage img { max-width: 100%; max-height: 80vh; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.5); object-fit: contain; }
.lightbox__stage figcaption { color: #e7eef5; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: .02em; }
.lightbox__close {
  position: absolute; top: 1.1rem; right: 1.2rem; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%; border: 0; color: #fff; font-size: 2rem; line-height: 1;
  background: rgba(255,255,255,.12); transition: background .2s, transform .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,.24); transform: rotate(90deg); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 54px; height: 54px; border-radius: 50%; border: 0; color: #fff; font-size: 2rem; line-height: 1;
  background: rgba(255,255,255,.12); transition: background .2s;
}
.lightbox__nav:hover { background: rgba(255,255,255,.26); }
.lightbox__prev { left: clamp(.6rem, 2vw, 1.6rem); }
.lightbox__next { right: clamp(.6rem, 2vw, 1.6rem); }
.lightbox__count { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .85rem; letter-spacing: .1em; }
@media (max-width: 560px) {
  .lightbox__nav { width: 44px; height: 44px; font-size: 1.6rem; bottom: 1.2rem; top: auto; transform: none; }
  .lightbox__prev { left: 25%; } .lightbox__next { right: 25%; }
  .lightbox__count { bottom: 4.4rem; }
}

/* ----- Modal (availability result + booking form) ---------------------- */
.modal { position: fixed; inset: 0; z-index: 300; display: none; }
.modal.is-open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(6,15,28,.6); backdrop-filter: blur(4px); animation: lbfade .25s ease; }
.modal__card {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(440px, calc(100vw - 1.6rem)); max-height: calc(100dvh - 1.6rem); overflow-x: hidden; overflow-y: auto;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: clamp(1.4rem, 4vw, 2rem); animation: modalpop .3s var(--ease);
}
@keyframes modalpop { from { opacity: 0; transform: translate(-50%, -46%) scale(.97); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
.modal__close { position: absolute; top: .7rem; right: .8rem; width: 36px; height: 36px; border-radius: 50%; border: 0; background: var(--bg-soft); color: var(--navy); font-size: 1.5rem; line-height: 1; transition: background .2s; }
.modal__close:hover { background: #e9edf2; }
.modal__title { font-size: 1.3rem; margin-bottom: .25rem; }
.modal__sub { color: var(--slate); font-size: .9rem; margin-bottom: 1.2rem; }
.modal__link { display: block; width: 100%; text-align: center; margin-top: .9rem; background: none; border: 0; color: var(--slate); font-size: .88rem; text-decoration: underline; }
.modal__link:hover { color: var(--navy); }

#mResult { text-align: center; }
.mResult__icon { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-size: 1.7rem; font-weight: 800; margin: .3rem auto 1rem; font-family: var(--font-display); }
.mResult__icon--available { background: #e9f7ef; color: #1c7a43; }
.mResult__icon--limited { background: #fff3e0; color: #9a6a16; }
.mResult__title { font-size: 1.35rem; margin-bottom: .3rem; }
.mResult__sub { color: var(--slate); margin-bottom: 1.4rem; }
#mResult .btn { width: 100%; }

/* the relocated form card sits flush inside the modal (no nested card chrome) */
#bookingSlot .form-card { box-shadow: none; padding: 0; }

/* ----- Steps ----------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 2rem; background: var(--bg-soft); border-radius: var(--radius-lg); border: 1px solid var(--line); }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: #fff; background: var(--navy); width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 1.2rem; }
.step h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.step p { color: var(--slate); font-size: .96rem; }

/* ----- Booking / enquiry form ------------------------------------------ */
.booking { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 880px) { .booking { grid-template-columns: 1fr; } }
.booking__aside h2 { color: #fff; font-size: clamp(1.6rem, 2.8vw, 2.15rem); }
.booking__aside p { color: #9fb2c6; margin-top: .8rem; }
.booking__contact { margin-top: 1.4rem; display: grid; gap: .85rem; }
.booking__contact a, .booking__contact span { display: flex; gap: .85rem; align-items: center; color: #dce6f0; font-weight: 500; }
.booking__contact svg { width: 20px; height: 20px; color: var(--gold-soft); flex: none; }

.form-card { background: #fff; border-radius: var(--radius-lg); padding: clamp(1.1rem, 2.4vw, 1.7rem); box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .3rem; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .8rem; font-weight: 600; color: var(--navy); font-family: var(--font-display); }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .93rem; padding: .62rem .8rem;
  width: 100%; min-width: 0; max-width: 100%; box-sizing: border-box;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--bg-soft);
  color: var(--ink); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(184,137,58,.14);
}
.field textarea { resize: vertical; min-height: 72px; }
.form-card .btn { width: 100%; margin-top: .2rem; }
.form-note { font-size: .82rem; color: var(--slate); text-align: center; margin-top: .9rem; }
.form-alert { padding: .9rem 1.1rem; border-radius: 11px; font-size: .92rem; font-weight: 500; margin-bottom: 1.3rem; }
.form-alert--ok { background: #e7f7ed; color: #1c7a43; border: 1px solid #b9e6c9; }
.form-alert--err { background: #fdecec; color: #b3261e; border: 1px solid #f5c6c4; }

/* ----- Availability checker -------------------------------------------- */
.availability { background: var(--bg-soft); }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #25a35a; box-shadow: 0 0 0 0 rgba(37,163,90,.5); animation: livepulse 1.8s ease-out infinite; }
@keyframes livepulse { 0% { box-shadow: 0 0 0 0 rgba(37,163,90,.5); } 70% { box-shadow: 0 0 0 7px rgba(37,163,90,0); } 100% { box-shadow: 0 0 0 0 rgba(37,163,90,0); } }

.avail-card {
  max-width: 520px; margin-inline: auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1rem, 2.4vw, 1.5rem); box-shadow: var(--shadow);
}

.avail-spaces { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; margin-bottom: 1.1rem; }
.avail-space {
  border: 1.5px solid var(--line); background: #fff; color: var(--slate);
  padding: .4rem .8rem; border-radius: 100px; font-family: var(--font-display);
  font-weight: 600; font-size: .78rem; transition: all .2s var(--ease);
}
.avail-space:hover { border-color: var(--navy); color: var(--navy); }
.avail-space.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
@media (max-width: 560px) {
  .avail-spaces { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
  .avail-space { width: 100%; padding: .55rem .5rem; line-height: 1.2; }
}

.avail-cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .7rem; }
.avail-cal__head strong { font-family: var(--font-display); font-size: 1.02rem; color: var(--navy); }
.avail-nav {
  width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff;
  color: var(--navy); font-size: 1.1rem; line-height: 1; transition: all .2s var(--ease);
}
.avail-nav:hover:not(:disabled) { border-color: var(--navy); background: var(--navy); color: #fff; }
.avail-nav:disabled { opacity: .35; cursor: not-allowed; }

.avail-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-bottom: .35rem; }
.avail-weekdays span { text-align: center; font-size: .66rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--slate); }

.avail-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; min-height: 220px; }
.avail-loading { grid-column: 1 / -1; display: grid; place-items: center; color: var(--slate); font-size: .9rem; }

.avail-day {
  position: relative; height: 38px; border: 1.5px solid transparent; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: .85rem;
  background: var(--bg-soft); color: var(--ink); transition: transform .15s var(--ease), box-shadow .15s, border-color .15s;
}
.avail-day.is-blank { background: transparent; border: 0; }
.avail-day--available { background: #e9f7ef; color: #1c7a43; cursor: pointer; }
.avail-day--available:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: #25a35a; }
.avail-day--limited { background: #fff3e0; color: #9a6a16; cursor: pointer; }
.avail-day--limited:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: #e0a32e; }
.avail-day--booked { background: #fdecec; color: #c25b54; cursor: not-allowed; text-decoration: line-through; }
.avail-day--past { background: transparent; color: #c2c9d2; cursor: default; }
.avail-day.is-selected { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,37,64,.12); }
.avail-day:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.avail-hint { display: flex; align-items: center; justify-content: center; gap: .45rem; margin-top: 1rem; font-size: .85rem; font-weight: 500; color: var(--navy); }
.avail-hint svg { width: 17px; height: 17px; color: var(--gold); flex: none; }

.avail-legend { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; margin-top: .8rem; font-size: .76rem; color: var(--slate); }
.avail-legend .dot { display: inline-block; width: 11px; height: 11px; border-radius: 4px; margin-right: .4rem; vertical-align: -1px; }
.dot--ok { background: #25a35a; } .dot--limited { background: #e0a32e; } .dot--booked { background: #d96b63; }
.avail-legend__note { margin-left: auto; display: inline-flex; align-items: center; gap: .4rem; color: #25a35a; font-weight: 600; }
@media (max-width: 520px) { .avail-legend__note { margin-left: 0; width: 100%; justify-content: center; } }

.avail-result {
  margin-top: 1.4rem; padding: 1.1rem 1.2rem; border-radius: var(--radius); display: flex;
  flex-wrap: wrap; align-items: center; gap: .9rem 1rem; animation: lbfade .3s ease;
}
.avail-result--ok { background: #e9f7ef; border: 1px solid #b9e6c9; }
.avail-result--busy { background: #fff3e0; border: 1px solid #f0d9a8; }
.avail-result__text { flex: 1; min-width: 200px; font-weight: 500; color: var(--ink); }
.avail-result__text strong { font-family: var(--font-display); }
.avail-result__alts { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem; }
.avail-alt { background: #fff; border: 1.5px solid var(--line); border-radius: 100px; padding: .3rem .8rem; font-size: .82rem; font-weight: 600; color: var(--navy); cursor: pointer; transition: border-color .2s; }
.avail-alt:hover { border-color: var(--gold); }
.avail-noscript { text-align: center; color: var(--slate); margin-top: 1rem; }

/* Prefill banner inside the booking form */
.avail-prefill {
  background: #e9f7ef; border: 1px solid #b9e6c9; color: #1c7a43;
  border-radius: 11px; padding: .7rem .9rem; margin-bottom: 1.2rem; font-size: .9rem; font-weight: 500;
}

/* ----- Map / location -------------------------------------------------- */
.map-frame { border: 0; width: 100%; height: 420px; border-radius: var(--radius-lg); box-shadow: var(--shadow); filter: grayscale(.15); }

/* ----- Footer ---------------------------------------------------------- */
.site-footer { background: var(--ink); color: #9fb2c6; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.2rem; font-family: var(--font-display); }
.site-footer a { color: #b8c6d6; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-links { list-style: none; padding: 0; display: grid; gap: .7rem; font-size: .96rem; }
.footer-about p { font-size: .96rem; margin-top: 1rem; max-width: 38ch; }
.footer-brand { display: flex; align-items: center; gap: .7rem; }
.footer-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; }

/* ----- Floating WhatsApp ----------------------------------------------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* ----- Reveal-on-scroll ------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
