@charset "utf-8";

/* ============================================================
   Doni Coiffeur — Ueberlandstrasse 299, 8051 Zürich
   ============================================================ */

/* ---- fonts (self-hosted, no third-party requests) ---------- */
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('/assets/fonts/instrument-serif-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('/assets/fonts/instrument-serif-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF,
                 U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic; font-weight: 400; font-display: swap;
  src: url('/assets/fonts/instrument-serif-italic-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Schibsted Grotesk';
  font-style: normal; font-weight: 400 700; font-display: swap;
  src: url('/assets/fonts/schibsted-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Schibsted Grotesk';
  font-style: normal; font-weight: 400 700; font-display: swap;
  src: url('/assets/fonts/schibsted-grotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF,
                 U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---- tokens ------------------------------------------------ */
:root {
  --ink:      #0b0b0c;
  --ink-2:    #101012;
  --ink-3:    #17171a;
  --paper:    #f1eee8;
  --paper-2:  #e6e2da;
  --mute:     #8d8b86;
  --gold:     #d8b465;

  --fg: var(--paper);
  --bg: var(--ink);
  --line: color-mix(in srgb, var(--fg) 14%, transparent);
  --line-soft: color-mix(in srgb, var(--fg) 8%, transparent);
  --dim: color-mix(in srgb, var(--fg) 62%, transparent);

  --serif: 'Instrument Serif', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --sans: 'Schibsted Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --gut: clamp(20px, 5vw, 64px);
  --maxw: 1280px;
  --sec-y: clamp(76px, 11vw, 168px);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --head-h: 76px;
}

/* ---- reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, p, ul, figure, blockquote { margin: 0; }
ul { list-style: none; padding: 0; }
address { font-style: normal; }

::selection { background: var(--paper); color: var(--ink); }

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

.skip {
  position: fixed; top: 10px; left: 10px; z-index: 999;
  padding: 12px 18px; background: var(--paper); color: var(--ink);
  border-radius: 999px; font-weight: 600; font-size: 14px;
  transform: translateY(-160%); transition: transform .2s var(--ease);
}
.skip:focus { transform: none; }

/* ---- layout ------------------------------------------------ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.wrap--narrow { max-width: 820px; }
.sec { padding-block: var(--sec-y); position: relative; }

/* ---- type -------------------------------------------------- */
.eyebrow {
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dim);
}

.sechead {
  display: flex; align-items: baseline; gap: 14px;
  padding-bottom: 18px; margin-bottom: clamp(34px, 5vw, 60px);
  border-bottom: 1px solid var(--line);
}
.sechead--c { justify-content: center; }
.sechead__idx {
  font-family: var(--serif); font-size: 15px;
  color: var(--dim); font-variant-numeric: tabular-nums;
}
.sechead__label {
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
}

.sec__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.1rem, 5.4vw, 4.1rem);
  line-height: 1.02; letter-spacing: -.018em;
  text-wrap: balance;
}
.sec__title--c { text-align: center; }
.sec__note { margin-top: 26px; font-size: 14.5px; color: var(--dim); max-width: 48ch; }

.link {
  display: inline-block; font-size: 15px; font-weight: 500;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.link::after { content: ' \2197'; font-size: .9em; }
.link:hover { border-bottom-color: currentColor; }

/* ---- buttons ----------------------------------------------- */
.btn {
  --btn-bg: var(--paper); --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--btn-bg); color: var(--btn-fg);
  padding: 13px 22px; border-radius: 999px;
  font-size: 15px; font-weight: 600; letter-spacing: -.01em;
  white-space: nowrap;
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 16px 30px; font-size: 16.5px; }
.btn--block { display: flex; width: 100%; }
.btn__ico { width: 19px; height: 19px; fill: currentColor; flex: none; }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--fg);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--fg) 26%, transparent);
}
.btn--ghost:hover { --btn-bg: color-mix(in srgb, var(--fg) 10%, transparent); }

/* ---- header ------------------------------------------------ */
.head {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background-color .35s var(--ease), backdrop-filter .35s var(--ease),
              border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.head.is-stuck {
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line-soft);
}
.head__in {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut);
  height: var(--head-h);
  display: flex; align-items: center; gap: 24px;
}

.brand { display: flex; align-items: center; gap: 13px; flex: none; }
/* the scissors from the original logo, keyed out of its black plate */
.brand__mark { display: block; width: 58px; height: auto; }
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif); font-size: 22px; letter-spacing: .01em; text-transform: uppercase;
}
.brand__sub {
  font-size: 9.5px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--dim); margin-top: 3px;
}

.nav { display: flex; gap: 30px; margin-inline: auto; }
.nav__link {
  font-size: 14.5px; font-weight: 500; color: var(--dim);
  position: relative; padding-block: 4px;
  transition: color .25s var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav__link:hover { color: var(--paper); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.head__end { display: flex; align-items: center; gap: 14px; flex: none; }

.lang { display: flex; align-items: center; gap: 2px; }
.lang__opt {
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--dim); padding: 5px 8px; border-radius: 999px;
  transition: color .25s var(--ease), background-color .25s var(--ease);
}
.lang__opt:hover { color: var(--paper); }
.lang__opt.is-active { color: var(--paper); background: color-mix(in srgb, var(--paper) 12%, transparent); }
.lang--big .lang__opt { font-size: 15px; padding: 10px 16px; }

.burger { display: none; width: 40px; height: 40px; position: relative; }
.burger span {
  position: absolute; left: 9px; width: 22px; height: 1.5px; background: var(--paper);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.burger[aria-expanded='true'] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* ---- mobile drawer ----------------------------------------- */
.drawer {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink);
  padding: calc(var(--head-h) + 30px) var(--gut) 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; transition: opacity .3s var(--ease);
}
.drawer[hidden] { display: none; }
.drawer.is-open { opacity: 1; }
.drawer__nav { display: flex; flex-direction: column; gap: 6px; }
.drawer__nav .nav__link {
  font-family: var(--serif); font-size: clamp(2rem, 9vw, 3rem);
  color: var(--paper); line-height: 1.2;
}
.drawer__nav .nav__link::after { display: none; }
.drawer__foot { display: flex; flex-direction: column; gap: 18px; }

/* ---- hero -------------------------------------------------- */
.hero {
  position: relative; isolation: isolate;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--head-h) + 60px) 0 clamp(28px, 5vw, 56px);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background-color: #08080a;
  /* Three layers: bottom-up for the text block, left-to-right so the headline
     keeps contrast, and a top band so the header stays legible over the photo. */
  background-image:
    linear-gradient(to top, rgba(8,8,10,.97) 6%, rgba(8,8,10,.74) 40%, rgba(8,8,10,.5) 100%),
    linear-gradient(to right, rgba(8,8,10,.88) 0%, rgba(8,8,10,.5) 52%, rgba(8,8,10,.24) 100%),
    linear-gradient(to bottom, rgba(8,8,10,.72) 0%, rgba(8,8,10,0) 22%),
    url('/assets/img/salon-razors.jpg');
  background-size: cover;
  background-position: 58% 42%;
  animation: heroIn 1.6s var(--ease) both;
}
@keyframes heroIn { from { transform: scale(1.07); opacity: .5; } to { transform: none; opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .hero__bg { animation: none; } }

.hero__in { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); width: 100%; }
.hero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.9rem, 8.6vw, 7.2rem);
  line-height: .96; letter-spacing: -.025em;
  margin: 18px 0 0;
  display: flex; flex-direction: column;
}
.hero__title em { font-style: italic; color: color-mix(in srgb, var(--paper) 88%, var(--gold)); }
.hero__lead {
  margin-top: 24px; max-width: 46ch;
  font-size: clamp(16px, 1.5vw, 18.5px);
  color: color-mix(in srgb, var(--paper) 78%, transparent);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.status {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 26px; padding: 7px 15px 7px 12px;
  border-radius: 999px; border: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 5%, transparent);
  font-size: 13.5px; font-weight: 500;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.status__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--mute); flex: none;
}
.status.is-open .status__dot {
  background: #4ec87a;
  box-shadow: 0 0 0 0 rgba(78, 200, 122, .6);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 7px rgba(78, 200, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(78, 200, 122, 0); }
}
@media (prefers-reduced-motion: reduce) { .status.is-open .status__dot { animation: none; } }
.status__text em { font-style: normal; color: var(--dim); }

.hero__rating {
  max-width: var(--maxw); margin: clamp(40px, 7vw, 76px) auto 0;
  padding: 18px var(--gut) 0; width: 100%;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 14px; color: var(--dim);
  border-top: 1px solid var(--line-soft);
  transition: color .25s var(--ease);
}
.hero__rating:hover { color: var(--paper); }
.hero__rating strong { color: var(--paper); font-weight: 600; }

.stars { display: inline-flex; gap: 2.5px; }
.stars svg { width: 15px; height: 15px; fill: var(--gold); }

/* ---- 01 rating --------------------------------------------- */
.sec--rating { background: var(--ink-2); }
.rating { display: grid; grid-template-columns: minmax(0, 260px) minmax(0, 1fr); gap: clamp(32px, 6vw, 88px); }
.rating__big {
  font-family: var(--serif); font-size: clamp(4.6rem, 11vw, 7.4rem);
  line-height: .85; letter-spacing: -.03em;
}
.rating__score .stars { margin-top: 16px; }
.rating__score .stars svg { width: 18px; height: 18px; }
.rating__count { margin-top: 10px; font-size: 14.5px; color: var(--dim); }
.rating__score .link { margin-top: 20px; }

.quote { border-left: 1px solid var(--line); padding-left: clamp(20px, 3vw, 36px); }
.quote p {
  font-family: var(--serif); font-size: clamp(1.35rem, 2.7vw, 2.05rem);
  line-height: 1.28; letter-spacing: -.012em; text-wrap: pretty;
}
.quote p::before { content: '\201C'; }
.quote p::after { content: '\201D'; }
.quote footer { display: flex; align-items: center; gap: 10px; margin-top: 22px; font-size: 13.5px; }
.quote cite { font-style: normal; font-weight: 600; }
.quote footer span { color: var(--dim); }
.quote footer span::before { content: '\00B7'; margin-right: 10px; }

.chips__title {
  margin-top: clamp(38px, 5vw, 56px); margin-bottom: 14px;
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--dim);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--line); font-size: 13.5px;
}
.chip em {
  font-style: normal; font-variant-numeric: tabular-nums;
  color: var(--dim); font-size: 12px;
}

/* ---- 02 prices (inverted) ---------------------------------- */
.sec--prices {
  --fg: var(--ink); --bg: var(--paper);
  background: var(--paper); color: var(--ink);
}
.sec--prices .sechead__idx,
.sec--prices .sechead__label { color: inherit; }
.sec--prices .sechead__idx { color: color-mix(in srgb, var(--ink) 45%, transparent); }

.prices {
  display: grid; gap: clamp(30px, 4vw, 52px) clamp(36px, 6vw, 96px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 54px);
}
.pricegroup__title {
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  padding-bottom: 12px; margin-bottom: 6px;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
}
.pricegroup__note {
  font-weight: 400; letter-spacing: .04em; text-transform: none;
  color: color-mix(in srgb, var(--ink) 50%, transparent);
}
.price {
  display: flex; align-items: baseline; gap: 10px;
  padding-block: 11px;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 9%, transparent);
}
.price:last-child { border-bottom: 0; }
.price__name { font-size: 16px; }
.price__dots {
  flex: 1 1 auto; min-width: 14px;
  border-bottom: 1px dotted color-mix(in srgb, var(--ink) 30%, transparent);
  transform: translateY(-3px);
}
.price__value {
  font-family: var(--serif); font-size: 22px; letter-spacing: -.01em;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.price__cur {
  font-family: var(--sans); font-size: 11.5px; font-weight: 500;
  letter-spacing: .08em;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
}
.sec--prices .sec__note { color: color-mix(in srgb, var(--ink) 55%, transparent); }

/* ---- 03 salon ---------------------------------------------- */
.salon { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr); gap: clamp(34px, 6vw, 84px); }
.salon__text { position: sticky; top: calc(var(--head-h) + 40px); align-self: start; }
.salon__p { margin-top: 22px; color: var(--dim); max-width: 42ch; font-size: 16.5px; }
.salon__p:first-of-type { margin-top: 30px; }

.salon__shots {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}
.shot { position: relative; margin: 0; overflow: hidden; border-radius: 3px; background: var(--ink-3); }
.shot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), filter .5s var(--ease);
  filter: saturate(.9) contrast(1.03);
}
.shot:hover img { transform: scale(1.035); }
/* the tall plate spans both rows and stretches to match the two squares,
   so the block reads as one deliberate composition rather than three shots */
.shot--tall { grid-row: span 2; height: 100%; }
.shot:not(.shot--tall) { aspect-ratio: 1 / 1; }
.shot figcaption {
  position: absolute; inset: auto 0 0; padding: 26px 16px 12px;
  font-size: 11.5px; letter-spacing: .04em;
  color: color-mix(in srgb, var(--paper) 72%, transparent);
  background: linear-gradient(to top, rgba(8,8,10,.82), transparent);
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.shot:hover figcaption, .shot:focus-within figcaption { opacity: 1; transform: none; }
/* placeholder when a photo has not been dropped in yet */
.shot--empty {
  background:
    repeating-linear-gradient(135deg, var(--ink-3) 0 12px, var(--ink-2) 12px 24px);
}
.shot--empty figcaption { opacity: 1; transform: none; background: none; }

/* ---- 04 hours + location ----------------------------------- */
.sec--hours { background: var(--ink-2); }
.cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(40px, 7vw, 100px); }

.hours { margin-top: clamp(26px, 3.5vw, 40px); }
.hrow {
  display: flex; align-items: center; gap: 14px;
  padding-block: 13px;
  border-bottom: 1px solid var(--line-soft);
  font-variant-numeric: tabular-nums;
  transition: color .3s var(--ease);
}
.hrow__day { flex: 1 1 auto; font-size: 15.5px; color: var(--dim); }
.hrow__short { display: none; }
.hrow__time { font-size: 15.5px; font-weight: 500; }
.hrow__time.is-closed { color: var(--mute); font-weight: 400; }
.hrow__badge {
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  padding: 3.5px 9px; border-radius: 999px;
  background: var(--paper); color: var(--ink);
}
.hrow.is-today .hrow__day { color: var(--paper); font-weight: 500; }

.info { margin-top: clamp(26px, 3.5vw, 40px); }
.info__label {
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 8px;
}
.info__val { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.85rem); line-height: 1.24; }
.info__val--link { display: inline-block; transition: opacity .25s var(--ease); }
.info__val--link:hover { opacity: .7; }
.info .link { margin-top: 14px; }

/* ---- 05 contact -------------------------------------------- */
.sec--contact { text-align: center; padding-block: clamp(90px, 14vw, 190px); }
.sec--contact::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 70% 60% at 50% 100%,
              color-mix(in srgb, var(--gold) 8%, transparent), transparent 70%);
}
.contact__lead {
  margin: 22px auto 0; max-width: 44ch;
  color: var(--dim); font-size: clamp(16px, 1.5vw, 17.5px);
}
.contact__cta { margin-top: 36px; }
.contact__hint { margin-top: 14px; font-size: 13.5px; color: var(--mute); }

/* ---- footer ------------------------------------------------ */
.foot { border-top: 1px solid var(--line-soft); padding-block: clamp(40px, 6vw, 64px); }
.foot__in {
  display: grid; gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}
.foot__brand { display: flex; align-items: center; gap: 14px; }
.foot__brand .brand__mark { width: 54px; opacity: .8; }
.foot__brand p { font-size: 13.5px; color: var(--dim); max-width: 22ch; }
.foot__meta { text-align: right; font-size: 14px; color: var(--dim); display: grid; gap: 5px; }
.foot__meta a { transition: color .25s var(--ease); }
.foot__meta a:hover { color: var(--paper); }
.foot__legal {
  grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid var(--line-soft);
  font-size: 12.5px; color: var(--mute);
}

/* ---- reveal ------------------------------------------------ */
/* Visible by default so the page stays readable without JS; the
   hidden start state is only applied once JS has confirmed it runs. */
.js-ready .reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js-ready .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---- responsive -------------------------------------------- */
@media (max-width: 1040px) {
  .nav { display: none; }
  .burger { display: block; }
  .head__end { margin-inline-start: auto; }
  .head__end .lang { display: none; }
  .head__end .btn--sm { display: none; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .rating { grid-template-columns: 1fr; gap: 40px; }
  .salon { grid-template-columns: 1fr; }
  .salon__text { position: static; }
  .cols { grid-template-columns: 1fr; }
  .prices { grid-template-columns: 1fr; }
  .foot__in { grid-template-columns: 1fr; }
  .foot__meta { text-align: left; }
  .quote { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
}

@media (max-width: 560px) {
  .hero { min-height: 92svh; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .salon__shots { grid-template-columns: 1fr; }
  .shot--tall { grid-row: auto; aspect-ratio: 4 / 5; }
  .hrow__long { display: none; }
  .hrow__short { display: inline; }
  .hrow__day { flex: 0 0 44px; }
  .price__name { font-size: 15px; }
}

@media print {
  .head, .drawer, .hero__bg, .btn, .skip { display: none !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
