/* S Blends Barbershop — Oakville | high-end custom barber brand reskin */
:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --gold: #c5a059;
  --gold-lt: #d4af37;
  --gold-dk: #8a6d35;
  --gold-muted: rgba(197, 160, 89, 0.3);
  --ink: #f5f5f0;
  --ink-2: #a0a0a0;
  --ink-3: #6f6f6f;
  --line: rgba(255, 255, 255, 0.1);
  --line-gold: rgba(197, 160, 89, 0.4);
  --red: #8b0000;
  --blue: #1c3f60;
  --stripe: linear-gradient(90deg, transparent 0%, var(--red) 28%, var(--gold) 50%, var(--blue) 72%, transparent 100%);
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'IBM Plex Sans', -apple-system, sans-serif;
  --container: 1200px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.nav-open, body.lb-open { overflow: hidden; }

::selection { background: var(--gold); color: #0a0a0a; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }

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

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #262626; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dk); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 300;
  background: var(--gold);
  color: #0a0a0a;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2rem);
  position: relative;
  z-index: 2;
}

.section { padding: clamp(4.5rem, 9vw, 6.5rem) 0; position: relative; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-d); font-weight: 500; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.06; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.12; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.45rem, 2.6vw, 2rem); line-height: 1.25; }
h4 { font-size: 1.2rem; line-height: 1.35; }

.lead { color: var(--ink-2); font-size: 1.05rem; font-weight: 300; max-width: 62ch; }
.text-gold { color: var(--gold-lt); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.eyebrow::before { content: ''; width: 2.4rem; height: 1px; background: var(--line-gold); }
.eyebrow.center::after { content: ''; width: 2.4rem; height: 1px; background: var(--line-gold); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.2rem;
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-gold { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(197, 160, 89, 0.18);
}
.btn-outline { background: transparent; color: var(--gold-lt); border-color: var(--line-gold); }
.btn-outline:hover { background: var(--gold); border-color: var(--gold); color: #0a0a0a; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--line-gold); color: var(--gold-lt); transform: translateY(-2px); }
.btn-sm { padding: 0.72rem 1.4rem; font-size: 0.7rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.3s var(--ease);
}
.site-header.scrolled { background: rgba(10, 10, 10, 0.96); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.brand-logo { width: 50px; height: 50px; object-fit: contain; }
.brand-name {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1.05;
}
.brand-name span {
  display: block;
  font-family: var(--font-b);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}
.primary-nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; align-items: center; gap: 1.7rem; }
.nav-list a {
  position: relative;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-2);
  padding: 0.4rem 0;
  transition: color 0.25s var(--ease);
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-list a:hover, .nav-list a[aria-current='page'] { color: var(--gold-lt); }
.nav-list a:hover::after, .nav-list a[aria-current='page']::after { transform: scaleX(1); }
.nav-book { padding: 0.75rem 1.5rem; font-size: 0.7rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px; height: 46px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--gold-lt);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-bg img, .hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.55) contrast(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.62) 45%, rgba(10,10,10,0.95) 100%);
}
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.hero-logo {
  width: clamp(130px, 17vw, 200px);
  margin-bottom: 2rem;
  filter: drop-shadow(0 14px 38px rgba(0, 0, 0, 0.7));
}
.hero-title { max-width: 15ch; position: relative; padding-bottom: 1.6rem; }
.hero-title::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 9rem; height: 2px;
  background: var(--stripe);
  opacity: 0.85;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-sub { margin-top: 1.6rem; max-width: 56ch; color: var(--ink-2); font-size: 1.02rem; font-weight: 300; }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.6rem; }
.hero-rating {
  margin-top: 2.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: var(--ink-2);
  letter-spacing: 0.05em;
}
.stars { color: var(--gold-lt); letter-spacing: 0.14em; font-size: 0.9rem; }
.scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 3.4rem;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  opacity: 0.7;
}

/* ---------- Trust strip ---------- */
.trust { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; }
.trust::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 2px; background: var(--stripe); opacity: 0.6; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 2.8rem 0; }
.trust-item { text-align: center; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-value { font-family: var(--font-d); font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 500; color: var(--gold-lt); line-height: 1.1; }
.trust-label {
  margin-top: 0.45rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- Cards & grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 2rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { border-color: var(--line-gold); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45); }

/* ---------- Services ---------- */
main { counter-reset: svc-cat gal-row; }
.svc-cat { margin-bottom: clamp(3rem, 6vw, 4.5rem); counter-increment: svc-cat; }
.svc-cat-head {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line-gold);
}
.svc-cat-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.svc-cat-head h2::before {
  content: counter(svc-cat, decimal-leading-zero);
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-right: 1.1rem;
  vertical-align: 0.5em;
}
.svc-count { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-3); }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 1.9rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.svc-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dk));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.svc-card:hover { border-color: var(--line-gold); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45); }
.svc-card:hover::before { opacity: 1; }
.svc-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed var(--line);
}
.svc-name { font-size: 1.5rem; font-weight: 500; }
.svc-price { font-family: var(--font-d); font-size: 1.6rem; font-weight: 600; color: var(--gold-lt); white-space: nowrap; }
.svc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.badge-age {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border: 1px solid var(--line-gold);
  border-radius: 2px;
  color: var(--gold-lt);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}
.svc-desc { color: var(--ink-2); font-size: 0.92rem; font-weight: 300; }
.svc-includes { margin-top: 0.2rem; }
.svc-includes summary {
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  list-style: none;
}
.svc-includes summary::-webkit-details-marker { display: none; }
.svc-includes summary::after { content: ' +'; color: var(--gold-lt); }
.svc-includes[open] summary::after { content: ' −'; }
.svc-includes ul { margin-top: 0.8rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.4rem 1rem; }
.svc-includes li { position: relative; padding-left: 1.1rem; font-size: 0.86rem; font-weight: 300; color: var(--ink-2); }
.svc-includes li::before { content: ''; position: absolute; left: 0; top: 0.62em; width: 5px; height: 5px; background: var(--gold); }
.svc-foot { margin-top: auto; padding-top: 0.7rem; }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.why-media { position: relative; }
.why-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(0.75) contrast(1.03); }
.why-media::after {
  content: '';
  position: absolute;
  inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid var(--line-gold);
  z-index: -1;
}
.why-list { margin-top: 2.2rem; display: grid; gap: 1.35rem; }
.why-list li { display: flex; gap: 1rem; align-items: flex-start; }
.why-list svg { flex: none; width: 20px; height: 20px; margin-top: 4px; color: var(--gold); }
.why-list strong { display: block; font-weight: 500; letter-spacing: 0.02em; }
.why-list p { color: var(--ink-2); font-size: 0.92rem; font-weight: 300; margin-top: 0.2rem; }

/* ---------- Gallery ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.8rem; }
.chip {
  padding: 0.6rem 1.35rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink-2);
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.chip:hover { border-color: var(--line-gold); color: var(--gold-lt); }
.chip.active { background: var(--gold); border-color: var(--gold); color: #0a0a0a; }

.media-row-wrap { position: relative; margin-bottom: 3.2rem; counter-increment: gal-row; }
.row-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.row-title { font-family: var(--font-d); font-size: 1.6rem; font-weight: 500; color: var(--ink); }
.row-title::before {
  content: counter(gal-row, decimal-leading-zero) ' · ';
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--gold);
  vertical-align: 0.4em;
  margin-right: 0.5rem;
}
.row-nav { display: flex; gap: 0.5rem; }
.row-btn {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--gold-lt);
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.row-btn:hover { border-color: var(--line-gold); background: #202020; }
.media-row {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.4rem;
}
.media-row::-webkit-scrollbar { display: none; }
.tile {
  position: relative;
  flex: 0 0 clamp(240px, 26vw, 360px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
  cursor: pointer;
  padding: 0;
  scroll-snap-align: start;
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(88%) contrast(1.03);
  transition: transform 0.55s var(--ease), filter 0.45s var(--ease);
}
.featured-tile img { filter: grayscale(45%) contrast(1.03); }
.tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(10, 10, 10, 0.9) 100%);
  opacity: 0.55;
  transition: opacity 0.35s var(--ease);
}
.tile:hover img, .tile:focus-visible img { transform: scale(1.06); filter: grayscale(0%) contrast(1); }
.tile:hover::after, .tile:focus-visible::after { opacity: 1; }
.tile:hover { border-color: var(--line-gold); }
.tile-cap {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 0.85rem;
  z-index: 2;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.tile:hover .tile-cap, .tile:focus-visible .tile-cap { opacity: 1; transform: translateY(0); }
.tile-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.55);
  color: var(--gold-lt);
}
.featured-tile { flex-basis: clamp(300px, 44vw, 620px); aspect-ratio: 16 / 9; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.93);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.open { opacity: 1; }
.lb-inner { width: min(1100px, 92vw); display: flex; flex-direction: column; gap: 0.9rem; }
.lb-media { display: flex; align-items: center; justify-content: center; max-height: 76vh; }
.lb-media img, .lb-media video { max-width: 100%; max-height: 76vh; object-fit: contain; border: 1px solid var(--line); }
.lb-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--ink-2); font-size: 0.8rem; letter-spacing: 0.08em; }
.lb-controls { display: flex; gap: 0.5rem; }
.lb-btn {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--gold-lt);
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.lb-btn:hover { border-color: var(--line-gold); background: #222; }
.lb-close { position: absolute; top: 1.2rem; right: 1.2rem; }

/* ---------- Reviews ---------- */
.rate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.rate-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 2.4rem 1.8rem;
  text-align: center;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.rate-card:hover { border-color: var(--line-gold); transform: translateY(-3px); }
.rate-big { font-family: var(--font-d); font-size: 3.4rem; font-weight: 500; line-height: 1; color: var(--gold-lt); }
.rate-src { margin-top: 0.6rem; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-3); }
.rate-sub { margin-top: 0.35rem; font-size: 0.88rem; font-weight: 300; color: var(--ink-2); }

.bars { display: grid; gap: 0.95rem; max-width: 40rem; }
.bar-row { display: grid; grid-template-columns: 3.4rem 1fr 3.2rem; align-items: center; gap: 1rem; font-size: 0.82rem; color: var(--ink-2); }
.bar { height: 6px; background: var(--bg-3); border: 1px solid var(--line); }
.bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt)); transition: width 1s var(--ease); }
.in .bar i, .bars.in .bar i { width: var(--w); }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quote-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 2.4rem 2rem 2rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.quote-card:hover { border-color: var(--line-gold); transform: translateY(-3px); }
.quote-mark { font-family: var(--font-d); font-size: 4.4rem; line-height: 0.6; color: var(--gold-muted); display: block; margin-bottom: 1.3rem; }
.quote-card p { font-family: var(--font-d); font-style: italic; color: var(--ink); font-size: 1.15rem; line-height: 1.6; }
.quote-src { margin-top: 1.4rem; font-family: var(--font-b); font-style: normal; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.team-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 2px; overflow: hidden; }
.team-ph {
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background:
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(197, 160, 89, 0.045) 22px 23px),
    var(--bg-3);
  color: var(--gold-dk);
}
.team-ph svg { width: 42px; height: 42px; }
.team-ph span { font-size: 0.64rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-3); }
.team-body { padding: 1.5rem 1.6rem 1.7rem; }
.team-body h3 { font-size: 1.4rem; }
.team-role { margin-top: 0.25rem; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.team-body p { margin-top: 0.7rem; font-size: 0.9rem; font-weight: 300; color: var(--ink-2); }

/* ---------- Location / contact ---------- */
.loc-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem, 6vw, 4.5rem); align-items: start; }
.info-list { display: grid; gap: 1.5rem; margin-top: 2rem; }
.info-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.info-item svg { flex: none; width: 20px; height: 20px; margin-top: 4px; color: var(--gold); }
.info-item strong { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.35rem; }
.info-item a { color: var(--ink); text-decoration-color: var(--line-gold); text-underline-offset: 4px; }
.info-item a:hover { color: var(--gold-lt); }

.hours-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); }
.hours-table caption { text-align: left; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); padding-bottom: 1rem; }
.hours-table th, .hours-table td { padding: 0.9rem 1.2rem; text-align: left; font-size: 0.92rem; border-bottom: 1px solid var(--line); }
.hours-table th { font-weight: 400; color: var(--ink); }
.hours-table td { color: var(--ink-2); text-align: right; font-variant-numeric: tabular-nums; font-weight: 300; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.hours-table tr.today th, .hours-table tr.today td { color: var(--gold-lt); background: rgba(197, 160, 89, 0.06); }

.map-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.4rem;
  min-height: 300px;
  padding: 2rem;
  border: 1px solid var(--line-gold);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.92) 100%),
    var(--map-img, none) center / cover,
    var(--bg-3);
  text-decoration: none;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.map-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.map-card strong { font-family: var(--font-d); font-size: 1.5rem; font-weight: 500; color: var(--ink); }
.map-card span { color: var(--gold-lt); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }

/* ---------- FAQ ---------- */
.faq-grid { max-width: 52rem; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0.25rem;
  cursor: pointer;
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  transition: color 0.25s var(--ease);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ''; }
.faq-question:hover { color: var(--gold-lt); }
.faq-item[open] .faq-question { color: var(--gold-lt); }
.faq-icon { position: relative; flex: none; width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--gold); }
.faq-icon::before { left: 0; top: 7px; width: 16px; height: 1.5px; }
.faq-icon::after { left: 7px; top: 0; width: 1.5px; height: 16px; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 3rem 1.7rem 0.25rem; color: var(--ink-2); font-weight: 300; font-size: 0.97rem; }
.faq-answer a { color: var(--gold-lt); text-decoration-color: var(--line-gold); text-underline-offset: 3px; }
.faq-answer a:hover { color: var(--gold); }

/* ---------- CTA final ---------- */
.cta-final { text-align: center; }
.cta-frame {
  position: relative;
  border: 1px solid var(--line-gold);
  border-radius: 2px;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--bg-2);
}
.cta-frame::before { content: ''; position: absolute; inset: 8px; border: 1px solid var(--line); pointer-events: none; }
.cta-frame::after { content: ''; position: absolute; top: -1px; left: 12%; right: 12%; height: 2px; background: var(--stripe); opacity: 0.8; }
.cta-final h2 { max-width: 18ch; margin: 0 auto; }
.cta-final .lead { margin: 1.3rem auto 0; }
.cta-final .btn { margin-top: 2.4rem; }

/* ---------- Page head (subpages) ---------- */
.page-head {
  padding: calc(var(--header-h) + clamp(3.5rem, 7vw, 5.5rem)) 0 clamp(3rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(60% 90% at 50% -20%, rgba(197, 160, 89, 0.08) 0%, transparent 70%),
    var(--bg);
}
.page-head .lead { margin-top: 1.2rem; }
.crumbs { margin-bottom: 1.4rem; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-3); }
.crumbs a { color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--gold-lt); }
.crumbs span { color: var(--gold); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.post-card:hover { border-color: var(--line-gold); transform: translateY(-4px); }
.post-media { aspect-ratio: 16 / 9; overflow: hidden; }
.post-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(55%); transition: transform 0.5s var(--ease), filter 0.4s var(--ease); }
.post-card:hover .post-media img { transform: scale(1.05); filter: grayscale(0%); }
.post-body { padding: 1.8rem 2rem 2rem; }
.post-tag { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.post-body h2, .post-body h3 { margin-top: 0.7rem; font-size: 1.7rem; font-weight: 500; line-height: 1.25; transition: color 0.25s var(--ease); }
.post-card:hover .post-body h2, .post-card:hover .post-body h3 { color: var(--gold-lt); }
.post-body p { margin-top: 0.8rem; color: var(--ink-2); font-size: 0.92rem; font-weight: 300; }
.post-more { margin-top: 1.3rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-lt); }

.article-hero { aspect-ratio: 21 / 9; overflow: hidden; border: 1px solid var(--line); margin-bottom: 3rem; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.prose { max-width: 46rem; margin: 0 auto; }
.prose > p { margin-bottom: 1.5rem; color: var(--ink-2); font-size: 1rem; font-weight: 300; }
.prose > p strong { color: var(--ink); font-weight: 500; }
.prose h2 { margin: 2.8rem 0 1.1rem; font-size: clamp(1.7rem, 3vw, 2.2rem); }
.prose h3 { margin: 2rem 0 0.9rem; font-size: 1.4rem; }
.prose ul, .prose ol { margin: 0 0 1.6rem 1.2rem; color: var(--ink-2); font-weight: 300; }
.prose li { margin-bottom: 0.55rem; padding-left: 0.4rem; }
.prose ul li::marker { color: var(--gold); }
.prose a { color: var(--gold-lt); text-decoration-color: var(--line-gold); text-underline-offset: 3px; }
.prose a:hover { color: var(--gold); }
.prose blockquote {
  margin: 2.4rem 0;
  padding: 1.6rem 2rem;
  border-left: 2px solid var(--gold);
  background: var(--bg-2);
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}
.cta-box { margin-top: 3.2rem; padding: 2.4rem; border: 1px solid var(--line-gold); border-radius: 2px; background: var(--bg-2); text-align: center; }
.cta-box h3 { margin-bottom: 0.7rem; }
.cta-box p { color: var(--ink-2); font-weight: 300; max-width: 44ch; margin: 0 auto; }
.cta-box .hero-ctas { margin-top: 1.8rem; }

/* ---------- Legal pages ---------- */
.legal { max-width: 48rem; }
.legal h2 { margin: 2.6rem 0 0.9rem; font-size: 1.6rem; }
.legal p, .legal li { color: var(--ink-2); font-size: 0.95rem; font-weight: 300; }
.legal p { margin-bottom: 1rem; }
.legal ul { margin: 0 0 1.2rem 1.2rem; }
.legal li { margin-bottom: 0.45rem; }
.legal ul li::marker { color: var(--gold); }
.legal a { color: var(--gold-lt); }
.updated { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 2rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line-gold); background: #080808; position: relative; z-index: 2; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 2.5rem;
  padding: clamp(4rem, 7vw, 6rem) 0 3rem;
}
.footer-brand p { margin-top: 1.3rem; color: var(--ink-2); font-size: 0.9rem; font-weight: 300; max-width: 30ch; }
.social-row { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.social-row a {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink-2);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.social-row a:hover { color: var(--gold-lt); border-color: var(--line-gold); transform: translateY(-2px); }
.social-row svg { width: 17px; height: 17px; }
.footer-col h3 { font-family: var(--font-b); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { color: var(--ink-2); text-decoration: none; font-size: 0.9rem; font-weight: 300; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--gold-lt); }
.footer-col a.btn { color: #0a0a0a; font-weight: 600; }
.footer-col a.btn:hover { color: #0a0a0a; }
.footer-col address { font-style: normal; color: var(--ink-2); font-size: 0.9rem; font-weight: 300; display: grid; gap: 0.6rem; }
.footer-col address a { color: var(--ink-2); }
.hours-mini { display: grid; gap: 0.5rem; color: var(--ink-2); font-size: 0.9rem; font-weight: 300; margin-bottom: 1.4rem; }
.hours-mini span { color: var(--ink); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.6rem;
  padding-bottom: 1.8rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--ink-3);
}
.footer-bottom a { color: var(--ink-3); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-lt); }
.footer-bottom .dot { margin: 0 0.5rem; color: var(--gold-dk); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .quote-grid, .rate-grid, .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    top: var(--header-h); right: 0;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    width: min(400px, 88vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 2rem 2rem 3rem;
    background: rgba(8, 8, 8, 0.98);
    border-left: 1px solid var(--line-gold);
    transform: translateX(100%);
    transition: transform 0.38s var(--ease);
    overflow-y: auto;
  }
  .primary-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list li { border-bottom: 1px solid var(--line); }
  .nav-list a { display: block; padding: 1.05rem 0.2rem; font-size: 0.92rem; }
  .nav-list a::after { display: none; }
  .nav-book { margin-top: 1.8rem; padding: 1rem 1.5rem; text-align: center; }
  .why-grid, .loc-grid { grid-template-columns: 1fr; }
  .why-media { max-width: 30rem; }
  .svc-grid, .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 72px; }
  .brand-logo { width: 42px; height: 42px; }
  .brand-name { font-size: 1.15rem; }
  .trust-grid { grid-template-columns: 1fr; gap: 1.6rem; padding: 2.2rem 0; }
  .trust-item + .trust-item { border-left: none; border-top: 1px solid var(--line); padding-top: 1.6rem; }
  .grid-2, .grid-3, .grid-4, .quote-grid, .rate-grid, .team-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .tile { flex-basis: 78vw; }
  .featured-tile { flex-basis: 85vw; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .lb-close { top: 0.7rem; right: 0.7rem; }
  .bar-row { grid-template-columns: 2.8rem 1fr 2.8rem; gap: 0.7rem; }
  .svc-includes ul { grid-template-columns: 1fr; }
  .faq-question { font-size: 1.2rem; }
}

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

/* ---------- Google review badge ---------- */
.g-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 2.2rem;
}
.g-badge-inner { display: flex; align-items: center; gap: 0.9rem; }
.g-badge-inner svg { width: 26px; height: 26px; flex: none; }
.g-badge-inner strong { display: block; font-weight: 600; font-size: 0.92rem; line-height: 1.2; }
.g-badge-inner span { font-size: 0.76rem; color: var(--ink-3); }
.badge-link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border: 1px solid var(--line-gold);
  border-radius: 2px;
  padding: 0.6rem 1.15rem;
  text-decoration: none;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.badge-link:hover { background: var(--gold); border-color: var(--gold); color: #0a0a0a; }

/* ---------- Chat assistant ---------- */
.chat-toggle {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 150;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0a0a;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}
.chat-toggle:hover { background: var(--gold-lt); transform: translateY(-3px); }
.chat-toggle svg { width: 24px; height: 24px; }
body.nav-open .chat-toggle, body.lb-open .chat-toggle { display: none; }

.chat-panel {
  position: fixed;
  right: 1.4rem;
  bottom: calc(1.4rem + 70px);
  z-index: 150;
  width: min(380px, calc(100vw - 2rem));
  height: min(580px, calc(100dvh - 130px));
  display: flex;
  flex-direction: column;
  background: #111;
  border: 1px solid var(--line-gold);
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.chat-panel[hidden] { display: none; }
.chat-panel.open { opacity: 1; transform: none; }
.chat-head { display: flex; align-items: center; gap: 0.75rem; padding: 0.9rem 1rem; border-bottom: 1px solid var(--line); }
.chat-head img { width: 34px; height: 34px; }
.chat-head strong { display: block; font-family: var(--font-d); font-size: 1.15rem; font-weight: 600; line-height: 1.1; }
.chat-head span { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.chat-close { margin-left: auto; background: none; border: none; color: var(--ink-2); cursor: pointer; padding: 0.4rem; display: flex; }
.chat-close:hover { color: var(--gold-lt); }
.chat-log { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.7rem; }
.msg { max-width: 86%; padding: 0.7rem 0.9rem; font-size: 0.86rem; line-height: 1.55; border-radius: 3px; }
.msg.bot { align-self: flex-start; background: var(--bg-3); border: 1px solid var(--line); color: var(--ink); }
.msg.bot strong { color: var(--gold-lt); }
.msg.bot a { color: var(--gold-lt); text-decoration-color: var(--line-gold); text-underline-offset: 3px; }
.msg.user { align-self: flex-end; background: var(--gold); color: #0a0a0a; font-weight: 500; }
.chat-svc { margin-top: 0.55rem; border: 1px solid var(--line-gold); border-radius: 3px; padding: 0.6rem 0.75rem; background: rgba(197, 160, 89, 0.05); }
.chat-svc-top { display: flex; justify-content: space-between; gap: 0.75rem; font-size: 0.86rem; }
.chat-svc-top span { color: var(--gold-lt); font-weight: 600; white-space: nowrap; }
.chat-svc p { font-size: 0.76rem; color: var(--ink-2); margin-top: 0.2rem; }
.chat-svc a { display: inline-block; margin-top: 0.45rem; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.chat-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; padding: 0.55rem 1rem 0; }
.chat-chips:empty { padding: 0; }
.chat-chip {
  background: transparent;
  border: 1px solid var(--line-gold);
  color: var(--gold-lt);
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.chat-chip:hover { background: var(--gold); color: #0a0a0a; }
.chat-form { display: flex; gap: 0.5rem; padding: 0.8rem 1rem 1rem; }
.chat-form input {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  padding: 0.7rem 0.85rem;
  font-family: var(--font-b);
  font-size: 0.86rem;
}
.chat-form input:focus { outline: none; border-color: var(--line-gold); }
.chat-form button {
  width: 44px;
  flex: none;
  background: var(--gold);
  border: none;
  border-radius: 3px;
  color: #0a0a0a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s var(--ease);
}
.chat-form button:hover { background: var(--gold-lt); }
.chat-typing i { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-right: 3px; animation: chatDot 1s infinite; }
.chat-typing i:nth-child(2) { animation-delay: 0.15s; }
.chat-typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes chatDot { 0%, 60%, 100% { opacity: 0.3; } 30% { opacity: 1; } }

@media (max-width: 640px) {
  .chat-panel { right: 0.75rem; left: 0.75rem; width: auto; bottom: calc(0.75rem + 66px); height: min(62dvh, 540px); }
  .chat-toggle { right: 0.9rem; bottom: 0.9rem; }
}

/* ---------- Before / After slider ---------- */
.ba-wrap {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: 2px;
  --ba: 50%;
  user-select: none;
}
.ba-img { width: 100%; height: 100%; object-fit: cover; }
.ba-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--ba)) 0 0);
}
.ba-before img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--ba);
  width: 2px;
  background: var(--gold);
  transform: translateX(-1px);
  pointer-events: none;
}
.ba-knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: pan-y;
}
.ba-tag {
  position: absolute;
  top: 1rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid var(--line-gold);
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
  pointer-events: none;
}
.ba-tag-b { left: 1rem; }
.ba-tag-a { right: 1rem; }
