/* CLUTCH BARBER CO. — dark athletic theme, transcribed from mockup 17 (crest
   hero) + mockup 15 (barbers + booking). Shares booking-component class names
   with the Seraphine build so the drawer/calendar/slots logic is unchanged. */

* { box-sizing: border-box; margin: 0; padding: 0; }
/* the hidden attribute must beat author display rules (drawer body/foot/success
   toggle via [hidden]; without this the success panel shows over the services) */
[hidden] { display: none !important; }

:root {
  --ink: #0E0E10;
  --steel: #17181C;
  --steel-2: #202227;
  --smoke: #2C2F35;
  --bone: #F4F2ED;
  --muted: #8A9099;
  --crimson: #E11D2A;
  --crimson-2: #B3141F;
  --chrome: #C7CBD1;
  --display: "Anton", "Oswald", "Arial Narrow", sans-serif;
  --cond: "Oswald", "Arial Narrow", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --maxw: 1560px;
  --gutter: max(24px, calc((100vw - var(--maxw)) / 2));
}

html { scroll-behavior: smooth; scroll-padding-top: 74px; }
body {
  background-color: var(--ink);
  background-image: url(../assets/grunge-bg.webp);
  background-size: 780px auto; background-repeat: repeat;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--cond); font-weight: 700; line-height: 1.05;
  text-transform: uppercase; letter-spacing: .01em;
}
a { color: inherit; }
img { max-width: 100%; }

/* ---------- shared ---------- */
.eyebrow {
  font-family: var(--cond); font-weight: 600;
  font-size: .82rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--crimson); margin-bottom: 14px;
}
.section-head { text-align: left; margin: 0 0 40px; }
.section-title, .intro__title {
  font-family: var(--display); font-weight: 400; letter-spacing: .03em;
  color: var(--bone);
}
.section-title { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.section-title::before { content: "/ "; color: var(--crimson); -webkit-text-fill-color: var(--crimson); }
.section-head__sub { color: var(--muted); margin-top: 10px; font-size: .92rem; max-width: 620px; }
.textlink {
  color: var(--crimson); text-decoration: none; font-family: var(--cond);
  font-weight: 600; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
  border-bottom: 1px solid var(--crimson-2); padding-bottom: 3px;
}
.textlink:hover { color: var(--bone); border-bottom-color: var(--bone); }

.btn {
  display: inline-block; border: 0; cursor: pointer; text-decoration: none;
  font-family: var(--cond); font-weight: 600; font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 14px 30px; border-radius: 2px; transition: all .2s ease; text-align: center;
}
.btn--solid {
  color: #fff;
  background-color: var(--crimson);
  background-image: url(../assets/grunge-ink.webp);
  background-size: 300px auto; background-repeat: repeat;
}
.btn--solid:hover { background-color: var(--crimson-2); }
.btn--solid:disabled { background-image: none; background-color: var(--smoke); color: var(--muted); cursor: not-allowed; }
.btn--ghost { background: transparent; color: var(--bone); border: 1px solid var(--smoke); }
.btn--ghost:hover { border-color: var(--bone); }
.btn--lg { padding: 17px 42px; font-size: .92rem; }

/* ---------- placeholders (dark, replaced by imagery) ---------- */
.ph {
  position: relative; width: 100%; height: 100%; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.014) 0 12px, transparent 12px 24px),
    linear-gradient(150deg, var(--steel-2) 0%, var(--steel) 60%, #0f1013 100%);
  border: 1px solid var(--smoke);
}
.ph::after {
  content: ""; position: absolute; left: 16px; bottom: 16px;
  width: 26px; height: 3px; background: var(--crimson); opacity: .8;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- nav: transparent over hero, solidifies on scroll ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 12px var(--gutter);
  background-color: #131316;
  background-image: url(../assets/grunge-ink.webp);
  background-size: 520px auto; background-repeat: repeat;
  border-bottom: 2px solid var(--crimson);
  transition: padding .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled { padding: 8px var(--gutter); box-shadow: 0 6px 24px rgba(0, 0, 0, .45); }
.nav__brand {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  letter-spacing: .02em; text-transform: uppercase;
  text-decoration: none; justify-self: start; white-space: nowrap;
  display: inline-block;
  color: var(--bone);
}
.nav__links { display: flex; gap: 34px; justify-self: center; }
.nav__links a {
  font-family: var(--cond); font-weight: 600; text-decoration: none;
  font-size: 1rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--bone); transition: color .2s;
}
.nav__links a:hover { color: var(--crimson); }
.nav__links a.is-active { color: var(--crimson); }
.nav__cta { justify-self: end; padding: 13px 30px; font-size: .98rem; }
.nav__menu-cta { display: none; }
.nav__toggle {
  display: none; grid-column: 3; justify-self: end;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 6px; background: none; border: 0; cursor: pointer;
}
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--bone); transition: transform .3s ease, opacity .2s ease; }
.nav.is-menu-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-menu-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero: crest over dark interior (mockup 17) ---------- */
.hero {
  position: relative; min-height: clamp(600px, 100svh, 940px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background: #0b0b0d;
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 40%, rgba(14,14,16,.35) 0%, rgba(14,14,16,.82) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: 90px var(--gutter) 40px; max-width: 1180px; }
.hero__crest { width: clamp(140px, 20vw, 210px); height: auto; margin: 0 auto 26px; display: block; }
.hero__headline {
  font-family: var(--display); font-weight: 400;
  white-space: nowrap; font-size: min(6.8vw, 5.4rem);
  letter-spacing: .01em; margin-bottom: 34px;
  /* Solid bone fill. We used to paint a grunge-ink texture into the glyphs via
     background-clip:text, but that forces a GPU layer that Chromium/WebKit
     intermittently drops or clips on resize/zoom/scroll — which made the
     headline render as a partial word ("SHAR…") at some viewports. A solid
     color always paints, so the headline is guaranteed legible. */
  color: var(--bone);
  text-shadow: 0 4px 26px rgba(0,0,0,.5);
}
.hero__sub {
  font-family: var(--cond); font-weight: 500; text-transform: uppercase;
  letter-spacing: .16em; font-size: clamp(.85rem, 1.6vw, 1.05rem);
  color: var(--muted); margin: 18px 0 34px;
}
.hero__badge {
  position: absolute; z-index: 2; top: 96px;
  font-family: var(--cond); font-weight: 600; font-size: .68rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}
.hero__badge--l { left: var(--gutter); }
.hero__badge--r { right: var(--gutter); color: var(--crimson); }

/* ---------- intro: more than a cut ---------- */
.intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  max-width: var(--maxw); margin: 0 auto; padding: 96px var(--gutter);
}
.intro__title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 18px; }
.intro__title::before { content: "/ "; color: var(--crimson); -webkit-text-fill-color: var(--crimson); }
.intro__para { color: var(--muted); margin-bottom: 26px; max-width: 460px; }
.intro__media { height: 460px; }
.intro__shot { overflow: hidden; height: 100%; border: 1px solid var(--smoke); }
.intro__shot img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- services: 6-card row (mockup 17) ---------- */
.services { max-width: var(--maxw); margin: 0 auto; padding: 20px var(--gutter) 96px; }
.svc6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.svc6__card {
  background: var(--steel); border: 1px solid var(--smoke); border-top: 2px solid var(--crimson);
  padding: 26px 20px; display: flex; flex-direction: column; gap: 8px; min-height: 210px;
}
.svc6__icon { line-height: 0; margin-bottom: 10px; }
.svc6__icon img { width: 40px; height: 40px; object-fit: contain; display: block; }
.svc6__card h3 { font-size: 1.02rem; letter-spacing: .06em; }
.svc6__card p { color: var(--muted); font-size: .8rem; line-height: 1.55; }
.svc6__card .price { margin-top: auto; }
.price { font-family: var(--cond); font-weight: 700; color: var(--bone); font-size: 1.35rem; padding-top: 12px; }

/* ---------- barbers (filmstrip) ---------- */
.stylists { max-width: var(--maxw); margin: 0 auto; padding: 40px var(--gutter) 90px; }
.filmstrip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.stylist-card {
  background: var(--steel); border: 1px solid var(--smoke); padding: 0 0 18px;
  cursor: pointer; text-align: center; transition: border-color .2s ease, transform .2s ease;
}
.stylist-card:hover { transform: translateY(-3px); }
.stylist-card__photo { height: 300px; overflow: hidden; background: linear-gradient(150deg, var(--steel-2), #0f1013); margin-bottom: 16px; }
.stylist-card__photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.stylist-card__name { font-family: var(--cond); font-size: 1.05rem; letter-spacing: .08em; }
.stylist-card__role { font-family: var(--cond); font-weight: 500; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--crimson); margin-top: 6px; }
.stylist-card__ig { display: inline-flex; margin-top: 10px; color: var(--muted); transition: color .2s ease; }
.stylist-card__ig:hover { color: var(--crimson); }
.stylist-card__ig svg { width: 17px; height: 17px; }
.stylist-card__bar { width: 0; height: 2px; background: var(--crimson); margin: 12px auto 0; transition: width .3s ease; }
.stylist-card.is-selected { border-color: var(--crimson); }
.stylist-card.is-selected .stylist-card__bar { width: 46px; }
.stylist-card:not(.is-selected) { opacity: .78; }
.stylist-card:hover { opacity: 1; }

/* ---------- booking: calendar + slots ---------- */
.booking { display: grid; grid-template-columns: minmax(300px, 400px) 1fr; gap: 48px; max-width: 1180px; margin: 0 auto; background: var(--steel); border: 1px solid var(--smoke); padding: 44px; }
.booking__cal { border-right: 1px solid var(--smoke); padding-right: 48px; }
.cal__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cal__label { font-family: var(--cond); font-weight: 600; font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.cal__nav { display: flex; align-items: center; gap: 12px; }
.cal__arrow { background: none; border: 0; color: var(--bone); font-size: 1.2rem; cursor: pointer; padding: 2px 6px; }
.cal__arrow:disabled { color: var(--smoke); cursor: not-allowed; }
.cal__month { font-family: var(--cond); font-weight: 600; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; min-width: 128px; text-align: center; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal__grid--days span { text-align: center; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 6px 0; }
.cal__day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: .82rem; background: none; border: 0; color: var(--bone); cursor: pointer; border-radius: 2px; }
.cal__day:hover:not(:disabled) { background: var(--steel-2); }
.cal__day:disabled { color: #3a3d44; cursor: default; }
.cal__day.is-selected { background: var(--crimson); color: #fff; }
.cal__note { margin-top: 14px; font-size: .72rem; color: var(--muted); }

.booking__slots { display: flex; flex-direction: column; }
.slots__stylist { font-family: var(--cond); font-size: 1.5rem; letter-spacing: .04em; }
.slots__role { font-family: var(--cond); font-weight: 500; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--crimson); margin: 4px 0 16px; }
.slots__prompt { color: var(--muted); font-size: .88rem; margin-bottom: 16px; }
.slots__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 18px; }
.slot { font-family: var(--cond); font-weight: 500; font-size: .78rem; letter-spacing: .04em; padding: 9px 4px; background: var(--steel-2); border: 1px solid var(--smoke); color: var(--bone); cursor: pointer; border-radius: 2px; transition: all .15s ease; }
.slot:hover:not(:disabled) { border-color: var(--crimson); }
.slot.is-selected { background: var(--crimson); border-color: var(--crimson); color: #fff; }
.slot:disabled { color: #3a3d44; cursor: not-allowed; text-decoration: line-through; }
.booking__book { margin-top: auto; }
.booking__deposit { text-align: center; font-size: .72rem; color: var(--muted); margin-top: 12px; }

/* ---------- gallery ---------- */
.gallery { max-width: var(--maxw); margin: 0 auto; padding: 20px var(--gutter) 96px; }
.gallery__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.gallery__item { aspect-ratio: 3 / 4; overflow: hidden; border: 1px solid var(--smoke); }
.gallery__item img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery__item:hover img { transform: scale(1.05); }

/* ---------- reviews ---------- */
.reviews { max-width: var(--maxw); margin: 0 auto; padding: 20px var(--gutter) 96px; }
.reviews__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.review { text-align: center; }
.review__stars { color: var(--crimson); letter-spacing: 3px; font-size: .9rem; display: block; margin-bottom: 14px; }
.review blockquote { font-size: .98rem; line-height: 1.7; color: var(--bone); }
.review figcaption { font-family: var(--cond); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; font-size: .72rem; color: var(--muted); margin-top: 16px; }

/* ---------- footer ---------- */
.footer { background: #0a0a0c; border-top: 1px solid var(--smoke); padding: 64px var(--gutter) 0; }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; padding-bottom: 44px; }
.footer__crest { width: 108px; height: auto; display: block; margin-bottom: 14px; }
.footer__tag { font-family: var(--cond); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--crimson); font-size: .8rem; }
.footer__cols { display: flex; gap: 56px; }
.footer__cols h4 { font-family: var(--cond); font-weight: 600; font-size: .74rem; letter-spacing: .2em; color: var(--bone); margin-bottom: 12px; }
.footer__cols p { font-size: .82rem; line-height: 2; color: var(--muted); }
.footer__cols a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--smoke); }
.footer__cols a:hover { color: var(--crimson); }
.footer__social { display: flex; gap: 16px; margin-top: 2px; }
.footer__social a { border-bottom: 0; display: inline-flex; color: var(--muted); transition: color .2s ease, transform .2s ease; }
.footer__social a:hover { color: var(--crimson); transform: translateY(-2px); }
.footer__social svg { width: 19px; height: 19px; display: block; }
.footer__joinhead { margin-top: 22px; }
.footer__join { display: flex; border: 1px solid var(--smoke); max-width: 320px; }
.footer__join input { flex: 1; background: var(--steel); border: 0; padding: 12px 14px; color: var(--bone); font-family: var(--sans); font-size: .84rem; }
.footer__join input::placeholder { color: var(--muted); }
.footer__join input:focus { outline: none; }
.footer__join button { background: var(--crimson); border: 0; color: #fff; padding: 0 18px; font-size: 1.1rem; cursor: pointer; }
.footer__join button:hover { background: var(--crimson-2); }
.footer__bar { max-width: var(--maxw); margin: 0 auto; border-top: 1px solid var(--smoke); padding: 20px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-family: var(--cond); }

/* ---------- drawer ---------- */
.scrim { position: fixed; inset: 0; background: rgba(0, 0, 0, .6); backdrop-filter: blur(2px); z-index: 60; opacity: 0; transition: opacity .3s ease; }
.scrim.is-open { opacity: 1; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 70; width: min(440px, 100vw);
  background: var(--steel); border-left: 1px solid var(--smoke);
  box-shadow: -24px 0 60px rgba(0, 0, 0, .5);
  transform: translateX(105%); transition: transform .38s cubic-bezier(.32, .72, .28, 1);
  display: flex; flex-direction: column;
}
.drawer.is-open { transform: none; }
.drawer__head { display: flex; justify-content: space-between; align-items: flex-start; padding: 28px 28px 0; }
.drawer__name { font-family: var(--cond); font-size: 1.6rem; letter-spacing: .04em; }
.drawer__role { font-family: var(--cond); font-weight: 500; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--crimson); margin-top: 4px; }
.drawer__close { background: none; border: 0; font-size: 1.7rem; line-height: 1; color: var(--muted); cursor: pointer; padding: 4px; }
.drawer__close:hover { color: var(--bone); }
.drawer__slot { padding: 16px 28px 0; }
.drawer__slot span { display: inline-block; background: var(--crimson); color: #fff; font-family: var(--cond); font-weight: 600; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; padding: 8px 16px; }
.drawer__body { flex: 1; overflow-y: auto; padding: 22px 28px; }
.drawer__subhead { font-family: var(--cond); font-size: 1.05rem; letter-spacing: .08em; margin-bottom: 12px; }
.service-row { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--smoke); cursor: pointer; }
.service-row:last-child { border-bottom: 0; }
.service-row input { accent-color: var(--crimson); width: 16px; height: 16px; cursor: pointer; flex-shrink: 0; }
.service-row__name { font-weight: 500; font-size: .9rem; }
.service-row__meta { font-size: .72rem; color: var(--muted); }
.service-row__price { margin-left: auto; font-family: var(--cond); font-weight: 600; color: var(--bone); white-space: nowrap; }
.drawer__noteslabel { display: block; font-family: var(--cond); font-weight: 600; font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin: 22px 0 8px; }
.drawer__notes { width: 100%; border: 1px solid var(--smoke); background: var(--ink); padding: 12px 14px; font-family: var(--sans); font-size: .88rem; resize: vertical; color: var(--bone); }
.drawer__notes:focus { outline: none; border-color: var(--crimson); }
.drawer__foot { border-top: 1px solid var(--smoke); padding: 18px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--steel); }
.drawer__total { display: flex; flex-direction: column; }
.drawer__total > span:first-child { font-family: var(--cond); font-weight: 700; font-size: 1.15rem; }
.drawer__depositline { font-size: .7rem; color: var(--muted); }
.drawer__foot .btn { padding: 13px 24px; white-space: nowrap; }
.drawer__success { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 32px; gap: 14px; }
.drawer__check { width: 60px; height: 60px; border-radius: 50%; background: var(--crimson); color: #fff; font-size: 1.7rem; display: flex; align-items: center; justify-content: center; }
.drawer__success h3 { font-family: var(--cond); font-size: 1.6rem; letter-spacing: .04em; }
.drawer__success p { color: var(--muted); font-size: .9rem; }
.drawer__fineprint { font-size: .72rem !important; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .svc6 { grid-template-columns: repeat(3, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-menu-open { background: rgba(14, 14, 16, .97); backdrop-filter: blur(14px); border-bottom-color: transparent; }
  .nav__links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(14, 14, 16, .98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--smoke);
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    transition: max-height .34s ease, opacity .26s ease;
  }
  .nav.is-menu-open .nav__links { max-height: 420px; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 15px var(--gutter); font-size: .82rem; border-bottom: 1px solid var(--smoke); }
  .nav__links .nav__menu-cta { display: block; text-align: center; margin: 16px var(--gutter); }
  .intro { grid-template-columns: 1fr; gap: 32px; }
  .intro__media { height: 320px; }
  .filmstrip {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    margin-left: calc(-1 * var(--gutter)); margin-right: calc(-1 * var(--gutter));
    padding: 0 var(--gutter) 8px;
  }
  .stylist-card { flex: 0 0 220px; scroll-snap-align: start; }
  .stylist-card__photo { height: 260px; }
  .booking { grid-template-columns: 1fr; padding: 28px; gap: 32px; }
  .booking__cal { border-right: 0; border-bottom: 1px solid var(--smoke); padding-right: 0; padding-bottom: 32px; }
  .reviews__row { grid-template-columns: 1fr; gap: 36px; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__cols { flex-wrap: wrap; gap: 36px; }
}
@media (max-width: 620px) {
  .svc6 { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .slots__grid { grid-template-columns: repeat(3, 1fr); }
  .hero__headline { white-space: normal; font-size: clamp(2.6rem, 13vw, 3.8rem); }
  .drawer { width: 100vw; }
  .drawer__foot { flex-direction: column; align-items: stretch; text-align: center; }
  .footer__bar { flex-direction: column; gap: 8px; }
}
