/* ==========================================================================
   PourIt4U — Private Bartending & Events
   Stylesheet
   --------------------------------------------------------------------------
   Structure
     1.  Design tokens
     2.  Reset & base
     3.  Typography helpers
     4.  Buttons
     5.  Layout / sections
     6.  Header & navigation
     7.  Hero
     8.  Benefits bar
     9.  Services
     10. About / Why choose us
     11. How it works
     12. Packages
     13. Alcohol information band
     14. CTA band
     15. Gallery + lightbox
     16. Testimonials
     17. FAQ
     18. Booking form
     19. Contact
     20. Footer
     21. Mobile action bar
     22. Modal
     23. Motion & accessibility
     24. Responsive
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  /* --- Brand palette --------------------------------------------------- */
  --black:        #0A0A0B;   /* primary ground */
  --black-deep:   #040405;   /* footer / deepest */
  --black-soft:   #131316;   /* raised panels on dark */
  --black-line:   #26262B;   /* hairlines on dark */

  --gold:         #D4AF37;   /* metallic gold — the accent */
  --gold-light:   #EBD183;   /* highlight */
  --gold-deep:    #8A6E1F;   /* shadow side of the gold */
  --gold-ink:     #7A6018;   /* gold that is readable on cream */
  --gold-grad:    linear-gradient(135deg, #F3E2A8 0%, #D4AF37 42%, #A9822B 68%, #E8CE7C 100%);

  --cream:        #F7F4EE;   /* warm white sections */
  --cream-2:      #EFEAE1;   /* subtle alternate */
  --ink:          #17160F;   /* text on cream */
  --ink-soft:     #4A463C;   /* secondary text on cream */
  --ink-line:     #DCD5C8;   /* hairlines on cream */

  --white:        #FFFFFF;
  --on-dark:      #F2EFE8;   /* body text on black */
  --on-dark-soft: #B4AFA3;   /* secondary text on black */

  /* --- Type ------------------------------------------------------------ */
  --serif:  'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --script: 'Parisienne', 'Brush Script MT', cursive;

  /* --- Rhythm ---------------------------------------------------------- */
  --wrap:      1180px;
  --wrap-tight: 940px;
  --gutter:    clamp(18px, 4vw, 40px);
  --section-y: clamp(52px, 6.4vw, 84px);
  --radius:    10px;
  --radius-lg: 14px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, .12);
  --shadow-dark: 0 14px 40px rgba(0, 0, 0, .55);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 84px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--on-dark);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;           /* belt-and-braces: never scroll sideways */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
[hidden] { display: none !important; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.16;
  margin: 0;
  letter-spacing: -.01em;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* Accessible-but-invisible text (used for the SEO headline behind the logo) */
.sr-only {
  position: absolute !important;
  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: 50%;
  top: -60px;
  transform: translateX(-50%);
  z-index: 2000;
  background: var(--gold);
  color: var(--black);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 0 0 8px 8px;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 0; }

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

/* ==========================================================================
   3. TYPOGRAPHY HELPERS
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }
.eyebrow--start { margin-bottom: 10px; }
.eyebrow--start::before { display: none; }

.section--light .eyebrow { color: var(--gold-ink); }
.section--light .eyebrow::before { background: linear-gradient(90deg, transparent, var(--gold-ink)); }
.section--light .eyebrow::after  { background: linear-gradient(90deg, var(--gold-ink), transparent); }

.section-title {
  font-size: clamp(27px, 3.4vw, 40px);
  margin: 0 0 12px;
}

.section-intro {
  font-size: clamp(14.5px, 1.15vw, 16px);
  color: var(--on-dark-soft);
  max-width: 620px;
  margin: 0 auto;
}
.section--light .section-intro { color: var(--ink-soft); }

.section-head {
  text-align: center;
  margin-bottom: clamp(28px, 3.4vw, 44px);
}

.script {
  font-family: var(--script);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .01em;
}

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rule-gold {
  width: 54px;
  height: 2px;
  background: var(--gold-grad);
  border: 0;
  margin: 16px auto 0;
}

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 40px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary — gold fill, dark text */
.btn--gold {
  background: var(--gold-grad);
  color: #14110A;
  box-shadow: 0 4px 16px rgba(212, 175, 55, .22);
}
.btn--gold:hover { box-shadow: 0 8px 26px rgba(212, 175, 55, .38); }

/* Secondary on dark — gold outline */
.btn--ghost {
  background: rgba(255, 255, 255, .03);
  border-color: rgba(212, 175, 55, .55);
  color: var(--gold-light);
}
.btn--ghost:hover {
  background: rgba(212, 175, 55, .12);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Secondary on cream */
.btn--dark {
  background: var(--black);
  color: var(--on-dark);
  border-color: var(--black);
}
.btn--dark:hover { background: #1d1d21; }

.btn--outline-ink {
  background: transparent;
  border-color: var(--ink-line);
  color: var(--ink);
}
.btn--outline-ink:hover { border-color: var(--gold-ink); color: var(--gold-ink); }

.btn--sm { padding: 10px 20px; min-height: 40px; font-size: 11.5px; }
.btn--block { width: 100%; }
.btn__arrow { transition: transform .2s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Quiet text link with an underline that grows on hover */
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
  min-height: 34px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-ink);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.link-more::after {
  content: '';
  width: 14px; height: 1px;
  background: currentColor;
  transition: width .22s var(--ease);
}
.link-more:hover::after { width: 26px; }

/* ==========================================================================
   5. LAYOUT / SECTIONS
   ========================================================================== */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--tight { max-width: var(--wrap-tight); }

.section { padding-block: var(--section-y); position: relative; }
.section--light { background: var(--cream); color: var(--ink); }
.section--light h1, .section--light h2, .section--light h3, .section--light h4 { color: var(--ink); }
.section--cream2 { background: var(--cream-2); }
.section--dark { background: var(--black); }
.section--darker { background: var(--black-deep); }

/* ==========================================================================
   6. HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  background: linear-gradient(to bottom, rgba(4, 4, 5, .95), rgba(4, 4, 5, .78));
  border-bottom: 1px solid rgba(212, 175, 55, .16);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.header.is-scrolled {
  background: #050506;
  border-bottom-color: rgba(212, 175, 55, .3);
  box-shadow: 0 6px 26px rgba(0, 0, 0, .5);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: var(--header-h);
}

/* The logo is her approved artwork, used as-is. Its own background is black,
   so `screen` blending drops that black away over dark surfaces without
   altering the file itself. */
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand__img {
  height: 62px;
  width: auto;
  mix-blend-mode: screen;
}

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 26px); }
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--on-dark);
  padding: 6px 2px;
  white-space: nowrap;
  transition: color .18s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s var(--ease);
}
.nav__link:hover { color: var(--gold-light); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--gold); }

.header__cta { flex: 0 0 auto; margin-left: clamp(8px, 1.4vw, 20px); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, .35);
  border-radius: 8px;
  cursor: pointer;
  flex: 0 0 auto;
}
.nav-toggle__bars { display: block; width: 20px; height: 14px; position: relative; }
.nav-toggle__bars span {
  position: absolute;
  left: 0; right: 0;
  height: 1.6px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .18s var(--ease), top .25s var(--ease);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 6.2px; }
.nav-toggle__bars span:nth-child(3) { top: 12.4px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { top: 6.2px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { top: 6.2px; transform: rotate(-45deg); }

/* ==========================================================================
   7. HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(560px, 92vh, 860px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + clamp(24px, 4vw, 54px));
  padding-bottom: clamp(64px, 8vw, 96px);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(4,4,5,.94) 0%, rgba(4,4,5,.88) 34%, rgba(4,4,5,.62) 62%, rgba(4,4,5,.74) 100%),
    linear-gradient(to top, rgba(4,4,5,.96) 0%, rgba(4,4,5,0) 38%);
}

.hero__inner { max-width: 620px; }

.hero__logo {
  width: clamp(270px, 38vw, 500px);
  height: auto;
  mix-blend-mode: screen;
  margin-bottom: clamp(14px, 2vw, 20px);
}

.hero__copy {
  font-size: clamp(14.5px, 1.2vw, 16.5px);
  color: #DDD8CE;
  max-width: 500px;
  margin-bottom: clamp(20px, 2.6vw, 28px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(18px, 2.4vw, 26px);
}

.hero__area {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  padding-top: 16px;
  border-top: 1px solid rgba(212, 175, 55, .22);
}
.hero__area svg { color: var(--gold); flex: 0 0 auto; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  color: rgba(212, 175, 55, .7);
  animation: nudge 2.4s var(--ease) infinite;
}
@keyframes nudge {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 7px); }
}

/* ==========================================================================
   8. BENEFITS BAR
   ========================================================================== */
.benefits {
  background: var(--black-soft);
  border-top: 1px solid rgba(212, 175, 55, .18);
  border-bottom: 1px solid rgba(212, 175, 55, .18);
  padding-block: clamp(30px, 3.4vw, 42px);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.2vw, 30px);
}
.benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding-right: clamp(10px, 1.6vw, 22px);
  border-right: 1px solid var(--black-line);
}
.benefit:last-child { border-right: 0; padding-right: 0; }
.benefit__icon {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, .4);
  border-radius: 50%;
  color: var(--gold);
  flex: 0 0 auto;
}
.benefit__title {
  display: block;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 3px;
}
.benefit__text { display: block; font-size: 13.5px; color: var(--on-dark-soft); line-height: 1.5; }

/* ==========================================================================
   9. SERVICES
   ========================================================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.3vw, 16px);
}
@media (max-width: 1100px) { .services__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 780px)  { .services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.service-card {
  background: var(--white);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 1.8vw, 22px) clamp(14px, 1.4vw, 18px);
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, .6);
}
.service-card__icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  margin-bottom: 4px;
}
.service-card__title {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink);
}
.service-card__text {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.58;
  flex: 1 1 auto;
}
.service-card .link-more { margin-top: 4px; align-self: flex-start; }

/* ==========================================================================
   10. ABOUT / WHY CHOOSE US
   ========================================================================== */
.about {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  background: var(--black);
  align-items: stretch;
}
.about__media { position: relative; min-height: 340px; }
.about__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,4,5,.35) 0%, rgba(4,4,5,0) 45%, rgba(10,10,11,.9) 100%);
}
.about__body {
  padding: clamp(36px, 5vw, 70px) var(--gutter) clamp(36px, 5vw, 70px) clamp(24px, 4vw, 56px);
  max-width: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about__title { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 14px; }
.about__text { font-size: 15px; color: var(--on-dark-soft); margin-bottom: 12px; max-width: 520px; }
.about__points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: clamp(20px, 2.6vw, 28px);
  padding-top: clamp(20px, 2.6vw, 26px);
  border-top: 1px solid var(--black-line);
}
.about__point { text-align: center; }
.about__point svg { color: var(--gold); margin: 0 auto 8px; }
.about__point span {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark);
  line-height: 1.4;
}

/* ==========================================================================
   11. HOW IT WORKS
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 26px);
  position: relative;
}
/* subtle connecting line behind the numbered circles */
.steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.45) 12%, rgba(212,175,55,.45) 88%, transparent);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step__num {
  width: 54px; height: 54px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, .5);
  background: var(--cream);
  color: var(--gold-ink);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.step:hover .step__num {
  background: var(--gold-grad);
  color: #14110A;
  transform: translateY(-3px);
}
.section--dark .step__num { background: var(--black); color: var(--gold); }
.step__title {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.step__text { display: block; font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; max-width: 240px; margin-inline: auto; }

/* ==========================================================================
   12. PACKAGES
   ========================================================================== */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}
.package {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--black-soft);
  border: 1px solid var(--black-line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 32px) clamp(18px, 2.2vw, 26px);
  transition: transform .26s var(--ease), border-color .26s var(--ease), box-shadow .26s var(--ease);
}
.package:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, .5);
  box-shadow: var(--shadow-dark);
}
.package--featured {
  border-color: rgba(212, 175, 55, .65);
  background: linear-gradient(180deg, #17161A 0%, #101013 100%);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, .16), 0 18px 44px rgba(0, 0, 0, .5);
}
.package__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-grad);
  color: #14110A;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  white-space: nowrap;
}
.package__name {
  font-size: clamp(20px, 2vw, 25px);
  color: var(--white);
  margin-bottom: 4px;
}
.package__subtitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.package__blurb {
  font-size: 13.5px;
  color: var(--on-dark-soft);
  line-height: 1.55;
  margin-bottom: 16px;
}
.package__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 0;
  margin-bottom: 16px;
  border-top: 1px solid var(--black-line);
  border-bottom: 1px solid var(--black-line);
}
.package__price-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.package__price-value {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.package__price--tbd .package__price-value {
  font-size: 15px;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--gold-light);
}
.package__hours {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-left: auto;
  white-space: nowrap;
}
.package__list { display: grid; gap: 9px; margin-bottom: 22px; flex: 1 1 auto; align-content: start; }
.package__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13.5px;
  color: var(--on-dark);
  line-height: 1.45;
}
.package__list svg { color: var(--gold); margin-top: 4px; flex: 0 0 auto; }
/* --- Add-ons strip (extra hour, second bartender, travel, deposit) --- */
.add-ons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(18px, 2.2vw, 26px);
  background: var(--black-line);
  border: 1px solid var(--black-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.add-on {
  background: var(--black-soft);
  padding: clamp(14px, 1.6vw, 18px) clamp(12px, 1.4vw, 18px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: center;
}
.add-on__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.add-on__price {
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.15;
}
.add-on__note { font-size: 12px; color: var(--on-dark-soft); line-height: 1.4; }

.packages__note {
  text-align: center;
  font-size: 13.5px;
  color: var(--on-dark-soft);
  max-width: 660px;
  margin: clamp(24px, 3vw, 32px) auto 0;
  line-height: 1.6;
}

/* ==========================================================================
   13. ALCOHOL INFORMATION BAND
   ========================================================================== */
.alcohol {
  background: var(--cream-2);
  color: var(--ink);
  padding-block: clamp(34px, 4vw, 48px);
}
.alcohol__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 2.6vw, 30px);
  align-items: center;
  max-width: 900px;
  margin-inline: auto;
}
.alcohol__icon {
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  flex: 0 0 auto;
}
.alcohol__title {
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 8px;
}
.alcohol__text { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* ==========================================================================
   14. CTA BAND
   ========================================================================== */
.cta-band {
  position: relative;
  padding-block: clamp(48px, 6vw, 76px);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(4,4,5,.9), rgba(4,4,5,.82));
}
.cta-band__script {
  font-family: var(--script);
  font-size: clamp(24px, 3.4vw, 38px);
  color: var(--gold);
  line-height: 1.3;
  margin-bottom: 8px;
}
.cta-band__title { font-size: clamp(24px, 3vw, 34px); color: var(--white); margin-bottom: 12px; }
.cta-band__text { font-size: 15px; color: var(--on-dark-soft); max-width: 540px; margin: 0 auto 24px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ==========================================================================
   15. GALLERY + LIGHTBOX
   ========================================================================== */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: clamp(20px, 2.6vw, 28px);
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--black-line);
  color: var(--on-dark-soft);
  border-radius: 30px;
  padding: 8px 18px;
  min-height: 38px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.filter-btn:hover { border-color: rgba(212, 175, 55, .5); color: var(--gold-light); }
.filter-btn.is-active {
  background: var(--gold-grad);
  border-color: transparent;
  color: #14110A;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 1.1vw, 14px);
}
.gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--black-soft);
  display: block;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease), filter .35s var(--ease);
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,4,5,.75), rgba(4,4,5,0) 55%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: 1; }
.gallery__zoom {
  position: absolute;
  inset: auto 12px 12px auto;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, .92);
  color: #14110A;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.gallery__item:hover .gallery__zoom,
.gallery__item:focus-visible .gallery__zoom { opacity: 1; transform: translateY(0); }
.gallery__item.is-hidden { display: none; }

.gallery__note {
  text-align: center;
  font-size: 12.5px;
  color: var(--on-dark-soft);
  margin-top: 18px;
  font-style: italic;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(3, 3, 4, .95);
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), visibility .28s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure { margin: 0; max-width: min(1100px, 100%); text-align: center; }
.lightbox__img {
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
  margin-inline: auto;
}
.lightbox__caption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--on-dark-soft);
}
.lightbox__count {
  display: block;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}
.lightbox__btn {
  position: absolute;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(212, 175, 55, .35);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.lightbox__btn:hover { background: rgba(212, 175, 55, .2); }
.lightbox__close { top: clamp(12px, 3vw, 26px); right: clamp(12px, 3vw, 26px); }
.lightbox__prev { left: clamp(8px, 2.4vw, 26px); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(8px, 2.4vw, 26px); top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover, .lightbox__next:hover { transform: translateY(-50%) scale(1.06); }

/* ==========================================================================
   16. TESTIMONIALS
   ========================================================================== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}
.testimonial {
  position: relative;
  background: var(--black-soft);
  border: 1px solid var(--black-line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.4vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .26s var(--ease), border-color .26s var(--ease);
}
.testimonial:hover { transform: translateY(-4px); border-color: rgba(212, 175, 55, .4); }
.testimonial--placeholder { border-style: dashed; border-color: rgba(212, 175, 55, .3); }
.testimonial__stars { display: flex; gap: 3px; color: var(--gold); }
.testimonial__quote {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.55;
  color: var(--on-dark);
  flex: 1 1 auto;
}
.testimonial__meta { border-top: 1px solid var(--black-line); padding-top: 12px; }
.testimonial__name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial__event { font-size: 12.5px; color: var(--on-dark-soft); }
.testimonials__disclaimer {
  text-align: center;
  font-size: 12.5px;
  color: var(--on-dark-soft);
  margin-top: 18px;
  font-style: italic;
}

/* ==========================================================================
   17. FAQ
   ========================================================================== */
.faq__list {
  max-width: 820px;
  margin-inline: auto;
  border-top: 1px solid var(--ink-line);
}
.faq__item { border-bottom: 1px solid var(--ink-line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  background: none;
  border: 0;
  padding: 17px 2px;
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: color .18s var(--ease);
}
.faq__q:hover { color: var(--gold-ink); }
.faq__icon {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink-line);
  border-radius: 50%;
  color: var(--gold-ink);
  transition: transform .3s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.faq__q[aria-expanded="true"] { color: var(--gold-ink); }
.faq__q[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  background: var(--gold-grad);
  border-color: transparent;
  color: #14110A;
}
.faq__a {
  overflow: hidden;
  height: 0;
  transition: height .32s var(--ease);
}
.faq__a-inner {
  padding: 0 44px 20px 2px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ==========================================================================
   18. BOOKING FORM
   ========================================================================== */
.booking { background: var(--black); }
.booking__panel {
  background: var(--black-soft);
  border: 1px solid var(--black-line);
  border-top: 2px solid transparent;
  border-image: none;
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 40px);
  position: relative;
  overflow: hidden;
}
.booking__panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--gold-grad);
}

.form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
}
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field--full { grid-column: 1 / -1; }

.field__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.field__req { color: var(--gold); margin-left: 2px; }

.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--black-line);
  border-radius: 8px;
  padding: 12px 13px;
  min-height: 46px;
  color: var(--on-dark);
  font-family: var(--sans);
  font-size: 15px;           /* 16px-ish keeps iOS from zooming on focus */
  line-height: 1.4;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.field textarea { min-height: 108px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #8A857A; }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: #3A3A41; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .15);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23D4AF37' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.field input[type="date"],
.field input[type="time"] { cursor: pointer; }
.field input[type="date"]::-webkit-calendar-picker-indicator,
.field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(74%) sepia(52%) saturate(486%) hue-rotate(2deg) brightness(92%) contrast(88%);
  cursor: pointer;
}

/* Checkbox group for "Services Interested In" */
.checks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  gap: 8px;
}
.check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  min-height: 46px;
  border: 1px solid var(--black-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
  cursor: pointer;
  font-size: 13.5px;
  color: var(--on-dark);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.check:hover { border-color: rgba(212, 175, 55, .45); }
.check input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  min-height: 18px;
  padding: 0;
  border-radius: 4px;
  flex: 0 0 auto;
  border: 1px solid #4A4A52;
  border-radius: 4px;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .18s var(--ease);
}
.check input::after {
  content: '';
  width: 9px; height: 5px;
  border-left: 2px solid #14110A;
  border-bottom: 2px solid #14110A;
  transform: rotate(-45deg) scale(0);
  transition: transform .16s var(--ease);
  margin-top: -2px;
}
.check input:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.check input:checked::after { transform: rotate(-45deg) scale(1); }
.check:has(input:checked) { border-color: rgba(212, 175, 55, .7); background: rgba(212, 175, 55, .09); }

/* Validation */
.field__error {
  font-size: 12px;
  color: #FF8A80;
  min-height: 0;
  display: none;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #E2554B; }
.field.has-error .field__error { display: block; }

.form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: clamp(18px, 2.2vw, 24px);
  padding-top: clamp(16px, 2vw, 22px);
  border-top: 1px solid var(--black-line);
}
.form__privacy { font-size: 12.5px; color: var(--on-dark-soft); flex: 1 1 220px; }

/* Result panels */
.form__result {
  margin-top: 18px;
  border-radius: var(--radius);
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(212, 175, 55, .45);
  background: rgba(212, 175, 55, .07);
}
.form__result h3 {
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.form__result p { font-size: 14.5px; color: var(--on-dark); line-height: 1.6; }
.form__result-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.form__result--error { border-color: rgba(226, 85, 75, .5); background: rgba(226, 85, 75, .08); }
.form__result--error h3 { color: #FF9A90; }

.form__status { font-size: 13px; color: var(--gold-light); }

/* ==========================================================================
   19. CONTACT
   ========================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  margin-bottom: clamp(24px, 3vw, 32px);
}
.contact-card {
  background: var(--black-soft);
  border: 1px solid var(--black-line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.4vw, 28px);
  text-align: center;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); border-color: rgba(212, 175, 55, .45); }
.contact-card__icon {
  width: 46px; height: 46px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, .4);
  color: var(--gold);
}
.contact-card__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-bottom: 6px;
}
.contact-card__value {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  word-break: break-word;
  display: inline-block;
  transition: color .18s var(--ease);
}
a.contact-card__value:hover { color: var(--gold); }
.contact-card__value--muted { font-size: 14px; color: var(--on-dark-soft); font-weight: 400; }
.contact-card__sub { font-size: 12.5px; color: var(--on-dark-soft); margin-top: 6px; }

.contact__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.socials { display: flex; gap: 10px; justify-content: center; }
.social-link {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--black-line);
  color: var(--on-dark-soft);
  transition: all .22s var(--ease);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.socials__soon {
  font-size: 12.5px;
  color: var(--on-dark-soft);
  font-style: italic;
}

/* ==========================================================================
   20. FOOTER
   ========================================================================== */
.footer {
  background: var(--black-deep);
  border-top: 1px solid rgba(212, 175, 55, .18);
  padding-top: clamp(40px, 4.6vw, 60px);
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 3.4vw, 48px);
  padding-bottom: clamp(28px, 3.4vw, 40px);
}
.footer__logo {
  width: 210px;
  max-width: 100%;
  height: auto;
  mix-blend-mode: screen;
  margin-bottom: 10px;
}
.footer__descriptor {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-bottom: 8px;
}
.footer__script {
  font-family: var(--script);
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer__area { font-size: 13px; color: var(--on-dark-soft); max-width: 300px; line-height: 1.6; }

.footer__title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer__links { display: grid; gap: 2px; }
.footer__links a { display: inline-block; padding: 6px 0; }
.footer__links a,
.footer__contact a,
.footer__contact span {
  font-size: 13.5px;
  color: var(--on-dark-soft);
  transition: color .18s var(--ease);
}
.footer__links a:hover, .footer__contact a:hover { color: var(--gold); }
.footer__contact { display: grid; gap: 10px; }
.footer__contact-row { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; }
.footer__contact-row svg { color: var(--gold); margin-top: 3px; }
.footer .socials { justify-content: flex-start; margin-top: 16px; }

.footer__bar {
  border-top: 1px solid #1A1A1D;
  padding-block: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  justify-content: space-between;
}
.footer__copy { font-size: 12.5px; color: #8E887C; }
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__legal a { font-size: 12.5px; color: #8E887C; transition: color .18s var(--ease); }
.footer__legal a:hover { color: var(--gold); }

/* ==========================================================================
   21. MOBILE ACTION BAR (phones only)
   ========================================================================== */
.action-bar {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 950;
  background: rgba(6, 6, 7, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212, 175, 55, .3);
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom, 0px));
  gap: 9px;
}
.action-bar .btn { flex: 1 1 0; padding-inline: 10px; font-size: 11.5px; letter-spacing: .1em; }

/* ==========================================================================
   22. MODAL (service detail)
   ========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
  background: rgba(3, 3, 4, .9);
  opacity: 0;
  visibility: hidden;
  transition: opacity .26s var(--ease), visibility .26s var(--ease);
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  background: var(--black-soft);
  border: 1px solid rgba(212, 175, 55, .4);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  transform: translateY(14px) scale(.98);
  transition: transform .3s var(--ease);
}
.modal.is-open .modal__panel { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--black-line);
  color: var(--on-dark-soft);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.modal__close:hover { color: var(--gold); border-color: var(--gold); }
.modal__icon {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  margin-bottom: 14px;
}
.modal__title { font-size: 25px; color: var(--white); margin-bottom: 10px; }
.modal__text { font-size: 14.5px; color: var(--on-dark-soft); line-height: 1.65; margin-bottom: 20px; }

/* ==========================================================================
   23. MOTION & ACCESSIBILITY
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .07s; }
.reveal[data-delay="2"] { transition-delay: .14s; }
.reveal[data-delay="3"] { transition-delay: .21s; }
.reveal[data-delay="4"] { transition-delay: .28s; }

body.no-scroll { overflow: hidden; }

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

/* ==========================================================================
   24. RESPONSIVE
   ========================================================================== */

/* --- Large tablet / small laptop ------------------------------------- */
@media (max-width: 1080px) {
  .nav__list { gap: 12px; }
  .nav__link { font-size: 12.2px; }
  .brand__img { height: 54px; }
}

/* --- Tablet ----------------------------------------------------------- */
@media (max-width: 900px) {
  :root { --header-h: 70px; }
  .brand__img { height: 48px; }

  /* Collapse the desktop nav into the slide-down panel */
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    margin-left: 0;
    background: rgba(6, 6, 7, .985);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, .3);
    max-height: 0;
    overflow: hidden;
    transition: max-height .34s var(--ease);
  }
  .nav.is-open { max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px var(--gutter) 18px;
  }
  .nav__list li { border-bottom: 1px solid #1A1A1D; }
  .nav__list li:last-child { border-bottom: 0; }
  .nav__link {
    display: block;
    padding: 14px 2px;
    font-size: 15px;
  }
  .nav__link::after { display: none; }
  .header__cta { margin-left: auto; }
  .header__cta .btn { padding: 9px 16px; min-height: 40px; font-size: 11px; }
  .header__inner { gap: 10px; }

  /* Layout */
  .benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 18px 22px; }
  .benefit:nth-child(2) { border-right: 0; padding-right: 0; }
  .about { grid-template-columns: 1fr; }
  .about__media { min-height: 260px; height: 44vw; max-height: 340px; }
  .about__media::after { background: linear-gradient(to bottom, rgba(4,4,5,.2), rgba(10,10,11,.85)); }
  .about__body { padding: clamp(30px, 6vw, 44px) var(--gutter); max-width: none; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; }
  .steps::before { display: none; }
  .packages__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .package--featured { order: -1; }
  .add-ons { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 460px; margin-inline: auto; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* --- Phone ------------------------------------------------------------ */
@media (max-width: 640px) {
  :root { --section-y: 46px; }

  body { font-size: 15.5px; padding-bottom: 66px; }  /* room for the action bar */
  .action-bar { display: flex; }

  .hero {
    min-height: 0;
    padding-top: calc(var(--header-h) + 34px);
    padding-bottom: 52px;
    text-align: center;
  }
  .hero__inner { max-width: none; }
  .hero__logo { width: min(320px, 88%); margin-inline: auto; }
  .hero__copy { margin-inline: auto; font-size: 15px; }
  .hero__actions { justify-content: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
  .hero__area { justify-content: center; text-align: center; font-size: 10px; letter-spacing: .14em; }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(4,4,5,.9) 0%, rgba(4,4,5,.82) 45%, rgba(4,4,5,.95) 100%);
  }
  .hero__scroll { display: none; }

  .benefits__grid { grid-template-columns: 1fr; gap: 16px; }
  .benefit { border-right: 0; padding-right: 0; padding-bottom: 16px; border-bottom: 1px solid var(--black-line); }
  .benefit:last-child { padding-bottom: 0; border-bottom: 0; }

  .services__grid { grid-template-columns: 1fr; }
  .service-card { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 6px 16px; }
  .service-card__icon { width: 46px; height: 46px; margin-bottom: 0; }
  .service-card__title { width: calc(100% - 62px); align-self: center; }
  .service-card__text { width: 100%; }
  .service-card .link-more { margin-left: 0; }

  .about__points { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
  .steps { grid-template-columns: 1fr; gap: 22px; text-align: left; }
  .step { display: grid; grid-template-columns: auto 1fr; gap: 14px; text-align: left; align-items: start; }
  .step__num { margin: 0; width: 46px; height: 46px; font-size: 15px; }
  .step__text { margin-inline: 0; max-width: none; }

  .alcohol__inner { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .alcohol__icon { margin-inline: auto; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__filters { gap: 6px; }
  .filter-btn { padding: 7px 13px; font-size: 10.5px; letter-spacing: .1em; }

  .form__grid { grid-template-columns: 1fr; }
  .form__foot { flex-direction: column; align-items: stretch; }
  .form__foot .btn { width: 100%; }

  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .footer .socials { justify-content: center; }
  .footer__brand { text-align: center; }
  .footer__logo { margin-inline: auto; }
  .footer__area { margin-inline: auto; }
  .footer__bar { justify-content: center; text-align: center; }
  .footer__legal { justify-content: center; }

  .lightbox__prev { left: 6px; }
  .lightbox__next { right: 6px; }
  .lightbox__btn { width: 40px; height: 40px; }
}

@media (max-width: 380px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .about__points { grid-template-columns: 1fr; }
  .action-bar .btn { font-size: 10.5px; letter-spacing: .06em; }
}

/* --- Print ------------------------------------------------------------ */
@media print {
  .header, .action-bar, .hero__scroll, .lightbox, .modal { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ==========================================================================
   25. LEGAL / SIMPLE CONTENT PAGES  (privacy.html, terms.html, 404.html)
   ========================================================================== */
.page-head {
  padding-top: calc(var(--header-h) + clamp(30px, 4vw, 52px));
  padding-bottom: clamp(24px, 3vw, 36px);
  border-bottom: 1px solid rgba(212, 175, 55, .18);
  background: var(--black-deep);
}
.page-head h1 { font-size: clamp(28px, 3.6vw, 42px); color: var(--white); margin-bottom: 8px; }
.page-head p { font-size: 14px; color: var(--on-dark-soft); }

.legal { padding-block: clamp(34px, 4.4vw, 56px); }
.legal__body { max-width: 780px; margin-inline: auto; }
.legal__body h2 {
  font-size: clamp(19px, 2.1vw, 24px);
  color: var(--gold-light);
  margin: 30px 0 10px;
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body p,
.legal__body li { font-size: 14.8px; color: var(--on-dark-soft); line-height: 1.7; }
.legal__body p { margin-bottom: 12px; }
.legal__body ul { list-style: disc; padding-left: 20px; margin-bottom: 14px; display: grid; gap: 6px; }
.legal__body strong { color: var(--on-dark); font-weight: 600; }
.legal__body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal__note {
  border: 1px dashed rgba(212, 175, 55, .4);
  background: rgba(212, 175, 55, .06);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 26px;
}
.legal__note p { color: var(--on-dark); margin: 0; font-size: 14px; }

.error-page {
  min-height: 74vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 40px) var(--gutter) 60px;
}
.error-page h1 { font-size: clamp(56px, 12vw, 110px); color: var(--gold); line-height: 1; margin-bottom: 10px; }
.error-page h2 { font-size: clamp(21px, 3vw, 30px); color: var(--white); margin-bottom: 12px; }
.error-page p { color: var(--on-dark-soft); max-width: 440px; margin: 0 auto 24px; }
.error-page__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
