:root {
  --bg: #070707;
  --bg-soft: #111111;
  --text: #f6f6f4;
  --muted: #b9b9b2;
  --gold: #b2a400;
  --gold-bright: #d3c616;
  --line: rgba(255,255,255,.18);
  --shell: 1320px;
  --header-h: 96px;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }
::selection { background: var(--gold); color: #000; }

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  left: 16px;
  top: 16px;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: 12px 16px;
}

.shell { width: min(var(--shell), calc(100% - 48px)); margin-inline: auto; }
.generic-content { padding-block: 140px 80px; min-height: 70vh; }
.generic-content h1 { font-size: clamp(42px, 8vw, 86px); line-height: 1; text-transform: uppercase; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.38) 62%, transparent);
  backdrop-filter: blur(2px);
  transition: background .25s ease, backdrop-filter .25s ease;
}
.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  padding-inline: clamp(4px, .7vw, 12px);
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; margin-right: 4px; }
.brand img { width: 68px; height: 68px; object-fit: contain; }
.primary-nav { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 2.1vw, 34px); min-width: 0; }
.primary-nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 8px 2px; }
.primary-nav a,
.language-switch a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s ease;
}
.primary-nav a:hover,
.primary-nav a:focus-visible,
.language-switch a:hover,
.language-switch a.is-active { color: var(--gold-bright); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: clamp(10px, 1.2vw, 18px); min-width: 0; }
.location-switch {
  display: grid;
  gap: 2px;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px 6px 8px 10px;
  min-width: 0;
}
.location-switch span { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.location-switch strong { font-size: 13px; white-space: nowrap; max-width: 150px; overflow: hidden; text-overflow: ellipsis; }
.language-switch { display: flex; gap: 7px; align-items: center; padding-inline: 2px; }
.nav-toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle > span:not(.screen-reader-text) { display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0; transition: transform .2s ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 24px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.button:hover { color: #000; background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-2px); }
.button--small { min-height: 40px; padding: 7px 14px; font-size: 12px; white-space: nowrap; }
.button--ghost { border-color: rgba(255,255,255,.7); color: #fff; }
.button--ghost:hover { background: #fff; border-color: #fff; color: #000; }
.button--location { position: relative; overflow: hidden; min-height: 44px; padding: 8px 12px 8px 16px; border-width: 1px; border-radius: 999px; gap: 10px; font-size: 12px; letter-spacing: .12em; background: rgba(255,255,255,.02); }
.button--location::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 0%, rgba(211,198,22,.14) 45%, transparent 70%); transform: translateX(-120%); transition: transform .55s ease; }
.button--location:hover::before { transform: translateX(120%); }
.button--location > * { position: relative; z-index: 1; }
.button--location small { display: inline-flex; align-items: center; justify-content: center; min-width: 26px; min-height: 26px; padding: 0 7px; border-radius: 999px; background: rgba(178,164,0,.12); color: var(--gold-bright); font-size: 11px; line-height: 1; }
.button--location:hover small { background: rgba(0,0,0,.16); color: #000; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-bright); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }
.center { display: flex; justify-content: center; margin-top: 42px; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-video { position: absolute; inset: 0; z-index: -4; width: 100%; height: 100%; object-fit: cover; object-position: center 43%; }
.hero-overlay { position: absolute; inset: 0; z-index: -3; background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.52) 48%, rgba(0,0,0,.28) 100%), linear-gradient(to top, rgba(0,0,0,.7), transparent 45%); }
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, #000, transparent 75%);
}
.hero-content { padding-top: calc(var(--header-h) + 70px); padding-bottom: 90px; }
.eyebrow { margin: 0 0 12px; color: var(--gold-bright); font-size: 14px; text-transform: uppercase; letter-spacing: .18em; }
.hero h1 { margin: 0; max-width: 900px; font-size: clamp(74px, 13vw, 190px); line-height: .86; text-transform: uppercase; letter-spacing: -.04em; font-weight: 500; text-shadow: 0 10px 50px rgba(0,0,0,.45); }
.hero-rule { width: min(560px, 70vw); height: 2px; background: var(--gold); margin: 30px 0 20px; transform-origin: left; }
.hero-location { margin: 0 0 26px; display: flex; gap: 10px; color: var(--muted); }
.hero-location strong { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; width: 38px; height: 60px; transform: translateX(-50%); border: 1px solid rgba(255,255,255,.35); border-radius: 22px; }
.scroll-cue span { position: absolute; top: 11px; left: 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-bright); transform: translateX(-50%); animation: scrollCue 1.8s infinite; }
@keyframes scrollCue { 0% { opacity: 0; transform: translate(-50%,0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,28px); } }

.section { position: relative; padding: clamp(64px, 7vw, 108px) 0; overflow: hidden; }
.section--dark { background: var(--bg); }
.section--image { min-height: 760px; isolation: isolate; }
.section-image { position: absolute; inset: 0; z-index: -3; background-size: cover; background-position: center; }
.section-image--about { background-image: url('../img/about.webp'); }
.section-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.7) 48%, rgba(0,0,0,.34)); }
.section--texture { background: #111 url('../img/texture.webp') center/cover fixed; }
.section--texture::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.76); }
.section--texture > * { position: relative; }
.section-index { margin: 0 0 10px; color: var(--gold-bright); font-weight: 600; letter-spacing: .18em; }
.section-heading { max-width: 860px; margin-bottom: 40px; }
.section-heading h2,
.section-copy h2 { margin: 0 0 18px; font-size: clamp(52px, 9vw, 110px); line-height: .92; letter-spacing: -.03em; text-transform: uppercase; font-weight: 500; }
.section-heading h3,
.section-copy h3 { margin: 0 0 22px; font-size: clamp(20px, 3vw, 30px); color: var(--gold-bright); text-transform: uppercase; font-weight: 500; }
.section-copy p,
.section-lead,
.section-heading .pricing-note { max-width: 730px; color: var(--muted); font-family: Arial, sans-serif; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.8; }
.section-copy .text-link { margin-top: 16px; }

.about-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); align-items: center; gap: clamp(36px, 5vw, 76px); }
.barber-scene { position: relative; height: 620px; perspective: 1200px; transform-style: preserve-3d; }
.scene-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(178,164,0,.18); pointer-events: none; }
.scene-orbit--one { width: 460px; height: 460px; right: 4%; top: 8%; box-shadow: 0 0 0 34px rgba(178,164,0,.03), 0 0 0 68px rgba(178,164,0,.015); }
.scene-orbit--two { width: 260px; height: 260px; left: 3%; bottom: 3%; box-shadow: 0 0 0 20px rgba(255,255,255,.02); }
.scene-card { position: absolute; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.16); box-shadow: var(--shadow); transform-style: preserve-3d; transition: transform .18s ease-out, box-shadow .2s ease; transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); background: #0e0e0e; }
.scene-card img { width: 100%; height: 100%; object-fit: cover; }
.scene-card--one { width: 48%; height: 62%; left: 2%; top: 18%; transform: translateZ(10px) rotate(-8deg) perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); }
.scene-card--two { width: 50%; height: 74%; right: 1%; top: 5%; transform: translateZ(60px) rotate(6deg) perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); }
.scene-card--three { width: 38%; height: 48%; right: 19%; bottom: 4%; transform: translateZ(110px) rotate(-2deg) perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); border-color: rgba(178,164,0,.6); }
.scene-card--four { width: 28%; height: 32%; left: 22%; top: 0; transform: translateZ(120px) rotate(7deg) perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); }
.scene-card--five { width: 22%; aspect-ratio: 1; left: 10%; bottom: 2%; padding: 18px; transform: translateZ(140px) rotate(-10deg) perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); background: linear-gradient(145deg, #171717, #080808); }
.scene-card--five img { object-fit: contain; }
.scene-badge { position: absolute; display: grid; gap: 4px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.14); background: rgba(10,10,10,.74); backdrop-filter: blur(10px); text-transform: uppercase; box-shadow: var(--shadow); }
.scene-badge span { color: var(--muted); font-size: 11px; letter-spacing: .14em; }
.scene-badge strong { color: var(--gold-bright); font-size: 15px; line-height: 1.1; letter-spacing: .08em; }
.scene-badge--left { left: 0; top: 6%; transform: translateZ(100px) rotate(-8deg); }
.scene-badge--right { right: 3%; bottom: -2%; transform: translateZ(100px) rotate(7deg); }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; perspective: 1000px; }
.service-card,
.location-card,
.team-card,
.dialog-location {
  --rx: 0deg;
  --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .18s ease-out, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.service-card { position: relative; padding: 30px 24px 28px; min-height: 330px; border: 1px solid var(--line); background: linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.015)); overflow: hidden; }
.service-card::before { content: ""; position: absolute; inset: auto -20% -45% 20%; height: 180px; background: radial-gradient(circle, rgba(178,164,0,.16), transparent 65%); transform: translateZ(-1px); }
.service-card:hover { border-color: rgba(178,164,0,.7); box-shadow: 0 30px 80px rgba(0,0,0,.4); }
.service-card img { width: 58px; height: 58px; object-fit: contain; margin-bottom: 48px; filter: brightness(1.15); }
.service-number { position: absolute; right: 20px; top: 18px; color: rgba(255,255,255,.22); font-size: 28px; }
.service-card h3 { margin: 0 0 16px; font-size: 23px; line-height: 1.15; text-transform: uppercase; color: #fff; }
.service-card p { margin: 0; color: var(--muted); font-family: Arial, sans-serif; line-height: 1.65; }

.pricing-layout { position: relative; }
.price-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.price-group { border-top: 2px solid var(--gold); background: rgba(0,0,0,.42); backdrop-filter: blur(8px); padding: 26px 28px; }
.price-group > h3 { margin: 0 0 12px; color: var(--gold-bright); font-size: 30px; text-transform: uppercase; }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start; padding: 18px 0; border-top: 1px solid var(--line); }
.price-row strong { display: block; font-size: 19px; text-transform: uppercase; }
.price-row span, .price-row small { display: block; color: var(--muted); font-family: Arial, sans-serif; font-size: 14px; line-height: 1.5; margin-top: 3px; }
.price-row b { color: var(--gold-bright); font-size: 20px; white-space: nowrap; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; perspective: 1000px; }
.team-card { border: 1px solid var(--line); background: #0d0d0d; padding: 12px 12px 24px; }
.team-card:hover { border-color: rgba(178,164,0,.7); }
.team-photo { aspect-ratio: 1; overflow: hidden; margin-bottom: 20px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-photo img { transform: scale(1.035); }
.team-card h3 { margin: 0; font-size: 28px; text-transform: uppercase; }
.team-card p { margin: 5px 0 0; color: var(--muted); font-family: Arial, sans-serif; }

.section--locations { background: radial-gradient(circle at 80% 20%, rgba(178,164,0,.13), transparent 30%), #0b0b0b; }
.locations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; perspective: 1000px; }
.location-card { position: relative; min-height: 330px; padding: 42px; border: 1px solid var(--line); background: linear-gradient(145deg, #151515, #090909); overflow: hidden; }
.location-card::after { content: ""; position: absolute; inset: auto -100px -120px auto; width: 300px; height: 300px; border: 1px solid rgba(178,164,0,.28); border-radius: 50%; box-shadow: 0 0 0 34px rgba(178,164,0,.04), 0 0 0 68px rgba(178,164,0,.025); }
.location-card.is-selected { border-color: var(--gold); box-shadow: 0 28px 80px rgba(0,0,0,.42); }
.location-tag { position: absolute; right: 28px; top: 22px; color: var(--gold-bright); font-size: 26px; }
.location-card h3 { margin: 60px 0 12px; font-size: clamp(34px, 5vw, 62px); line-height: 1; text-transform: uppercase; }
.location-card p { max-width: 440px; color: var(--muted); font-family: Arial, sans-serif; }
.location-actions { margin-top: 24px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; }

.hours-band { padding: 52px 0; background: var(--gold); color: #000; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 32px; align-items: center; }
.hours-grid div { display: grid; gap: 3px; }
.hours-grid strong { font-size: 34px; line-height: 1.1; }
.hours-grid span { text-transform: uppercase; letter-spacing: .05em; }
.hours-band .button { border-color: #000; color: #000; }
.hours-band .button:hover { background: #000; color: #fff; }

.site-footer { padding: 54px 0 24px; background: #050505 url('../img/texture.webp') center/cover; position: relative; }
.site-footer::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.9); }
.site-footer > * { position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 50px; }
.footer-logo { width: 100px; height: 100px; object-fit: contain; margin-bottom: 18px; }
.site-footer h2 { margin: 0 0 16px; color: var(--gold-bright); font-size: 22px; text-transform: uppercase; }
.site-footer p { margin: 8px 0; color: var(--muted); font-family: Arial, sans-serif; }
.site-footer a:hover { color: var(--gold-bright); }
.footer-bottom { margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: #8e8e89; font-family: Arial, sans-serif; font-size: 13px; }

.location-dialog { width: min(680px, calc(100% - 18px)); max-height: calc(100dvh - 18px); border: 1px solid rgba(178,164,0,.55); background: rgba(8,8,8,.97); color: #fff; padding: 0; overflow: auto; box-shadow: 0 40px 140px rgba(0,0,0,.75); }
.location-dialog::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(10px); }
.dialog-shell { --sx: 0px; --sy: 0px; position: relative; padding: clamp(22px, 4vw, 40px); overflow: hidden; isolation: isolate; }
.dialog-shell::before { content: ""; position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; }
.dialog-shell::after { content: ""; position: absolute; inset: auto -12% -42% auto; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle, rgba(178,164,0,.22), rgba(178,164,0,.06) 38%, transparent 72%); filter: blur(8px); opacity: .65; pointer-events: none; }
.dialog-scene { position: absolute; border: 1px solid rgba(178,164,0,.2); border-radius: 34px; background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); box-shadow: 0 18px 70px rgba(0,0,0,.28); pointer-events: none; }
.dialog-scene--one { width: 180px; height: 180px; left: -34px; bottom: 54px; transform: translate3d(calc(var(--sx) * -.25), calc(var(--sy) * -.25), 0) rotate(-18deg); animation: floatScene 9s ease-in-out infinite reverse; }
.dialog-scene--two { width: 120px; height: 120px; right: 110px; top: 98px; transform: rotate(18deg) translateZ(0); animation: floatScene 8s ease-in-out infinite; }
.dialog-scene--three { width: 220px; height: 54px; right: 8%; bottom: 16%; border-radius: 999px; transform: translate3d(calc(var(--sx) * .28), calc(var(--sy) * .28), 0) rotate(-10deg); opacity: .75; animation: pulseScene 6s ease-in-out infinite; }
.dialog-mark { position: absolute; right: 42px; top: 36px; opacity: .1; transform: rotate(10deg) scale(1.7); }
.dialog-shell > * { position: relative; }
.dialog-shell h2 { margin: 0 0 8px; font-size: clamp(32px, 5vw, 58px); line-height: .95; text-transform: uppercase; }
.dialog-shell > p:not(.eyebrow) { color: var(--muted); font-family: Arial, sans-serif; }
.dialog-hint { max-width: 520px; font-size: 13px; letter-spacing: .03em; opacity: .92; }
.dialog-locations { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 22px; perspective: 1400px; }
.dialog-location { --blade-bg: rgba(236,228,180,.1); --blade-line: rgba(229,214,58,.75); --blade-glow: rgba(229,214,58,.22); position: relative; display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 8px 14px; align-items: center; text-align: left; min-height: 116px; padding: 12px 22px 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 0; background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); cursor: pointer; overflow: visible; box-shadow: 0 16px 36px rgba(0,0,0,.26); transform-origin: center center; clip-path: polygon(7% 0, 93% 0, 100% 18%, 100% 82%, 93% 100%, 7% 100%, 0 82%, 0 18%); isolation: isolate; }
.dialog-location::before { content: ""; position: absolute; inset: 4px; border: 1px solid var(--blade-line); clip-path: inherit; background: linear-gradient(90deg, rgba(255,255,255,.08), transparent 30%, transparent 70%, rgba(255,255,255,.08)), linear-gradient(180deg, rgba(229,214,58,.12), rgba(229,214,58,.04)); box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 0 0 1px rgba(229,214,58,.18); z-index: 0; }
.dialog-location::after { content: ""; position: absolute; inset: 0; clip-path: inherit; background: radial-gradient(circle at 14% 50%, rgba(229,214,58,.14), transparent 24%), radial-gradient(circle at 86% 50%, rgba(229,214,58,.14), transparent 24%), radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.08), transparent 34%), radial-gradient(circle at 50% 50%, rgba(255,255,255,.04), transparent 58%); filter: drop-shadow(0 0 18px rgba(229,214,58,.08)); opacity: .95; z-index: 0; }
.dialog-location__blade-core, .dialog-location__blade-sheen { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.dialog-location__blade-core::before, .dialog-location__blade-core::after { content: ""; position: absolute; top: 50%; width: 13px; height: 13px; margin-top: -6.5px; border-radius: 50%; border: 1px solid rgba(255,255,255,.26); background: rgba(6,6,6,.95); box-shadow: 0 0 0 4px rgba(255,255,255,.04), inset 0 1px 0 rgba(255,255,255,.08); }
.dialog-location__blade-core::before { left: 14px; animation: orbitGlow 5.2s ease-in-out infinite; }
.dialog-location__blade-core::after { right: 14px; animation: orbitGlow 5.2s ease-in-out infinite 1.4s; }
.dialog-location__blade-sheen::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 18%, rgba(255,255,255,.13) 32%, rgba(255,255,255,.02) 40%, transparent 54%); transform: translateX(-55%); transition: transform .75s ease; mix-blend-mode: screen; opacity: .8; }
.dialog-location__blade-sheen::after { content: ""; position: absolute; left: 18px; right: 18px; top: 50%; height: 1px; background: linear-gradient(90deg, rgba(229,214,58,0), rgba(229,214,58,.35) 18%, rgba(255,255,255,.18) 50%, rgba(229,214,58,.35) 82%, rgba(229,214,58,0)); opacity: .6; }
.dialog-location:hover .dialog-location__blade-sheen::before, .dialog-location:focus-visible .dialog-location__blade-sheen::before { transform: translateX(55%); }
.dialog-location:hover, .dialog-location:focus-visible { border-color: rgba(229,214,58,.4); box-shadow: 0 24px 54px rgba(0,0,0,.42), 0 0 30px rgba(229,214,58,.1); transform: perspective(1200px) translateY(-3px) rotateX(4deg) rotateY(calc(var(--ry, 0deg) * .55)) scale(1.015); }
.location-dialog[open] .dialog-location { animation: dialogCardIn .85s cubic-bezier(.2,.8,.2,1) both; }
.location-dialog[open] .dialog-location:nth-child(2) { animation-delay: .12s; }
.dialog-location span { position: relative; z-index: 2; display: inline-flex; align-items: center; justify-content: center; min-width: 34px; min-height: 34px; padding: 0 8px; border-radius: 999px; color: var(--gold-bright); background: linear-gradient(180deg, rgba(229,214,58,.16), rgba(229,214,58,.05)); border: 1px solid rgba(229,214,58,.24); font-size: 12px; margin: 0; box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 6px 14px rgba(0,0,0,.18); }
.dialog-location__body, .dialog-location i { position: relative; z-index: 2; }
.dialog-location__body { position: relative; display: grid; gap: 0; align-self: center; padding-top: 0; }
.dialog-location em { display: block; margin: 0 0 4px; color: #d7d4c9; font-style: normal; font-family: Arial, sans-serif; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; opacity: .92; }
.dialog-location strong { display: block; font-size: clamp(18px, 2vw, 24px); text-transform: uppercase; line-height: 1; max-width: 100%; text-wrap: balance; }
.dialog-location small { display: block; margin-top: 5px; color: var(--muted); font-family: Arial, sans-serif; font-size: 12px; max-width: 95%; line-height: 1.32; }
.dialog-location i { grid-column: 2; display: inline-flex; align-items: center; gap: 8px; margin-top: 2px; color: var(--gold-bright); font-style: normal; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.dialog-location i::before { content: ""; width: 18px; height: 1px; background: currentColor; opacity: .7; }
.dialog-location i::after { content: "→"; font-size: 15px; transition: transform .25s ease; }
.dialog-location:hover i::after, .dialog-location:focus-visible i::after { transform: translateX(6px); }



@keyframes floatScene {
  0%,100% { transform: rotate(18deg) translate3d(0,0,0); }
  50% { transform: rotate(14deg) translate3d(0,-8px,0); }
}
@keyframes pulseScene {
  0%,100% { opacity: .45; transform: rotate(-10deg) scale(1); }
  50% { opacity: .9; transform: rotate(-7deg) scale(1.04); }
}
@keyframes orbitGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(229,214,58,.0); }
  50% { box-shadow: 0 0 28px 0 rgba(229,214,58,.12); }
}

@keyframes dialogCardIn {
  0% { opacity: 0; transform: perspective(1100px) translateY(36px) rotateX(22deg) rotateY(-6deg) scale(.94); filter: blur(3px); }
  55% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: perspective(1100px) translateY(0) rotateX(0deg) rotateY(0deg) scale(1); filter: blur(0); }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .header-inner { grid-template-columns: auto auto minmax(0, 1fr); gap: 14px; }
  .nav-toggle { display: block; grid-column: 2; }
  .primary-nav { display: none; position: absolute; top: calc(var(--header-h) - 4px); left: 24px; right: 24px; padding: 22px 26px; background: rgba(5,5,5,.98); border: 1px solid var(--line); box-shadow: 0 26px 70px rgba(0,0,0,.4); flex-direction: column; align-items: flex-start; gap: 12px; }
  .primary-nav.is-open { display: flex; }
  .header-actions { justify-self: end; gap: 10px; }
  .header-actions .button--small { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; }
  .barber-scene { width: min(680px, 100%); margin: 0 auto; }
}

@media (max-width: 780px) {
  :root { --header-h: 76px; }
  .shell { width: min(100% - 32px, var(--shell)); }
  .brand img { width: 58px; height: 58px; }
  .header-inner { gap: 10px; padding-inline: 0; }
  .location-switch { max-width: 150px; padding-inline: 6px; }
  .location-switch strong { max-width: 128px; overflow: hidden; text-overflow: ellipsis; }
  .language-switch { display: flex; gap: 5px; padding: 5px 7px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(0,0,0,.24); }
  .language-switch a { font-size: 12px; letter-spacing: .06em; }
  .hero-content { padding-top: 130px; padding-bottom: 100px; }
  .hero h1 { font-size: clamp(68px, 22vw, 118px); }
  .hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.8), rgba(0,0,0,.42)), linear-gradient(to top, rgba(0,0,0,.78), transparent); }
  .hero-video { object-position: center center; }
  .section { padding: 64px 0; }
  .section--image { min-height: unset; }
  .about-layout { gap: 40px; }
  .barber-scene { height: 500px; }
  .services-grid, .team-grid, .locations-grid, .price-groups, .dialog-locations { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .price-group { padding: 22px 18px; }
  .location-card { padding: 30px 24px; min-height: 290px; }
  .hours-grid { grid-template-columns: 1fr; }
  .hours-grid .button { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .dialog-location { min-height: 110px; }
  .dialog-location span { margin-bottom: 0; }

}

@media (max-width: 520px) {
  .header-actions { gap: 6px; }
  .location-switch { max-width: 88px; padding-inline: 3px; }
  .location-switch span { display: none; }
  .location-switch strong { max-width: 82px; font-size: 12px; }
  .nav-toggle { padding-inline: 4px; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 360px; }
  .button { width: 100%; }
  .location-actions .button { width: auto; }
  .barber-scene { height: 420px; }
  .scene-card--one { width: 56%; }
  .scene-card--two { width: 60%; }
  .scene-card--three { width: 46%; right: 12%; }
  .scene-card--four { width: 32%; left: 20%; top: 4%; }
  .scene-card--five { width: 24%; left: 6%; bottom: 6%; padding: 12px; }
  .scene-badge { padding: 10px 12px; }
  .scene-badge strong { font-size: 12px; }
  .scene-orbit--one { width: 320px; height: 320px; }
  .scene-orbit--two { width: 180px; height: 180px; }
  .service-card { padding: 24px 20px; }
  .price-row { gap: 14px; }
  .price-row b { font-size: 18px; }
  .dialog-shell { padding: 22px 14px; }
  .dialog-mark { display: none; }
  .dialog-scene--one { width: 120px; height: 120px; left: -24px; bottom: 34px; }
  .dialog-scene--two { width: 88px; height: 88px; right: 34px; top: 72px; }
  .dialog-locations { gap: 12px; }
  .dialog-location { grid-template-columns: 36px minmax(0,1fr); min-height: 98px; padding: 11px 14px 11px; clip-path: polygon(9% 0, 91% 0, 100% 22%, 100% 78%, 91% 100%, 9% 100%, 0 78%, 0 22%); }
  .dialog-location span { min-width: 28px; min-height: 28px; font-size: 10px; }
  .dialog-location em { font-size: 7px; letter-spacing: .16em; }
  .dialog-location strong { font-size: 16px; }
  .dialog-location small { font-size: 10px; margin-top: 4px; }
  .dialog-location i { font-size: 8px; gap: 6px; }
  .dialog-location__blade-core::before, .dialog-location__blade-core::after { width: 10px; height: 10px; margin-top: -5px; }
  .dialog-location__blade-core::before { left: 10px; }
  .dialog-location__blade-core::after { right: 10px; }
  .dialog-location__blade-sheen::after { left: 14px; right: 14px; }
}

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

/* Motion edition 2.1 — tuned spacing, floating header and branded entry. */
body.is-preloading { overflow: hidden; }
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 5px;
  background: radial-gradient(circle at 50% 44%, #222113 0, #090909 31%, #030303 68%);
  transition: opacity .52s ease, visibility .52s ease;
}
.site-preloader.is-finished { opacity: 0; visibility: hidden; pointer-events: none; }
.site-preloader img { position: relative; z-index: 2; width: clamp(112px, 12vw, 164px); height: clamp(112px, 12vw, 164px); object-fit: contain; filter: drop-shadow(0 20px 34px #000) drop-shadow(0 0 22px rgba(211,198,22,.13)); animation: trPreloaderLogo 1.25s cubic-bezier(.2,.8,.2,1) both; }
.site-preloader strong { margin-top: 12px; color: #fff; font-size: 19px; line-height: 1; letter-spacing: .34em; transform: translateX(.17em); animation: trPreloaderCopy .72s .42s ease both; }
.site-preloader small { color: var(--gold-bright); font-size: 10px; letter-spacing: .38em; transform: translateX(.19em); animation: trPreloaderCopy .72s .52s ease both; }
.site-preloader i { display: block; width: 160px; height: 1px; margin-top: 20px; overflow: hidden; background: rgba(255,255,255,.09); }
.site-preloader i::after { content: ""; display: block; width: 55%; height: 100%; background: linear-gradient(90deg, transparent, var(--gold-bright), transparent); animation: trPreloaderLine 1.1s .18s ease-in-out infinite; }
.site-preloader__orbit { position: absolute; width: clamp(210px,24vw,340px); aspect-ratio: 1; border: 1px solid rgba(211,198,22,.18); border-radius: 50%; box-shadow: 0 0 0 34px rgba(211,198,22,.03), 0 0 0 70px rgba(211,198,22,.015); animation: trPreloaderOrbit 5s linear infinite; }
@keyframes trPreloaderLogo { 0% { opacity:0; transform:scale(.62) rotate(-14deg); filter:blur(10px); } 55% { opacity:1; transform:scale(1.07) rotate(2deg); filter:blur(0); } 100% { transform:scale(1); } }
@keyframes trPreloaderCopy { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
@keyframes trPreloaderLine { from { transform:translateX(-130%); } to { transform:translateX(230%); } }
@keyframes trPreloaderOrbit { to { transform:rotate(360deg); } }

:root { --header-h: 112px; }
.site-header { inset: 12px 18px auto; border: 1px solid rgba(255,255,255,.08); border-radius: 8px; background: rgba(5,5,5,.72); backdrop-filter: blur(18px) saturate(1.2); box-shadow: 0 18px 54px rgba(0,0,0,.25); }
.header-inner { min-height: 96px; }
.brand img { width: 82px; height: 82px; }
.primary-nav { gap: clamp(18px,2.1vw,36px); }
.primary-nav a { font-size: 14px; font-weight: 600; transition: color .2s ease, transform .2s ease; }
.primary-nav a:hover { transform: translateY(-2px); }
.hero-content { padding-top: calc(var(--header-h) + 44px); }
.hero h1 { max-width: 680px; font-size: clamp(66px,7.2vw,112px); line-height: .84; }
.hero-rule { margin: 24px 0 18px; }
.hero-location { margin-bottom: 20px; }
.section { padding: clamp(66px,6vw,92px) 0; }
.section-heading { margin-bottom: 32px; }
.section-heading h2,
.section-copy h2 { font-size: clamp(50px,6vw,82px); line-height: .94; }
.about-layout { gap: clamp(40px,5vw,68px); }
.barber-scene { height: 540px; }
.service-card { min-height: 292px; padding: 24px 22px; }
.service-card img { margin-bottom: 38px; }
.motion-interlude { min-height: min(70svh,650px); }
.motion-interlude__word { font-size: clamp(68px,12vw,174px); }
.section--locations { min-height: 620px; }
.location-card { min-height: 342px; }
.location-card h3 { margin-top: 48px; }
.hours-band { padding: 38px 0; }
.site-footer { padding-top: 40px; }
.price-groups { align-items: start; }
section[id] { scroll-margin-top: 126px; }

.location-dialog { position: fixed; inset: 50% auto auto 50%; width: min(900px,calc(100% - 36px)); margin: 0; transform: translate(-50%,-50%); }
.dialog-shell { min-height: auto; grid-template-columns: 1fr; justify-items: center; gap: 26px; padding: clamp(30px,4.5vw,56px); }
.dialog-intro { display: grid; justify-items: center; text-align: center; }
.dialog-intro__logo { width: 86px; height: 86px; object-fit: contain; margin-bottom: 8px; filter: drop-shadow(0 14px 26px #000); }
.dialog-intro h2 { font-size: clamp(40px,5vw,64px); }
.dialog-intro > p:not(.eyebrow) { max-width: 620px; }
.dialog-locations { width: min(720px,100%); gap: 16px; }
.dialog-location { min-height: 144px; padding: 20px 64px; grid-template-columns: 48px minmax(0,1fr); text-align: center; }
.dialog-location__body { justify-items: start; padding-left: 84px; text-align: left; }
.dialog-location strong { font-size: clamp(28px,3.4vw,44px); }
.dialog-location i { grid-column: 2; justify-self: start; margin-left: 84px; }
.dialog-location__logo { position: absolute; z-index: 1; left: 18%; top: 50%; width: 64px; height: 64px; object-fit: contain; opacity: .2; transform: translate(-50%,-50%); filter: drop-shadow(0 8px 14px #000); pointer-events: none; }

@media (max-width: 1180px) {
  :root { --header-h: 94px; }
  .site-header { inset: 8px 10px auto; }
  .header-inner { grid-template-columns: 48px minmax(0,1fr) auto; min-height: 76px; }
  .nav-toggle { display: block; grid-column: 1; grid-row: 1; }
  .brand { grid-column: 2; grid-row: 1; justify-self: center; margin: 0; }
  .brand img { width: 66px; height: 66px; }
  .header-actions { grid-column: 3; grid-row: 1; }
  .primary-nav { top: calc(100% + 10px); left: 0; right: 0; border-radius: 8px; }
  .hero-actions { width: min(100%,720px); margin-inline: auto; justify-self: center; justify-content: center; }
  .hero-actions .button { flex: 1 1 280px; }
}

@media (max-width: 780px) {
  .shell { width: min(100% - 32px,var(--shell)); }
  .site-header { inset: 8px 8px auto; }
  .header-inner { min-height: 68px; padding-inline: 4px; }
  .brand img { width: 60px; height: 60px; }
  .location-switch { display: none; }
  .hero { text-align: center; }
  .hero-content { display: grid; justify-items: center; padding-top: 112px; }
  .hero h1 { font-size: clamp(52px,15vw,70px); line-height: .88; }
  .eyebrow { max-width: 330px; font-size: 11px; line-height: 1.5; }
  .hero-rule { width: min(280px,70vw); transform-origin: center; }
  .hero-location { justify-content: center; }
  .hero-actions { width: min(100%,340px); margin-inline: auto; justify-self: center; justify-content: center; align-items: center; flex-direction: column; }
  .hero-actions .button { flex: 0 0 56px; width: 100%; min-height: 56px; height: 56px; max-height: 56px; padding: 10px 18px; }
  .section { padding: 58px 0; }
  .section-heading { margin-bottom: 26px; }
  .section-heading h2,
  .section-copy h2 { font-size: clamp(44px,13vw,64px); }
  .barber-scene { height: 440px; }
  .motion-interlude { min-height: 520px; }
  .section--locations { min-height: 0; }
  .location-card { min-height: 300px; }
  section[id] { scroll-margin-top: 92px; }
  .location-dialog { width: calc(100% - 16px); max-height: calc(100dvh - 16px); }
  .dialog-shell { min-height: 0; max-height: calc(100dvh - 20px); gap: 14px; padding: 20px 12px; align-content: center; overflow-y: auto; }
  .dialog-intro__logo { width: 64px; height: 64px; margin-bottom: 2px; }
  .dialog-intro .eyebrow { font-size: 9px; }
  .dialog-intro h2 { margin: 8px 0 5px; font-size: clamp(34px,10vw,48px); }
  .dialog-intro > p:not(.eyebrow) { margin-block: 5px; max-width: 330px; font-size: 12px; line-height: 1.4; }
  .dialog-locations { gap: 10px; }
  .dialog-location { min-height: 112px; padding: 14px 34px; grid-template-columns: 36px minmax(0,1fr); }
  .dialog-location__body { padding-left: 44px; }
  .dialog-location strong { font-size: clamp(22px,7vw,32px); }
  .dialog-location small { max-width: 230px; font-size: 9px; }
  .dialog-location i { margin: 0 0 0 44px; font-size: 8px; }
  .dialog-location__logo { left: 20%; width: 44px; height: 44px; opacity: .18; }
}

@media (max-width: 420px) {
  .section { padding: 52px 0; }
  .barber-scene { height: 390px; }
  .dialog-location { min-height: 104px; padding: 12px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader img,
  .site-preloader__orbit,
  .site-preloader strong,
  .site-preloader small,
  .site-preloader i::after { animation: none !important; }
}

@keyframes gateIn {
  from { opacity: 0; filter: blur(8px); }
  to { opacity: 1; filter: blur(0); }
}

/* Motion edition 2.0 — layered scenes, scroll choreography and razor geometry. */
html::before {
  content: "";
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 3000;
  width: calc(var(--page-progress, 0) * 100%);
  height: 2px;
  background: linear-gradient(90deg, #756900, var(--gold-bright), #fff4a1);
  box-shadow: 0 0 18px rgba(229,214,58,.58);
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(5,5,5,.82);
  backdrop-filter: blur(18px) saturate(1.25);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hero-content {
  position: relative;
  z-index: 3;
  transform: translate3d(0, calc(var(--hero-progress, 0) * -56px), 0);
  opacity: calc(1 - var(--hero-progress, 0) * .52);
}
.hero h1 { max-width: 780px; font-size: clamp(68px, 9.6vw, 146px); }
.hero-video {
  transform: scale(calc(1.035 + var(--hero-video-progress, 0) * .09)) translate3d(0, calc(var(--hero-video-progress, 0) * 2.5%), 0);
  will-change: transform;
}
.hero-grid {
  transform: translate3d(calc(var(--hero-progress, 0) * -42px), calc(var(--hero-progress, 0) * 24px), 0) rotate(calc(var(--hero-progress, 0) * -1deg));
}
.hero-rule { transform: scaleX(calc(1 - var(--hero-progress, 0) * .3)); }

.hero-razor-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  perspective: 1500px;
  transform-style: preserve-3d;
  pointer-events: none;
}
.razor-object,
.razor-cross {
  position: absolute;
  width: min(42vw, 620px);
  aspect-ratio: 5.4 / 1;
  clip-path: polygon(5% 0, 95% 0, 100% 22%, 100% 78%, 95% 100%, 5% 100%, 0 78%, 0 22%);
  background:
    linear-gradient(180deg, rgba(255,255,255,.74) 0, rgba(255,255,255,.06) 8%, transparent 13% 84%, rgba(255,255,255,.2) 88%, rgba(0,0,0,.74) 100%),
    linear-gradient(105deg, #12130f 0 16%, #7c7b5d 31%, #171812 48%, #8b8969 65%, #15160f 83% 100%);
  border: 1px solid rgba(238,227,111,.38);
  box-shadow: 0 38px 80px rgba(0,0,0,.56), inset 0 0 0 2px rgba(255,255,255,.07), 0 0 44px rgba(178,164,0,.08);
  transform-style: preserve-3d;
}
.razor-object::before,
.razor-cross::before {
  content: "";
  position: absolute;
  inset: 9% 2.2%;
  clip-path: inherit;
  border: 1px solid rgba(229,214,58,.35);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1) 48%, transparent 52%);
}
.razor-object::after,
.razor-cross::after {
  content: attr(data-razor-label);
  position: absolute;
  inset: 50% auto auto 50%;
  width: 76%;
  transform: translate(-50%,-50%);
  color: rgba(255,246,181,.62);
  font-size: clamp(8px, .78vw, 12px);
  letter-spacing: .34em;
  text-align: center;
  white-space: nowrap;
}
.razor-object span,
.razor-object i,
.razor-cross span,
.razor-cross i {
  position: absolute;
  top: 50%;
  width: 9.5%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.26);
  background: radial-gradient(circle, #050505 0 34%, #5e5c43 36% 44%, #090909 47%);
  box-shadow: 0 0 0 5px rgba(0,0,0,.36), inset 0 1px 1px rgba(255,255,255,.28);
  transform: translateY(-50%);
}
.razor-object span,
.razor-cross span { left: 5.5%; }
.razor-object i,
.razor-cross i { right: 5.5%; }
.razor-object--hero-a {
  right: -8%;
  top: 22%;
  opacity: .46;
  transform: translate3d(calc(var(--scene-shift, 0) * -54px), calc(var(--scene-shift, 0) * 38px), -40px) rotateZ(-18deg) rotateY(calc(20deg + var(--scene-shift, 0) * 8deg));
}
.razor-object--hero-b {
  right: 6%;
  bottom: 14%;
  width: min(29vw, 430px);
  opacity: .28;
  transform: translate3d(calc(var(--scene-shift, 0) * 70px), calc(var(--scene-shift, 0) * -48px), 80px) rotateZ(24deg) rotateX(calc(62deg - var(--scene-shift, 0) * 8deg));
}
.motion-ring,
.motion-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(229,214,58,.2);
  box-shadow: 0 0 0 28px rgba(229,214,58,.025), 0 0 0 70px rgba(229,214,58,.012);
}
.motion-ring--hero-a { width: 34vw; height: 34vw; right: -8vw; top: 12%; transform: rotateX(68deg) rotateZ(calc(var(--scene-shift, 0) * 34deg)); }
.motion-ring--hero-b { width: 16vw; height: 16vw; right: 28%; bottom: 2%; transform: rotateY(62deg) rotateZ(calc(var(--scene-shift, 0) * -52deg)); }

.barber-scene .scene-card--one { transform: translate3d(0, calc(var(--scene-shift, 0) * 20px), 10px) rotate(calc(-8deg + var(--scene-shift, 0) * 2deg)) perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); }
.barber-scene .scene-card--two { transform: translate3d(0, calc(var(--scene-shift, 0) * -28px), 60px) rotate(calc(6deg + var(--scene-shift, 0) * -2deg)) perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); }
.barber-scene .scene-card--three { transform: translate3d(calc(var(--scene-shift, 0) * 18px), calc(var(--scene-shift, 0) * -40px), 110px) rotate(calc(-2deg + var(--scene-shift, 0) * 3deg)) perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); }
.barber-scene .scene-card--four { transform: translate3d(calc(var(--scene-shift, 0) * -22px), calc(var(--scene-shift, 0) * 34px), 120px) rotate(calc(7deg + var(--scene-shift, 0) * -3deg)) perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); }
.barber-scene .scene-card--five { transform: translate3d(calc(var(--scene-shift, 0) * -20px), calc(var(--scene-shift, 0) * -28px), 140px) rotate(calc(-10deg + var(--scene-shift, 0) * 4deg)) perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); }
.barber-scene .scene-orbit--one { transform: rotate(calc(var(--scene-shift, 0) * 28deg)); }
.barber-scene .scene-orbit--two { transform: rotate(calc(var(--scene-shift, 0) * -40deg)); }

.motion-interlude {
  --scene-progress: .5;
  --scene-shift: 0;
  position: relative;
  min-height: min(88svh, 840px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(circle at 50% 50%, rgba(178,164,0,.12), transparent 38%), #050505;
  perspective: 1600px;
}
.motion-interlude__grid {
  position: absolute;
  inset: -20%;
  z-index: -3;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 74px 74px;
  transform: rotateX(64deg) rotateZ(calc(var(--scene-shift) * 5deg)) translateY(calc(var(--scene-shift) * 44px));
  mask-image: radial-gradient(circle, #000 12%, transparent 68%);
}
.motion-interlude__content { position: relative; z-index: 3; text-align: center; }
.motion-interlude__content .section-index { margin-bottom: 18px; }
.motion-interlude__word {
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.2);
  font-size: clamp(76px, 15vw, 220px);
  font-weight: 600;
  line-height: .78;
  letter-spacing: -.055em;
  transform: translate3d(calc(var(--scene-shift) * -60px), 0, 140px) rotateX(calc(var(--scene-shift) * -8deg));
  text-shadow: 0 38px 90px rgba(0,0,0,.64);
}
.motion-interlude__copy { display: grid; gap: 8px; margin: 44px auto 0; }
.motion-interlude__copy strong { color: var(--gold-bright); font-size: clamp(22px, 3vw, 42px); letter-spacing: .08em; }
.motion-interlude__copy span { color: var(--muted); font-family: Arial, sans-serif; font-size: 16px; }
.razor-cross { top: 16%; left: 50%; z-index: 1; opacity: .78; }
.razor-cross--one { transform: translate3d(calc(-50% + var(--scene-shift) * 70px), calc(var(--scene-shift) * -38px), 20px) rotateZ(calc(-26deg + var(--scene-shift) * 10deg)) rotateY(calc(var(--scene-shift) * 12deg)); }
.razor-cross--two { top: auto; bottom: 16%; opacity: .44; transform: translate3d(calc(-50% + var(--scene-shift) * -82px), calc(var(--scene-shift) * 46px), -20px) rotateZ(calc(26deg + var(--scene-shift) * -10deg)) rotateX(18deg); }
.motion-orbit--one { width: min(64vw, 760px); aspect-ratio: 1; left: 50%; top: 50%; transform: translate(-50%,-50%) rotateX(72deg) rotateZ(calc(var(--scene-shift) * 52deg)); z-index: -1; }
.motion-orbit--two { width: min(34vw, 430px); aspect-ratio: 1; left: 50%; top: 50%; transform: translate(-50%,-50%) rotateY(68deg) rotateZ(calc(var(--scene-shift) * -64deg)); z-index: -1; }

.section--locations { isolation: isolate; min-height: 760px; display: grid; align-items: center; }
.location-ambient { position: absolute; inset: 0; z-index: -1; overflow: hidden; perspective: 1400px; }
.location-ambient__blade { position: absolute; width: 52vw; height: 11vw; min-height: 90px; max-height: 160px; opacity: .17; clip-path: polygon(5% 0, 95% 0, 100% 20%, 100% 80%, 95% 100%, 5% 100%, 0 80%, 0 20%); background: linear-gradient(120deg, #111, #b3ad80 38%, #1b1b14 52%, #8c8765 68%, #090909); border: 1px solid rgba(229,214,58,.34); }
.location-ambient__blade--one { left: -12%; top: 13%; transform: translate3d(calc(var(--scene-shift) * 70px), calc(var(--scene-shift) * -30px), 0) rotate(-20deg); }
.location-ambient__blade--two { right: -16%; bottom: 8%; transform: translate3d(calc(var(--scene-shift) * -70px), calc(var(--scene-shift) * 30px), 0) rotate(18deg); }
.location-ambient__halo { position: absolute; width: 52vw; height: 52vw; right: -14vw; top: -16vw; border-radius: 50%; border: 1px solid rgba(229,214,58,.14); box-shadow: 0 0 0 64px rgba(229,214,58,.018), 0 0 0 128px rgba(229,214,58,.009); transform: rotate(calc(var(--scene-shift) * 30deg)); }

.location-card {
  min-height: 370px;
  clip-path: polygon(4% 0, 96% 0, 100% 12%, 100% 88%, 96% 100%, 4% 100%, 0 88%, 0 12%);
  background: linear-gradient(145deg, rgba(35,35,31,.96), rgba(7,7,7,.98));
}
.location-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 0;
  clip-path: inherit;
  border: 1px solid rgba(229,214,58,.23);
  background: linear-gradient(112deg, transparent 12%, rgba(255,255,255,.055) 36%, transparent 48%);
  pointer-events: none;
}
.location-card > * { position: relative; z-index: 2; }
.location-card .location-tag { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(229,214,58,.34); background: #080808; }
.location-card.is-selected::before { border-color: rgba(229,214,58,.76); box-shadow: inset 0 0 38px rgba(229,214,58,.07); }

.location-dialog {
  width: min(1180px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  border-color: rgba(229,214,58,.34);
  background: rgba(5,5,5,.965);
  overflow: hidden auto;
  border-radius: 2px;
  box-shadow: 0 60px 180px rgba(0,0,0,.82), 0 0 0 1px rgba(255,255,255,.04);
}
.location-dialog::backdrop { background: rgba(0,0,0,.92); backdrop-filter: blur(18px) saturate(.8); }
.dialog-shell {
  min-height: min(720px, calc(100dvh - 34px));
  display: grid;
  grid-template-columns: minmax(280px,.72fr) minmax(480px,1.28fr);
  align-items: center;
  gap: clamp(30px, 6vw, 92px);
  padding: clamp(34px, 6vw, 86px);
  perspective: 1600px;
}
.dialog-shell::before { background-size: 72px 72px; transform: translate3d(calc(var(--sx) * -.12), calc(var(--sy) * -.12), 0); }
.dialog-intro { z-index: 4; }
.dialog-intro h2 { font-size: clamp(46px, 6.4vw, 92px); }
.dialog-intro > p:not(.eyebrow) { max-width: 420px; }
.dialog-locations { z-index: 4; grid-template-columns: 1fr; gap: 24px; margin-top: 0; perspective: 1600px; }
.dialog-location {
  grid-template-columns: 58px minmax(0,1fr);
  min-height: 178px;
  padding: 24px 58px 24px 48px;
  clip-path: polygon(6% 0, 94% 0, 100% 18%, 100% 82%, 94% 100%, 6% 100%, 0 82%, 0 18%);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.012));
  box-shadow: 0 34px 70px rgba(0,0,0,.48);
}
.dialog-location::before { inset: 6px; }
.dialog-location::after { filter: drop-shadow(0 0 28px rgba(229,214,58,.13)); }
.dialog-location > span { min-width: 46px; min-height: 46px; font-size: 14px; }
.dialog-location strong { font-size: clamp(30px, 4vw, 54px); letter-spacing: -.02em; }
.dialog-location small { font-size: 13px; }
.dialog-location i { font-size: 11px; }
.dialog-location__blade-core::before,
.dialog-location__blade-core::after { width: 18px; height: 18px; margin-top: -9px; }
.dialog-location__blade-core::before { left: 18px; }
.dialog-location__blade-core::after { right: 18px; }
.location-dialog[open] { animation: gateIn .48s ease both; }
.location-dialog[open] .dialog-intro { animation: gateCopyIn .8s .08s cubic-bezier(.2,.8,.2,1) both; }
.location-dialog[open] .dialog-location:first-child { transform-origin: left center; }
.location-dialog[open] .dialog-location:nth-child(2) { transform-origin: right center; }

.reveal { transition-delay: var(--reveal-delay, 0ms); }

@keyframes gateIn {
  from { opacity: 0; transform: perspective(1200px) scale(.94) rotateX(4deg); filter: blur(8px); }
  to { opacity: 1; transform: perspective(1200px) scale(1) rotateX(0); filter: blur(0); }
}
@keyframes gateCopyIn {
  from { opacity: 0; transform: translate3d(-38px,0,70px); }
  to { opacity: 1; transform: translate3d(0,0,70px); }
}

@media (max-width: 980px) {
  .hero h1 { font-size: clamp(64px, 15vw, 118px); }
  .hero-razor-scene { opacity: .7; }
  .razor-object--hero-a { width: 56vw; right: -18%; top: 18%; }
  .razor-object--hero-b { width: 42vw; right: -4%; bottom: 12%; }
  .motion-interlude { min-height: 720px; }
  .razor-cross { width: min(68vw, 620px); }
  .dialog-shell { grid-template-columns: 1fr; gap: 28px; min-height: auto; }
  .dialog-intro { max-width: 620px; }
  .dialog-locations { width: 100%; }
}

@media (max-width: 780px) {
  .hero-content { transform: translate3d(0, calc(var(--hero-progress, 0) * -28px), 0); }
  .hero h1 { font-size: clamp(58px, 18vw, 96px); }
  .motion-ring--hero-a { width: 68vw; height: 68vw; }
  .motion-ring--hero-b { width: 36vw; height: 36vw; right: 8%; }
  .motion-interlude { min-height: 620px; }
  .motion-interlude__word { font-size: clamp(66px, 21vw, 132px); }
  .motion-interlude__copy { margin-top: 34px; }
  .section--locations { min-height: auto; }
  .location-card { min-height: 320px; }
  .location-dialog { width: calc(100% - 18px); max-height: calc(100dvh - 18px); }
  .dialog-shell { padding: 28px 18px 24px; min-height: calc(100dvh - 20px); }
  .dialog-intro h2 { font-size: clamp(40px, 12vw, 68px); }
  .dialog-location { min-height: 124px; padding: 16px 28px 16px 28px; grid-template-columns: 42px minmax(0,1fr); }
  .dialog-location > span { min-width: 34px; min-height: 34px; }
  .dialog-location strong { font-size: clamp(22px, 7vw, 36px); }
}

@media (max-width: 520px) {
  .hero h1 { font-size: clamp(54px, 19vw, 86px); line-height: .9; }
  .hero-razor-scene { opacity: .52; }
  .razor-object::after, .razor-cross::after { letter-spacing: .2em; }
  .razor-object--hero-a { width: 78vw; right: -30%; top: 20%; }
  .razor-object--hero-b { width: 58vw; right: -12%; bottom: 16%; }
  .motion-interlude { min-height: 540px; }
  .razor-cross { width: 84vw; }
  .motion-orbit--one { width: 94vw; }
  .motion-orbit--two { width: 58vw; }
  .location-card { clip-path: polygon(5% 0, 95% 0, 100% 8%, 100% 92%, 95% 100%, 5% 100%, 0 92%, 0 8%); }
  .dialog-shell { gap: 18px; }
  .dialog-intro h2 { margin-bottom: 10px; }
  .dialog-intro > p:not(.eyebrow) { margin-block: 7px; font-size: 13px; }
  .dialog-locations { gap: 12px; }
  .dialog-location { min-height: 108px; padding: 12px 20px; grid-template-columns: 34px minmax(0,1fr); }
  .dialog-location strong { font-size: 20px; }
  .dialog-location small { font-size: 10px; }
  .dialog-location i { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html::before { display: none; }
  .hero-content, .hero-video, .hero-grid,
  .razor-object, .razor-cross, .motion-ring, .motion-orbit,
  .barber-scene .scene-card, .barber-scene .scene-orbit,
  .motion-interlude__grid, .motion-interlude__word,
  .location-ambient__blade, .location-ambient__halo { transform: none !important; }
  .location-dialog[open], .location-dialog[open] .dialog-intro,
  .location-dialog[open] .dialog-location { animation: none !important; }
}

/* 2.1.2 — keep the location gate compact and visible from its first pixel. */
.location-dialog {
  position: fixed;
  inset: 50% auto auto 50%;
  width: min(900px,calc(100% - 24px));
  max-height: calc(100dvh - 24px);
  margin: 0;
  overflow: auto;
  transform: translate(-50%,-50%);
}
.location-dialog[open] { animation: locationGateFade .42s ease both; }
.dialog-shell {
  min-height: 0 !important;
  grid-template-columns: 1fr !important;
  align-items: start;
  align-content: start;
  justify-items: center;
  gap: 24px;
  padding: clamp(26px,4vw,44px);
}
.dialog-intro { display: grid; justify-items: center; max-width: 640px; text-align: center; }
.dialog-intro h2 { font-size: clamp(40px,5vw,64px); }
.dialog-intro > p:not(.eyebrow) { max-width: 620px; }
.dialog-locations { width: min(720px,100%); grid-template-columns: 1fr; gap: 14px; }
.dialog-location { min-height: 132px; padding: 18px 52px; }
.dialog-location strong { font-size: clamp(26px,3.2vw,42px); }

@keyframes locationGateFade {
  from { opacity: 0; filter: blur(7px); }
  to { opacity: 1; filter: blur(0); }
}

@media (max-height: 700px) and (min-width: 781px) {
  .location-dialog { width: min(1040px,calc(100% - 24px)); }
  .dialog-shell { grid-template-columns: minmax(240px,.72fr) minmax(440px,1.28fr) !important; align-items: center; gap: 28px; padding: 24px 30px; }
  .dialog-intro__logo { width: 66px; height: 66px; }
  .dialog-intro h2 { font-size: clamp(40px,5vw,58px); }
  .dialog-intro > p:not(.eyebrow) { font-size: 13px; line-height: 1.45; }
  .dialog-locations { gap: 12px; }
  .dialog-location { min-height: 116px; padding-block: 14px; }
  .dialog-location strong { font-size: clamp(24px,3vw,36px); }
}

@media (max-width: 780px) {
  .location-dialog { width: calc(100% - 16px); max-height: calc(100dvh - 16px); }
  .dialog-shell { gap: 14px; padding: 18px 12px; }
  .dialog-intro__logo { width: 58px; height: 58px; }
  .dialog-intro h2 { margin: 7px 0 4px; font-size: clamp(32px,10vw,46px); }
  .dialog-intro > p:not(.eyebrow) { margin-block: 4px; font-size: 12px; line-height: 1.38; }
  .dialog-location { min-height: 106px; padding: 12px 26px; }
  .dialog-location strong { font-size: clamp(21px,7vw,30px); }
}
