@font-face {
  font-family: "Anton Local";
  src: url("assets/fonts/anton-latin.woff2?v=20260723-cache1") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

:root {
  --ink: #0b1215;
  --ink-soft: #0b1215;
  --paper: #f0eee9;
  --paper-2: #e5e2dc;
  --muted: #a6a39d;
  --line: rgba(11, 18, 21, .15);
  --light-line: rgba(255,255,255,.16);
  --amber: #c4934f;
  --amber-bright: #e3b66e;
  --danger: #b42318;
  --header-h: 74px;
  --stable-viewport-h: 100vh;
  --action-bar-h: 0px;
  --page-x: clamp(22px, 5vw, 82px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

@supports (height: 100svh) {
  :root { --stable-viewport-h: 100svh; }
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; overflow-x: clip; background: var(--ink); }
body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
section[id], #hours, #prices { scroll-margin-top: var(--header-h); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { transform: none; }

.topbar {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px var(--page-x);
  color: #fff;
  background: rgba(11,18,21,.78);
  border: 0 solid rgba(255,255,255,.15);
  border-bottom-width: 1px;
  border-radius: 0;
  box-shadow: 0 12px 30px rgba(11,18,21,.3);
  backdrop-filter: blur(16px) saturate(125%);
  transition: background .3s ease, border-color .3s ease;
}
.topbar.is-scrolled { background: rgba(11,18,21,.94); border-color: rgba(255,255,255,.09); }
.brand { width: clamp(142px, 15vw, 206px); height: 48px; flex: 0 0 auto; }
.brand img { width: 100%; height: 100%; object-fit: contain; object-position: left center; filter: drop-shadow(0 2px 8px rgba(11,18,21,.34)); }
.nav { display: flex; align-items: center; gap: 12px; min-width: 0; }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav-links a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a:focus-visible { color: #fff; }

.site-language {
  height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 4px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
}
.site-language button {
  height: 34px;
  min-width: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 9px;
  color: rgba(255,255,255,.64);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .05em;
}
.site-language button.is-active { color: var(--ink); background: #fff; box-shadow: 0 2px 8px rgba(11,18,21,.2); }
.flag { width: 16px; height: 11px; display: inline-block; overflow: hidden; border-radius: 2px; box-shadow: 0 0 0 1px rgba(11,18,21,.18); background-size: cover; }
.flag-de { background: linear-gradient(var(--ink) 0 33.33%, #d21f2b 33.33% 66.66%, #f0c928 66.66%); }
.flag-gb {
  background-color: #012169;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 36'%3E%3Cpath fill='%23012169' d='M0 0h60v36H0z'/%3E%3Cpath stroke='%23fff' stroke-width='8' d='M0 0l60 36M60 0 0 36'/%3E%3Cpath stroke='%23C8102E' stroke-width='4' d='M0 0l60 36M60 0 0 36'/%3E%3Cpath stroke='%23fff' stroke-width='12' d='M30 0v36M0 18h60'/%3E%3Cpath stroke='%23C8102E' stroke-width='7' d='M30 0v36M0 18h60'/%3E%3C/svg%3E");
}
.burger {
  width: 44px;
  height: 44px;
  display: none;
  position: relative;
  flex: 0 0 44px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  cursor: pointer;
}
.burger span { position: absolute; left: 12px; width: 18px; height: 1.5px; background: currentColor; transition: transform .25s ease, top .25s ease; }
.burger span:first-child { top: 17px; }
.burger span:last-child { top: 25px; }
.burger[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

.hero { position: relative; min-height: max(720px, var(--stable-viewport-h)); display: grid; align-items: stretch; overflow: hidden; isolation: isolate; color: #fff; background: #0a0a0a; }
.hero-media { position: absolute; z-index: -3; inset: 0; display: block; width: 100%; height: 100%; overflow: hidden; }
.hero-media img { display: block; width: 100%; min-width: 100%; max-width: none; height: 100%; min-height: 100%; object-fit: cover; object-position: center; filter: contrast(1.1) saturate(1.12); transform: scale(1.008); }
.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 82% 24%, rgba(42,78,255,.13), transparent 27%),
    radial-gradient(circle at 88% 68%, rgba(255,33,48,.09), transparent 31%),
    linear-gradient(90deg, rgba(7,13,16,.92) 0%, rgba(7,13,16,.6) 39%, rgba(7,13,16,.1) 70%, rgba(7,13,16,.24) 100%),
    linear-gradient(0deg, rgba(11,18,21,.86) 0%, transparent 58%);
}
.hero-grain {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.hero-inner { width: 100%; min-height: inherit; display: flex; align-items: center; padding: clamp(130px, 18vh, 190px) var(--page-x) clamp(90px, 12vh, 130px); }
.hero-copy { position: relative; max-width: 900px; padding-left: clamp(20px, 2vw, 30px); }
.hero-copy::before { content: ""; position: absolute; left: 0; top: 2px; bottom: 8px; width: 4px; border-radius: 999px; background: linear-gradient(180deg, #db2736 0 30%, #05080a 30% 64%, #2458e8 64% 100%); box-shadow: 0 0 24px rgba(36,88,232,.22), 0 0 18px rgba(219,39,54,.16); }
.eyebrow, .section-kicker {
  margin: 0 0 16px;
  font-size: .72rem;
  line-height: 1;
  letter-spacing: .19em;
  text-transform: uppercase;
  font-weight: 820;
}
.eyebrow { color: var(--amber-bright); }
.hero h1, .hero h2, .section h2, .pole-hero h1, .closing h2 {
  margin: 0;
  font-family: "Anton Local", Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  font-weight: 400;
  letter-spacing: .005em;
  line-height: 1.02;
  text-transform: uppercase;
}
.hero h1, .closing-hero h2 { max-width: 900px; font-size: clamp(5rem, 9.7vw, 9.6rem); text-shadow: 0 3px 22px rgba(0,0,0,.32); }

.section { padding: clamp(96px, 12vw, 180px) var(--page-x); }
.section-head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr); align-items: end; gap: clamp(30px, 7vw, 110px); margin-bottom: clamp(50px, 7vw, 96px); }
.section-head h2, .lounge h2, .contact h2, .closing h2 { font-size: clamp(3.7rem, 7vw, 8rem); }
.section-head > p:last-child { margin: 0; max-width: 510px; color: #55514b; font-size: clamp(1rem, 1.35vw, 1.2rem); }
.section-kicker { color: #7c5b2d; }

.pole-hero { position: relative; overflow: hidden; color: #fff; background: var(--ink); }
.services {
  min-block-size: calc(var(--stable-viewport-h) - var(--header-h));
  display: grid;
  align-items: center;
  background: var(--paper);
}
.services-stage {
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(520px, 1.1fr);
  align-items: stretch;
  gap: clamp(24px, 3vw, 56px);
  min-height: max(720px, var(--stable-viewport-h));
  margin: 0;
  padding: clamp(112px, 14vh, 156px) var(--page-x) clamp(54px, 7vh, 82px);
  color: #fff;
  background:
    radial-gradient(circle at 78% 46%, rgba(43,77,255,.1), transparent 28%),
    radial-gradient(circle at 88% 54%, rgba(255,32,48,.11), transparent 31%),
    var(--ink);
  overflow: hidden;
}
.services-stage-copy { align-self: center; max-width: 720px; }
.services-stage-copy > .section-kicker { color: var(--amber-bright); }
.services-stage-kicker-mobile { display: none; }
.services-stage-copy > h1,
.services-stage-copy > h2 { max-width: 780px; margin: 0; font-size: clamp(3.7rem, 5.7vw, 7rem); line-height: .97; }
.pole-hero-title-mobile { display: none; }
.services-hours { max-width: 580px; margin-top: clamp(28px, 4vh, 42px); }
.hours-disclosure-toggle { display: none; }
.services-hours-panel { display: block; }
.services-stage-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(26px, 4vh, 40px); }
.button-stage-primary { color: var(--ink); background: var(--amber-bright); }
.button-stage-ghost { color: #fff; border-color: rgba(255,255,255,.3); background: transparent; }
.services-editorial-layout { display: grid; gap: clamp(42px, 6vw, 88px); }
.services .section-head { margin-bottom: 0; }
.services #prices.reveal { transform: none; }
.services .section-head .section-kicker { grid-column: 1 / -1; margin-bottom: -20px; }
.price-list {
  position: relative;
  display: grid;
  gap: 0;
  color: #fff;
  background: #081014;
  border: 1px solid rgba(11,18,21,.2);
  box-shadow: 0 30px 70px rgba(11,18,21,.17), inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
  isolation: isolate;
}
.price-list::before { content: ""; position: absolute; z-index: 4; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, #f1263f 0 30%, #070b0e 30% 70%, #315fff 70% 100%); }
.price-list::after { content: ""; position: absolute; z-index: -1; top: -42%; right: -16%; width: 58%; aspect-ratio: 1; background: radial-gradient(circle, rgba(45,83,255,.18), rgba(255,34,55,.07) 43%, transparent 72%); filter: blur(20px); pointer-events: none; }
.price-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 24px; min-height: 78px; padding: 15px clamp(20px, 3vw, 38px); border-bottom: 1px solid rgba(255,255,255,.11); }
.price-item { min-width: 0; display: grid; grid-template-columns: clamp(30px, 3vw, 46px) minmax(0, 1fr); align-items: baseline; gap: clamp(10px, 1.6vw, 18px); }
.price-code { color: rgba(255,255,255,.4); font-size: .62rem; font-weight: 820; letter-spacing: .12em; white-space: nowrap; }
.price-name { min-width: 0; font-size: clamp(1rem, 1.45vw, 1.35rem); font-weight: 650; letter-spacing: -.015em; }
.price-row strong { display: flex; align-items: flex-start; justify-content: flex-end; gap: .08em; min-width: 88px; font-family: "Anton Local", Impact, sans-serif; font-weight: 400; line-height: .8; letter-spacing: -.025em; }
.price-value { font-size: clamp(2.25rem, 3.4vw, 3.8rem); }
.price-currency { margin-top: .12em; font-size: clamp(.9rem, 1.3vw, 1.3rem); color: rgba(255,255,255,.72); }
.price-row-featured { grid-template-columns: minmax(0, 1fr) clamp(126px, 18vw, 205px) auto; min-height: clamp(160px, 17vw, 215px); padding: clamp(22px, 3vw, 42px); border-bottom-color: rgba(255,255,255,.16); background: linear-gradient(125deg, rgba(255,255,255,.035), transparent 54%); }
.price-row-featured .price-item { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; max-width: 440px; }
.price-row-featured .price-code { color: rgba(255,255,255,.56); font-size: .67rem; }
.price-row-featured .price-name { max-width: 390px; font-size: clamp(1.45rem, 2.4vw, 2.45rem); line-height: 1.14; }
.price-row-featured strong { min-width: 150px; }
.price-row-featured .price-value { font-size: clamp(4.7rem, 7.2vw, 7.5rem); }
.price-row-featured .price-currency { margin-top: .18em; font-size: clamp(1.25rem, 2vw, 2rem); }
.price-scissors-visual { position: relative; width: 100%; aspect-ratio: 1; align-self: center; overflow: hidden; transform: translateX(clamp(10px, 1.5vw, 20px)); touch-action: none; cursor: grab; }
.price-scissors-visual.is-dragging { cursor: grabbing; }
.price-scissors-visual::after { content: ""; position: absolute; inset: 8%; background: radial-gradient(circle, rgba(49,95,255,.12), rgba(241,38,63,.06) 44%, transparent 72%); filter: blur(10px); pointer-events: none; }
.price-scissors-media,
.price-scissors-poster { position: relative; z-index: 1; display: block; width: 100%; height: 100%; object-fit: contain; }
.price-scissors-poster { display: none; }
.price-scissors-canvas { position: absolute; z-index: 2; inset: 0; opacity: 0; transition: opacity .28s ease; }
.price-scissors-canvas canvas { display: block; width: 100%; height: 100%; }
.price-scissors-visual.is-ready .price-scissors-canvas { opacity: 1; }
.price-scissors-visual.is-ready .price-scissors-media,
.price-scissors-visual.is-ready .price-scissors-poster { opacity: 0; pointer-events: none; }
.price-scissors-hit { position: absolute; z-index: 3; inset: 0; padding: 0; border: 0; background: transparent; cursor: inherit; touch-action: none; }
.price-scissors-hit:focus-visible { outline: 2px solid var(--amber-bright); outline-offset: -4px; border-radius: 10px; }
.price-row-package { min-height: 124px; border-bottom: 0; background: linear-gradient(100deg, rgba(49,95,255,.08), rgba(241,38,63,.06)); }
.price-row-package .price-name { display: flex; flex-direction: column; gap: 7px; }
.price-row-package .price-name > small { max-width: 470px; color: rgba(255,255,255,.52); font-size: .69rem; font-weight: 650; line-height: 1.45; letter-spacing: .055em; text-transform: uppercase; }
.price-disclosure-toggle {
  width: 100%; min-height: 64px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px;
  padding: 0 clamp(20px, 3vw, 38px); color: #fff; background: rgba(255,255,255,.018); border: 0; border-bottom: 1px solid rgba(255,255,255,.11);
  cursor: pointer; text-align: left; font-size: .78rem; font-weight: 820; letter-spacing: .1em; text-transform: uppercase;
  transition: background .2s ease;
}
.price-disclosure-toggle:hover { background: rgba(255,255,255,.055); }
.price-disclosure-toggle:focus-visible { outline: 3px solid var(--amber-bright); outline-offset: -4px; }
.price-toggle-open { display: none; }
.price-disclosure-toggle[aria-expanded="true"] .price-toggle-closed { display: none; }
.price-disclosure-toggle[aria-expanded="true"] .price-toggle-open { display: inline; }
.price-disclosure-icon { position: relative; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.62); border-radius: 50%; transition: transform .3s ease, border-color .2s ease; }
.price-disclosure-icon::before, .price-disclosure-icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 11px; height: 1.5px; background: #fff; transform: translate(-50%, -50%); transition: transform .3s ease; }
.price-disclosure-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.price-disclosure-toggle[aria-expanded="true"] .price-disclosure-icon { transform: rotate(180deg); border-color: rgba(255,255,255,.9); }
.price-disclosure-toggle[aria-expanded="true"] .price-disclosure-icon::after { transform: translate(-50%, -50%) rotate(0); }
.price-more { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.22,.8,.28,1), opacity .2s ease; }
.price-more.is-open { max-height: 760px; opacity: 1; }
.price-more .price-row { opacity: 0; transform: translateY(10px); transition: opacity .28s ease, transform .34s cubic-bezier(.22,.8,.28,1); }
.price-more.is-open .price-row { opacity: 1; transform: none; }
.price-more.is-open .price-row:nth-child(2) { transition-delay: .025s; }
.price-more.is-open .price-row:nth-child(3) { transition-delay: .05s; }
.price-more.is-open .price-row:nth-child(4) { transition-delay: .075s; }
.price-more.is-open .price-row:nth-child(5) { transition-delay: .1s; }
.price-more.is-open .price-row:nth-child(6) { transition-delay: .125s; }
.price-more.is-open .price-row:nth-child(7) { transition-delay: .15s; }

.pole-feature {
  position: relative;
  height: 100%;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}
.pole-feature::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  top: 50%;
  width: min(48vw, 700px);
  height: 86%;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255,35,54,.17), rgba(52,84,255,.12) 43%, transparent 73%);
  filter: blur(22px);
  transition: opacity .25s ease, filter .25s ease;
}
.pole-feature:has(.barber-pole-stage.is-boosted)::before { opacity: 1; filter: blur(13px); }
.pole-feature:has(.barber-pole-stage.is-shop-closed)::before { opacity: .28; filter: blur(28px); }
.pole-feature:has(.barber-pole-stage.is-closed-preview)::before { opacity: .95; filter: blur(14px) saturate(1.25); }
.barber-pole-stage {
  position: relative;
  width: min(620px, 100%);
  height: 100%;
  margin-left: auto;
  touch-action: pan-y;
  user-select: none;
}
.barber-pole-hit-target {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 4%;
  bottom: 10%;
  width: clamp(110px, 30%, 180px);
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transform: translateX(-50%);
}
.barber-pole-hit-target:focus-visible { outline: 3px solid var(--amber-bright); outline-offset: 4px; }
.barber-pole-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 74%;
  border-radius: 48%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse at 38% 44%, rgba(255,24,52,.78), rgba(255,24,52,.28) 28%, transparent 64%),
    radial-gradient(ellipse at 62% 56%, rgba(36,103,255,.82), rgba(36,103,255,.3) 30%, transparent 66%),
    radial-gradient(ellipse at center, rgba(225,238,255,.5), transparent 56%);
  filter: blur(24px) saturate(1.28);
  opacity: 0;
  transform-origin: center;
  pointer-events: none;
}
.barber-pole-stage.is-ready:not(.is-shop-closed)::before {
  opacity: .9;
  filter: blur(19px) saturate(1.38);
}
.barber-pole-stage.is-ready.is-closed-preview::before {
  opacity: .76;
  filter: blur(21px) saturate(1.35);
}
.barber-pole-stage.is-dragging .barber-pole-hit-target { cursor: grabbing; }
.barber-pole-stage.is-paused { opacity: .72; }
.barber-pole-stage.is-shop-closed { opacity: .92; }
.barber-pole-canvas, .barber-pole-canvas canvas, .barber-pole-poster { position: absolute; inset: 0; width: 100%; height: 100%; }
.barber-pole-canvas { z-index: 1; opacity: 0; }
.barber-pole-stage.is-ready .barber-pole-canvas { opacity: 1; }
.barber-pole-canvas canvas { display: block; }
.barber-pole-poster { object-fit: contain; opacity: 0; visibility: hidden; pointer-events: none; }
.barber-pole-stage.is-fallback .barber-pole-poster { opacity: 1; visibility: visible; }
.barber-pole-hint {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 26px;
  margin: 0;
  padding: 9px 13px;
  color: rgba(255,255,255,.78);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(11,18,21,.5);
  border: 1px solid transparent;
  border-radius: 999px;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
  font-size: .66rem;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity .24s ease;
}
.barber-pole-hint[hidden] { display: none; }
.barber-pole-hint::before { content: "●"; flex: 0 0 auto; color: #55b878; font-size: .72rem; line-height: 1; text-shadow: 0 0 9px rgba(85,184,120,.55); }
.barber-pole-stage:not(.is-shop-closed) .barber-pole-hint { color: #9cf0b9; }
.barber-pole-stage.is-shop-closed .barber-pole-hint { color: #ff918a; }
.barber-pole-stage.is-shop-closed .barber-pole-hint::before { color: #e24b43; text-shadow: 0 0 8px rgba(226,75,67,.38); }
.barber-pole-stage.is-closed-preview .barber-pole-hint { opacity: 0; }
.barber-pole-tap-hint { display: none; }
.tap-hint-mark { position: relative; width: 10px; height: 10px; flex: 0 0 10px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; }
.tap-hint-mark::after { content: ""; position: absolute; left: 50%; top: 50%; width: 3px; height: 3px; background: rgba(225,178,103,.72); border-radius: 50%; transform: translate(-50%, -50%); }
.pole-countdown {
  position: absolute;
  z-index: 5;
  left: clamp(18px, 8%, 78px);
  bottom: clamp(76px, 11%, 112px);
  width: min(290px, calc(100% - 36px));
  margin: 0;
  padding: 16px 18px 15px;
  color: rgba(255,255,255,.7);
  background: linear-gradient(135deg, rgba(13,20,24,.9), rgba(13,20,24,.7));
  border: 1px solid rgba(255,255,255,.15);
  border-left: 3px solid #e1b267;
  border-radius: 4px 16px 16px 4px;
  box-shadow: 0 18px 50px rgba(0,0,0,.34), 0 0 32px rgba(45,90,255,.1);
  backdrop-filter: blur(15px);
  opacity: 0;
  transform: translate3d(-34px, 12px, 0);
  transition: transform .52s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.pole-countdown[hidden] { display: none; }
.pole-countdown.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }
.pole-countdown span { display: block; font-size: .65rem; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.pole-countdown strong { display: block; margin-top: 5px; color: #fff; font-family: "Anton Local", Impact, sans-serif; font-size: clamp(1.55rem, 2.8vw, 2.25rem); font-weight: 400; line-height: 1; letter-spacing: .015em; }

@media (min-width: 981px) {
  .services-editorial-layout { grid-template-columns: minmax(320px, .72fr) minmax(560px, 1.28fr); align-items: start; column-gap: clamp(42px, 6vw, 88px); row-gap: clamp(24px, 2.5vw, 36px); }
  .services .section-head { position: sticky; top: 118px; display: block; grid-column: 1; grid-row: 1 / span 2; }
  .services .price-list { grid-column: 2; }
  .services .section-head .section-kicker { margin: 0 0 22px; }
  .services .section-head h2 { font-size: clamp(4.8rem, 6.6vw, 7.5rem); line-height: .94; }
  .services .section-head > p:last-child { margin-top: clamp(28px, 3vw, 42px); }
  .pole-feature::before { transform: translate(-10%, -50%); }
  .barber-pole-stage { transform: translateX(-10%); }
  .barber-pole-hint { left: 46.5%; }
}

.lounge { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: clamp(38px, 8vw, 130px); align-items: center; color: #fff; background: radial-gradient(circle at 78% 28%, rgba(42,78,255,.18), transparent 24%), radial-gradient(circle at 87% 52%, rgba(255,33,48,.13), transparent 30%), linear-gradient(135deg, #0b1215, #0d1114 60%, #161114); }
.lounge-image { position: relative; height: min(78vh, 880px); min-height: 560px; overflow: hidden; border-radius: 3px; }
.lounge-image img { width: 100%; height: 100%; object-fit: cover; }
.coffee-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(150px, 30%, 190px);
  grid-template-rows: minmax(0, 1fr) auto auto;
  min-height: 220px;
  max-height: 260px;
  margin-top: clamp(26px, 3.2vh, 38px);
  overflow: hidden;
  background: radial-gradient(circle at 82% 32%, rgba(42,78,255,.16), transparent 34%), linear-gradient(135deg, #091215, #101017 62%, #1c1014);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 58px rgba(0,0,0,.28);
}
.coffee-card::before { content: ""; position: absolute; z-index: 3; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, #f1263f 0 30%, #070b0e 30% 70%, #315fff 70% 100%); }
.coffee-card-copy { position: relative; z-index: 2; align-self: center; padding: clamp(22px, 3vw, 34px); padding-right: 8px; }
.coffee-card-kicker { margin: 0 0 10px; color: var(--amber-bright); font-size: .68rem; font-weight: 820; letter-spacing: .15em; text-transform: uppercase; }
.coffee-card h3 { max-width: 330px; margin: 0; color: #fff; font-family: "Anton Local", Impact, sans-serif; font-size: clamp(2.15rem, 3.8vw, 3.65rem); font-weight: 400; line-height: .96; letter-spacing: .015em; text-transform: uppercase; }
.espresso-cup-motion {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: stretch;
  min-width: 0;
  overflow: hidden;
  background: #0b1215;
  isolation: isolate;
}
.espresso-cup-motion::after { content: ""; position: absolute; z-index: 2; inset: auto 10% 10% 4%; height: 24%; background: radial-gradient(ellipse, rgba(227,182,110,.2), transparent 68%); filter: blur(9px); pointer-events: none; }
.espresso-cup-canvas,
.espresso-cup-fallback,
.espresso-cup-poster { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; }
.espresso-cup-canvas canvas { display: block; width: 100%; height: 100%; }
.espresso-cup-fallback,
.espresso-cup-poster { object-fit: cover; transform: scale(1.03); }
.espresso-cup-poster { display: none; }
.espresso-cup-motion.is-ready .espresso-cup-fallback { opacity: 0; pointer-events: none; }
.espresso-cup-hit { position: absolute; z-index: 4; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; border-radius: 0; background: transparent; cursor: grab; touch-action: none; }
.espresso-cup-hit:active,
.espresso-cup-motion.is-dragging .espresso-cup-hit { cursor: grabbing; }
.espresso-cup-hit:focus-visible { outline: 2px solid var(--amber-bright); outline-offset: -4px; }
.espresso-cup-hint { position: absolute; z-index: 5; right: 8px; bottom: 7px; padding: 3px 5px; color: rgba(255,255,255,.72); background: rgba(7,10,12,.54); border: 1px solid rgba(255,255,255,.18); font-size: .46rem; font-weight: 820; letter-spacing: .1em; pointer-events: none; transition: opacity .25s ease; }
.espresso-cup-motion.is-dragging .espresso-cup-hint { opacity: .25; }
.motion-reduced .espresso-cup-canvas,
.motion-reduced .espresso-cup-fallback,
.motion-reduced .espresso-cup-hit,
.motion-reduced .espresso-cup-hint { display: none; }
.motion-reduced .espresso-cup-poster { display: block; }
.coffee-card-footer { position: relative; z-index: 2; grid-column: 1; margin: 0; padding: 13px clamp(22px, 3vw, 34px); color: rgba(255,255,255,.82); border-top: 1px solid rgba(255,255,255,.12); font-size: .68rem; font-weight: 820; letter-spacing: .11em; text-transform: uppercase; }
.coffee-card .coffee-card-benefits { position: relative; z-index: 2; grid-column: 1 / -1; margin: 0; padding: 0 clamp(22px, 3vw, 34px); background: rgba(5,10,13,.72); border-top: 1px solid rgba(255,255,255,.12); }
.coffee-card .coffee-card-benefits li { padding-block: 11px; border-bottom: 0; }
.lounge .section-kicker { color: var(--amber-bright); }
.lounge h2 { line-height: 1.16; }
.lounge-copy > p:not(.section-kicker) { max-width: 600px; color: rgba(255,255,255,.67); font-size: clamp(1.05rem, 1.5vw, 1.28rem); }
.benefit-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 22px; margin: 18px 0 0; padding: 0; list-style: none; }
.benefit-list li { position: relative; min-width: 0; padding: 12px 0 12px 24px; border-bottom: 1px solid var(--light-line); font-size: .86rem; font-weight: 650; }
.benefit-list li::before { content: ""; position: absolute; left: 0; top: 50%; width: 12px; height: 12px; border: 1px solid var(--amber-bright); transform: translateY(-50%) rotate(45deg); }

.gallery { background: var(--paper-2); }
.gallery .section-head { display: block; max-width: 980px; }
.gallery-grid { display: grid; grid-template-columns: .85fr 1.15fr; grid-template-rows: minmax(340px, 42vw) minmax(290px, 35vw); gap: 16px; }
.gallery-card { position: relative; margin: 0; overflow: hidden; background: var(--ink); }
.gallery-card-tall { grid-row: 1 / 3; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery-card-wide img { object-position: center 42%; }
.gallery-card:hover img { transform: scale(1.025); }
.gallery-all-button { margin-top: 28px; color: #fff; background: var(--ink); }

.trust-band { display: flex; justify-content: center; align-items: center; gap: clamp(30px, 7vw, 96px); padding: 62px var(--page-x); color: #fff; background: var(--amber); }
.trust-band > div { display: flex; align-items: center; gap: 24px; }
.trust-band strong { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(4.8rem, 9vw, 10rem); line-height: .8; font-weight: 400; }
.trust-band span { color: var(--ink); font-size: clamp(.9rem, 1.5vw, 1.25rem); letter-spacing: .13em; }
.trust-band p { display: flex; flex-direction: column; margin: 0; }
.trust-band b { font-size: 1.1rem; text-transform: uppercase; letter-spacing: .08em; }
.trust-band small { margin-top: 6px; color: rgba(255,255,255,.72); }

.contact { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(520px, 1.3fr); align-items: stretch; gap: clamp(34px, 5vw, 82px); background: var(--paper); }
.contact-main { align-self: center; }
.contact-main h2 { max-width: 900px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 38px 0 56px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; text-decoration: none; cursor: pointer; font-size: .76rem; font-weight: 820; letter-spacing: .09em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--ink); }
.button-ghost { color: var(--ink); border-color: var(--ink); background: transparent; }
.button-light { color: var(--ink); background: #fff; }
.contact-facts { max-width: 720px; display: grid; grid-template-columns: 1fr; gap: 20px; margin: 0; }
.contact-facts div { padding-top: 14px; border-top: 1px solid var(--line); }
.contact-facts dt, .hours dt { color: #77726c; font-size: .68rem; font-weight: 820; letter-spacing: .11em; text-transform: uppercase; }
.contact-facts dd, .hours dd { margin: 8px 0 0; font-weight: 620; }
.nv { color: var(--danger) !important; font-weight: 760; }
.hours { align-self: center; padding: clamp(28px, 4vw, 52px); color: #fff; background: var(--ink); }
.services-stage .hours { align-self: auto; padding: 0; background: transparent; }
.services-stage .hours h3 { margin-bottom: 12px; font-size: clamp(1.35rem, 2vw, 2rem); }
.services-stage .hours dl div { padding: 10px 0; }
.hours h3 { margin: 0 0 30px; font-size: clamp(2rem, 3vw, 3.6rem); line-height: 1; letter-spacing: -.03em; }
.hours dl { margin: 0; }
.hours dl div { display: flex; justify-content: space-between; gap: 30px; padding: 16px 0; border-bottom: 1px solid var(--light-line); }
.hours dt { color: rgba(255,255,255,.55); }
.hours dd { margin: 0; }
.walkin-note { display: flex; align-items: center; gap: 13px; margin: 28px 0 0; color: var(--amber-bright); font-size: .85rem; }
.services-stage .walkin-note { margin-top: clamp(22px, 3vh, 34px); }
.walkin-note b { display: grid; gap: 2px; }
.walkin-note small { color: rgba(255,255,255,.62); font-size: .72rem; font-weight: 650; }
.walkin-note .opening-status-dot { width: 10px; height: 10px; flex: 0 0 10px; background: #55b878; border-radius: 50%; box-shadow: 0 0 0 5px rgba(85,184,120,.13), 0 0 16px rgba(85,184,120,.72); }
.walkin-note.is-closed { color: #ff8a82; }
.walkin-note.is-closed .opening-status-dot { background: #e24b43; box-shadow: 0 0 0 5px rgba(226,75,67,.14); }
.hours-dialog {
  width: min(520px, calc(100vw - 32px));
  max-height: min(720px, calc(100dvh - 32px));
  margin: auto;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  overflow: visible;
}
.hours-dialog::backdrop { background: rgba(4,8,10,.76); backdrop-filter: blur(10px); }
.hours-dialog-card {
  position: relative;
  padding: clamp(30px, 6vw, 48px);
  background:
    radial-gradient(circle at 88% 12%, rgba(42,78,255,.19), transparent 30%),
    radial-gradient(circle at 8% 92%, rgba(255,33,48,.14), transparent 32%),
    #0b1215;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  box-shadow: 0 32px 90px rgba(0,0,0,.48);
  overflow: hidden;
}
.hours-dialog .section-kicker { margin-bottom: 14px; color: var(--amber-bright); }
.hours-dialog h2 { margin: 0; font-family: "Anton Local", Impact, sans-serif; font-size: clamp(2.8rem, 10vw, 4.6rem); font-weight: 400; line-height: 1; text-transform: uppercase; }
.hours-dialog dl { margin: 28px 0 0; }
.hours-dialog dl div { display: flex; justify-content: space-between; gap: clamp(12px, 4vw, 24px); padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.hours-dialog dt { min-width: 0; flex: 1 1 auto; color: rgba(255,255,255,.58); font-size: .68rem; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.hours-dialog dd { flex: 0 0 auto; margin: 0; font-weight: 720; white-space: nowrap; }
.hours-dialog-status { display: flex; align-items: center; gap: 13px; margin: 22px 0 0; color: #9cf0b9; }
.hours-dialog-status[hidden] { display: none; }
.hours-dialog-status b { display: grid; gap: 2px; }
.hours-dialog-status small { color: rgba(255,255,255,.62); font-size: .72rem; }
.hours-dialog-status .opening-status-dot { width: 10px; height: 10px; flex: 0 0 10px; background: #55b878; border-radius: 50%; box-shadow: 0 0 0 5px rgba(85,184,120,.13), 0 0 16px rgba(85,184,120,.72); }
.hours-dialog-status.is-closed { color: #ff918a; }
.hours-dialog-status.is-closed .opening-status-dot { background: #e24b43; box-shadow: 0 0 0 5px rgba(226,75,67,.14); }
.hours-dialog-note { margin: 22px 0 0; color: rgba(255,255,255,.62); font-size: .82rem; }
.hours-dialog-close { position: absolute; z-index: 2; top: 16px; right: 16px; width: 44px; height: 44px; display: grid; place-items: center; padding: 0; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 50%; cursor: pointer; }
.hours-dialog-close svg { width: 22px; height: 22px; fill: currentColor; }
.hours-dialog-close:focus-visible { outline: 3px solid var(--amber-bright); outline-offset: 3px; }
.closing { color: #fff; }
.closing-shell {
  min-height: var(--stable-viewport-h);
  display: flex;
  flex-direction: column;
  overflow: clip;
  color: #fff;
  background: #060606;
}
.closing-hero {
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  display: grid;
  place-items: stretch;
  padding: 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 12% 52%, rgba(219,39,54,.15), transparent 34%),
    radial-gradient(ellipse at 88% 48%, rgba(36,88,232,.16), transparent 34%),
    linear-gradient(135deg, #07090a 0%, #111517 48%, #07090a 100%);
}
.closing-hero::after {
  background:
    linear-gradient(90deg, rgba(219,39,54,.04), transparent 30% 70%, rgba(36,88,232,.05)),
    radial-gradient(circle at 50% 52%, rgba(255,255,255,.035), transparent 34%);
}
.closing-hero::before { content: ""; position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; height: 4px; background: linear-gradient(90deg, #db2736 0 32%, #05080a 32% 66%, #2458e8 66% 100%); box-shadow: 0 0 22px rgba(36,88,232,.26), 0 0 18px rgba(219,39,54,.2); }
.closing-hero-inner { min-height: inherit; }
.closing-hero-copy { width: min(100%, 1040px); max-width: 1040px; margin-inline: auto; padding-left: 0; }
.closing-hero-copy::before { top: -30px; bottom: auto; left: 50%; width: 142px; height: 3px; transform: translateX(-50%); }
.closing .section-kicker { color: var(--amber-bright); }
.closing h2 { margin: 0; }
.closing-prompt { max-width: 620px; margin: clamp(22px, 3vh, 34px) 0 0; color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.35vw, 1.25rem); font-weight: 760; letter-spacing: .04em; text-transform: uppercase; }
.closing-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: clamp(30px, 4vh, 44px); }
.closing .button { margin-top: 0; }
.closing-call { display: none; }
.closing-cta-mobile { display: none; }

.footer { flex: 0 0 210px; min-height: 210px; height: 210px; display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: 1fr 1fr; align-items: center; column-gap: 30px; row-gap: 4px; padding: 30px var(--page-x); color: rgba(255,255,255,.56); background: #060606; border-top: 0; font-size: .78rem; }
.footer-brand { grid-row: 1 / span 2; width: 136px; height: 136px; }
.footer-brand img { width: 100%; height: 100%; object-fit: contain; }
.footer p, .footer small { margin: 0; }
.footer-copy { grid-column: 2; grid-row: 1; align-self: end; }
.footer small { grid-column: 2; grid-row: 2; align-self: start; }
.agency-credit { display: inline-flex; align-items: baseline; gap: 5px; margin-top: 9px; color: rgba(255,255,255,.76); font-size: .82rem; text-decoration: none; }
.agency-credit strong { color: #fff; font-size: 1rem; letter-spacing: .035em; }
.agency-credit:hover strong,
.agency-credit:focus-visible strong { color: var(--amber-bright); }
.footer-links { grid-column: 3; grid-row: 1 / span 2; justify-self: end; display: flex; flex-wrap: wrap; gap: 12px 18px; }
.footer-links a { color: rgba(255,255,255,.78); font-weight: 760; text-decoration-color: rgba(255,255,255,.35); text-underline-offset: 4px; }
.footer-links a:hover,
.footer-links a:focus-visible { color: #fff; text-decoration-color: currentColor; }

.mobile-actions { display: none; }
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-revealed { opacity: 1; transform: none; }
.reveal-group.reveal { opacity: 1; transform: none; transition: none; }
.reveal-group.reveal > * { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-group.reveal.is-revealed > * { opacity: 1; transform: none; }
.reveal-group.reveal.is-revealed > *:nth-child(2) { transition-delay: .09s; }
.reveal-group.reveal.is-revealed > *:nth-child(3) { transition-delay: .18s; }
.reveal-group.reveal.is-revealed > *:nth-child(4) { transition-delay: .27s; }
.reveal-group.reveal.is-revealed > *:nth-child(n+5) { transition-delay: .34s; }

:focus-visible { outline: 2px solid var(--amber-bright); outline-offset: 4px; }

@media (min-width: 981px) {
  html { scrollbar-gutter: stable; }
  .services-stage {
    position: relative;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
  .services-stage-copy {
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    padding: 0 clamp(32px, 4vw, 76px) clamp(150px, 18vh, 210px) 0;
  }
  .services-stage-copy > h1,
  .services-stage-copy > h2 {
    max-width: none;
    font-size: clamp(4.6rem, 5.9vw, 7.6rem);
    line-height: .91;
  }
  .pole-hero-title-desktop {
    display: block;
    white-space: pre-line;
  }
  .pole-feature {
    min-height: 0;
    overflow: visible;
  }
  .pole-feature::before {
    right: 50%;
    width: min(54vw, 820px);
    transform: translate(50%, -50%);
  }
  .barber-pole-stage {
    --desktop-pole-axis-x: 44%;
    width: min(700px, 100%);
    margin-inline: auto;
    transform: none;
  }
  .barber-pole-stage.is-fallback.is-shop-closed .barber-pole-poster {
    filter: brightness(.42) saturate(.72);
  }
  .barber-pole-stage.is-fallback.is-shop-closed.is-closed-preview .barber-pole-poster {
    filter: brightness(.92) saturate(1.08);
  }
  .barber-pole-hint {
    left: var(--desktop-pole-axis-x);
    bottom: 70px;
    padding: 9px 14px;
    font-size: .7rem;
  }
  .barber-pole-stage.is-closed-preview .barber-pole-hint {
    opacity: 1 !important;
  }
  .barber-pole-stage.is-shop-closed:not(.is-closed-preview) .barber-pole-tap-hint {
    position: absolute;
    z-index: 3;
    left: var(--desktop-pole-axis-x);
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 10px 15px;
    color: rgba(255,255,255,.68);
    background: rgba(11,18,21,.5);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    transform: translateX(-50%);
    backdrop-filter: blur(10px);
    font-size: .64rem;
    font-weight: 760;
    letter-spacing: .11em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
  }
  .pole-countdown {
    position: absolute;
    z-index: 5;
    left: -100%;
    top: auto;
    bottom: clamp(24px, 4.5vh, 52px);
    width: 150%;
    display: grid;
    grid-template-columns: max-content minmax(80px, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: clamp(22px, 2.5vw, 46px);
    margin: 0;
    padding: 0;
    color: rgba(255,255,255,.72);
    text-align: left;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity .24s ease, transform .45s cubic-bezier(.16,1,.3,1);
  }
  .pole-countdown.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  .pole-countdown span {
    grid-column: 1;
    grid-row: 1;
    font-size: clamp(.76rem, .9vw, .96rem);
    letter-spacing: .18em;
  }
  .pole-countdown strong {
    grid-column: 1;
    grid-row: 2;
    margin-top: 10px;
    font-size: clamp(3.5rem, 5.4vw, 6.5rem);
    line-height: .92;
    white-space: nowrap;
  }
  .pole-countdown::after {
    content: "";
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    height: 1px;
    align-self: center;
    background: linear-gradient(90deg, rgba(225,178,103,.8), rgba(49,95,255,.45), transparent);
  }
  .price-disclosure-toggle { display: none; }
  .price-row-featured {
    position: relative;
    grid-template-columns: clamp(190px, 16vw, 300px) clamp(210px, 16vw, 260px) auto;
    column-gap: clamp(14px, 2vw, 28px);
  }
  .price-row-featured .price-item { grid-column: 1; }
  .price-row-featured > strong { grid-column: 3; }
  .price-scissors-visual {
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(230px, 16vw, 300px);
    transform: translate(-50%, -50%);
  }
  .price-more {
    max-height: none;
    opacity: 1;
    overflow: visible;
  }
  .price-more .price-row {
    opacity: 1;
    transform: none;
  }
  .gallery {
    height: var(--stable-viewport-h);
    min-height: var(--stable-viewport-h);
    max-height: none;
    display: flex;
    flex-direction: column;
    padding-block: clamp(48px, 6.5vh, 70px);
    overflow: hidden;
  }
  .gallery .section-head {
    flex: 0 0 auto;
    max-width: none;
    margin-bottom: clamp(20px, 2.8vh, 30px);
  }
  .gallery .section-head h2 {
    font-size: clamp(3.7rem, 5.2vw, 5.8rem);
  }
  .gallery-grid {
    flex: 1 1 auto;
    width: 100%;
    max-width: 1440px;
    min-height: 0;
    margin-inline: auto;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .gallery-card {
    min-height: 0;
    border-radius: 8px;
  }
  .gallery-all-button {
    flex: 0 0 auto;
    align-self: flex-start;
    margin-top: clamp(18px, 2.4vh, 26px);
  }
  .lounge {
    grid-template-columns: minmax(0, .74fr) minmax(520px, 1.26fr);
    gap: clamp(36px, 4.2vw, 78px);
    height: calc(var(--stable-viewport-h) - var(--header-h));
    min-height: 0;
    align-items: stretch;
    padding-block: clamp(34px, 5vh, 54px);
    overflow: hidden;
  }
  .lounge-image {
    min-height: 0;
    height: 100%;
  }
  .lounge-copy {
    width: 100%;
    max-width: 940px;
    justify-self: end;
    min-height: 0;
    align-self: start;
    padding-top: clamp(4px, 1vh, 12px);
  }
  .lounge h2 { font-size: clamp(3.75rem, 5.4vw, 6.4rem); line-height: .98; }
  .coffee-card {
    grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
    min-height: 480px;
    height: clamp(480px, 55vh, 520px);
    max-height: 520px;
    margin-top: clamp(18px, 2.4vh, 28px);
    border-width: 2px;
    box-shadow: 0 30px 72px rgba(0,0,0,.34);
  }
  .coffee-card::before { height: 4px; }
  .coffee-card h3 { font-size: clamp(2.8rem, 4vw, 4.35rem); }
  .espresso-cup-motion {
    border-left: 2px solid rgba(255,255,255,.16);
    box-shadow: inset 0 0 0 1px rgba(225,178,103,.14);
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 64px;
    --action-bar-h: calc(68px + env(safe-area-inset-bottom, 0px));
  }
  .topbar { top: 10px; left: 12px; right: 12px; padding: 8px 9px 8px 12px; border-radius: 15px; }
  .brand { width: 142px; height: 44px; }
  .burger { display: inline-flex; }
  .nav-links {
    position: fixed;
    z-index: 90;
    top: 84px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 0;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    color: #fff;
    background: rgba(11,18,21,.98);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 15px;
    box-shadow: 0 22px 46px rgba(11,18,21,.35);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .menu-open .nav-links { opacity: 1; visibility: visible; transform: none; }
  .nav-links a { padding: 16px 14px; border-bottom: 1px solid rgba(255,255,255,.09); }
  .nav-links a:last-child { border-bottom: 0; }
  section[id], #hours, #prices { scroll-margin-top: 84px; }
  .lounge {
    position: relative;
    display: block;
    height: calc(var(--stable-viewport-h) - var(--header-h));
    min-height: 0;
    padding: 0;
    overflow: hidden;
    isolation: isolate;
  }
  .lounge-image {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    min-height: 0;
    height: 100%;
    border-radius: 0;
  }
  .lounge-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,12,14,.62) 0 31%, rgba(7,12,14,.12) 49% 63%, rgba(8,12,16,.72) 79%, #0b1014 100%);
    pointer-events: none;
  }
  .lounge-image img { object-position: center 48%; }
  .lounge-image.reveal { opacity: 1; transform: none; }
  .lounge-copy {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    height: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: clamp(22px, 4vh, 40px) clamp(24px, 6vw, 52px) calc(var(--action-bar-h) + clamp(16px, 2.5vh, 26px));
  }
  .lounge h2 { font-size: clamp(3.45rem, 8.8vw, 5.3rem); line-height: .96; }
  .lounge-copy > p:not(.section-kicker) { max-width: 680px; font-size: clamp(.92rem, 2vw, 1.08rem); line-height: 1.45; }
  .coffee-card { min-height: 200px; height: clamp(200px, 26vh, 230px); max-height: 230px; margin-top: auto; }
  .contact { grid-template-columns: 1fr; }
  .hours { align-self: auto; }
  .services-stage { grid-template-columns: minmax(340px, .9fr) minmax(400px, 1.1fr); }
  .services-stage-copy > h1,
  .services-stage-copy > h2 { font-size: clamp(3.4rem, 6.5vw, 5rem); }
  .contact-facts { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .services-stage { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-stage-copy > h1,
  .services-stage-copy > h2 { font-size: clamp(4.15rem, 6.3vw, 4.75rem); }
  .barber-pole-stage { width: 100%; }
}

@media (min-width: 981px) and (max-height: 820px) {
  .lounge { padding-block: clamp(44px, 6vh, 62px); gap: clamp(36px, 5vw, 74px); }
  .lounge-image { min-height: 500px; height: min(68vh, 590px); }
  .lounge h2 { font-size: clamp(3.65rem, 6vw, 5.4rem); line-height: 1.02; }
  .lounge-copy > p:not(.section-kicker) { font-size: 1rem; line-height: 1.55; }
  .coffee-card {
    grid-template-columns: minmax(0, 1fr) clamp(300px, 55%, 380px);
    min-height: 400px;
    height: clamp(400px, 52vh, 430px);
    max-height: 430px;
    margin-top: 16px;
  }
  .coffee-card h3 { font-size: clamp(2.45rem, 3.5vw, 3.35rem); }
  .benefit-list { margin-top: 12px; }
  .benefit-list li { padding-block: 9px; }
}

/*
 * Desktop viewport fitting
 * Scales the two dense editorial viewports by usable browser height as well
 * as width. This keeps 14-inch laptop viewports complete and lets QHD/UHD
 * screens use their extra space without reading the physical screen size.
 */
@media (min-width: 981px) {
  .services {
    width: 100%;
    height: calc(var(--stable-viewport-h) - var(--header-h));
    min-block-size: 0;
    padding-block: clamp(30px, 5dvh, 82px);
    overflow: hidden;
  }
  .services-editorial-layout {
    width: min(100%, 3200px);
    height: 100%;
    min-height: 0;
    margin-inline: auto;
    grid-template-columns: minmax(440px, .82fr) minmax(0, 1.18fr);
    grid-template-rows: minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(34px, 4.5vw, 150px);
  }
  .services .section-head {
    position: relative;
    top: auto;
    grid-row: 1;
    align-self: center;
  }
  .services .section-head h2 {
    max-width: 10.5ch;
    font-size: clamp(4.25rem, min(6.6vw, 9dvh), 11rem);
    line-height: .92;
  }
  .services .section-head > p:last-child {
    max-width: 38rem;
    margin-top: clamp(18px, 2.5dvh, 48px);
    font-size: clamp(.95rem, min(1.35vw, 1.9dvh), 1.55rem);
  }
  .services .price-list {
    width: 100%;
    min-height: 0;
    grid-row: 1;
    align-self: center;
  }
  .price-more.is-open {
    max-height: none;
  }
  .price-row {
    min-height: clamp(48px, 6.1dvh, 120px);
    padding: clamp(8px, 1.1dvh, 24px) clamp(18px, 1.6vw, 48px);
    gap: clamp(14px, 1.5vw, 32px);
  }
  .price-name {
    font-size: clamp(.92rem, min(1.45vw, 2dvh), 2rem);
  }
  .price-value {
    font-size: clamp(2rem, min(3.4vw, 4.8dvh), 5rem);
  }
  .price-currency {
    font-size: clamp(.8rem, min(1.3vw, 1.8dvh), 1.8rem);
  }
  .price-row-featured {
    min-height: clamp(126px, 15dvh, 300px);
    grid-template-columns: minmax(170px, .9fr) minmax(180px, .75fr) auto;
    padding: clamp(16px, 2.1dvh, 46px) clamp(20px, 2vw, 56px);
  }
  .price-row-featured .price-name {
    font-size: clamp(1.28rem, min(2.4vw, 3.4dvh), 3.4rem);
  }
  .price-row-featured .price-value {
    font-size: clamp(4rem, min(7.2vw, 9.6dvh), 10rem);
  }
  .price-row-featured .price-currency {
    font-size: clamp(1.05rem, min(2vw, 2.7dvh), 2.8rem);
  }
  .price-scissors-visual {
    width: clamp(120px, min(16vw, 13dvh), 360px);
  }
  .price-row-package {
    min-height: clamp(82px, 9.5dvh, 190px);
  }
  .price-row-package .price-name > small {
    max-width: 58rem;
    font-size: clamp(.62rem, min(.8vw, 1.15dvh), 1.15rem);
  }

  .lounge {
    grid-template-columns: minmax(0, .9fr) minmax(560px, 1.1fr);
    gap: clamp(36px, 4.2vw, 160px);
    align-items: center;
    padding-block: clamp(28px, 5dvh, 86px);
  }
  .lounge-image {
    align-self: center;
    height: min(100%, 1580px);
  }
  .lounge-copy {
    max-width: clamp(720px, 40vw, 1500px);
    align-self: center;
    padding-top: 0;
  }
  .lounge h2 {
    max-width: 11.5ch;
    font-size: clamp(4rem, min(5.4vw, 9dvh), 12rem);
    line-height: .96;
  }
  .lounge-copy > p:not(.section-kicker) {
    font-size: clamp(.95rem, min(1.5vw, 2dvh), 1.75rem);
  }
  .coffee-card {
    grid-template-columns: minmax(0, .9fr) minmax(clamp(280px, 24vw, 720px), 1.1fr);
    grid-template-rows: minmax(0, 1fr) auto auto;
    min-height: 0;
    height: clamp(380px, 43dvh, 880px);
    max-height: none;
    margin-top: clamp(14px, 2.2dvh, 42px);
  }
  .coffee-card-copy {
    padding: clamp(16px, 2dvh, 48px);
    padding-right: clamp(8px, 1vw, 24px);
  }
  .coffee-card-kicker {
    margin-bottom: clamp(6px, .8dvh, 16px);
    font-size: clamp(.58rem, min(.68vw, 1dvh), 1rem);
  }
  .coffee-card h3 {
    max-width: 10ch;
    font-size: clamp(2.2rem, min(4vw, 7dvh), 8rem);
  }
  .coffee-card-footer {
    grid-row: 2;
    padding: clamp(8px, 1dvh, 20px) clamp(16px, 2dvh, 48px);
    font-size: clamp(.56rem, min(.68vw, .95dvh), 1rem);
  }
  .espresso-cup-motion {
    grid-row: 1 / 3;
  }
  .coffee-card .coffee-card-benefits {
    grid-row: 3;
    padding-inline: clamp(16px, 2dvh, 48px);
    gap: clamp(8px, 1.2vw, 28px);
  }
  .coffee-card .coffee-card-benefits li {
    padding-block: clamp(6px, .9dvh, 16px);
    font-size: clamp(.68rem, min(.86vw, 1.2dvh), 1.2rem);
  }

  .closing-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100%, 1600px);
    max-width: 1600px;
    text-align: center;
  }
  .closing h2 {
    width: 100%;
    max-width: clamp(900px, 52vw, 1500px);
    margin-inline: auto;
    font-size: clamp(5rem, min(8.5vw, 13dvh), 12rem);
    line-height: 1.12;
    text-align: center;
    text-wrap: balance;
  }
  .closing-actions {
    align-self: center;
    width: 100%;
  }
  .closing-hero-copy::before,
  .closing-hero-copy::after {
    content: "";
    position: absolute;
    top: clamp(-96px, -4dvh, -64px);
    bottom: auto;
    width: clamp(54px, 4vw, 110px);
    height: 2px;
    border-radius: 999px;
  }
  .closing-hero-copy::before {
    left: calc(50% - 10px);
    transform: translateX(-100%);
    background: #db2736;
    box-shadow: 0 0 16px rgba(219, 39, 54, .34);
  }
  .closing-hero-copy::after {
    left: calc(50% + 10px);
    transform: none;
    background: #2458e8;
    box-shadow: 0 0 16px rgba(36, 88, 232, .34);
  }
  .closing .button {
    min-height: clamp(52px, 4dvh, 72px);
    padding-inline: clamp(24px, 2vw, 48px);
    font-size: clamp(.72rem, min(1vw, 1.35dvh), 1.15rem);
  }
}

@media (max-width: 720px) {
  :root { --page-x: 18px; }
  /* The fixed action bar overlays the dark closing/footer viewport. A body
     spacer created an exposed paper-coloured strip at maximum scroll. */
  body { padding-bottom: 0; }
  .topbar { top: 0; left: 0; right: auto; width: 100vw; height: 64px; padding: 8px 10px 8px 14px; background: rgba(11,18,21,.96); border-width: 0 0 1px; border-radius: 0; box-shadow: 0 12px 30px rgba(11,18,21,.3); }
  .topbar.is-scrolled { background: rgba(11,18,21,.98); border-color: rgba(255,255,255,.12); }
  .nav-links { top: 64px; left: 0; right: auto; width: 100vw; padding: 8px 12px 12px; border-width: 0 0 1px; border-radius: 0 0 16px 16px; }
  .site-language { height: 44px; }
  .site-language button { min-width: 42px; padding-inline: 7px; }
  .nav { gap: 7px; }
  .hero { min-height: var(--stable-viewport-h); height: auto; }
  .hero-media img { object-position: center center; }
  .hero::after { background: radial-gradient(circle at 88% 30%, rgba(42,78,255,.13), transparent 30%), radial-gradient(circle at 82% 72%, rgba(255,33,48,.1), transparent 34%), linear-gradient(0deg, rgba(7,13,16,.91) 0%, rgba(7,13,16,.48) 56%, rgba(7,13,16,.12) 100%); }
  .hero-inner { display: flex; align-items: center; padding: 112px 18px calc(86px + env(safe-area-inset-bottom)); }
  .hero-copy { padding-left: 17px; }
  .hero-copy::before { width: 3px; bottom: 5px; }
  .hero h1, .closing-hero h2 { max-width: 350px; font-size: clamp(4.15rem, 21vw, 5.6rem); line-height: 1.02; }
  html[lang="en"] .hero h1, html[lang="en"] .closing-hero h2 { font-size: clamp(3.05rem, 15.5vw, 4.15rem); }
  section[id], #hours { scroll-margin-top: 64px; }
  #prices { scroll-margin-top: calc(var(--header-h) + 24px); }
  .section { padding-block: 92px; }
  .section-head { display: block; margin-bottom: 48px; }
  .section-head h2, .lounge h2, .contact h2, .closing h2 { font-size: clamp(3.5rem, 16vw, 5.2rem); }
  .section-head > p:last-child { margin-top: 26px; }
  .services .section-head .section-kicker { margin-bottom: 18px; }
  .services {
    min-height: calc(var(--stable-viewport-h) - var(--header-h));
    padding-top: clamp(34px, 6svh, 58px);
    padding-bottom: calc(var(--action-bar-h) + clamp(18px, 4svh, 34px));
  }
  .services-editorial-layout { gap: clamp(22px, 4svh, 34px); }
  .services-stage {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto minmax(190px, 1fr);
    gap: 0;
    min-height: calc(var(--stable-viewport-h) - var(--header-h));
    margin: 0;
    padding: calc(86px + env(safe-area-inset-top)) 18px calc(90px + env(safe-area-inset-bottom));
    background:
      radial-gradient(ellipse at 28% 53%, rgba(255,27,51,.18), transparent 36%),
      radial-gradient(ellipse at 74% 59%, rgba(34,87,255,.19), transparent 39%),
      radial-gradient(circle at 50% 56%, rgba(221,232,255,.055), transparent 34%),
      linear-gradient(180deg, #0b1215 0%, #080e11 58%, #071013 100%);
  }
  .services-stage-copy { display: contents; }
  .services-stage-kicker-desktop { display: none; }
  .services-stage-copy > .services-stage-kicker-mobile { display: none; }
  .services-stage-copy > h1,
  .services-stage-copy > h2 { grid-row: 2; max-width: 420px; font-size: clamp(2.9rem, 11.8vw, 3.8rem); line-height: .93; }
  .services-stage-copy > h1 {
    grid-row: 2;
    width: 100%;
    max-width: 430px;
    justify-self: center;
    font-size: clamp(2rem, 8.8vw, 2.75rem);
    line-height: 1.02;
    text-align: center;
  }
  .pole-hero-title-desktop { display: none; }
  .pole-hero-title-mobile { display: block; white-space: pre-line; }
  .services-stage .walkin-note { grid-row: 3; margin: 10px 0 0; }
  .hours-disclosure-toggle {
    width: 100%;
    min-height: 62px;
    display: grid;
    grid-template-columns: 32px 1fr 18px;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: #fff;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 18px 40px rgba(0,0,0,.18);
    font: inherit;
    font-size: .82rem;
    font-weight: 820;
    letter-spacing: .1em;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
  }
  .hours-disclosure-toggle:focus-visible { outline: 3px solid var(--amber-bright); outline-offset: 3px; }
  .hours-toggle-icon { width: 32px; height: 32px; display: grid; place-items: center; color: var(--amber-bright); background: rgba(225,178,103,.1); border-radius: 9px; }
  .hours-toggle-icon svg { width: 18px; height: 18px; fill: currentColor; }
  .hours-toggle-chevron { width: 10px; height: 10px; justify-self: end; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-3px) rotate(45deg); transition: transform .22s ease; }
  .hours-disclosure-toggle[aria-expanded="true"] .hours-toggle-chevron { transform: translateY(3px) rotate(225deg); }
  .hours-disclosure-toggle[aria-expanded="false"] + .services-hours-panel { display: none; }
  .services-hours-panel { padding: 18px 4px 4px; }
  .services-hours-panel h3 { display: none; }
  .services-stage-actions { display: none; }
  .price-list { box-shadow: 0 24px 50px rgba(11,18,21,.17), inset 0 1px 0 rgba(255,255,255,.06); }
  .price-row { min-height: 66px; gap: 14px; padding: 11px 14px; }
  .price-item { grid-template-columns: 27px minmax(0, 1fr); gap: 9px; }
  .price-code { font-size: .53rem; }
  .price-name { font-size: .92rem; line-height: 1.25; }
  .price-row strong { min-width: 62px; }
  .price-value { font-size: 2.45rem; }
  .price-currency { margin-top: .14em; font-size: .82rem; }
  .price-row-featured { grid-template-columns: minmax(0, 1fr) 88px auto; min-height: 150px; margin-inline: 0; padding: 20px 14px; column-gap: 6px; }
  .price-row-featured .price-item { max-width: 155px; gap: 11px; }
  .price-row-featured .price-code { font-size: .58rem; }
  .price-row-featured .price-name { max-width: 155px; font-size: 1.08rem; line-height: 1.18; }
  .price-row-featured strong { min-width: 104px; }
  .price-row-featured .price-value { font-size: 4.55rem; }
  .price-row-featured .price-currency { margin-top: .2em; font-size: 1.2rem; }
  .price-scissors-visual { transform: translateX(4px); }
  .price-row-package { min-height: 124px; margin-inline: 0; padding: 15px 14px; }
  .price-row-package .price-name > small { font-size: .58rem; line-height: 1.5; }
  .price-disclosure-toggle { min-height: 60px; padding-inline: 14px; }
  .price-more.is-open { max-height: 720px; }
  .price-more .price-row { min-height: 64px; padding: 10px 14px; }
  .pole-feature { grid-row: 3; height: auto; min-height: 310px; margin: -2px -18px 0; background: transparent; overflow: visible; }
  .pole-feature::before { right: 50%; top: 50%; width: 112vw; height: 94%; transform: translate(50%, -50%); background: radial-gradient(circle, rgba(255,35,54,.23), rgba(52,84,255,.17) 45%, transparent 73%); filter: blur(18px); }
  .barber-pole-stage { width: min(390px, 94vw); margin: 0 auto; }
  .barber-pole-stage { --pole-axis-shift: clamp(18px, 5vw, 21px); }
  .barber-pole-hit-target { left: calc(50% + var(--pole-axis-shift)); top: 1%; bottom: 9%; width: clamp(92px, 34%, 140px); }
  .barber-pole-stage::before { left: calc(50% + var(--pole-axis-shift)); top: calc(50% - 24px); width: 61%; height: 82%; filter: blur(27px) saturate(1.4); }
  .barber-pole-canvas,
  .barber-pole-poster { transform: translate(var(--pole-axis-shift), -24px); }
  .barber-pole-hint {
    left: 50%;
    top: auto;
    bottom: 4px;
    display: block;
    padding: 7px 11px;
    font-size: .58rem;
    letter-spacing: .1em;
  }
  .barber-pole-stage.is-shop-closed:not(.is-closed-preview) .barber-pole-tap-hint {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 42px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: rgba(255,255,255,.42);
    transform: translateX(-50%);
    font-size: .5rem;
    font-weight: 720;
    letter-spacing: .11em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
  }
  .pole-countdown {
    left: 50%;
    bottom: 39px;
    width: min(306px, calc(100% - 32px));
    padding: 12px 15px 11px;
    border-left-width: 2px;
    border-radius: 12px;
    text-align: center;
    transform: translate3d(-50%, 22px, 0) scale(.97);
  }
  .pole-countdown.is-visible { transform: translate3d(-50%, 0, 0) scale(1); }
  .pole-countdown span { font-size: .56rem; }
  .pole-countdown strong { font-size: clamp(1.38rem, 6vw, 1.72rem); }
  .services-stage .hours h3 { margin-bottom: 6px; font-size: 1.2rem; }
  .services-stage .hours dl div { padding: 7px 0; }
  .lounge { padding: 0; background: #0b1014; }
  .lounge-image::after { background: linear-gradient(180deg, rgba(7,12,14,.68) 0 32%, rgba(7,12,14,.08) 48% 64%, rgba(8,12,16,.76) 80%, #0b1014 100%); }
  .lounge-image img { object-position: left 48%; }
  .lounge-copy {
    width: 100%;
    padding: clamp(10px, 1.7vh, 16px) 18px calc(clamp(10px, 1.7vh, 16px) + env(safe-area-inset-bottom, 0px));
  }
  .lounge .section-kicker { margin: 0 0 6px; font-size: .61rem; }
  .lounge h2 { font-size: clamp(3.05rem, 14.2vw, 4rem); line-height: 1.1; }
  .lounge-copy > p:not(.section-kicker) { max-width: 34rem; margin: 8px 0 0; font-size: clamp(.78rem, 3.25vw, .9rem); line-height: 1.35; }
  .coffee-card { --coffee-card-lower: clamp(6px, .8dvh, 7px); position: absolute; left: 18px; right: 18px; bottom: calc(var(--action-bar-h) - var(--coffee-card-lower)); width: auto; grid-template-columns: minmax(0, 1fr) clamp(102px, 30vw, 130px); min-height: 156px; height: clamp(156px, 22dvh, 168px); max-height: 168px; margin: 0; }
  .coffee-card-copy { padding: 10px 8px 9px 14px; }
  .coffee-card-kicker { margin-bottom: 5px; font-size: .53rem; }
  .coffee-card h3 { font-size: clamp(1.34rem, 6.4vw, 1.82rem); line-height: .92; }
  .coffee-card-footer { padding: 6px 14px; font-size: .47rem; }
  .coffee-card .coffee-card-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; padding: 0 14px; }
  .benefit-list li { padding: 6px 2px 6px 17px; font-size: clamp(.54rem, 2.15vw, .63rem); line-height: 1.14; }
  .benefit-list li::before { width: 9px; height: 9px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 72svh 58svh 66svh; gap: 10px; }
  .gallery-card, .gallery-card-tall { grid-row: auto; }
  .gallery-card-wide img { object-position: center; }
  .trust-band { justify-content: flex-start; gap: 22px; padding-block: 45px; }
  .trust-band > div { display: block; }
  .trust-band strong { font-size: 5.6rem; }
  .trust-band span { display: block; margin-top: 8px; font-size: .72rem; }
  .trust-band b { font-size: .87rem; }
  .contact-facts { grid-template-columns: 1fr; }
  .contact > * { min-width: 0; }
  .contact { padding-bottom: 0; }
  .contact h2 { font-size: clamp(3.05rem, 14vw, 4.5rem); }
  .contact-actions { margin-bottom: 46px; }
  .hours { margin-inline: -18px; }
  .services-stage .hours { margin-inline: 0; }
  .closing-shell { min-height: var(--stable-viewport-h); background: #060606; }
  .closing-hero { flex: 1 1 auto; min-height: 0; height: auto; display: grid; padding: 0; }
  .closing-hero-inner { min-height: 0; height: 100%; display: flex; align-items: center; padding: 40px 18px 34px; }
  .closing-hero-copy { padding-left: 0; }
  .closing-hero-copy::before { top: -22px; width: 96px; }
  .closing .section-kicker { margin-bottom: 14px; }
  .closing h2 { max-width: 350px; font-size: clamp(3.2rem, 14vw, 3.55rem); line-height: 1; }
  html[lang="en"] .closing h2 { font-size: clamp(2.8rem, 12.5vw, 3.2rem); }
  .closing-prompt { max-width: 310px; margin-top: 20px; font-size: .82rem; line-height: 1.45; }
  .closing-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
  .closing .button { min-height: 56px; margin-top: 0; padding-inline: 14px; font-size: .69rem; }
  .closing-call { display: inline-flex; color: #fff; border-color: rgba(255,255,255,.24); background: transparent; }
  .closing-cta-desktop { display: none; }
  .closing-cta-mobile { display: inline; }
  .footer { flex: 0 0 188px; min-height: 188px; height: 188px; grid-template-columns: 82px 1fr; grid-template-rows: auto auto; justify-items: start; gap: 18px; padding: 24px 18px calc(78px + env(safe-area-inset-bottom)); }
  .footer-brand { grid-row: 1 / span 2; width: 82px; height: 82px; }
  .footer-copy { align-self: end; }
  .footer p { color: rgba(255,255,255,.68); font-size: .76rem; }
  .footer small { align-self: start; }
  .footer small { display: none; }
  .footer-links { grid-column: 2; grid-row: 2; align-self: start; justify-self: start; display: flex; font-size: .74rem; }
  .agency-credit { margin-top: 8px; font-size: .72rem; }
  .agency-credit strong { font-size: .9rem; }
  .mobile-actions {
    position: fixed;
    z-index: 120;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 68px;
    display: grid;
    grid-template-columns: .9fr repeat(3, 1fr);
    padding: 6px 6px calc(6px + env(safe-area-inset-bottom));
    color: #fff;
    background: rgba(11,18,21,.96);
    border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 -14px 34px rgba(11,18,21,.32);
    backdrop-filter: blur(14px);
  }
  .mobile-actions :is(a, button) { min-width: 0; min-height: 54px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 0; color: rgba(255,255,255,.82); background: transparent; border: 0; text-decoration: none; border-radius: 10px; font: inherit; font-size: .61rem; font-weight: 760; letter-spacing: .02em; cursor: pointer; }
  .mobile-actions :is(a, button):focus-visible { outline: 3px solid var(--amber-bright); outline-offset: -3px; }
  .mobile-actions a:first-child { color: var(--ink); background: #d0a55f; }
  .mobile-actions svg { width: 20px; height: 20px; fill: currentColor; }
}

@media (max-width: 720px) and (max-height: 760px) {
  .services {
    padding-top: clamp(30px, 5svh, 38px);
    padding-bottom: calc(var(--action-bar-h) + 18px);
  }
  .services-editorial-layout { gap: 22px; }
  .services-stage { grid-template-rows: auto auto minmax(142px, 1fr); padding-top: calc(78px + env(safe-area-inset-top)); padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .services-stage-copy > .services-stage-kicker-mobile { margin-top: 8px; }
  .services-stage-copy > h1,
  .services-stage-copy > h2 { font-size: clamp(2.55rem, 11vw, 3.15rem); }
  .services-stage-copy > h1 { font-size: clamp(1.95rem, 8.6vw, 2.65rem); }
  .services-stage .hours h3 { margin-bottom: 4px; font-size: 1.08rem; }
  .services-stage .hours dl div { padding: 5px 0; }
  .pole-feature { min-height: 142px; margin-top: -10px; }
  .barber-pole-stage { width: min(248px, 68vw); }
}

@media (max-width: 720px) and (orientation: portrait) and (max-height: 680px) {
  .services {
    padding-top: 20px;
    padding-bottom: calc(var(--action-bar-h) + 10px);
  }
  .services-editorial-layout { gap: 16px; }
  .services .section-head h2 { font-size: clamp(2.95rem, 13vw, 3.15rem); }
  .services .section-head > p:last-child { margin-top: 15px; font-size: .93rem; }
  .price-row-featured { min-height: 138px; padding-block: 14px; }
  .price-disclosure-toggle { min-height: 54px; }
}

@media (max-width: 720px) and (orientation: portrait) {
  .services-stage {
    min-height: var(--stable-viewport-h);
    height: auto;
    grid-template-rows: auto auto minmax(0, 1fr);
    padding: calc(78px + env(safe-area-inset-top)) 18px calc(80px + env(safe-area-inset-bottom));
  }
  .pole-feature { min-height: 0; margin: 0 -18px; }
  .barber-pole-stage { width: min(342px, 88vw); }
}

@media (max-width: 390px) {
  .brand { width: 116px; }
  .site-language button { min-width: 38px; gap: 4px; padding-inline: 5px; }
  .hero h1 { font-size: clamp(3.8rem, 20vw, 5rem); }
  html[lang="en"] .hero h1 { font-size: clamp(2.85rem, 15vw, 3.8rem); }
}

/* iPhone Safari landscape: the CSS width falls into the tablet range while
   the visible height can be below 400px. Keep fixed chrome notch-safe and
   compact the CTA/footer pair so neither is squeezed behind the header. */
@media (orientation: landscape) and (max-width: 980px) and (max-height: 500px) {
  :root { --action-bar-h: calc(52px + env(safe-area-inset-bottom, 0px)); }
  .topbar {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding-left: max(14px, env(safe-area-inset-left));
    padding-right: max(10px, env(safe-area-inset-right));
    border-width: 0 0 1px;
    border-radius: 0;
  }
  .nav-links {
    top: 64px;
    left: 0;
    right: 0;
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
    border-radius: 0 0 16px 16px;
  }
  section[id], #hours, #prices { scroll-margin-top: 64px; }
  .barber-pole-stage.is-shop-closed:not(.is-closed-preview) .barber-pole-tap-hint {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 96px;
    bottom: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: rgba(255,255,255,.4);
    transform: translateX(-50%);
    font-size: .48rem;
    font-weight: 720;
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
  }
  .pole-countdown {
    top: 116px;
    bottom: auto;
    left: 26px;
    width: min(270px, 36vw);
    padding: 11px 14px 10px;
  }
  .pole-countdown strong { font-size: clamp(1.35rem, 3.2vw, 1.8rem); }
  .closing-shell {
    min-height: var(--stable-viewport-h);
  }
  .closing-hero-inner {
    padding: 68px max(24px, env(safe-area-inset-right)) 8px max(24px, env(safe-area-inset-left));
  }
  .closing h2 {
    max-width: 760px;
    font-size: clamp(2.1rem, 5vw, 3rem);
    line-height: .95;
  }
  .closing-actions { margin-top: 8px; }
  .closing .button { min-height: 38px; }
  .footer {
    flex-basis: 158px;
    min-height: 158px;
    height: 158px;
    padding: 10px max(var(--page-x), env(safe-area-inset-right)) calc(56px + env(safe-area-inset-bottom)) max(var(--page-x), env(safe-area-inset-left));
  }
  .footer-brand { width: 72px; height: 72px; }
  .mobile-actions {
    position: fixed;
    z-index: 120;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 52px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 4px max(6px, env(safe-area-inset-right)) calc(4px + env(safe-area-inset-bottom)) max(6px, env(safe-area-inset-left));
    color: #fff;
    background: rgba(11,18,21,.96);
    border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 -10px 26px rgba(11,18,21,.3);
    backdrop-filter: blur(14px);
  }
  .mobile-actions a {
    min-width: 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    border-radius: 9px;
    font-size: .65rem;
    font-weight: 760;
  }
  .mobile-actions a:first-child { color: var(--ink); background: var(--amber-bright); }
  .mobile-actions svg { width: 18px; height: 18px; flex: 0 0 18px; fill: currentColor; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .reveal-group.reveal > * { opacity: 1; transform: none; transition: none; }
  .barber-pole-hint { display: none; }
  .price-scissors-media { display: none; }
  .price-scissors-poster { display: block; }
  .price-scissors-visual.is-ready .price-scissors-poster { opacity: 0; }
}
