/* =========================================================
   BRO'S BARBERSHOP — 2026 rebuild
   Palette & type derived from the brand logo (cyan / red).
   Signature: animated barber-pole stripe motif.
   ========================================================= */

:root {
  /* Brand colors (from logo) */
  --cyan: #00D4FF;
  --cyan-deep: #0891b2;
  --red: #E63946;
  --gold: #D4A574;

  /* Surfaces */
  --bg: #0a0a0b;
  --bg-2: #111114;
  --bg-3: #17171c;
  --card: #141419;
  --card-hover: #1b1b22;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  /* Text */
  --text: #EDEDF0;
  --text-muted: #A0A0AB;
  --text-dim: #6C6C78;
  --white: #ffffff;

  /* Type */
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-script: 'Pacifico', cursive;

  /* Layout */
  --container: 1200px;
  --pad-x: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Effects */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.2s var(--ease);
  --t: 0.35s var(--ease);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  --shadow-cyan: 0 8px 30px rgba(0, 212, 255, 0.25);
  --glass: rgba(12, 12, 15, 0.72);

  /* Z layers */
  --z-nav: 1000;
  --z-menu: 1100;
  --z-float: 900;
  --z-cookie: 1200;
  --z-lightbox: 1300;

  --nav-h: 74px;
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
iframe { border: 0; }

/* Accessible focus */
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--cyan); color: #001318; }

/* Skip link */
.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  background: var(--cyan);
  color: #00161c;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  z-index: 2000;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 12px; }

/* --------------------------- Typography --------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0.6rem 0 0.4rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
  max-width: 46ch;
}

.section-head { margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section-head.center { text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .section-subtitle { margin-inline: auto; }

/* --------------------------- Layout ------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

section { padding-block: var(--section-y); position: relative; }

.bg-2 { background: var(--bg-2); }
.bg-3 { background: var(--bg-3); }

/* Barber-pole divider — the signature motif */
.pole-divider {
  height: 6px;
  width: 100%;
  background-image: repeating-linear-gradient(
    115deg,
    var(--red) 0 14px,
    var(--white) 14px 28px,
    var(--cyan) 28px 42px,
    var(--white) 42px 56px
  );
  background-size: 112px 100%;
  opacity: 0.9;
  animation: pole-slide 3.2s linear infinite;
}
@keyframes pole-slide { to { background-position: 112px 0; } }

/* ---------------------------- Buttons ---------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn svg { width: 19px; height: 19px; }

.btn-primary {
  background: var(--cyan);
  color: #00161c;
  box-shadow: var(--shadow-cyan);
}
.btn-primary:hover { background: #43e0ff; transform: translateY(-2px); box-shadow: 0 12px 34px rgba(0, 212, 255, 0.4); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-strong);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }

.btn-outline {
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn-outline:hover { background: var(--cyan); color: #00161c; transform: translateY(-2px); }

.btn-lg { padding: 1.15rem 2.3rem; font-size: 1.06rem; }
.btn-block { width: 100%; }

/* --------------------------- Navigation -------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  transition: background var(--t), border-color var(--t), backdrop-filter var(--t);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.65rem; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo .wordmark {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
}
.nav-logo .wordmark b { color: var(--cyan); font-weight: 400; }

.nav-menu { display: flex; align-items: center; gap: 0.35rem; }
.nav-menu a {
  padding: 0.5rem 0.9rem;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a.active { color: var(--cyan); }

.nav-right { display: flex; align-items: center; gap: 0.9rem; }

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.lang-toggle button {
  padding: 0.4rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  transition: color var(--t-fast), background var(--t-fast);
}
.lang-toggle button.active { background: var(--cyan); color: #00161c; }

.nav-book { display: inline-flex; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
}
.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t-fast);
}
body.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  background: rgba(8, 8, 10, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.45s var(--ease), visibility 0.45s;
}
body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.4rem 1rem;
  transition: color var(--t-fast);
}
.mobile-menu a:hover, .mobile-menu a:focus-visible { color: var(--cyan); }
.mobile-menu .btn { margin-top: 1.4rem; font-family: var(--font-body); font-size: 1rem; }
.mobile-menu-social { margin-top: 1.6rem; display: flex; gap: 1rem; }
.mobile-menu-social a {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text-muted);
}
.mobile-menu-social a:hover { color: var(--cyan); border-color: var(--cyan); }

/* ----------------------------- Preloader ------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(900px 600px at 50% 40%, #101018, #060608 70%);
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body.loading { overflow: hidden; }
.preloader-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}
/* Ambient cyan glow pulsing behind the logo */
.preloader-glow {
  position: absolute;
  top: 38%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.35), transparent 62%);
  filter: blur(26px);
  animation: pl-glow 2.2s ease-in-out infinite;
}
.preloader-logo {
  position: relative;
  width: min(210px, 52vw);
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.6));
  animation: pl-logo 1.1s var(--ease) both, pl-float 3s ease-in-out 1.1s infinite;
}
/* Barber-pole progress sweep — ties to the site's signature motif */
.preloader-bar {
  position: relative;
  width: min(220px, 56vw);
  height: 5px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.preloader-bar span {
  position: absolute;
  inset: 0;
  transform-origin: left center;
  border-radius: var(--radius-pill);
  background-image: repeating-linear-gradient(
    115deg,
    var(--red) 0 10px,
    var(--white) 10px 20px,
    var(--cyan) 20px 30px,
    var(--white) 30px 40px
  );
  background-size: 80px 100%;
  animation: pl-fill 1.5s var(--ease) forwards, pole-slide 1s linear infinite;
}
@keyframes pl-logo {
  from { opacity: 0; transform: scale(0.82) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes pl-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes pl-glow {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.92); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.08); }
}
@keyframes pl-fill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: calc(var(--z-nav) + 1);
  background: linear-gradient(90deg, var(--cyan), var(--red));
  transition: width 0.1s linear;
}

/* ----------------------------- Hero ------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
/* Fallback sits at the very back; video paints over it once it loads. */
.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(0, 212, 255, 0.14), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(230, 57, 70, 0.12), transparent 55%),
    linear-gradient(180deg, #0c0c10, #060608);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(6,6,8,0.6) 0%, rgba(6,6,8,0.4) 40%, rgba(6,6,8,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .eyebrow { margin-bottom: 1.1rem; }
.hero .eyebrow::before { display: none; } /* no side dash when centered */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
}
.hero-title .line { display: block; } /* each line forced onto its own row */
.hero-title .accent { color: var(--cyan); }
.hero-subtitle {
  margin: 1.4rem auto 2.2rem;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: var(--text-muted);
  max-width: 46ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

.scroll-cue {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-dim);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-cue svg { width: 22px; height: 22px; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(6px);} }

/* ----------------------------- Ticker ---------------------------- */
.ticker {
  background: var(--cyan);
  color: #00161c;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.7rem 0;
  border-block: 1px solid rgba(0,0,0,0.15);
}
.ticker-track {
  display: inline-flex;
  gap: 2.6rem;
  align-items: center;
  padding-left: 2.6rem;
  animation: ticker 26s linear infinite;
  will-change: transform;
}
.ticker-track span {
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: #00161c; opacity: 0.5; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ----------------------------- About ----------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-text { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--text-muted); }
.about-text strong { color: var(--text); font-weight: 600; }
.about-stats {
  display: grid;
  gap: 1rem;
}
.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  background: var(--card);
  transition: border-color var(--t), transform var(--t);
}
.stat:hover { border-color: var(--cyan); transform: translateX(4px); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--cyan);
}
.stat-label { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.2rem; }

/* --------------------------- Services ---------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.service-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-3);
}
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.07); }
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,10,11,0.85));
}
.service-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.4rem; }
.service-body p { color: var(--text-muted); font-size: 0.97rem; flex: 1; }
.service-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 1.1rem 0 1.2rem;
}
.service-price .from { color: var(--text-dim); font-size: 0.85rem; }
.service-price .amount {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--white);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.92rem;
  transition: gap var(--t-fast);
}
.service-link:hover { gap: 0.75rem; }
.service-link svg { width: 16px; height: 16px; }

/* --------------------------- Featured deal ----------------------- */
.deal {
  position: relative;
  overflow: hidden;
}
.deal-card {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(700px 300px at 100% 0%, rgba(0,212,255,0.12), transparent 60%),
    var(--card);
  padding: clamp(2rem, 5vw, 3.4rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
}
.deal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--red);
  color: var(--white);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.deal-badge svg { width: 15px; height: 15px; }
.deal-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}
.deal-card > .deal-left p { color: var(--text-muted); margin: 0.8rem 0 1.5rem; max-width: 40ch; }
.deal-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 1.2rem;
}
.deal-feature { display: flex; align-items: center; gap: 0.6rem; font-size: 0.97rem; }
.deal-feature svg { width: 18px; height: 18px; color: var(--cyan); flex: none; }
.deal-right { text-align: center; }
.deal-price-label { color: var(--text-dim); font-size: 0.9rem; }
.deal-price {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 6rem);
  line-height: 0.9;
  color: var(--cyan);
  margin: 0.2rem 0 1.4rem;
}
.deal-price .cur { font-size: 0.5em; vertical-align: super; color: var(--white); }

/* --------------------------- Why (features) ---------------------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.feature {
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  transition: transform var(--t), border-color var(--t);
}
.feature:hover { transform: translateY(-6px); border-color: var(--cyan); }
.feature-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(0, 212, 255, 0.1);
  color: var(--cyan);
  margin-bottom: 1.2rem;
}
.feature-icon svg { width: 27px; height: 27px; }
.feature h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.feature p { color: var(--text-muted); font-size: 0.97rem; }

/* ---------------------------- Reviews ---------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.review {
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-stars { display: flex; gap: 3px; color: var(--gold); }
.review-stars svg { width: 18px; height: 18px; fill: currentColor; }
.review p { color: var(--text); font-size: 1rem; font-style: italic; flex: 1; }
.review-author { display: flex; align-items: center; gap: 0.7rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-deep), var(--red));
  display: grid; place-items: center;
  font-weight: 700; color: var(--white); font-size: 0.95rem;
}
.review-author span { font-weight: 600; font-size: 0.95rem; }

/* --------------------------- Locations --------------------------- */
.locations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.location {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
}
.location-map { position: relative; aspect-ratio: 16 / 9; background: var(--bg-3); }
.location-map iframe { width: 100%; height: 100%; }
.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
  padding: 1.5rem;
  background:
    linear-gradient(rgba(10,10,11,0.82), rgba(10,10,11,0.82)),
    repeating-linear-gradient(45deg, #17171c 0 12px, #141419 12px 24px);
}
.map-consent p { color: var(--text-muted); font-size: 0.9rem; max-width: 30ch; }
.map-consent .note { color: var(--text-dim); font-size: 0.78rem; }
.location-body { padding: 1.6rem 1.7rem 1.8rem; }
.location-body h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.location-info { display: grid; gap: 0.7rem; margin-bottom: 1.4rem; }
.location-info li { display: flex; align-items: flex-start; gap: 0.65rem; color: var(--text-muted); font-size: 0.97rem; }
.location-info svg { width: 18px; height: 18px; color: var(--cyan); flex: none; margin-top: 3px; }
.location-info a:hover { color: var(--cyan); }
.location-hours span { display: block; }
.location-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.location-actions .btn { flex: 1; min-width: 140px; }

/* ---------------------------- Gallery ---------------------------- */
/* Layout: 1 large image on the left, a 2x2 grid of 4 on the right. */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.9rem;
  aspect-ratio: 2 / 1;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-3);
  min-height: 0;
}
/* Big feature image = left half, full height */
.gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
/* Four small images fill the right 2x2 */
.gallery-item:nth-child(2) { grid-column: 3; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 4; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 3; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 4; grid-row: 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 212, 255, 0);
  transition: background var(--t);
}
.gallery-item:hover::after { background: rgba(0, 212, 255, 0.14); }
.gallery-zoom {
  position: absolute;
  top: 0.7rem; right: 0.7rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(10,10,11,0.7);
  display: grid; place-items: center;
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--t), transform var(--t);
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }
.gallery-zoom svg { width: 16px; height: 16px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  background: rgba(4,4,6,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: grid; place-items: center;
}
.lightbox-close:hover { background: var(--cyan); color: #00161c; }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: grid; place-items: center;
}
.lightbox-nav:hover { background: var(--cyan); color: #00161c; }
.lightbox-nav.prev { left: 1.4rem; }
.lightbox-nav.next { right: 1.4rem; }
.lightbox-nav svg, .lightbox-close svg { width: 24px; height: 24px; }

/* ------------------------------ FAQ ------------------------------ */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 0.8rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item.open { border-color: var(--cyan); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 1.05rem;
}
.faq-q svg { width: 20px; height: 20px; color: var(--cyan); flex: none; transition: transform var(--t); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a p { padding: 0 1.5rem 1.4rem; color: var(--text-muted); }

/* --------------------------- Final CTA --------------------------- */
.final-cta {
  text-align: center;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(0,212,255,0.14), transparent 60%),
    var(--bg-2);
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.final-cta p { color: var(--text-muted); max-width: 44ch; margin: 0 auto 2rem; font-size: 1.1rem; }

/* ----------------------------- Footer ---------------------------- */
.footer { background: #060608; border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: 3rem;
}
.footer-logo { height: 60px; width: auto; margin-bottom: 1rem; }
.footer-tagline { color: var(--text-muted); font-size: 0.95rem; max-width: 30ch; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a {
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--text-muted);
  transition: color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.footer-social a:hover { color: var(--cyan); border-color: var(--cyan); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { color: var(--text-muted); font-size: 0.95rem; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--cyan); }
.footer-contact p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 0.3rem; }
.footer-contact strong { color: var(--text); }
.footer-hours-row { display: flex; justify-content: space-between; gap: 1rem; color: var(--text-muted); font-size: 0.93rem; margin-bottom: 0.4rem; }
.footer-hours-row span:last-child { color: var(--text); font-weight: 500; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.86rem;
}
.footer-legal { display: flex; gap: 1.4rem; }
.footer-legal a:hover { color: var(--cyan); }

/* ------------------- Floating book + back to top ----------------- */
.floating-book {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: var(--z-float);
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.3rem;
  border-radius: var(--radius-pill);
  background: var(--cyan);
  color: #00161c;
  font-weight: 700;
  box-shadow: var(--shadow-cyan);
}
.floating-book svg { width: 20px; height: 20px; }

.to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: var(--z-float);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line-strong);
  color: var(--white);
  display: grid; place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--t), visibility var(--t), transform var(--t), background var(--t-fast);
  backdrop-filter: blur(8px);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--cyan); color: #00161c; }
.to-top svg { width: 20px; height: 20px; }

/* --------------------------- Cookie banner ----------------------- */
.cookie {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translate(-50%, 150%);
  z-index: var(--z-cookie);
  width: min(680px, calc(100% - 2rem));
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  transition: transform 0.5s var(--ease);
}
.cookie.show { transform: translate(-50%, 0); }
.cookie p { flex: 1; min-width: 240px; font-size: 0.88rem; color: var(--text-muted); }
.cookie-actions { display: flex; gap: 0.6rem; }
.cookie-actions .btn { padding: 0.7rem 1.2rem; font-size: 0.9rem; }

/* --------------------------- Scroll reveal ----------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ============================= Responsive ========================= */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .services-grid, .features-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .deal-card { grid-template-columns: 1fr; text-align: left; }
  .deal-right { text-align: left; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --nav-h: 66px; }
  .nav-menu, .nav-book { display: none; }
  .hamburger { display: flex; }
  .nav-logo .wordmark { font-size: 1.35rem; }

  .services-grid, .features-grid, .reviews-grid { grid-template-columns: 1fr; }
  .deal-features { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    aspect-ratio: auto;
  }
  .gallery-item { aspect-ratio: 1; }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; aspect-ratio: 16 / 10; }
  .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
  .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .gallery-item:nth-child(4) { grid-column: 1; grid-row: 3; }
  .gallery-item:nth-child(5) { grid-column: 2; grid-row: 3; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }

  .floating-book { display: inline-flex; }
  .to-top { right: auto; left: 1.1rem; }
  .hero-ctas .btn { flex: 1; }
}

@media (max-width: 420px) {
  .lang-toggle button { padding: 0.38rem 0.6rem; }
  .btn { padding: 0.85rem 1.4rem; }
}

/* Larger screens: hide floating mobile CTA */
@media (min-width: 761px) {
  .floating-book { display: none !important; }
}

/* --------------------- Reduced motion --------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
  .pole-divider { animation: none; }
}

/* --------------------- Legal pages (imprint/privacy) ------------- */
.legal-page { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 4rem; min-height: 100vh; }
.legal-page .container { max-width: 820px; }
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.legal-page h2 { font-size: 1.3rem; margin: 2rem 0 0.6rem; color: var(--white); }
.legal-page p, .legal-page li { color: var(--text-muted); margin-bottom: 0.7rem; }
.legal-page ul { padding-left: 1.3rem; list-style: disc; }
.legal-page a { color: var(--cyan); }
.legal-page .placeholder {
  background: rgba(230, 57, 70, 0.14);
  border: 1px dashed var(--red);
  color: #ffb3ba;
  padding: 0.05em 0.4em;
  border-radius: 4px;
  font-size: 0.92em;
}
.legal-back { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--cyan); margin-bottom: 2rem; font-weight: 600; }
.legal-back svg { width: 16px; height: 16px; }
