/* =========================================================
   EXZODIAC — stylesheet
   Mobile-first. Breakpoints: 640 / 860 / 1100 / 1400
   ========================================================= */

:root{
  --c-black:#0B0B0B;
  --c-dark:#1A1A1A;
  --c-white:#FFFFFF;
  --c-gray:#A1A1A1;
  --c-gold:#C9A24B;
  --c-gold-light:#E2C16E;

  --font: 'Avenir Next', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --header-h: 64px;
  --container: 1280px;
  --pad: 1.25rem;

  --ease: cubic-bezier(.22,.61,.36,1);
}

@media (min-width: 640px){ :root{ --pad: 2rem; } }
@media (min-width: 1100px){ :root{ --header-h: 84px; --pad: 3rem; } }

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html,body{ background:var(--c-black); }

body{
  margin:0;
  font-family:var(--font);
  color:var(--c-white);
  background:var(--c-black);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; background:none; border:none; color:inherit; }
ul{ list-style:none; margin:0; padding:0; }
svg{ width:1em; height:1em; fill:currentColor; }

::selection{ background:var(--c-gold); color:var(--c-black); }

.skip-link{
  position:absolute; top:-100px; left:1rem; z-index:999;
  background:var(--c-gold); color:var(--c-black); padding:.6rem 1rem;
  border-radius:2px; transition:top .2s var(--ease);
}
.skip-link:focus{ top:1rem; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

/* =========================== Layout helpers =========================== */
.section{ padding:5rem 0; position:relative; scroll-margin-top:var(--header-h); }
.section__inner{ max-width:var(--container); margin:0 auto; padding:0 var(--pad); }
.section__inner--center{ text-align:center; display:flex; flex-direction:column; align-items:center; }

.eyebrow{
  color:var(--c-gold); font-size:.72rem; font-weight:600; letter-spacing:.28em;
  text-transform:uppercase; margin:0 0 .9rem;
}
.h2{
  font-weight:200; font-size:clamp(1.7rem, 5vw, 2.7rem); line-height:1.18;
  letter-spacing:.02em; text-transform:uppercase; margin:0 0 1.2rem; color:var(--c-white);
}
.h2 .accent{ color:var(--c-gold); }
.rule-short{
  display:block; width:52px; height:2px; background:var(--c-gold); margin:0 0 1.6rem;
}
.section__inner--center .rule-short{ margin-left:auto; margin-right:auto; }

.body-text{
  color:var(--c-white); font-weight:400; font-size:1rem; line-height:1.75; margin:0 0 1.1rem;
  max-width:52ch;
}
.body-text--center{ margin-left:auto; margin-right:auto; text-align:center; }
.body-text strong{ color:var(--c-white); font-weight:500; }

/* =========================== Buttons =========================== */
.btn{
  display:inline-flex; align-items:center; gap:.7rem; padding:1rem 1.7rem;
  border:1px solid var(--c-gold); color:var(--c-gold);
  font-size:.78rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase;
  transition:background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
  white-space:nowrap;
}
.btn--outline:hover, .btn--outline:focus-visible{ background:var(--c-gold); color:var(--c-black); }
.btn--sm{ padding:.8rem 1.3rem; font-size:.72rem; }
.btn--gold{ background:var(--c-gold); color:var(--c-black); border-color:var(--c-gold); width:100%; justify-content:center; }
.btn--gold:hover{ background:var(--c-gold-light); border-color:var(--c-gold-light); }
.btn:active{ transform:scale(.98); }
.btn__arrow{ width:16px; height:16px; flex:none; transition:transform .25s var(--ease); }
.btn:hover .btn__arrow{ transform:translateX(4px); }
.btn__arrow path{ fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

.link-more{
  display:inline-flex; align-items:center; gap:.6rem; color:var(--c-white);
  font-size:.78rem; font-weight:500; letter-spacing:.14em; text-transform:uppercase;
  border-bottom:1px solid transparent; padding-bottom:4px; transition:border-color .2s var(--ease), color .2s var(--ease);
}
.link-more:hover{ color:var(--c-gold); border-color:var(--c-gold); }
.link-more .btn__arrow{ width:14px; height:14px; }
.link-more .btn__arrow path{ fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

/* =========================== Header =========================== */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:120;
  height:var(--header-h); display:flex; align-items:center;
  background:linear-gradient(to bottom, rgba(11,11,11,.75), transparent);
  transition:background .35s var(--ease), backdrop-filter .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled{
  background:rgba(11,11,11,.92); backdrop-filter:blur(10px);
  box-shadow:0 1px 0 rgba(255,255,255,.06);
}
.header-inner{
  width:100%; max-width:var(--container); margin:0 auto; padding:0 var(--pad);
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
.header-side{ display:flex; align-items:center; gap:1.1rem; flex:1; min-width:0; }
.header-side--right{ justify-content:flex-end; }

.social-row{ display:none; align-items:center; gap:1rem; }
@media (min-width:640px){ .social-row{ display:flex; } }
.social-row li a{ display:flex; color:var(--c-white); opacity:.85; transition:opacity .2s, color .2s; }
.social-row li a:hover{ opacity:1; color:var(--c-gold); }
.social-row svg{ width:16px; height:16px; }
.social-row--lg{ justify-content:center; gap:1.5rem; margin:2rem 0; }
.social-row--lg svg{ width:20px; height:20px; }

.header-logo{ display:flex; align-items:center; flex:none; }
.header-logo img{ height:24px; width:auto; display:block; }
@media (min-width:1100px){ .header-logo img{ height:28px; } }

.lang-toggle{ display:flex; align-items:center; gap:.4rem; font-size:.72rem; letter-spacing:.1em; font-weight:600; color:var(--c-gray); }
.lang-toggle .lang-sep{ opacity:.4; }
.lang-toggle .is-active{ color:var(--c-gold); }

.burger{ width:26px; height:18px; position:relative; flex:none; }
.burger span{
  position:absolute; left:0; right:0; height:2px; background:var(--c-white);
  transition:transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}
.burger span:nth-child(1){ top:0; }
.burger span:nth-child(2){ top:8px; }
.burger span:nth-child(3){ top:16px; }
.burger.is-open span:nth-child(1){ top:8px; transform:rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity:0; }
.burger.is-open span:nth-child(3){ top:8px; transform:rotate(-45deg); }

/* =========================== Mobile nav drawer =========================== */
.mobile-nav{
  position:fixed; top:0; right:0; height:100dvh; width:min(84vw, 360px); z-index:110;
  background:var(--c-dark); border-left:1px solid rgba(255,255,255,.08);
  padding:calc(var(--header-h) + 2rem) 2.2rem 2rem;
  transform:translateX(100%); transition:transform .4s var(--ease);
  display:flex; flex-direction:column; justify-content:space-between;
}
.mobile-nav.is-open{ transform:translateX(0); }
.mobile-nav ul{ display:flex; flex-direction:column; gap:1.5rem; }
.mobile-nav > ul:first-of-type a{
  font-size:1.4rem; font-weight:200; text-transform:uppercase; letter-spacing:.04em; color:var(--c-white);
  transition:color .2s;
}
.mobile-nav > ul:first-of-type a:hover{ color:var(--c-gold); }
.mobile-nav__social{ flex-direction:row !important; gap:1.5rem !important; padding-top:1.5rem; border-top:1px solid rgba(255,255,255,.08); }
.mobile-nav__social a{ font-size:.72rem; letter-spacing:.1em; color:var(--c-gray); text-transform:uppercase; }

.nav-backdrop{
  position:fixed; inset:0; z-index:105; background:rgba(0,0,0,.55);
  opacity:0; pointer-events:none; transition:opacity .3s var(--ease);
}
.nav-backdrop.is-open{ opacity:1; pointer-events:auto; }

/* =========================== Hero =========================== */
.hero{
  position:relative; height:100dvh; min-height:560px; display:flex; flex-direction:column;
  justify-content:flex-end; overflow:hidden; background:var(--c-black);
}
.hero__media{ position:absolute; inset:0; z-index:0; }
.hero__desktop-img, .hero__mobile-img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
}
.hero__mobile-img{ display:block; object-position:50% 25%; }
.hero__desktop-img{ display:none; object-position:50% 15%; }
@media (min-width:1100px){
  .hero__desktop-img{ display:block; }
  .hero__mobile-img{ display:none; }
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(to top, rgba(11,11,11,.97) 0%, rgba(11,11,11,.88) 28%, rgba(11,11,11,.52) 52%, rgba(11,11,11,.32) 70%, rgba(11,11,11,.5) 100%);
}
.hero__content{
  position:relative; z-index:2; padding:0 var(--pad) 4.2rem; max-width:var(--container); margin:0 auto; width:100%;
}
.hero__title{
  margin:0 0 1rem; font-weight:200; text-transform:uppercase; line-height:1.06;
  font-size:clamp(2.4rem, 10vw, 4.6rem); letter-spacing:.01em;
  text-shadow:0 2px 20px rgba(0,0,0,.6), 0 1px 3px rgba(0,0,0,.6);
}
.hero__title .line-1{ display:block; color:var(--c-white); }
.hero__title .line-2{ display:block; color:var(--c-gold); font-weight:300; }
.hero__rule{ display:block; width:44px; height:2px; background:var(--c-gold); margin-bottom:.9rem; }
.hero__sub{
  margin:0 0 2rem; color:var(--c-gray); font-size:.85rem; letter-spacing:.28em; font-weight:400;
  text-transform:uppercase; text-shadow:0 1px 10px rgba(0,0,0,.7);
}
.hero__scroll{
  position:absolute; left:50%; bottom:1.6rem; transform:translateX(-50%); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:.5rem; color:var(--c-gold-light);
  animation:bob 2.6s ease-in-out infinite;
}
.hero__scroll-line{ width:1px; height:26px; background:linear-gradient(to bottom, transparent, var(--c-gold)); }
.hero__scroll svg{ width:16px; height:16px; }
@keyframes bob{ 0%,100%{ transform:translate(-50%,0);} 50%{ transform:translate(-50%,6px);} }

@media (min-width:860px){
  .hero__content{ max-width:640px; }
}

/* =========================== About =========================== */
.about__grid{ display:grid; gap:2.8rem; }
.about__media{ position:relative; }
.about__media img{ width:100%; aspect-ratio:4/5; object-fit:cover; }
.about__wave{ display:none; }
.about__text .btn{ margin-top:.6rem; }

@media (min-width:860px){
  .about__grid{ grid-template-columns:1fr 1fr; align-items:center; gap:4rem; }
  .about{ padding:7rem 0; overflow:hidden; }
  .about__media img{ aspect-ratio:3/4; }
  .about__wave{
    display:block; position:absolute; right:-36px; bottom:-24px; width:130px; height:230px;
    opacity:.55; pointer-events:none;
  }
}

/* =========================== Members =========================== */
.members{ padding-bottom:4.5rem; }
.members .section__inner{ text-align:center; }
.members .rule-short{ margin-left:auto; margin-right:auto; }

.carousel{ position:relative; margin:2.5rem 0 3rem; }
.carousel__track{
  display:flex; gap:1rem; overflow-x:auto; scroll-snap-type:x mandatory;
  padding:0 var(--pad) 1rem; scrollbar-width:none;
}
.carousel__track::-webkit-scrollbar{ display:none; }
.carousel__slide{
  flex:0 0 82%; scroll-snap-align:center; border-radius:2px; overflow:hidden; aspect-ratio:3/4;
}
.carousel__slide img{ width:100%; height:100%; object-fit:cover; }
.carousel__arrow{
  position:absolute; top:calc(50% - 1rem); width:42px; height:42px; border-radius:50%;
  background:rgba(11,11,11,.6); border:1px solid rgba(255,255,255,.25); display:none;
  align-items:center; justify-content:center; color:var(--c-white); z-index:2;
  transition:background .2s, border-color .2s;
}
.carousel__arrow:hover{ background:var(--c-gold); border-color:var(--c-gold); color:var(--c-black); }
.carousel__arrow svg{ width:18px; height:18px; }
.carousel__arrow svg path{ fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.carousel__arrow--prev{ left:.5rem; }
.carousel__arrow--next{ right:.5rem; }

.carousel__dots{ display:flex; justify-content:center; gap:.5rem; margin-top:.5rem; }
.carousel__dots span{
  width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,.25); transition:background .25s, width .25s;
}
.carousel__dots span.is-active{ background:var(--c-gold); width:18px; border-radius:3px; }

@media (min-width:640px){
  .carousel__slide{ flex-basis:46%; }
}
@media (min-width:1100px){
  .carousel{ max-width:var(--container); margin-left:auto; margin-right:auto; padding:0 calc(var(--pad) + 50px); }
  .carousel__slide{ flex-basis:31%; aspect-ratio:4/5; }
  .carousel__arrow{ display:flex; }
}

.roster{
  display:grid; grid-template-columns:repeat(2,1fr); gap:2rem 1.1rem; max-width:900px; margin:0 auto;
}
.roster__item{
  display:flex; flex-direction:column; text-align:left;
}
.roster__photo{
  position:relative; width:100%; aspect-ratio:4/5; overflow:hidden;
  background:var(--c-dark); border:1px solid rgba(255,255,255,.1); margin:0 0 .9rem;
}
.roster__photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.roster__name{ display:block; font-weight:500; font-size:1rem; letter-spacing:.02em; color:var(--c-white); }
.roster__role{ display:block; color:var(--c-gray); font-size:.8rem; font-weight:300; margin-top:.15rem; }

@media (min-width:700px){
  .roster{ grid-template-columns:repeat(3,1fr); gap:2.2rem 1.6rem; }
}
@media (min-width:1100px){
  .roster{ grid-template-columns:repeat(6,1fr); max-width:var(--container); gap:1.6rem 1.3rem; }
}

/* =========================== Gallery / photo scroll =========================== */
.gallery{ padding-bottom:4rem; }

/* A vertical sequence of full-bleed photo bands the visitor scrolls
   through (inspired by infinitybandcroatia.com's long-scroll photo
   rhythm), each one still openable in the full lightbox. */
.photo-scroll{ display:flex; flex-direction:column; gap:.35rem; margin:0 0 var(--pad); }
.photo-scroll__band{
  position:relative; display:block; width:100%; border:0; padding:0; margin:0;
  cursor:pointer; overflow:hidden; background:var(--c-dark);
  height:38vh; min-height:220px; max-height:380px;
}
.photo-scroll__band--tall{ height:52vh; min-height:280px; max-height:480px; }
.photo-scroll__band--short{ height:30vh; min-height:190px; max-height:300px; }
.photo-scroll__band img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .7s var(--ease);
}
.photo-scroll__band:hover img, .photo-scroll__band:focus-visible img{ transform:scale(1.045); }
.photo-scroll__band::after{
  content:""; position:absolute; inset:0; background:rgba(11,11,11,0); transition:background .3s;
}
.photo-scroll__band:hover::after, .photo-scroll__band:focus-visible::after{ background:rgba(11,11,11,.18); }
.photo-scroll__zoom{
  position:absolute; right:1rem; bottom:1rem; width:34px; height:34px; border-radius:50%;
  background:rgba(11,11,11,.55); border:1px solid rgba(255,255,255,.35); color:var(--c-white);
  display:flex; align-items:center; justify-content:center; opacity:0; transform:translateY(6px);
  transition:opacity .25s, transform .25s;
}
.photo-scroll__band:hover .photo-scroll__zoom, .photo-scroll__band:focus-visible .photo-scroll__zoom{
  opacity:1; transform:translateY(0);
}
.photo-scroll__zoom svg{ width:15px; height:15px; }

@media (min-width:640px){
  .photo-scroll__band{ height:48vh; max-height:460px; }
  .photo-scroll__band--tall{ height:64vh; max-height:620px; }
  .photo-scroll__band--short{ height:36vh; max-height:340px; }
}
@media (min-width:1100px){
  .photo-scroll__band{ height:56vh; max-height:560px; }
  .photo-scroll__band--tall{ height:78vh; max-height:760px; }
  .photo-scroll__band--short{ height:42vh; max-height:400px; }
}
@media (prefers-reduced-motion: reduce){
  .photo-scroll__band img{ transition:none; }
}

/* =========================== Promo video =========================== */
.promo .section__inner{ text-align:center; }
.promo .rule-short{ margin-left:auto; margin-right:auto; }
.promo .h2{ max-width:44ch; margin-left:auto; margin-right:auto; }
.promo__grid{
  display:grid; gap:2rem; max-width:1100px; margin:2.5rem auto 0; padding:0 var(--pad);
}
.promo__player{ position:relative; }
.promo__player video, .promo__yt-thumb, .promo__yt-frame{
  width:100%; aspect-ratio:16/9; object-fit:cover; background:#000; margin:0 auto; display:block; border-radius:2px; border:none;
}
.promo__caption{
  margin:.9rem 0 0; font-size:.7rem; font-weight:600; letter-spacing:.22em;
  text-transform:uppercase; color:var(--c-gray); text-align:center;
}
.promo__play{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:64px; height:64px; border-radius:50%; background:rgba(11,11,11,.55);
  border:1px solid var(--c-gold); display:flex; align-items:center; justify-content:center;
  color:var(--c-gold); transition:background .2s, transform .2s;
}
.promo__play:hover{ background:var(--c-gold); color:var(--c-black); }
.promo__play svg{ width:22px; height:22px; margin-left:3px; }
.promo__player.is-playing .promo__play{ display:none; }
.promo__player--yt.is-playing .promo__yt-thumb{ display:none; }
.promo__yt-fallback{
  display:block; margin:.6rem 0 0; font-size:.72rem; color:var(--c-gray);
  text-align:center; text-decoration:underline; text-underline-offset:2px;
}
.promo__yt-fallback:hover{ color:var(--c-gold); }

@media (min-width:860px){
  .promo__grid{ grid-template-columns:1fr 1fr; gap:2.5rem; }
}

/* =========================== Repertoire =========================== */
.repertoire .section__inner{ text-align:center; }
.repertoire .rule-short{ margin-left:auto; margin-right:auto; }
.chips{
  display:flex; flex-wrap:wrap; justify-content:center; gap:.7rem; margin:2.2rem auto 0; max-width:640px;
}
.chips li{
  padding:.6rem 1.3rem; border:1px solid rgba(201,162,75,.5); border-radius:30px;
  font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; color:var(--c-gold-light);
  transition:background .2s, color .2s;
}
.chips li:hover{ background:var(--c-gold); color:var(--c-black); }

/* =========================== Booking =========================== */
.booking .section__inner:first-child{ text-align:center; }
.booking .rule-short{ margin-left:auto; margin-right:auto; }

.steps{
  display:flex; align-items:center; justify-content:center; gap:.6rem; margin:2.2rem 0 0;
  flex-wrap:wrap; color:var(--c-gray); font-size:.72rem; letter-spacing:.1em; text-transform:uppercase;
}
.steps li{ display:flex; align-items:center; gap:.5rem; }
.steps__num{
  width:22px; height:22px; border-radius:50%; border:1px solid var(--c-gold); color:var(--c-gold);
  display:flex; align-items:center; justify-content:center; font-size:.7rem; flex:none;
}
.steps__arrow{ width:14px; height:14px; opacity:.5; }
.steps__arrow svg path{ fill:none; stroke:currentColor; stroke-width:2; }

.booking__grid{ margin-top:3rem; display:grid; gap:2.5rem; }
.booking__label{
  font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; color:var(--c-white);
  margin:0 0 1.2rem; font-weight:500;
}
.booking__label-num{ color:var(--c-gold); }

.booking__col--calendar[data-step-hidden="1"],
.booking__col--form[data-step-hidden="1"]{ display:none; }

/* Calendar */
.calendar{ background:var(--c-dark); border:1px solid rgba(255,255,255,.08); padding:1.4rem; }
.calendar__head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:1.1rem; }
.calendar__head button{ width:32px; height:32px; display:flex; align-items:center; justify-content:center; color:var(--c-gray); transition:color .2s; }
.calendar__head button:hover{ color:var(--c-gold); }
.calendar__head button:disabled{ opacity:.25; pointer-events:none; }
.calendar__head svg{ width:16px; height:16px; }
.calendar__head svg path{ fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.calendar__month{ font-size:.95rem; letter-spacing:.08em; text-transform:uppercase; font-weight:500; }

.calendar__weekdays, .calendar__grid{ display:grid; grid-template-columns:repeat(7,1fr); gap:4px; }
.calendar__weekdays span{
  text-align:center; font-size:.65rem; color:var(--c-gray); letter-spacing:.06em;
  padding-bottom:.5rem; text-transform:uppercase;
}
.calendar__grid button{
  aspect-ratio:1/1; display:flex; align-items:center; justify-content:center;
  font-size:.85rem; color:var(--c-white); border-radius:50%; transition:background .2s, color .2s;
}
.calendar__grid button:disabled{ color:rgba(255,255,255,.18); pointer-events:none; }
.calendar__grid button:not(:disabled):hover{ background:rgba(201,162,75,.18); }
.calendar__grid button.is-today{ box-shadow:inset 0 0 0 1px rgba(201,162,75,.5); }
.calendar__grid button.is-selected{ background:var(--c-gold); color:var(--c-black); font-weight:600; }
.calendar__grid span.is-empty{ pointer-events:none; }

/* Form */
.booking-form{ display:grid; grid-template-columns:1fr; gap:1.1rem; }
.field{ display:flex; flex-direction:column; gap:.5rem; }
.field label{ font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:var(--c-gray); }
.field input, .field select, .field textarea{
  background:var(--c-dark); border:1px solid rgba(255,255,255,.14); color:var(--c-white);
  padding:.85rem 1rem; font-family:inherit; font-size:.92rem; border-radius:2px;
  transition:border-color .2s;
}
.field input::placeholder, .field textarea::placeholder{ color:rgba(255,255,255,.3); }
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--c-gold); }
.field input[readonly]{ color:var(--c-gold-light); cursor:default; }
.field select{ appearance:none; background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%23A1A1A1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 1rem center; background-size:16px; }
.field textarea{ resize:vertical; min-height:100px; }
.hp-field{ position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }
.field__error{ color:#e6786b; font-size:.78rem; margin:.8rem 0 0; text-align:center; }

.booking-success{
  text-align:center; padding:2.5rem 1rem; border:1px solid rgba(201,162,75,.35); background:rgba(201,162,75,.06);
}
.booking-success__icon{ width:38px; height:38px; color:var(--c-gold); margin-bottom:1rem; }
.booking-success__icon path{ fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.booking-success p{ color:var(--c-white); font-weight:300; font-size:1rem; max-width:36ch; margin:0 auto; }

.booking-fallback{
  text-align:center; padding:2rem 1.2rem; border:1px solid rgba(230,120,107,.4); background:rgba(230,120,107,.06);
}
.booking-fallback p{ color:var(--c-gray); font-weight:300; font-size:.92rem; max-width:38ch; margin:0 auto 1.2rem; }

@media (min-width:860px){
  .booking__col--calendar[data-step-hidden="1"],
  .booking__col--form[data-step-hidden="1"]{ display:block; }
  .booking__grid{ grid-template-columns:1fr 1fr; gap:3rem; }
  .booking-form{ grid-template-columns:1fr 1fr; }
  .field--full{ grid-column:1 / -1; }
  .field--date{ grid-column:1 / -1; }
  .btn--gold{ width:auto; padding-left:2.4rem; padding-right:2.4rem; }
  .field--full .btn--gold{ display:inline-flex; }
}

/* =========================== Contact =========================== */
.contact__grid{ display:flex; flex-direction:column; gap:1rem; align-items:center; margin:1rem 0 1.6rem; width:100%; }
.contact__item{
  display:flex; align-items:center; gap:.7rem; color:var(--c-white); font-size:.95rem; font-weight:300;
  transition:color .2s;
}
.contact__item:hover{ color:var(--c-gold); }
.contact__item svg{ width:18px; height:18px; color:var(--c-gold); flex:none; }
.contact__item svg path{ fill:currentColor; }
@media (min-width:640px){
  .contact__grid{ flex-direction:row; justify-content:center; flex-wrap:wrap; gap:2.5rem; }
}

/* =========================== Footer =========================== */
.site-footer{ background:var(--c-dark); padding-top:4rem; border-top:1px solid rgba(255,255,255,.08); }
.footer__grid{ display:grid; grid-template-columns:1fr; gap:2.6rem; padding-bottom:3rem; }
.footer__brand img{ height:24px; margin-bottom:1rem; }
.footer__brand p{ color:var(--c-gray); font-size:.85rem; font-weight:300; }
.footer__heading{ color:var(--c-gold); font-size:.68rem; letter-spacing:.18em; text-transform:uppercase; margin:0 0 1rem; }
.footer__col{ display:flex; flex-direction:column; gap:.7rem; }
.footer__col a{ color:var(--c-gray); font-size:.88rem; font-weight:300; transition:color .2s; }
.footer__col a:hover{ color:var(--c-gold); }

.footer__bottom{
  border-top:1px solid rgba(255,255,255,.08); padding:1.5rem var(--pad);
  display:flex; flex-direction:column; gap:.8rem; align-items:center; text-align:center;
  max-width:var(--container); margin:0 auto;
  font-size:.72rem; color:var(--c-gray); letter-spacing:.03em;
}
.footer__legal{ display:flex; gap:1.5rem; }
.footer__legal a{ color:var(--c-gray); transition:color .2s; }
.footer__legal a:hover{ color:var(--c-gold); }

@media (min-width:640px){
  .footer__grid{ grid-template-columns:1.3fr 1fr 1fr 1fr; }
  .footer__bottom{ flex-direction:row; justify-content:space-between; }
}

/* =========================== Lightbox =========================== */
.lightbox{
  position:fixed; inset:0; z-index:200; background:rgba(6,6,6,.97);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .3s var(--ease);
}
.lightbox.is-open{ opacity:1; pointer-events:auto; }
.lightbox__stage{ max-width:92vw; max-height:86vh; display:flex; flex-direction:column; align-items:center; gap:1rem; }
.lightbox__stage img{ max-width:92vw; max-height:78vh; object-fit:contain; }
.lightbox__count{ color:var(--c-gray); font-size:.78rem; letter-spacing:.1em; }
.lightbox__close{
  position:absolute; top:1.2rem; right:1.2rem; width:42px; height:42px; color:var(--c-white);
  display:flex; align-items:center; justify-content:center; z-index:2;
}
.lightbox__close svg path{ fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; }
.lightbox__nav{
  position:absolute; top:50%; transform:translateY(-50%); width:46px; height:46px; border-radius:50%;
  background:rgba(255,255,255,.06); color:var(--c-white); display:flex; align-items:center; justify-content:center;
  transition:background .2s;
}
.lightbox__nav:hover{ background:rgba(201,162,75,.3); }
.lightbox__nav svg{ width:18px; height:18px; }
.lightbox__nav svg path{ fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.lightbox__nav--prev{ left:.8rem; }
.lightbox__nav--next{ right:.8rem; }
@media (min-width:860px){
  .lightbox__nav--prev{ left:2rem; }
  .lightbox__nav--next{ right:2rem; }
}

/* =========================== Focus =========================== */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline:2px solid var(--c-gold); outline-offset:2px;
}
