/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  background: #06070f;
  color: #e8eaf0;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --blue:       #1a3a8f;
  --blue-mid:   #1e4db7;
  --blue-light: #2563eb;
  --red:        #c41230;
  --red-light:  #e01535;
  --white:      #f0f2fa;
  --cream:      #e4ddc8;
  --gold:       #c9a84c;
  --bg:         #06070f;
  --bg2:        #0b0d1a;
  --bg3:        #0f1225;
  --gray:       #8890a8;
  --border:     rgba(255,255,255,0.07);
}

/* ─── Utility ───────────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--white);
  text-transform: uppercase;
}
.section-title span { color: var(--red); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196,18,48,.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.06);
  transform: translateY(-2px);
}

/* ─── Scroll Animations ─────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }

/* ─── NAV ───────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s, padding .3s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(6,7,15,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 40px rgba(0,0,0,.5);
}
nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 46px; height: auto; }
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.15;
  text-transform: uppercase;
}
.nav-logo-text span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gray);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(240,242,250,.7);
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-shop {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1.5px solid rgba(201,168,76,.35);
  padding: 8px 20px;
  transition: all .2s;
}
.btn-shop:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.1);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
  display: block;
  border-radius: 1px;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg2);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 28px;
  cursor: pointer;
  color: var(--white);
  background: none;
  border: none;
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(26,58,143,.55) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(196,18,48,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(26,58,143,.22) 0%, transparent 70%);
  background-color: var(--bg);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.hero-logo {
  width: clamp(140px, 22vw, 220px);
  filter: drop-shadow(0 0 40px rgba(26,58,143,.7)) drop-shadow(0 0 80px rgba(26,58,143,.4));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -2px;
}
.hero-title .line-red { color: var(--red); }
.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(232,234,240,.7);
  max-width: 420px;
  letter-spacing: .5px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-badge {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
}
.hero-badge-item { text-align: center; }
.hero-badge-item strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
}
.hero-badge-item span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }
.hero-badge-divider { width: 1px; height: 36px; background: var(--border); }
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.3);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-hint-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── ANNOUNCEMENT ──────────────────────────────────────── */
.announcement {
  background: linear-gradient(90deg, var(--blue) 0%, #112d70 50%, var(--blue) 100%);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.announcement p {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}
.announcement strong {
  color: var(--cream);
  font-weight: 700;
}

/* ─── MARQUEE ───────────────────────────────────────────── */
.marquee-strip { background: var(--red); padding: 11px 0; overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 28px;
  color: rgba(255,255,255,.9);
}
.marquee-sep { color: rgba(255,255,255,.35); }

/* ─── SERVICES ──────────────────────────────────────────── */
.services {
  padding: 110px 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--red), transparent);
}
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-label { margin-bottom: 12px; display: block; }

/* Category label row */
.services-cat-wrap { margin-bottom: 36px; }
.services-cat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.services-cat-label i { font-size: 13px; color: var(--blue-light); }

/* Compact service row cards */
.service-row-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.service-row-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.service-row-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.service-row-card:hover {
  border-color: rgba(26,58,143,.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.service-row-card:hover::after { transform: scaleX(1); }
.service-row-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-row-icon i { font-size: 14px; color: #fff; }
.service-row-icon svg { width: 16px; height: 16px; color: #fff; display: block; }
.service-row-name {
  flex: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.service-row-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  white-space: nowrap;
}

/* ─── FULL NLB EXPERIENCE CARD ──────────────────────────── */
.nlb-experience-card {
  margin-top: 56px;
  background: linear-gradient(135deg, #0e2560 0%, #0a1d4a 55%, var(--bg3) 100%);
  border: 1px solid rgba(201,168,76,.3);
  border-top: 3px solid var(--gold);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}
.nlb-experience-card::before {
  content: 'NLB';
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20vw;
  font-weight: 900;
  color: rgba(255,255,255,.025);
  right: -30px; bottom: -20px;
  line-height: 1;
  pointer-events: none;
}
.nlb-exp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #06070f;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 30px;
}
.nlb-exp-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.nlb-exp-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.0;
  margin-bottom: 12px;
}
.nlb-exp-title span { color: var(--gold); }
.nlb-exp-desc {
  font-size: 14.5px;
  color: rgba(232,234,240,.65);
  margin-bottom: 28px;
  line-height: 1.7;
}
.nlb-includes {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 32px;
}
.nlb-includes li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: rgba(232,234,240,.8);
  line-height: 1.4;
}
.nlb-includes li i { color: var(--gold); font-size: 10px; margin-top: 4px; flex-shrink: 0; }
.nlb-exp-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  flex-shrink: 0;
}
.nlb-price-display {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(4.5rem, 7vw, 6.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 60px rgba(201,168,76,.4);
}
.nlb-price-display span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 4px;
  text-shadow: none;
}

/* ─── GALLERY ───────────────────────────────────────────── */
.gallery {
  padding: 110px 0;
  background: var(--bg);
  position: relative;
}
.gallery::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), var(--blue), transparent);
}
.gallery-header { text-align: center; margin-bottom: 56px; }
.gallery-header .section-label { margin-bottom: 12px; display: block; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--bg3);
  border-radius: 6px;
}
/* Videos span 2 columns each — featured row at top */
.gallery-item--video {
  grid-column: span 2;
}
.gallery-item img,
.gallery-item--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: brightness(.85) saturate(1.1);
}
.gallery-item:hover img,
.gallery-item--video:hover video { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,7,15,.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
/* Play badge on video items */
.gallery-play-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(6,7,15,.65);
  border: 1.5px solid rgba(201,168,76,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 12px;
  pointer-events: none;
  z-index: 2;
}
.gallery-cta { margin-top: 48px; text-align: center; }

/* ─── ABOUT ─────────────────────────────────────────────── */
.about {
  padding: 110px 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(26,58,143,.5) 0%, transparent 70%);
  filter: blur(40px);
}
.about-logo-glow-red {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(196,18,48,.3) 0%, transparent 70%);
  filter: blur(30px);
  transform: translate(60px, 40px);
}
.about-logo-img {
  width: clamp(200px, 30vw, 300px);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 40px rgba(26,58,143,.5));
}
.about-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(26,58,143,.25);
}
.about-ring-1 { width: 340px; height: 340px; animation: spin 30s linear infinite; }
.about-ring-2 { width: 420px; height: 420px; animation: spin 45s linear infinite reverse; border-style: dashed; }
@keyframes spin { to { transform: rotate(360deg); } }
.about-content .section-label { margin-bottom: 12px; display: block; }
.about-content .section-title { margin-bottom: 20px; }
.about-content p { color: rgba(232,234,240,.65); font-size: 15px; line-height: 1.8; margin-bottom: 18px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.about-stat strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.about-stat span { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }

/* ─── MEET THE BARBER ───────────────────────────────────── */
.barber-bio {
  background: var(--bg2);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.barber-bio-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}

/* Photo */
.barber-photo-wrap { position: relative; }
.barber-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg3);
  border: 2px dashed rgba(201,168,76,.3);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(201,168,76,.4);
}
.barber-photo-placeholder i { font-size: 48px; }
.barber-photo-placeholder span { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; }

/* To show a real photo: replace .barber-photo-placeholder with:
   <img src="shawn.jpg" alt="Shawn Oliveras" class="barber-photo-img" /> */
.barber-photo-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(201,168,76,.2);
}

.barber-photo-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #8b6914, var(--gold));
  color: #06070f;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 40px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* Bio content */
.barber-bio-content { padding-top: 8px; }
.barber-bio-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 20px;
}

/* Passions */
.barber-passions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.barber-passion-item {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--gray);
  white-space: nowrap;
}
.barber-passion-item i { color: var(--gold); font-size: 13px; }

@media (max-width: 900px) {
  .barber-bio-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .barber-photo-wrap { max-width: 300px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .barber-bio { padding: 72px 0; }
  .barber-passions { gap: 10px; }
  .barber-passion-item { font-size: 12px; padding: 8px 14px; }
}

/* ─── EXPERIENCE STRIP ──────────────────────────────────── */
.experience-strip {
  background: linear-gradient(135deg, var(--blue) 0%, #0e2560 50%, #0a1d4a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.experience-strip::before {
  content: 'NLB';
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22vw;
  font-weight: 900;
  color: rgba(255,255,255,.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}
.experience-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.exp-text { max-width: 520px; }
.exp-text .section-title { margin-bottom: 14px; }
.exp-text p { color: rgba(240,242,250,.65); font-size: 15px; line-height: 1.8; }
.exp-cta { flex-shrink: 0; }

/* ─── LOCATION ──────────────────────────────────────────── */
.location {
  padding: 110px 0;
  background: var(--bg);
  position: relative;
}
.location::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), var(--blue), transparent);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}
.location-info { display: flex; flex-direction: column; gap: 20px; }
.info-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--bg3);
  border: 1px solid var(--border);
  transition: border-color .3s;
}
.info-block:hover { border-color: rgba(26,58,143,.5); }
.info-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon i { font-size: 17px; color: #fff; }
.info-block h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 5px;
}
.info-block p, .info-block a { font-size: 14.5px; color: var(--white); line-height: 1.65; }
.info-block a:hover { color: var(--gold); }
.map-frame {
  width: 100%; height: 440px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.map-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  z-index: 2;
}
.map-frame iframe {
  width: 100%; height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) saturate(1.2) brightness(.9);
}
.hours-table { width: 100%; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--gray); letter-spacing: .3px; }
.hours-time { font-weight: 500; color: var(--white); }
.hours-time.closed { color: var(--red); }
.hours-time.open { color: #4ade80; }

/* ─── BOOKING CTA ───────────────────────────────────────── */
.booking-cta {
  padding: 100px 0;
  background: var(--bg2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking-cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 100%, rgba(196,18,48,.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 50% 0%, rgba(26,58,143,.25) 0%, transparent 70%);
}
.booking-cta-content { position: relative; z-index: 2; }
.booking-cta .section-label { margin-bottom: 14px; display: block; }
.booking-cta .section-title { margin-bottom: 16px; }
.booking-cta p { color: var(--gray); font-size: 16px; max-width: 480px; margin: 0 auto 36px; }
.booking-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; align-items: center; }
.phone-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  transition: color .2s;
}
.phone-link:hover { color: var(--cream); }

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { width: 42px; }
.footer-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.footer-brand p { font-size: 13.5px; color: var(--gray); line-height: 1.7; max-width: 260px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: border-color .2s, background .2s, color .2s;
  color: var(--gray);
}
.social-link:hover { border-color: var(--blue); background: rgba(26,58,143,.25); color: var(--white); }
.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--gray); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item i { font-size: 13px; color: var(--blue-light); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a, .footer-contact-item p { font-size: 14px; color: var(--gray); line-height: 1.5; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12.5px; color: rgba(136,144,168,.6); }
.footer-badge { display: flex; align-items: center; gap: 8px; }
.footer-badge-bar { width: 24px; height: 3px; background: linear-gradient(90deg, var(--blue), var(--red)); }
.footer-badge span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--dark);
}
.footer-credit { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 6px; }
.footer-credit a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-credit a:hover { color: var(--gold); }

.testi-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.testi-big-stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; }
.testi-big-score { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 900; color: #fff; line-height: 1; }
.testi-big-label { font-size: 14px; color: var(--gray); }
.testimonials-grid {
  columns: 3;
  column-gap: 24px;
  margin-top: 56px;
}
.testi-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 28px;
  display: inline-flex;
  width: 100%;
  flex-direction: column;
  gap: 16px;
  break-inside: avoid;
  margin-bottom: 24px;
  box-sizing: border-box;
  transition: border-color 0.3s, transform 0.3s;
}
.testi-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
}
.testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }
.testi-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: .3px;
}
.testi-source {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
}
.testi-source i { color: #4285F4; }
.testi-footer {
  text-align: center;
  margin-top: 48px;
}
.testi-google-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: border-color 0.3s, background 0.3s;
}
.testi-google-btn i { color: #4285F4; font-size: 16px; }
.testi-google-btn:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo-text { display: none; }
  nav { padding: 10px 0; }
  .testimonials-grid { columns: 2; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { order: -1; }
  .about-ring-1 { width: 260px; height: 260px; }
  .about-ring-2 { width: 320px; height: 320px; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .experience-strip .container { flex-direction: column; text-align: center; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item--video { grid-column: span 2; }
  .nlb-exp-body { grid-template-columns: 1fr; gap: 32px; }
  .nlb-exp-cta { flex-direction: row; justify-content: flex-start; align-items: center; }
  .nlb-experience-card { padding: 36px 28px; }
  .nlb-price-display { font-size: 4rem; }
}
@media (max-width: 600px) {
  .testimonials-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { flex-direction: column; gap: 12px; }
  .hero-badge-divider { width: 60px; height: 1px; }
  .booking-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item, .gallery-item--video {
    grid-column: auto;
    grid-row: auto;
  }
  .service-row-grid { grid-template-columns: 1fr; }
  .nlb-includes { grid-template-columns: 1fr; }
  .nlb-exp-cta { flex-direction: column; align-items: flex-start; }
  .nlb-experience-card { padding: 28px 20px; }
}

/* ─── BOOKING WIZARD ────────────────────────────────────── */
.bk-page {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

/* Each step: hidden by default, flex when active */
.bk-step {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 110px 24px 120px;
  min-height: 100vh;
}
.bk-step.active { display: flex; }

/* Large display heading — matches DEW Solutions style */
.bk-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 44px;
  text-align: center;
  width: 100%;
  max-width: 860px;
}
.bk-heading span { color: var(--gold); }

/* Main card container */
.bk-card {
  background: rgba(11,13,26,.9);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 860px;
  padding: 32px 36px 36px;
}

/* ── Step 1: Service rows ──────────────────────────────── */
.bk-services { display: flex; flex-direction: column; gap: 12px; }

.bk-service-row {
  background: var(--bg3);
  border: 1.5px solid var(--border);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: border-color .18s, background .18s;
  position: relative;
  user-select: none;
}
.bk-service-row:hover {
  border-color: rgba(201,168,76,.45);
  background: rgba(201,168,76,.04);
}
.bk-service-row.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,.07);
}

.bk-service-icon {
  width: 46px; height: 46px;
  background: rgba(26,58,143,.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .18s;
}
.bk-service-icon i { font-size: 17px; color: var(--blue-light); transition: color .18s; }
.bk-service-row.selected .bk-service-icon { background: rgba(201,168,76,.18); }
.bk-service-row.selected .bk-service-icon i { color: var(--gold); }

.bk-service-body { flex: 1; min-width: 0; }
.bk-service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--white);
  line-height: 1.2;
}
.bk-service-desc { font-size: 13px; color: var(--gray); margin-top: 3px; line-height: 1.4; }

.bk-service-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
}
.bk-service-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  white-space: nowrap;
}
.bk-selected-badge {
  display: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.bk-service-row.selected .bk-selected-badge { display: block; }

/* ── Featured / Signature service row ───────────────── */
.bk-service-row--featured {
  background: linear-gradient(135deg, rgba(201,168,76,.13) 0%, rgba(201,168,76,.04) 100%);
  border-color: var(--gold);
  border-width: 2px;
  padding: 22px 22px;
  margin-top: 4px;
}
.bk-service-row--featured::before {
  content: '✦  SIGNATURE SERVICE  ✦';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold);
  background: var(--bg2);
  padding: 0 14px;
  white-space: nowrap;
}
.bk-service-row--featured .bk-service-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,.18);
  border: 1px solid rgba(201,168,76,.35);
}
.bk-service-row--featured .bk-service-icon i { color: var(--gold); font-size: 20px; }
.bk-service-row--featured .bk-service-name {
  color: var(--gold);
  font-size: 22px;
}
.bk-service-row--featured .bk-service-price {
  font-size: 28px;
}
.bk-service-row--featured:hover {
  background: linear-gradient(135deg, rgba(201,168,76,.2) 0%, rgba(201,168,76,.08) 100%);
  border-color: var(--gold);
}
.bk-service-row--featured.selected {
  background: linear-gradient(135deg, rgba(201,168,76,.26) 0%, rgba(201,168,76,.12) 100%);
  box-shadow: 0 0 0 1px var(--gold), 0 4px 24px rgba(201,168,76,.15);
}

/* ── Services divider label ──────────────────────────── */
.bk-services-divider {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 18px 0 6px;
  opacity: .55;
}

/* ── Summary bar (steps 2 & 3) ───────────────────────── */
.bk-summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.bk-summary-items { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.bk-summary-pair { display: flex; align-items: baseline; gap: 7px; }
.bk-summary-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}
.bk-summary-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.bk-summary-edit {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  transition: color .2s;
  background: none;
  border: none;
  padding: 0;
}
.bk-summary-edit:hover { color: var(--white); }

/* ── Step 2: Contact form ─────────────────────────────── */
.bk-form { display: flex; flex-direction: column; gap: 22px; }
.bk-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bk-field { display: flex; flex-direction: column; gap: 8px; }
.bk-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.bk-label-note { font-size: 12px; font-weight: 400; color: var(--gray); }
.bk-label-required { color: var(--gold); font-weight: 600; }
.bk-input, .bk-textarea {
  background: var(--bg3);
  border: 1.5px solid var(--border);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14.5px;
  padding: 13px 16px;
  border-radius: 6px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  -webkit-appearance: none;
}
.bk-input::placeholder, .bk-textarea::placeholder { color: rgba(136,144,168,.4); }
.bk-input:focus, .bk-textarea:focus { border-color: rgba(201,168,76,.55); }
.bk-textarea { resize: vertical; min-height: 110px; }

/* ── Step 3: Calendar + slots ─────────────────────────── */
.bk-cal-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 0;
  min-height: 340px;
}
.bk-cal-left { padding-right: 32px; }

.bk-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.bk-cal-month {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .3px;
}
.bk-cal-nav {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--gray);
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  font-size: 13px;
}
.bk-cal-nav:hover { border-color: var(--gold); color: var(--gold); }

.bk-cal-dow-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}
.bk-cal-dow-row span {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  padding-bottom: 8px;
}
.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.bk-cal-day {
  text-align: center;
  padding: 8px 4px;
  font-size: 14px;
  color: rgba(136,144,168,.3);
  border: 1.5px solid transparent;
  cursor: default;
  transition: all .15s;
  line-height: 1;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bk-cal-day.available {
  color: var(--white);
  cursor: pointer;
  border-color: rgba(255,255,255,.2);
}
.bk-cal-day.available:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.08);
  color: var(--gold);
}
.bk-cal-day.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,.14);
  color: var(--gold);
  font-weight: 700;
}

/* Slots panel */
.bk-slots-panel {
  border-left: 1px solid var(--border);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
}
.bk-slots-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.bk-slots-label i { font-size: 12px; }
.bk-slots-hint { font-size: 13.5px; color: var(--gray); line-height: 1.7; }
.bk-slots-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  max-height: 320px;
}
.bk-slot {
  background: var(--bg3);
  border: 1.5px solid var(--border);
  padding: 11px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--white);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
  text-align: center;
}
.bk-slot:hover { border-color: rgba(201,168,76,.5); background: rgba(201,168,76,.06); }
.bk-slot.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,.12);
  color: var(--gold);
}

/* ── Fixed bottom nav ─────────────────────────────────── */
/* Running total bar */
.bk-total-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 10px;
  padding: 14px 20px;
  margin: 12px 0 0;
}
.bk-total-bar #bk-total-label {
  font-size: 13px;
  color: #8892a4;
  font-family: 'Barlow', sans-serif;
}
.bk-total-bar #bk-total-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
}

.bk-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to top, var(--bg) 70%, transparent);
  z-index: 50;
  pointer-events: none;
}
.bk-nav > * { pointer-events: all; }

.bk-btn-back {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.18);
  color: rgba(136,144,168,.8);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 12px 26px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color .2s, color .2s;
}
.bk-btn-back:hover { border-color: rgba(255,255,255,.4); color: var(--white); }

.bk-btn-next {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border: none;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .22s;
  box-shadow: 0 6px 24px rgba(26,58,143,.45);
}
.bk-btn-next:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-light) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26,58,143,.55);
}
.bk-btn-next:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.bk-btn-confirm {
  background: linear-gradient(135deg, #8b6914 0%, var(--gold) 50%, #e0b84a 100%);
  color: #06070f;
  box-shadow: 0 6px 24px rgba(201,168,76,.4);
}
.bk-btn-confirm:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--gold) 0%, #e0b84a 100%);
  box-shadow: 0 10px 32px rgba(201,168,76,.55);
}

/* ── Success screen ───────────────────────────────────── */
.bk-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  min-height: 100vh;
  text-align: center;
}
.bk-success.active { display: flex; }

.bk-success-icon {
  font-size: 68px;
  color: var(--gold);
  margin-bottom: 24px;
  filter: drop-shadow(0 0 32px rgba(201,168,76,.5));
}
.bk-success-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.bk-success-heading span { color: var(--gold); }
.bk-success-divider {
  width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  margin: 20px auto;
}
.bk-success-sub { font-size: 15px; color: var(--gray); max-width: 420px; line-height: 1.75; margin-bottom: 32px; }
.bk-success-meta {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 20px 28px;
  text-align: left;
  max-width: 460px;
  width: 100%;
  margin-bottom: 32px;
}
.bk-success-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.bk-success-row:last-child { border-bottom: none; }
.bk-success-row span:first-child { color: var(--gray); letter-spacing: .3px; }
.bk-success-row span:last-child { color: var(--white); font-weight: 500; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .bk-step { padding: 90px 16px 110px; }
  .bk-card { padding: 24px 20px 28px; }
  .bk-nav { padding: 14px 20px; }
  .bk-cal-layout { grid-template-columns: 1fr; }
  .bk-cal-left { padding-right: 0; padding-bottom: 24px; }
  .bk-slots-panel { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 22px; }
}
@media (max-width: 600px) {
  .bk-heading { letter-spacing: -1px; }
  .bk-form-row { grid-template-columns: 1fr; }
  .bk-btn-back { padding: 10px 18px; font-size: 13px; }
  .bk-btn-next { padding: 12px 24px; font-size: 13px; }
}

/* ─── (OLD) BOOKING PAGE HERO ────────────────────────── */
.book-hero {
  position: relative;
  padding: 150px 0 72px;
  overflow: hidden;
}
.book-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 10% 60%, rgba(26,58,143,.45) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 95% 20%, rgba(196,18,48,.15) 0%, transparent 60%);
  background-color: var(--bg);
}
.book-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 15% 50%, black 20%, transparent 80%);
}
.book-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--red), transparent);
}
.book-hero-content { position: relative; z-index: 2; }
.book-hero-content .section-label { display: block; margin-bottom: 12px; }
.book-hero-content .section-title { margin-bottom: 14px; }
.book-hero-sub { color: rgba(232,234,240,.6); font-size: 16px; max-width: 480px; }

.book-body {
  background: var(--bg2);
  padding: 72px 0 110px;
  position: relative;
}
.book-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.book-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}
.book-info { display: flex; flex-direction: column; gap: 14px; }
.book-info-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 22px 20px;
}
.book-info-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.book-detail-row {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 13px;
}
.book-detail-row:last-child { margin-bottom: 0; }
.book-detail-row i { color: var(--blue-light); font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.book-detail-row span, .book-detail-row a { font-size: 13px; color: var(--gray); line-height: 1.65; }
.book-detail-row a:hover { color: var(--gold); }
.book-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.book-price-row:last-child { border-bottom: none; }
.book-price-row span:first-child { color: rgba(136,144,168,.85); }
.book-price-row span:last-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--gold);
}
.book-price-row.featured {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(201,168,76,.25);
}
.book-price-row.featured span:first-child { color: var(--gold); font-weight: 600; }
.book-info-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.book-info-note i { color: var(--blue-light); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.book-info-note p { font-size: 12.5px; color: var(--gray); line-height: 1.7; margin: 0; }

.book-embed-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-top: 2px solid var(--blue);
  overflow: hidden;
}
#my-cal-inline {
  width: 100%;
  min-height: 680px;
}

/* Booking success overlay */
.book-success-overlay {
  position: fixed; inset: 0;
  background: rgba(6,7,15,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.book-success-overlay.active { opacity: 1; pointer-events: all; }
.book-success-card {
  background: var(--bg3);
  border: 1px solid rgba(201,168,76,.35);
  border-top: 3px solid var(--gold);
  padding: 56px 48px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  animation: float 4s ease-in-out infinite;
}
.book-success-icon {
  font-size: 60px;
  color: var(--gold);
  margin-bottom: 22px;
  filter: drop-shadow(0 0 20px rgba(201,168,76,.5));
}
.book-success-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.book-success-card h2 span { color: var(--gold); }
.book-success-card p { color: var(--gray); font-size: 15px; line-height: 1.75; margin-bottom: 28px; }
.book-success-divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  margin: 16px auto;
}

@media (max-width: 900px) {
  .book-layout { grid-template-columns: 1fr; }
  .book-embed-wrap { order: -1; }
  .book-hero { padding: 120px 0 50px; }
  .book-success-card { padding: 40px 28px; }
}
@media (max-width: 600px) {
  .book-hero { padding: 110px 0 44px; }
}
