:root {
  --ink: #0f0d0b; --ink-2: #16130f; --ink-3: #1d1813;
  --line: rgba(239, 231, 216, 0.12); --line-strong: rgba(239, 231, 216, 0.28);
  --paper: #efe7d8; --paper-2: rgba(239, 231, 216, 0.70); --paper-3: rgba(239, 231, 216, 0.56);
  --brass: #c9893a; --brass-2: #e0a75a;
  --brass-ink: #1a1207;
  --stamp: #9e521e; /* 4.65:1 on the paper ticket */
  --ok: #7bbf7e;
  --err: #e8806d;
  --wa: #25d366;
  --tg: #2aabee;

  --font-display: "Unbounded", "Arial Black", Impact, sans-serif;
  --font-body: "Golos Text", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;

  --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;
  --section: var(--s-8);

  --wrap: 1180px;
  --gutter: 20px;
  --radius: 3px;
  --header-h: 64px;
  --bar-h: 68px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --grade: saturate(.66) sepia(.1) contrast(1.06) brightness(.96);
  --grade-hover: saturate(.9) contrast(1.04);
}

*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::after {
  content: ""; position: fixed; inset: -50%; z-index: 90; pointer-events: none;
  opacity: .055; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}
::selection { background: var(--brass); color: var(--brass-ink); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, dl, dd, dt, figure { margin: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; text-wrap: balance; }
h2 { font-size: clamp(1.95rem, 3.9vw, 3.05rem); }
h3 { font-size: 1.25rem; }
b { font-weight: 600; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
:focus-visible { outline: 2px solid var(--brass-2); outline-offset: 3px; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--brass); color: var(--brass-ink); padding: 8px 12px; }
.skip:focus { left: 8px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { position: relative; z-index: 1; padding: var(--section) 0; scroll-margin-top: var(--header-h); }
.section-alt { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: var(--s-6); }
.section-head h2 { max-width: 16ch; }
.section-head .lead { margin-top: var(--s-4); color: var(--paper-2); font-size: 1.06rem; max-width: 52ch; }
.kicker {
  font-family: var(--font-body); font-weight: 600; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brass); margin-bottom: var(--s-3); display: flex; align-items: flex-start; gap: 10px;
  font-variant-numeric: tabular-nums; text-wrap: balance;
}
.kicker::before { content: ""; flex: none; width: 22px; height: 1px; background: var(--brass); margin-top: .55em; }
@media (min-width: 860px) {
  :root { --section: var(--s-9); }
  .section-head { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); column-gap: var(--s-7); align-items: end; margin-bottom: var(--s-7); }
  .section-head .kicker { grid-column: 1 / -1; }
  .section-head .lead { margin: 0 0 .35em; }
  .section-head-row { grid-template-columns: minmax(0, 1fr) auto; }
}
@media (min-width: 1280px) { :root { --section: var(--s-10); } }

.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 44px; padding: 12px 20px; border-radius: var(--radius); border: 1px solid transparent;
  font-weight: 600; font-size: .95rem; line-height: 1; white-space: nowrap;
  transition: transform .18s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brass); color: var(--brass-ink); }
.btn-primary::before, .btn-dark::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--brass-2); transform: translateX(-101%); transition: transform .3s var(--ease); }
.btn-primary:hover::before, .btn-primary:focus-visible::before, .btn-dark:hover::before { transform: none; }
.btn-primary:disabled { opacity: .7; cursor: progress; }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--paper); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-2); background: rgba(201,137,58,.06); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark::before { background: #000; }
.btn-sm { min-height: 40px; padding: 9px 14px; font-size: .86rem; }
.btn-lg { min-height: 52px; padding: 16px 26px; font-size: 1.02rem; }
.btn svg { flex: none; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; background: none; border: 0; font-weight: 600; font-size: .9rem; color: var(--brass-2); position: relative; padding: 4px 0; min-height: 44px; }
.link-arrow::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 8px; height: 1px; background: var(--brass-2); transition: right .3s var(--ease); }
.link-arrow:hover::after { right: 0; }
.link-arrow svg { transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 13, 11, 0.82);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.site-header::before { content: ""; position: absolute; inset: 0; z-index: -1; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.site-header.is-condensed { --header-h: 54px; background: rgba(15, 13, 11, 0.94); }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: var(--header-h); transition: min-height .3s var(--ease); }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px; display: grid; place-items: center; flex: none;
  border: 1.5px solid var(--brass); color: var(--brass);
  font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; line-height: 1;
  transition: width .3s var(--ease), height .3s var(--ease);
}
.is-condensed .logo-mark { width: 30px; height: 30px; font-size: 1.25rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; letter-spacing: .02em; }
.logo-tag { font-size: .66rem; color: var(--paper-3); letter-spacing: .1em; text-transform: uppercase; transition: opacity .2s, max-height .3s; max-height: 1.2em; overflow: hidden; }
.is-condensed .logo-tag { opacity: 0; max-height: 0; }

.main-nav { display: none; gap: 26px; font-size: .92rem; color: var(--paper-2); }
.main-nav a { position: relative; padding: 6px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--brass); transition: right .3s var(--ease); }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--paper); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.nav-extra { display: none; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.lang { display: flex; align-items: center; gap: 2px; font-size: .78rem; color: var(--paper-3); }
.lang button { background: none; border: 0; min-height: 44px; padding: 6px 5px; color: var(--paper-3); font-weight: 600; letter-spacing: .06em; border-radius: 3px; transition: color .2s; }
.lang button[aria-pressed="true"] { color: var(--brass-2); }
.lang button:hover { color: var(--paper); }
.header-phone { display: none; align-items: center; gap: 8px; min-height: 44px; font-weight: 600; font-size: .92rem; color: var(--paper); font-variant-numeric: tabular-nums; white-space: nowrap; transition: color .2s; }
.header-phone:hover { color: var(--brass-2); }
.header-book { display: none; }
.burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; background: none; border: 0; width: 44px; height: 44px; padding: 0 8px; }
.burger span { width: 22px; height: 2px; background: var(--paper); transition: transform .3s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav.is-open {
  display: flex; flex-direction: column; gap: 0;
  position: fixed; left: 0; right: 0; top: var(--header-h); bottom: 0; z-index: 49;
  background: var(--ink-2); border-top: 1px solid var(--line);
  padding: var(--s-3) var(--gutter) var(--s-6);
  overflow-y: auto;
  animation: sheet .3s var(--ease);
}
@keyframes sheet { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.main-nav.is-open a { padding: 16px 0; font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--paper); border-bottom: 1px solid var(--line); }
.main-nav.is-open a::after { display: none; }
.main-nav.is-open .nav-extra { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: auto; padding-top: var(--s-6); font-family: var(--font-body); font-size: .95rem; color: var(--paper-2); }
.main-nav.is-open .nav-extra a { padding: 0; border: 0; font: inherit; font-weight: 600; color: var(--paper-2); }
.main-nav.is-open .nav-extra a.nav-book { flex-basis: 100%; min-height: 52px; padding: 0 20px; margin-bottom: 8px; font-size: 1rem; color: var(--brass-ink); }
body.nav-open { overflow: hidden; }

@media (min-width: 600px) { .header-book { display: inline-flex; } }
@media (min-width: 960px) {
  .main-nav { display: flex; }
  .burger { display: none; }
  .header-phone { display: inline-flex; padding: 0 6px; }
  .header-phone span { display: none; }
}
@media (min-width: 1100px) { .header-phone span { display: inline; } }
@media (max-width: 599px) {
  .header-row { gap: 8px; }
  .header-actions { gap: 4px; }
  .lang > span { display: none; }
  .lang button { padding: 6px 4px; font-size: .74rem; }
}

.hero { position: relative; z-index: 1; padding: var(--s-6) 0 var(--s-7); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 80%;
  background: radial-gradient(ellipse at 28% 25%, rgba(201,137,58,.14), transparent 62%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--s-6); }
.hero-copy, .hero-media { min-width: 0; }
.hero .kicker { margin-bottom: var(--s-4); }
.hero-title { font-size: clamp(2.7rem, 10.4vw, 6.6rem); font-weight: 800; line-height: .96; letter-spacing: -0.025em; margin: 0 0 var(--s-5); text-wrap: balance; }
.hero-title .accent { display: block; color: var(--brass); font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 1.22em; letter-spacing: -.01em; line-height: .95; margin-top: .02em; }
.hero-lead { font-size: 1.1rem; color: var(--paper-2); max-width: 44ch; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-top: var(--s-5); }
.hero-cta-sub { font-size: .84rem; color: var(--paper-3); }
.hero-stats { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: var(--s-4) var(--s-6); margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid var(--line); }
.hero-stats dt { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--paper); font-variant-numeric: tabular-nums; white-space: nowrap; }
.hero-stats dd { font-size: .78rem; color: var(--paper-3); letter-spacing: .03em; }
.hero-media { position: relative; aspect-ratio: 4 / 5; max-height: 520px; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; filter: var(--grade); }
.hero-media::after { content: ""; position: absolute; inset: 14px -14px -14px 14px; z-index: -1; border: 1px solid var(--brass); opacity: .55; }
.hero-tag { display: none; }
.hero-badge {
  position: absolute; left: 14px; bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(15,13,11,.86); border: 1px solid var(--line-strong);
  padding: 8px 12px; font-size: .8rem; font-weight: 500; backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(123,191,126,.22); }

@media (min-width: 720px) {
  .hero { padding: var(--s-7) 0; }
  .hero-media { aspect-ratio: 16 / 10; max-height: none; }
  .hero-media img { object-position: 50% 35%; }
}
@media (min-width: 960px) {
  .hero { padding: var(--s-8) 0 var(--s-9); }
  .hero-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--s-5); align-items: center; }
  .hero-copy { grid-column: 1 / 8; position: relative; z-index: 2; }
  .hero-title { margin-right: -32%; }
  .hero-media {
    grid-column: 8 / 13; aspect-ratio: 4 / 5; z-index: 1; max-height: 720px; margin-right: calc(-1 * ((100vw - min(100vw, var(--wrap))) / 2 + var(--gutter)));
  }
  html:lang(ky) .hero-title { font-size: clamp(2.7rem, 8.2vw, 5.6rem); }
  .hero-media img { object-position: 50% 28%; }
  .hero-media::after { inset: 18px auto -18px -18px; width: 60%; }
  .hero-tag {
    position: absolute; left: -32px; bottom: 0;
    writing-mode: vertical-rl; transform: rotate(180deg);
    font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--paper-3);
    white-space: nowrap; font-variant-numeric: tabular-nums;
  }
  .hero-badge { left: auto; right: calc((100vw - min(100vw, var(--wrap))) / 2 + var(--gutter)); bottom: 18px; }
}
@media (min-width: 1280px) { .hero-tag { display: block; } }
@media (min-width: 1440px) { .hero-title { font-size: 7.2rem; } .hero-media { aspect-ratio: auto; height: 720px; } }

.js .reveal { opacity: 0; transform: translateY(18px); animation: rise .55s var(--ease) forwards; }
.js .hero-title.reveal { animation-delay: .1s; }
.js .hero-lead.reveal { animation-delay: .2s; }
.js .hero-cta.reveal { animation-delay: .26s; }
.js .hero-stats.reveal { animation-delay: .32s; }
.js .hero-media.reveal { animation-delay: .16s; }
@keyframes rise { to { opacity: 1; transform: none; } }

.ticker { position: relative; z-index: 1; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--brass); color: var(--brass-ink); }
.ticker-track { display: flex; width: max-content; animation: ticker 34s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-half { display: flex; align-items: center; gap: 28px; padding: 12px 28px 12px 0; font-family: var(--font-display); font-weight: 600; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.ticker-half .star { opacity: .55; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.price-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.price-row {
  position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 2px var(--s-4); align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.price-row:hover { background: rgba(239,231,216,.025); }
.price-name { grid-column: 1; grid-row: 1; font-weight: 600; font-size: 1.02rem; transition: color .2s; }
.price-row:hover .price-name { color: var(--brass-2); }
.price-note { grid-column: 1; grid-row: 2; font-size: .84rem; color: var(--paper-3); text-wrap: pretty; }
.choice-label small { text-wrap: pretty; }
.price-amount { grid-column: 2; grid-row: 1; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--brass-2); white-space: nowrap; text-align: right; font-variant-numeric: tabular-nums; }
.price-dur { grid-column: 2; grid-row: 2; font-size: .78rem; color: var(--paper-3); text-align: right; font-variant-numeric: tabular-nums; }
.price-book { grid-column: 3; grid-row: 1 / span 2; align-self: center; }
.price-book::after { content: ""; position: absolute; inset: 0; } .price-book .t { display: none; }
@media (max-width: 959px) { .price-book { width: 44px; min-height: 44px; padding: 0; } }
@media (min-width: 720px) { .price-row { padding: 16px 0; } }
@media (min-width: 960px) {
  .price-list { grid-template-columns: 1fr 1fr; column-gap: var(--s-7); }
  .price-book { opacity: .7; transition: opacity .2s, border-color .2s, color .2s, background .2s; }
  .price-book .t { display: inline; }
  .price-row:hover .price-book { opacity: 1; }
}

.barbers-grid { display: grid; gap: var(--s-6) var(--s-5); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.barber-card { display: flex; flex-direction: column; }
.barber-photo { aspect-ratio: 3 / 4; overflow: hidden; position: relative; background: var(--ink-3); }
.barber-photo img { width: 100%; height: 100%; object-fit: cover; filter: var(--grade); transition: transform .7s var(--ease), filter .5s var(--ease); }
.barber-photo::after { content: ""; position: absolute; inset: 0; background: var(--brass); mix-blend-mode: color; opacity: .18; transition: opacity .5s var(--ease); pointer-events: none; }
.barber-card:hover .barber-photo img { transform: scale(1.03); filter: var(--grade-hover); }
.barber-card:hover .barber-photo::after { opacity: 0; }
.barber-body { padding-top: var(--s-4); display: flex; flex-direction: column; gap: 4px; flex: 1; border-top: 1px solid var(--line); margin-top: var(--s-3); }
.barber-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.barber-body h3 { font-size: 1.2rem; }
.barber-exp { font-size: .74rem; color: var(--paper-3); letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; font-variant-numeric: tabular-nums; }
.barber-exp b { color: var(--brass-2); font-weight: 600; }
.barber-spec { font-size: .92rem; color: var(--paper-2); flex: 1; }
.barber-body .link-arrow { margin-top: 2px; align-self: flex-start; }
@media (min-width: 860px) { .barbers-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 420px) { .barber-head { flex-direction: column; gap: 2px; } }

.booking { position: relative; display: grid; gap: var(--s-6); align-items: start; }
.booking-main { min-width: 0; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; margin-bottom: var(--s-5); }
.step { display: flex; align-items: center; gap: 8px; width: 100%; background: none; border: 0; border-bottom: 2px solid var(--line); padding: 0 0 10px; font-size: .82rem; color: var(--paper-3); text-align: left; cursor: default; transition: color .25s, border-color .25s; }
.step-n { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 1px solid currentColor; display: grid; place-items: center; font-size: .72rem; font-weight: 600; transition: background .25s, color .25s; }
.step[aria-current="step"] { color: var(--brass-2); border-bottom-color: var(--brass); }
.step.is-done { color: var(--paper); border-bottom-color: var(--paper-2); cursor: pointer; }
.step.is-done .step-n { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.step.is-done:not(:disabled):hover { color: var(--brass-2); }
.panel { display: none; border: 0; padding: 0; margin: 0; min-width: 0; }
.panel.is-active { display: block; animation: slide-r .3s var(--ease); }
[data-dir="back"] .panel.is-active { animation-name: slide-l; }
@keyframes slide-r { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
@keyframes slide-l { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: none; } }
.panel-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: var(--s-5); flex-wrap: wrap; }
/* phones: step 1 is ten rows long — keep «Далее» in reach instead of below the list */
@media (max-width: 719px) {
  .panel:not(.panel-done) .panel-actions { position: sticky; bottom: 0; z-index: 3; margin-inline: calc(-1 * var(--gutter)); padding: 14px var(--gutter) calc(14px + env(safe-area-inset-bottom)); background: linear-gradient(rgba(15,13,11,0), var(--ink) 30%); }
}

.choice-grid { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
.choice { position: relative; min-width: 0; }
.choice input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.choice-label {
  display: grid; grid-template-columns: 18px minmax(0, 1fr) auto; grid-template-rows: auto auto; gap: 1px 14px; align-items: center;
  padding: 13px 4px; border-bottom: 1px solid var(--line); min-height: 64px;
  transition: background .2s, color .2s;
}
.choice-dot { grid-row: 1 / span 2; width: 16px; height: 16px; border-radius: 50%; border: 1px solid var(--line-strong); position: relative; transition: border-color .2s; }
.choice-dot::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--brass); transform: scale(0); transition: transform .25s var(--ease); }
.choice-label b { grid-column: 2; font-weight: 600; transition: color .2s; }
.choice-label small { grid-column: 2; color: var(--paper-3); font-size: .8rem; }
.choice-label .choice-price { grid-column: 3; grid-row: 1 / span 2; font-family: var(--font-display); font-weight: 600; color: var(--brass-2); font-size: .95rem; white-space: nowrap; font-variant-numeric: tabular-nums; }
.choice:hover .choice-label { background: rgba(239,231,216,.025); }
.choice input:checked + .choice-label { background: rgba(201,137,58,.07); }
.choice input:checked + .choice-label b { color: var(--brass-2); }
.choice input:checked + .choice-label .choice-dot { border-color: var(--brass); }
.choice input:checked + .choice-label .choice-dot::after { transform: scale(1); }
.choice input:focus-visible + .choice-label { outline: 2px solid var(--brass-2); outline-offset: -2px; }
.choice-barber .choice-label { grid-template-columns: 18px 48px minmax(0, 1fr); }
.choice-barber img, .choice-barber .any-avatar { grid-column: 2; grid-row: 1 / span 2; width: 48px; height: 48px; border-radius: 50%; object-fit: cover; filter: var(--grade); }
.choice-barber .any-avatar { border: 1px dashed var(--line-strong); display: grid; place-items: center; color: var(--brass); font-family: var(--font-serif); font-style: italic; font-size: 1.4rem; }
.choice-barber b, .choice-barber small { grid-column: 3; }
@media (min-width: 720px) { .choice-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); column-gap: var(--s-6); } }

.field-label { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--paper-3); margin: var(--s-5) 0 var(--s-3); display: flex; justify-content: space-between; gap: 12px; }
.field-label:first-child { margin-top: 0; }
.field-label .free { color: var(--ok); letter-spacing: .04em; text-transform: none; font-variant-numeric: tabular-nums; }
.day-strip { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 6px; }
.day { position: relative; min-width: 0; }
.day input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.day-label { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 10px 2px 8px; border: 1px solid var(--line-strong); background: var(--ink-2); font-size: .68rem; color: var(--paper-3); text-transform: uppercase; letter-spacing: .04em; transition: border-color .2s, background .2s; }
.day-label b { font-family: var(--font-display); font-size: 1.05rem; color: var(--paper); font-weight: 600; font-variant-numeric: tabular-nums; }
.day-label i { font-style: normal; font-size: .6rem; color: var(--brass-2); max-width: 100%; text-transform: none; letter-spacing: 0; white-space: nowrap; overflow: hidden; }
.day:hover .day-label { border-color: var(--paper-3); }
.day.is-full .day-label b { opacity: .35; text-decoration: line-through; }
.day input:checked + .day-label { border-color: var(--brass); background: rgba(201,137,58,.1); box-shadow: inset 0 0 0 1px var(--brass); }
.day input:focus-visible + .day-label { outline: 2px solid var(--brass-2); outline-offset: 2px; }
@media (max-width: 479px) { .day-label i { display: none; } .day-label { padding: 8px 2px; } }

.slot-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
.slot { position: relative; min-width: 0; }
.slot input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.slot-label { display: block; text-align: center; padding: 11px 4px; border: 1px solid var(--line-strong); background: var(--ink-2); font-size: .9rem; font-variant-numeric: tabular-nums; transition: border-color .2s, background .2s, color .2s, transform .2s var(--ease); }
.slot:hover .slot-label { border-color: var(--paper-3); }
.slot input:checked + .slot-label { border-color: var(--brass); background: var(--brass); color: var(--brass-ink); font-weight: 600; }
.slot input:disabled + .slot-label { opacity: .26; text-decoration: line-through; }
.slot input:disabled { cursor: not-allowed; }
.slot.is-held .slot-label, .slot.is-held input:disabled + .slot-label { border-color: var(--brass); background: rgba(201,137,58,.16); color: var(--brass-2); opacity: 1; text-decoration: none; transition-delay: calc(var(--i, 0) * .07s); }
.slot input:focus-visible + .slot-label { outline: 2px solid var(--brass-2); outline-offset: 2px; }
.slot-empty { grid-column: 1 / -1; color: var(--paper-3); font-size: .9rem; padding: 12px 0; }
@media (min-width: 560px) { .slot-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
@media (min-width: 720px) { .slot-grid { grid-template-columns: repeat(10, minmax(0, 1fr)); } }
@media (min-width: 960px) { .slot-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .slot-grid { grid-template-columns: repeat(10, minmax(0, 1fr)); } }

.contact-block { margin-top: var(--s-5); padding-top: var(--s-5); border-top: 1px solid var(--line); }
.contact-block h3 { margin-bottom: var(--s-4); font-size: 1rem; }
.field-row { display: grid; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: .84rem; color: var(--paper-2); }
.field input {
  width: 100%; min-height: 48px; padding: 12px 14px; background: var(--ink-2); border: 1px solid var(--line-strong); color: var(--paper);
  font: inherit; border-radius: var(--radius); transition: border-color .2s, box-shadow .2s; font-variant-numeric: tabular-nums;
}
.field input::placeholder { color: var(--paper-3); }
.field input:focus { border-color: var(--brass); outline: none; box-shadow: 0 0 0 3px rgba(201,137,58,.18); }
.field input[aria-invalid="true"] { border-color: var(--err); }
.form-error { color: var(--err); font-size: .82rem; margin-top: 4px; }
@media (min-width: 720px) { .field-row { grid-template-columns: 1fr 1fr; } }

.panel-done { padding: var(--s-4) 0 var(--s-2); }
.panel-done h3 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: var(--s-3); font-weight: 800; }
.panel-done h3 .accent { color: var(--brass); font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 1.15em; }
.panel-done > p { color: var(--paper-2); max-width: 46ch; }
.panel-done .panel-actions { justify-content: flex-start; }

.ticket {
  position: relative; background: var(--paper); color: var(--ink); padding: 22px 22px 18px;
  font-variant-numeric: tabular-nums;
  mask: radial-gradient(circle at 50% 0, #0000 6px, #000 6.6px) 0 0 / 24px 100% repeat-x,
        radial-gradient(circle at 50% 100%, #0000 6px, #000 6.6px) 0 0 / 24px 100% repeat-x;
  mask-composite: intersect;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.8);
}
.ticket-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 6px 0 12px; border-bottom: 2px solid var(--ink); }
.ticket-brand { font-family: var(--font-display); font-weight: 800; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.ticket-no { font-size: .74rem; letter-spacing: .08em; color: rgba(15,13,11,.6); white-space: nowrap; }
.ticket-title { margin: 14px 0 8px; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(15,13,11,.55); }
.ticket-rows { display: grid; gap: 0; }
.ticket-row { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 10px; align-items: baseline; padding: 8px 0; border-bottom: 1px dotted rgba(15,13,11,.3); }
.ticket-row dt { font-size: .8rem; color: rgba(15,13,11,.6); }
.ticket-row dd { text-align: right; font-size: .95rem; color: rgba(15,13,11,.6); min-width: 0; overflow-wrap: anywhere; }
.ticket-row.is-set dd { color: var(--ink); font-weight: 600; }
.ticket-row.is-flash dd { animation: fill .6s var(--ease); }
@keyframes fill { from { background: rgba(201,137,58,.35); color: var(--stamp); } to { background: transparent; } }
.ticket-total { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 14px 0 4px; font-family: var(--font-display); font-weight: 600; font-size: .9rem; }
.ticket-total b { font-size: 1.25rem; font-weight: 800; }
.ticket-tear { position: relative; height: 0; border-top: 2px dashed rgba(15,13,11,.35); margin: 14px -22px 14px; }
.ticket-tear::before, .ticket-tear::after { content: ""; position: absolute; top: -11px; width: 20px; height: 20px; border-radius: 50%; background: var(--ink); }
.ticket-tear::before { left: -10px; }
.ticket-tear::after { right: -10px; }
.ticket-foot { font-size: .8rem; color: rgba(15,13,11,.62); max-width: 30ch; margin-right: 48%; }
.ticket-barcode { margin-top: 14px; height: 30px; background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 4px, var(--ink) 4px 5px, transparent 5px 8px, var(--ink) 8px 11px, transparent 11px 13px, var(--ink) 13px 14px, transparent 14px 18px); opacity: .85; }
.ticket-stamp {
  position: absolute; right: 14px; bottom: 74px; padding: 5px 10px;
  border: 3px double var(--stamp); color: var(--stamp); border-radius: 4px;
  font-family: var(--font-display); font-weight: 800; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
  transform: rotate(-11deg) scale(1.5); opacity: 0; pointer-events: none;
}
.is-stamped .ticket-stamp { animation: stamp .45s var(--ease) .25s forwards; }
@keyframes stamp { from { opacity: 0; transform: rotate(-11deg) scale(1.5); } 70% { opacity: 1; } to { opacity: .92; transform: rotate(-11deg) scale(1); } }
.is-stamped .ticket { animation: settle .5s var(--ease); }
@keyframes settle { 40% { transform: translateY(2px); } }
.booking.is-done .ticket { order: -1; }
.booking.is-done .steps { display: none; }
.step.is-done:disabled { cursor: default; color: var(--paper); }
@media (min-width: 720px) {
  .booking { grid-template-columns: minmax(0, 1fr) 320px; }
  .ticket { position: sticky; top: calc(var(--header-h) + 20px); }
  .booking.is-done .ticket { order: 0; }
  .booking.is-done .steps { display: grid; }
}
@media (min-width: 720px) and (max-width: 959px) {
  .choice-grid, .field-row { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .day-label i { display: none; }
}
@media (min-width: 960px) { .booking { gap: var(--s-7); } }
@media (min-width: 1100px) { .booking { gap: var(--s-8); } }

.gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; padding: 0 var(--gutter); max-width: var(--wrap); margin: 0 auto; }
.gallery li { overflow: hidden; aspect-ratio: 1; background: var(--ink-3); position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .5s var(--ease); filter: var(--grade); }
.gallery li::after { content: ""; position: absolute; inset: 0; background: var(--brass); mix-blend-mode: color; opacity: .18; transition: opacity .5s var(--ease); pointer-events: none; }
.gallery li:hover img { transform: scale(1.03); filter: var(--grade-hover); }
.gallery li:hover::after { opacity: 0; }
@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; grid-auto-flow: dense; }
  .gallery li { aspect-ratio: auto; }
  .g-tall { grid-row: span 2; }
  .g-wide { grid-column: span 2; }
}
@media (min-width: 1100px) { .gallery { grid-auto-rows: 240px; } }

.reviews-source { color: var(--paper-2); font-size: .92rem; font-variant-numeric: tabular-nums; }
.stars { color: var(--brass); letter-spacing: .1em; }
.reviews { display: grid; gap: var(--s-5) var(--s-6); }
.review { position: relative; padding-top: var(--s-4); border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: var(--s-4); }
.review-text { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 1.35rem; line-height: 1.32; color: var(--paper); flex: 1; text-wrap: pretty; }
.review-who { display: flex; flex-direction: column; font-size: .82rem; color: var(--paper-3); }
.review-who b { color: var(--paper); font-weight: 600; font-size: .9rem; }
.review-who b::before { content: "— "; color: var(--brass); }
@media (min-width: 720px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .reviews { grid-template-columns: repeat(4, 1fr); } .review-text { font-size: 1.25rem; } }

.contacts-grid { display: grid; gap: var(--s-6); }
.contacts-grid .section-head { display: block; margin-bottom: 0; }
.contacts-grid .section-head .lead { margin-top: var(--s-4); }
.contact-list { display: grid; gap: var(--s-5); }
.contact-list > div { padding-top: var(--s-4); border-top: 1px solid var(--line); }
.contact-list dt { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); margin-bottom: 6px; }
.contact-list dd { color: var(--paper); font-size: 1.02rem; font-variant-numeric: tabular-nums; }
.map-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s-3); }
.big-link { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; font-variant-numeric: tabular-nums; transition: color .2s; }
.big-link:hover { color: var(--brass-2); }
.hours-table { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; margin-top: 6px; font-size: .95rem; }
.hours-table span:nth-child(odd) { color: var(--paper-3); }
@media (min-width: 860px) { .contacts-grid { grid-template-columns: 1fr 1.2fr; align-items: start; } }

.faq-grid { display: grid; gap: var(--s-5); }
.faq-grid .section-head { display: block; margin-bottom: 0; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; font-weight: 600; font-size: 1.02rem; transition: color .2s; }
.faq summary:hover { color: var(--brass-2); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; width: 28px; height: 28px; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--brass); font-weight: 400; transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 18px; color: var(--paper-2); max-width: 62ch; animation: rise .4s var(--ease); }
@media (min-width: 860px) { .faq-grid { grid-template-columns: 1fr 1.4fr; align-items: start; } }

.cta-band { position: relative; z-index: 1; background: var(--brass); color: var(--brass-ink); padding: var(--s-7) 0; overflow: hidden; }
.cta-band::before { content: "✂"; position: absolute; right: -2%; top: 50%; transform: translateY(-50%) rotate(-20deg); font-size: 18rem; line-height: 1; opacity: .08; pointer-events: none; }
.cta-inner { position: relative; display: flex; flex-direction: column; gap: var(--s-5); align-items: flex-start; }
.cta-inner h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; }
.cta-inner p { margin-top: 8px; opacity: .82; }
@media (min-width: 720px) { .cta-inner { flex-direction: row; justify-content: space-between; align-items: center; } }

.site-footer { position: relative; z-index: 1; padding: var(--s-7) 0 calc(var(--s-6) + var(--bar-h)); border-top: 1px solid var(--line); background: var(--ink-2); font-size: .92rem; }
.footer-grid { display: grid; gap: var(--s-6); }
.footer-brand p { margin-top: var(--s-4); color: var(--paper-2); max-width: 36ch; }
.site-footer h3 { font-family: var(--font-body); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); margin-bottom: var(--s-3); }
.footer-links { display: flex; flex-direction: column; gap: 8px; color: var(--paper-2); }
.footer-links a { position: relative; transition: color .2s; }
.footer-links a:hover { color: var(--brass-2); }
.footer-bottom { margin-top: var(--s-6); padding-top: var(--s-4); background: linear-gradient(var(--line), var(--line)) var(--gutter) 0 / calc(100% - 2 * var(--gutter)) 1px no-repeat; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; font-size: .8rem; color: var(--paper-3); }
.muted { color: var(--paper-3); }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
@media (min-width: 960px) { .site-footer { padding-bottom: var(--s-7); } }

.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: flex; gap: 8px; align-items: center;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(15,13,11,.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transition: transform .35s var(--ease), opacity .3s;
}
.mobile-bar.is-hidden { transform: translateY(110%); opacity: 0; pointer-events: none; }
.mobile-bar .btn-primary { flex: 1; }
.bar-icon { flex: none; width: 48px; height: 48px; border-radius: var(--radius); display: grid; place-items: center; border: 1px solid var(--line-strong); color: var(--paper); transition: border-color .2s, color .2s; }
.bar-icon:hover { border-color: var(--brass); color: var(--brass-2); }
.bar-icon.wa { color: var(--wa); border-color: rgba(37,211,102,.45); }
.float { display: none; position: fixed; right: 20px; bottom: 20px; z-index: 40; flex-direction: column; gap: 10px; transition: transform .35s var(--ease), opacity .3s; }
.float.is-hidden { transform: translateY(24px); opacity: 0; pointer-events: none; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 10px 28px rgba(0,0,0,.5); transition: transform .25s var(--ease), box-shadow .25s; }
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,.6); }
.float-wa { background: var(--wa); }
.float-tg { background: var(--tg); }
@media (min-width: 960px) {
  .mobile-bar { display: none; }
  .float { display: flex; }
}
@media (min-width: 960px) and (max-width: 1339px) { .float { right: 12px; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-delay: 0s !important; transition-duration: 0.01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
  .is-stamped .ticket-stamp { animation: none; opacity: .92; transform: rotate(-11deg); }
}
