/* ============================================================
   SHINYBOOTH FULL SITE — "Festival Noir" Design System
   Shared stylesheet for every page. Extends the approved
   redesign mockup conventions with page-level components.
   ============================================================ */

:root {
  /* Core palette */
  --ink: #0D0D12;          /* deepest charcoal — hero, footer */
  --charcoal: #15151C;     /* primary dark surface */
  --charcoal-2: #1E1E27;   /* card surfaces on dark */
  --crimson: #E63946;      /* primary accent — logo aperture red */
  --crimson-deep: #C1121F; /* hover / pressed state */
  --gold: #F2B441;         /* secondary accent — logo suitcase gold */
  --gold-deep: #D99A26;    /* gold hover */
  --cream: #FAF4EA;        /* light sections, primary light bg */
  --cream-2: #F1E8D8;      /* alt light section */
  --text-light: #FFFFFF;
  --text-muted: #A6A6B5;   /* muted on dark */
  --text-dark: #232330;    /* body on light */
  --text-dark-muted: #6B6B7B;

  /* Semantic */
  --btn-primary-bg: var(--crimson);
  --btn-primary-text: #FFF;
  --btn-gold-bg: var(--gold);
  --btn-gold-text: #1A1408;

  /* Type */
  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Work Sans', 'Segoe UI', Arial, sans-serif;

  /* Layout */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-card: 0 18px 40px -18px rgba(0,0,0,.55);
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width:  100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

a { color: var(--crimson); }

/* ============================================================
   ACCESSIBILITY / UTILITY
   ============================================================ */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--btn-gold-text); padding: 10px 18px;
  border-radius: 0 0 10px 0; font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-crimson { color: var(--crimson); }

.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: 2.2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.eyebrow.on-dark { color: var(--gold); }

.section { padding: 84px 0; }
.section-dark { background: var(--ink); color: #fff; }
.section-charcoal { background: var(--charcoal); color: #fff; }
.section-cream { background: var(--cream); }
.section-cream-2 { background: var(--cream-2); }

.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head h2 {
  font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.12; color: var(--charcoal); margin-bottom: 12px;
}
.section-dark .section-head h2, .section-charcoal .section-head h2 { color: #fff; }
.section-head p { font-size: 16.5px; color: var(--text-dark-muted); }
.section-dark .section-head p, .section-charcoal .section-head p { color: var(--text-muted); }
.section-head.left { text-align: left; margin: 0 0 36px; }

/* ============================================================
   HEADER + NAV (full site, with dropdowns)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(13,13,18,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(242,180,65,.18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 12px 0;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand .brand-name {
  font-family: var(--font-display); font-size: 22px; color: #fff; letter-spacing: .4px;
}
.brand .brand-name em { font-style: normal; color: var(--gold); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { list-style: none; position: relative; }
.nav > li > a {
  display: block; padding: 10px 13px; color: #EDEDF2; font-weight: 600;
  font-size: 14.5px; text-decoration: none; border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav > li > a:hover, .nav > li > a.active { color: var(--gold); background: rgba(242,180,65,.10); }
.nav > li.has-sub:hover .sub-menu,
.nav > li.has-sub:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 250px;
  background: #17171F; border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); padding: 10px; z-index: 99;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s, transform .18s, visibility .18s;
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.8);
  list-style: none;
}
.sub-menu a {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding: 9px 12px; border-radius: 8px; color: #E8E8EF; font-size: 14px; font-weight: 600;
  text-decoration: none;
}
.sub-menu a:hover { background: rgba(230,57,70,.16); color: #fff; }
.sub-menu a small { color: var(--text-muted); font-size: 12px; font-weight: 600; }

.header-cta {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  background: var(--gold); color: var(--btn-gold-text); font-weight: 700; font-size: 14.5px;
  padding: 11px 20px; border-radius: 999px; white-space: nowrap;
  transition: background .15s, transform .15s;
}
.header-cta:hover { background: var(--gold-deep); transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle { display: none; }
.nav-toggle-btn {
  display: none; background: none; border: 1.5px solid rgba(255,255,255,.28);
  border-radius: 10px; padding: 9px 12px; cursor: pointer;
}
.nav-toggle-btn span {
  display: block; width: 22px; height: 2.5px; background: #fff; margin: 4.5px 0; border-radius: 2px;
}
@media (max-width: 1020px) {
  .nav-toggle-btn { display: inline-block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(13,13,18,.98); border-bottom: 1px solid rgba(242,180,65,.2);
    padding: 10px 18px 18px; flex-direction: column; align-items: stretch; gap: 2px;
    backdrop-filter: blur(12px);
  }
  .nav-toggle:checked ~ .nav { display: flex; }
  .nav > li > a { padding: 13px 10px; font-size: 15.5px; }
  .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: none; background: rgba(255,255,255,.04); margin: 0 0 6px 8px; padding: 4px;
  }
  .sub-menu a { font-size: 14px; padding: 8px 10px; }
}

/* ============================================================
   HEROES
   ============================================================ */
.hero {
  position: relative; color: #fff; overflow: hidden;
  display: flex; align-items: center;
  min-height: 86vh; background: var(--ink);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,13,18,.88) 0%, rgba(13,13,18,.55) 45%, rgba(13,13,18,.25) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 110px 0 120px; max-width: 720px; }
.hero h1 .accent { color: var(--crimson); }
.hero p.lede { font-size: 18.5px; color: #D9D9E3; max-width: 560px; margin-bottom: 34px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230,57,70,.18); border: 1px solid rgba(230,57,70,.5);
  color: #FFD9DC; font-size: 12.5px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px; margin-bottom: 20px;
}
.hero-kicker .dot { width: 8px; height: 8px; background: var(--crimson); border-radius: 50%; }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.06; letter-spacing: .2px; margin-bottom: 18px; max-width: 840px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p.sub {
  color: #D9D9E3; font-size: clamp(16px, 1.8vw, 19px); max-width: 640px; margin-bottom: 30px;
}
.hero p.lede {
  color: #D9D9E3; font-size: 18.5px; max-width: 560px; margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 15.5px;
  padding: 15px 28px; border-radius: 999px; border: none; cursor: pointer;
  text-decoration: none; transition: background .15s, transform .15s, box-shadow .15s;
}
.btn-primary { background: var(--crimson); color: #fff; }
.btn-primary:hover { background: var(--crimson-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(230,45,70,.6); }
.btn-gold { background: var(--gold); color: var(--btn-gold-text); }
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(242,180,65,.6); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: var(--ink); transform: translateY(-2px); }

/* Sub-page hero (shorter, page-specific) */
.page-hero {
  position: relative; color: #fff; background: var(--ink); overflow: hidden;
  padding: 88px 0 64px;
}
.page-hero .ph-bg { position: absolute; inset: 0; }
.page-hero .ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .ph-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,13,18,.9) 0%, rgba(13,13,18,.62) 55%, rgba(13,13,18,.3) 100%);
}
.page-hero .ph-inner { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(30px, 4.4vw, 48px); line-height: 1.08; margin-bottom: 14px;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p.sub { color: #D9D9E3; font-size: clamp(15.5px, 1.7vw, 18px); max-width: 680px; margin-bottom: 24px; }
.page-hero .hero-actions { margin-top: 26px; }
.breadcrumbs { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; font-weight: 600; }
.breadcrumbs a { color: var(--gold); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* ============================================================
   QUICKBAR (stats strip under hero)
   ============================================================ */
.quickbar {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 16px; align-items: end;
  background: var(--charcoal); border: 1px solid rgba(242,180,65,.25);
  border-radius: var(--radius); box-shadow: var(--shadow-card);
  padding: 22px 26px;
}
.quickbar-wrap { position: relative; max-width: var(--maxw); margin: -64px auto 0; z-index: 5; padding: 0 24px; }
.qb-field label {
  display: block; color: var(--gold); font-size: 11.5px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 8px;
}
.qb-field .control {
  background: var(--charcoal-2); border: 1px solid rgba(255,255,255,.14);
  color: #fff; border-radius: var(--radius-sm);
  padding: 13px 16px; font-family: var(--font-body); font-size: 15px; width: 100%;
}
.qb-field .control::placeholder { color: #7C7C8A; }
.qb-field .control option { background: var(--charcoal-2); color: #fff; }
.quickbar .btn { padding: 14px 26px; }

/* Stats strip variant (sub pages) */
.quickbar-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--charcoal); border: 1px solid rgba(242,180,65,.25);
  border-radius: var(--radius); box-shadow: var(--shadow-card); overflow: hidden;
  padding: 0;
}
.quickbar-stats .qb { padding: 24px 18px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.quickbar-stats .qb:last-child { border-right: none; }
.quickbar-stats .qb b { display: block; font-family: var(--font-display); font-size: 24px; color: var(--gold); }
.quickbar-stats .qb span { color: var(--text-muted); font-size: 13px; font-weight: 600; }
@media (max-width: 1020px) {
  .quickbar { grid-template-columns: 1fr 1fr; }
  .quickbar .btn { grid-column: span 2; }
  .quickbar-wrap { margin-top: -44px; }
  .quickbar-stats { grid-template-columns: 1fr 1fr; }
  .quickbar-stats .qb:nth-child(2) { border-right: none; }
}
@media (max-width: 640px) {
  .quickbar { grid-template-columns: 1fr; }
  .quickbar .btn { grid-column: span 1; }
  .quickbar-wrap { margin-top: -36px; }
  .quickbar-stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   BOOTH CARD GRID (used on Home + category pages)
   ============================================================ */
.booth-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.booth-grid.grid-2 { grid-template-columns: repeat(2, 1fr); }
.booth-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
.booth-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid rgba(21,21,28,.08);
  box-shadow: 0 14px 34px -24px rgba(21,21,28,.4);
  transition: transform .2s, box-shadow .2s;
}
.booth-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px -22px rgba(21,21,28,.5);
}
.booth-card .bc-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.booth-card .bc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.booth-card:hover .bc-media img { transform: scale(1.05); }
.booth-tag {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-size: 11.5px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; color: #fff;
}
.booth-tag.t-red { background: var(--crimson); }
.booth-tag.t-gold { background: var(--gold); color: var(--btn-gold-text); }
.booth-tag.t-dark { background: rgba(13,13,18,.88); border: 1px solid rgba(255,255,255,.25); }
.booth-tag.t-purple { background: #7B5CE0; }
.booth-card .bc-body { padding: 22px 22px 20px; display: flex; flex-direction: column; flex: 1; }
.booth-card h3 { font-family: var(--font-display); font-size: 19px; color: var(--charcoal); margin-bottom: 8px; }
.booth-card .bc-price { color: var(--crimson); font-weight: 800; font-size: 15px; margin-bottom: 10px; }
.booth-card .bc-price small { color: var(--text-dark-muted); font-weight: 600; font-size: 12.5px; }
.booth-card p { font-size: 14.5px; color: var(--text-dark-muted); margin-bottom: 14px; }
.booth-feats { list-style: none; display: grid; gap: 8px; margin-bottom: 18px; }
.booth-feats li {
  position: relative; padding-left: 26px; font-size: 14px; color: var(--text-dark);
}
.booth-feats li::before {
  content: '\2713'; position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(230,57,70,.12); color: var(--crimson);
  font-size: 11px; font-weight: 900; display: flex; align-items: center; justify-content: center;
}
.booth-feats li span { color: var(--text-dark-muted); }
.booth-foot {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-top: 1px dashed rgba(21,21,28,.16); padding-top: 16px;
}
.booth-foot .price { font-family: var(--font-display); font-size: 20px; color: var(--charcoal); }
.booth-foot .price small { font-family: var(--font-body); font-weight: 600; font-size: 12px; color: var(--text-dark-muted); }
.booth-foot .eq-link { color: var(--crimson); font-weight: 700; font-size: 14px; text-decoration: none; }
.booth-foot .eq-link:hover { color: var(--crimson-deep); text-decoration: underline; }

/* Placeholder flag (temp images to be replaced with Josh's real photos) */
.ph-flag {
  position: absolute; bottom: 10px; right: 10px; z-index: 3;
  background: rgba(13,13,18,.82); border: 1px dashed rgba(242,180,65,.7);
  color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
}

/* ============================================================
   EQUIPMENT / CATEGORY GRID (party rentals, etc.)
   ============================================================ */
.equip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.equip-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.equip-card {
  background: var(--charcoal-2); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-sm); padding: 22px 20px;
  transition: border-color .2s, transform .2s;
}
.equip-card:hover { border-color: rgba(242,180,65,.55); transform: translateY(-4px); }
.equip-card h3 { color: #fff; font-size: 16.5px; font-weight: 700; margin-bottom: 6px; }
.equip-card .eq-price { color: var(--gold); font-weight: 800; font-size: 15.5px; margin-bottom: 8px; }
.equip-card p { color: var(--text-muted); font-size: 13.5px; }
.equip-card .eq-link { display: inline-block; margin-top: 12px; color: var(--gold); font-weight: 700; font-size: 13px; text-decoration: none; }
.equip-card .eq-link:hover { text-decoration: underline; }

/* Rental media cards (machine cards with photos) */
.rental-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rental-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.rental-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(21,21,28,.08);
  box-shadow: 0 14px 34px -24px rgba(21,21,28,.4);
}
.rental-card .rc-media { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.rental-card .rc-media img { width: 100%; height: 100%; object-fit: cover; }
.rental-card .rc-body { padding: 20px 22px; }
.rental-card .rc-body .eq-link { display: inline-block; margin-top: 10px; color: var(--crimson); font-weight: 700; font-size: 13.5px; text-decoration: none; }
.rental-card .rc-body .eq-link:hover { color: var(--crimson-deep); text-decoration: underline; }
.rental-card h3 { font-family: var(--font-display); font-size: 17px; color: var(--charcoal); margin-bottom: 6px; }
.rental-card .rc-price { color: var(--crimson); font-weight: 800; font-size: 15px; margin-bottom: 8px; }
.rental-card p { font-size: 13.5px; color: var(--text-dark-muted); }

/* ============================================================
   PACKAGE BLOCKS (selfie/DSLR package comparison on booth pages)
   ============================================================ */
.pkg-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pkg-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
.pkg {
  background: #fff; border: 1.5px solid rgba(21,21,28,.1); border-radius: var(--radius);
  padding: 26px 22px 22px; position: relative; display: flex; flex-direction: column;
}
.pkg.featured {
  border-color: var(--gold); box-shadow: 0 22px 48px -26px rgba(217,154,38,.55);
  background: linear-gradient(170deg, #FFFDF6, #FFFFFF 40%);
}
.pkg .pkg-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--btn-gold-text); font-size: 11px; font-weight: 800;
  letter-spacing: 1.4px; text-transform: uppercase; padding: 5px 14px; border-radius: 999px;
  white-space: nowrap;
}
.pkg h3 { font-family: var(--font-display); font-size: 18px; color: var(--charcoal); margin-bottom: 4px; }
.pkg .pkg-price { font-family: var(--font-display); font-size: 30px; color: var(--crimson); margin: 8px 0 2px; }
.pkg .pkg-price small { font-family: var(--font-body); font-size: 13px; color: var(--text-dark-muted); font-weight: 600; }
.pkg .pkg-tint { font-size: 12.5px; font-weight: 700; color: var(--text-dark-muted); letter-spacing: .6px; text-transform: uppercase; margin-bottom: 14px; }
.pkg .booth-feats { margin-bottom: 18px; }
.pkg .btn { margin-top: auto; }
.pkg-note { text-align: center; color: var(--text-dark-muted); font-size: 14px; margin-top: 22px; }

/* ============================================================
   ADD-ON MENU (public upgrade menu)
   ============================================================ */
.addon-menu { max-width: 760px; margin: 0 auto; }
.addon-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
  padding: 13px 4px; border-bottom: 1px dashed rgba(21,21,28,.18);
}
.addon-row:last-child { border-bottom: none; }
.addon-row b { font-size: 15px; color: var(--charcoal); }
.addon-row b small { display: block; font-weight: 600; color: var(--text-dark-muted); font-size: 12.5px; }
.addon-row .price { font-weight: 800; color: var(--crimson); font-size: 15px; white-space: nowrap; }
.addon-menu.on-dark .addon-row { border-bottom-color: rgba(255,255,255,.16); }
.addon-menu.on-dark .addon-row b { color: #fff; }
.addon-menu.on-dark .addon-row b small { color: var(--text-muted); }
.addon-menu.on-dark .addon-row .price { color: var(--gold); }

/* ============================================================
   SPLITS / FEATURE LAYOUT (two-column media + text)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split.rev { grid-template-columns: 1fr 1fr; }
.split.rev .sp-media { order: 2; }
.split .sp-media { position: relative; }
.split .sp-media img { border-radius: var(--radius); box-shadow: var(--shadow-card); }
.split .sp-media .sp-frame {
  position: absolute; inset: auto -14px -14px auto; width: 60%; border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-card); border: 4px solid #fff;
}
.split h3 { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 28px); color: var(--charcoal); margin-bottom: 14px; line-height: 1.15; }
.split h3 em { font-style: normal; color: var(--gold); }
.split p { font-size: 15.5px; color: var(--text-dark-muted); margin-bottom: 16px; }
.section-dark .split p, .section-charcoal .split p { color: var(--text-muted); }
.section-dark .split h3, .section-charcoal .split h3 { color: #fff; }
.sp-feats { list-style: none; display: grid; gap: 10px; margin: 18px 0 22px; }
.sp-feats li { position: relative; padding-left: 30px; font-size: 15px; color: var(--text-dark); }
.sp-feats li::before {
  content: '\2713'; position: absolute; left: 0; top: 2px; width: 18px; height: 18px;
  border-radius: 50%; background: rgba(230,57,70,.12); color: var(--crimson);
  font-size: 11px; font-weight: 900; display: flex; align-items: center; justify-content: center;
}
.sp-feats li b { color: var(--charcoal); }
.sp-feats li span { color: var(--text-dark-muted); }
.section-dark .sp-feats li, .section-charcoal .sp-feats li { color: #E4E4EC; }
.section-dark .sp-feats li b, .section-charcoal .sp-feats li b { color: #fff; }
.section-dark .sp-feats li span, .section-charcoal .sp-feats li span { color: var(--text-muted); }

/* ============================================================
   EVENT-CHIPS / SEO STRIP
   ============================================================ */
.event-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.event-chips a, .event-chips span {
  text-decoration: none; color: #EDEDF2; font-weight: 600; font-size: 14.5px;
  border: 1px solid rgba(255,255,255,.22);
  padding: 11px 20px; border-radius: 999px; transition: all .18s;
}
.event-chips a:hover { background: var(--crimson); border-color: var(--crimson); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-flow: dense; gap: 22px; }
.testi {
  background: var(--charcoal-2); border-radius: var(--radius); padding: 26px 26px 22px;
  border: 1px solid rgba(255,255,255,.09); position: relative; display: flex; flex-direction: column;
}
.testi::before {
  content: '\201C'; position: absolute; top: 2px; right: 20px;
  font-family: Georgia, serif; font-size: 84px; color: rgba(242,180,65,.25); line-height: 1;
}
.testi .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; font-size: 15px; }
.testi p { color: #D9D9E3; font-size: 14.5px; margin-bottom: 16px; flex: 1; }
.testi .who { color: #fff; font-weight: 700; font-size: 14px; }
.testi .who small { display: block; color: var(--text-muted); font-weight: 600; font-size: 12.5px; }

.testi-note { text-align: center; color: var(--text-muted); font-size: 13.5px; margin-top: 26px; }
.testi-note a { color: var(--gold); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 820px; margin: 6px auto; display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid rgba(21,21,28,.1); border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item input { position: absolute; opacity: 0; pointer-events: none; }
.faq-item .faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; cursor: pointer; font-weight: 700; font-size: 15.5px; color: var(--charcoal);
}
.faq-item .faq-q::after {
  content: '+'; font-family: var(--font-display); font-size: 22px; color: var(--crimson);
  transition: transform .2s; flex: none;
}
.faq-item .faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 22px; }
.faq-item .faq-a p { padding-bottom: 18px; font-size: 14.5px; color: var(--text-dark-muted); }
.faq-item input:checked ~ .faq-q::after { transform: rotate(45deg); }
.faq-item input:checked ~ .faq-a { max-height: 500px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gal-masonry { columns: 3; column-gap: 14px; }
.gal-masonry .gal-item { break-inside: avoid; margin-bottom: 14px; position: relative; }
.gal-masonry .gal-item img { border-radius: var(--radius-sm); width: 100%; }
.gal-masonry .gal-item a { display: block; }
.gal-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 30px; }
.gal-filters a, .gal-filters button {
  border: 1.5px solid rgba(21,21,28,.2); background: #fff; color: var(--text-dark);
  font-weight: 700; font-size: 13.5px; padding: 9px 18px; border-radius: 999px;
  text-decoration: none; cursor: pointer; font-family: var(--font-body); transition: all .15s;
}
.gal-filters a:hover, .gal-filters button:hover { border-color: var(--crimson); color: var(--crimson); }
.gal-filters a.active, .gal-filters button.active {
  background: var(--charcoal); color: #fff; border-color: var(--charcoal);
}
.gallery-strip-mosaic {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px;
}
.gallery-strip-mosaic img {
  border-radius: 10px; border: 1px solid rgba(255,255,255,.14); width: 90%;
  width: 100%; height: auto; margin: 0 auto;
}

/* Video slots (until Josh's YouTube videos arrive) */
.video-note {
  background: var(--charcoal-2); border: 1px dashed rgba(242,180,65,.5);
  border-radius: var(--radius-sm); color: var(--text-muted); padding: 26px 24px;
  text-align: center; font-size: 14.5px;
}
.video-note b { color: var(--gold); }

/* ============================================================
   HONEYBOOK / FORM SLOTS
   ============================================================ */
.hb-slot {
  background: rgba(123,92,224,.07); border: 2px dashed #7B5CE0; border-radius: var(--radius);
  padding: 34px 26px; text-align: center; color: #3E3460;
}
.hb-slot h3 { font-family: var(--font-display); font-size: 19px; color: #4A2FBD; margin-bottom: 8px; }
.hb-slot p { font-size: 14px; margin-bottom: 18px; color: #55497E; }
.hb-slot .btn-primary { background: #4A2FBD; }
.hb-slot .btn-primary:hover { background: #3A2499; }

/* Basic lead form (native fallback until HoneyBook embed replaces it) */
.form-slot {
  background: #fff; border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-card); color: var(--text-dark);
}
.form-slot h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 6px; }
.form-slot .fs-sub { font-size: 14px; color: var(--text-dark-muted); margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field label { display: block; font-weight: 700; font-size: 12.5px; margin-bottom: 6px; color: var(--charcoal); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border: 1.5px solid rgba(21,21,28,.18); border-radius: 10px;
  padding: 12px 14px; font-family: var(--font-body); font-size: 14.5px; background: #FBFBF9;
}
.form-field textarea { min-height: 96px; resize: vertical; }
.form-slot .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-fine { text-align: center; font-size: 11.5px; color: var(--text-dark-muted); margin-top: 14px; }

/* ============================================================
   FINAL CTA + CONTACT CARDS
   ============================================================ */
.final-cta {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(230,57,70,.35), transparent 60%),
    radial-gradient(900px 420px at 8% 110%, rgba(242,180,65,.22), transparent 55%),
    var(--ink);
  color: #fff; padding: 92px 0;
}
.final-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: start; }
.final-grid h2 { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 40px); line-height: 1.1; margin-bottom: 16px; }
.final-grid h2 em { font-style: normal; color: var(--gold); }
.final-grid p.sub { color: var(--text-muted); font-size: 16.5px; margin-bottom: 26px; }
.contact-cards { display: grid; gap: 12px; }
.contact-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--charcoal-2); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm); padding: 15px 18px; color: #fff; text-decoration: none;
  transition: border-color .18s;
}
.contact-card:hover { border-color: rgba(242,180,65,.5); }
.contact-card .cc-ico {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: rgba(230,57,70,.16); display: flex; align-items: center; justify-content: center;
}
.contact-card b { display: block; font-size: 15px; }
.contact-card small { color: var(--text-muted); font-size: 12.5px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: var(--text-muted); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 38px; padding-bottom: 44px; }
.site-footer h4 { color: #fff; font-family: var(--font-display); font-size: 15px; letter-spacing: .6px; margin-bottom: 16px; }
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer a { color: var(--text-muted); text-decoration: none; font-size: 14px; }
.site-footer a:hover { color: var(--gold); }
.footer-brand img { width: 72px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; max-width: 300px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { border-color: var(--crimson); background: rgba(230,57,70,.15); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09); padding: 20px 0;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px;
}
.service-areas { font-size: 13px; line-height: 1.9; }
.service-areas a { color: var(--text-muted); }

/* ============================================================
   MOBILE BOOK BAR
   ============================================================ */
.mobile-book {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  display: none; background: rgba(13,13,18,.97); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(242,180,65,.3); padding: 10px 14px;
  gap: 10px;
}
.mobile-book a {
  flex: 1; text-align: center; text-decoration: none; font-weight: 700; font-size: 15px;
  padding: 13px 10px; border-radius: 999px;
}
.mobile-book .mb-cta { background: var(--gold); color: var(--btn-gold-text); }
.mobile-book .mb-call { border: 1.5px solid rgba(255,255,255,.4); color: #fff; }

/* ============================================================
   HB ANNOTATION SYSTEM (demo/staging build aid)
   ============================================================ */
.hb-toggle {
  position: fixed; right: 18px; bottom: 18px; z-index: 99;
  background: #4A2FBD; color: #fff; border: none; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  padding: 12px 18px; cursor: pointer; box-shadow: 0 12px 30px -10px rgba(74,47,189,.8);
}
body.hb-on .hb-integrable {
  position: relative; outline: 2.5px dashed #7B5CE0; outline-offset: 6px; border-radius: 6px;
}
.hb-badge {
  display: none; position: absolute; top: -34px; left: 10px; z-index: 5;
  background: #4A2FBD; color: #fff; font-size: 11.5px; font-weight: 700;
  padding: 5px 12px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(74,47,189,.8);
}
body.hb-on .hb-badge { display: block; }
/* HB toggle hidden on full site (staging build aid only) */
.hb-toggle { display: none; }

/* ============================================================
   SCHEMA / SEO niceties
   ============================================================ */
.price-note { font-size: 13px; color: var(--text-dark-muted); }
.price-note.on-dark { color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .booth-grid, .booth-grid.grid-4, .equip-grid, .rental-grid, .pkg-row, .pkg-row.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .steps, .testi-grid { grid-template-columns: 1fr 1fr; }
  .quickbar { grid-template-columns: 1fr 1fr; }
  .final-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 26px; }
  .split.rev .sp-media { order: 0; }
  .gal-masonry { columns: 2; }
}
@media (max-width: 640px) {
  .booth-grid, .booth-grid.grid-4, .equip-grid, .rental-grid, .rental-grid.cols-2, .pkg-row, .pkg-row.cols-3, .steps, .testi-grid, .quickbar, .form-row { grid-template-columns: 1fr; }
  .equip-feature { flex-direction: column; }
  .hero { min-height: 78vh; }
  .hero-inner { padding: 84px 0 96px; }
  .page-hero { padding: 66px 0 48px; }
  section, .section { padding: 64px 0; }
  .header-cta { display: none; }
  .mobile-book { display: flex; }
  body { padding-bottom: 62px; }
  .footer-grid { grid-template-columns: 1fr; }
  .gal-masonry { columns: 2; }
  .quickbar .qb { border-right: none; }
  .quickbar { transform: none; margin-top: -36px; }
  .pkg .pkg-price { font-size: 26px; }
}

/* ============================================================
   COMPONENTS CARRIED FROM MOCKUP (home page use)
   ============================================================ */

/* ---------- COMBO BANNER ---------- */
.combo-banner {
  background:
    radial-gradient(800px 300px at 90% -20%, rgba(242,180,65,.25), transparent 60%),
    linear-gradient(120deg, var(--crimson-deep), var(--crimson));
  color: #fff; border-radius: var(--radius);
  padding: 34px 36px; display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.combo-banner h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 4px; }
.combo-banner p { color: #FFE0E3; font-size: 15px; max-width: 640px; }
.combo-banner .btn { background: #fff; color: var(--crimson-deep); }
.combo-banner .btn:hover { background: var(--cream); transform: none; }

/* ---------- HOW IT WORKS / STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  background: #fff; border-radius: var(--radius); padding: 30px 28px;
  border: 1px solid rgba(21,21,28,.08); position: relative;
  box-shadow: 0 10px 30px -20px rgba(21,21,28,.3);
}
.step-num {
  position: absolute; top: -20px; left: 24px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--crimson); color: #fff;
  font-family: var(--font-display); font-size: 19px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 22px -8px rgba(230,57,70,.7);
}
.step:nth-child(2) .step-num { background: var(--charcoal); }
.step:nth-child(3) .step-num { background: var(--gold); color: var(--btn-gold-text); }
.step h3 { font-family: var(--font-display); font-size: 19px; margin: 8px 0 10px; color: var(--charcoal); }
.step p { font-size: 14.5px; color: var(--text-dark-muted); }
.step .hb-note { margin-top: 14px; font-size: 12.5px; color: var(--crimson); font-weight: 700; }

/* ---------- EQUIP FEATURE (wide media card) ---------- */
.equip-feature {
  grid-column: span 2; display: flex; gap: 20px; align-items: center;
  background: linear-gradient(120deg, rgba(242,180,65,.14), rgba(230,57,70,.10));
  border: 1px solid rgba(242,180,65,.35); border-radius: var(--radius-sm); overflow: hidden;
}
.equip-feature img { width: 42%; height: 100%; object-fit: cover; min-height: 200px; }
.equip-feature .ef-body { padding: 20px 22px 20px 4px; }
.equip-feature h3 { color: var(--gold); font-family: var(--font-display); font-size: 19px; margin-bottom: 8px; }
.equip-feature p { color: #D8D8E2; font-size: 14px; margin-bottom: 12px; }
.equip-feature .eq-link { color: var(--gold); font-weight: 700; font-size: 13.5px; text-decoration: none; }
.equip-feature .eq-link:hover { text-decoration: underline; }
@media (max-width: 1020px) { .equip-feature { grid-column: span 2; } }
@media (max-width: 640px) {
  .equip-feature { grid-column: span 1; flex-direction: column; }
  .equip-feature img { width: 100%; min-height: 160px; }
  .equip-feature .ef-body { padding: 0 20px 20px; }
}

/* ---------- CITY PAGE BLOCKS ---------- */
.city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.city-card {
  background: var(--charcoal-2); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-sm); padding: 24px 22px;
}
.city-card h3 { color: var(--gold); font-family: var(--font-display); font-size: 17px; margin-bottom: 10px; }
.city-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 12px; }
.city-card ul { list-style: none; display: grid; gap: 7px; }
.city-card ul li { position: relative; padding-left: 24px; color: #E4E4EC; font-size: 14px; }
.city-card ul li::before {
  content: '\2713'; position: absolute; left: 0; top: 2px; width: 17px; height: 17px;
  border-radius: 50%; background: rgba(242,180,65,.15); color: var(--gold);
  font-size: 10.5px; font-weight: 900; display: flex; align-items: center; justify-content: center;
}

/* ---------- ABOUT / STORY ---------- */
.story-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 30px 0 0; }
.story-stat {
  background: #fff; border: 1px solid rgba(21,21,28,.09); border-radius: var(--radius-sm);
  padding: 20px 16px; text-align: center;
}
.story-stat b { display: block; font-family: var(--font-display); font-size: 24px; color: var(--crimson); }
.story-stat span { font-size: 12.5px; color: var(--text-dark-muted); font-weight: 600; }

/* ---------- SIMPLE DATA TABLE (drink packages etc.) ---------- */
.data-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-sm); overflow: hidden; font-size: 14.5px; }
.data-table th {
  background: var(--charcoal); color: #fff; text-align: left; padding: 13px 16px;
  font-family: var(--font-display); font-size: 13px; letter-spacing: .6px;
}
.data-table td { padding: 13px 16px; border-bottom: 1px solid rgba(21,21,28,.08); color: var(--text-dark); vertical-align: top; }
.data-table tr:last-child td { border-bottom: none; }
.data-table td b { color: var(--charcoal); }
.data-table .t-price { color: var(--crimson); font-weight: 800; white-space: nowrap; }
.data-table.on-dark { background: var(--charcoal-2); }
.data-table.on-dark th { background: var(--ink); }
.data-table.on-dark td { border-bottom-color: rgba(255,255,255,.1); color: #E4E4EC; }
.data-table.on-dark td b { color: #fff; }
.data-table.on-dark .t-price { color: var(--gold); }
.table-scroll { overflow-x: auto; border-radius: var(--radius-sm); box-shadow: 0 14px 34px -24px rgba(21,21,28,.4); }

/* ============================================================
   6c ADDITIONS — backdrop gallery, strip captions, rental pages
   ============================================================ */
.backdrop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)); gap: 12px; margin-top: 16px; }
.backdrop-grid figure { margin: 0; }
.backdrop-grid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 8px;
  border: 1px solid rgba(21,21,28,.14); display: block; background: #f3f0e8; }
.backdrop-grid figcaption { font-size: 11.5px; font-weight: 700; text-align: center; margin-top: 6px;
  color: var(--text-dark-muted); line-height: 1.3; }
.bd-title { font-family: var(--font-display); font-size: 19px; margin: 36px 0 4px; color: var(--charcoal); }
.bd-sub { font-size: 13.5px; color: var(--text-dark-muted); margin: 0 0 4px; }
.bd-pack { margin: 18px 0 0; }
.bd-pack img { border-radius: var(--radius-sm); border: 1px solid rgba(21,21,28,.12); }
.bd-pack figcaption { font-size: 12px; color: var(--text-dark-muted); margin-top: 6px; font-weight: 600; }

.strip-group { margin-top: 38px; }
.strip-group:first-of-type { margin-top: 26px; }
.sg-head { font-family: var(--font-display); color: var(--gold); font-size: 17px;
  letter-spacing: .05em; margin-bottom: 4px; }
.sg-count { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.gallery-strip-mosaic figure { margin: 0; }
.gallery-strip-mosaic figcaption { font-size: 11px; color: var(--text-muted);
  text-align: center; margin-top: 6px; line-height: 1.35; }

.rental-legal { font-size: 12.5px; color: var(--text-dark-muted); }
.pair-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pair-chips a { border: 1.5px solid rgba(21,21,28,.18); background: #fff; color: var(--text-dark);
  font-weight: 700; font-size: 13px; padding: 8px 16px; border-radius: 999px;
  text-decoration: none; transition: all .15s; }
.pair-chips a:hover { border-color: var(--gold); color: var(--gold); }

/* 6c: rental cards as links to detail pages */
a.rental-card { display: block; color: inherit; text-decoration: none;
  transition: transform .2s, box-shadow .2s; }
a.rental-card:hover { transform: translateY(-4px);
  box-shadow: 0 22px 44px -22px rgba(21,21,28,.5); }
