/* ─── Tokens ─── */
:root {
  --ink: #060e1a;
  --navy: #0c1f3a;
  --navy-mid: #10294c;
  --navy-soft: #162f52;
  --white: #f7f5f2;
  --white-pure: #ffffff;
  --gold: #c9a227;
  --gold-light: #dbb84a;
  --gold-dim: rgba(201, 162, 39, 0.55);
  --brown: #5c3a1e;
  --brown-warm: #7a4f28;
  --muted: rgba(247, 245, 242, 0.58);
  --dim: rgba(247, 245, 242, 0.32);
  --line: rgba(247, 245, 242, 0.12);
  --line-strong: rgba(201, 162, 39, 0.35);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header); }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.wrap {
  width: min(1320px, 100% - 48px);
  margin-inline: auto;
}

/* Grain */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Typography */
.eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.title--center { text-align: center; }
.title em { font-style: italic; font-weight: 300; color: var(--gold); }
.copy {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.75;
}
.copy--center { margin-inline: auto; text-align: center; }
.rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0 32px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 36px;
  min-height: 52px;
  transition: all 0.45s var(--ease);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn--sm { padding: 14px 24px; }
.btn--lg { padding: 20px 44px; font-size: 0.75rem; }
.btn--full { width: 100%; }

.btn--light {
  background: var(--white);
  color: var(--ink);
}
.btn--light:hover {
  background: var(--gold);
  color: var(--ink);
}

.btn--line {
  border: 1px solid var(--line-strong);
  color: var(--white);
}
.btn--line:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--accent {
  background: linear-gradient(135deg, var(--brown-warm) 0%, var(--gold) 55%, var(--gold-light) 100%);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}
.btn--accent:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.5);
}
.btn--accent svg { flex-shrink: 0; opacity: 0.85; }

.header__book {
  padding: 13px 22px;
  min-height: 44px;
  font-size: 0.68rem;
  background: var(--brown);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  box-shadow: 0 4px 16px rgba(92, 58, 30, 0.35);
}
.header__book:hover {
  background: var(--brown-warm);
  color: var(--white);
  border-color: var(--gold-light);
  box-shadow: 0 6px 22px rgba(201, 162, 39, 0.3);
}
.header__book svg { opacity: 0.95; }

/* ─── Header ─── */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  transition: background 0.5s var(--ease), border-color 0.5s;
}
.header--solid {
  background: rgba(6, 14, 26, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}
.header__logo img {
  height: 44px;
  width: auto;
  transition: opacity 0.3s;
}
.header__logo:hover img { opacity: 0.85; }
.header__nav {
  display: flex;
  gap: 40px;
}
.header__nav a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.header__nav a:hover { color: var(--white); }
.header__end {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__tel {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.3s;
}
.header__tel:hover { color: var(--gold); }

.burger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.burger span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.burger.active span:first-child { transform: translateY(4.5px) rotate(45deg); }
.burger.active span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
}
.drawer.open { pointer-events: auto; }
.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 26, 0.7);
  opacity: 0;
  transition: opacity 0.5s;
}
.drawer.open .drawer__backdrop { opacity: 1; }
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: var(--navy);
  border-left: 1px solid var(--line);
  padding: calc(var(--header) + 32px) 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease);
}
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.drawer__nav a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  transition: color 0.3s;
}
.drawer__nav a:hover { color: var(--gold); }
.drawer__tel {
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: auto;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: var(--navy-mid);
  display: flex;
}
.hero__photo-side {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  background: var(--navy-mid);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.hero__photo-side::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100px;
  z-index: 1;
  background: linear-gradient(to right, var(--navy-mid), transparent);
  pointer-events: none;
}
.hero__photo {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom right;
  display: block;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  width: 50%;
  flex-shrink: 0;
  padding: calc(var(--header) + 40px) clamp(24px, 4vw, 64px) 64px clamp(24px, 5vw, 80px);
  background: var(--navy-mid);
}
.hero__inner {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: clamp(0px, 3vw, 32px);
}
.hero__eyebrow {
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.35s forwards;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.5s forwards;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.hero__lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 42ch;
  line-height: 1.8;
  margin-bottom: 36px;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.65s forwards;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.8s forwards;
}
.hero__notes {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 0.9s var(--ease) 1s forwards;
}
.hero__note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.hero__note-num {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.hero__note p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--dim);
  line-height: 1.55;
}
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 25%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.3s;
  opacity: 0;
  animation: rise 0.9s var(--ease) 1.2s forwards;
}
.hero__scroll:hover { color: var(--gold); }
.hero__scroll svg { animation: float 2.4s ease-in-out infinite; }

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroPhoto {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ─── About ─── */
.about {
  padding: 140px 0;
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual { position: relative; }
.about__frame {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.about__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-strong);
  margin: 20px;
  pointer-events: none;
}
.about__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 1.2s var(--ease);
}
.about__visual:hover .about__frame img { transform: scale(1.04); }
.about__tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--brown-warm), var(--gold));
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 24px;
}
.about__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about__list li {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}
.about__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* ─── Price ─── */
.price {
  padding: 140px 0;
  background: var(--navy);
  border-top: 1px solid var(--line);
}
.price__head { margin-bottom: 72px; }
.price__tables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.price__col {
  background: var(--navy-mid);
  padding: 48px 40px;
  transition: background 0.4s;
}
.price__col:hover { background: var(--navy-soft); }
.price__col--accent {
  background: var(--navy-soft);
  border-top: 2px solid var(--gold);
}
.price__cat {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 36px;
  color: var(--white);
}
.price__rows li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.price__rows li:last-child { border-bottom: none; }
.price__name {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
}
.price__val {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}
.price__bar {
  margin-top: 64px;
  padding: 48px 56px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.price__bar p {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
}

/* ─── Gallery ─── */
.gallery {
  padding: 140px 0 0;
  background: var(--ink);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.gallery__head {
  margin-bottom: 56px;
}
.gallery__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding-bottom: 4px;
}
.gallery__shot {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  min-height: 0;
  background: var(--navy-mid);
}
.gallery__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9);
  transition: transform 1.4s var(--ease), filter 0.6s;
}
.gallery__shot:hover img {
  transform: scale(1.06);
  filter: saturate(1);
}
.gallery__shot figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 32px 28px;
  background: linear-gradient(transparent, rgba(6, 14, 26, 0.92));
  z-index: 2;
}
.gallery__shot figcaption span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.gallery__shot figcaption strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}
.gallery__shot--barber img {
  object-fit: contain;
  object-position: bottom right;
  filter: none;
}
.gallery__shot--barber:hover img {
  transform: none;
  filter: none;
}

/* ─── CTA Band ─── */
.cta-band {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--brown) 0%, #4a3018 40%, var(--brown-warm) 100%);
  color: var(--white);
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
}
.cta-band__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-band .btn--light {
  background: var(--gold);
  color: var(--ink);
}
.cta-band .btn--light:hover { background: var(--gold-light); }
.cta-band .btn--line {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}
.cta-band .btn--line:hover {
  border-color: var(--gold-light);
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-light);
}

/* ─── Contacts ─── */
.contacts {
  border-top: 1px solid var(--line);
}
.contacts__layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 520px;
}
.contacts__panel {
  background: var(--navy-mid);
  padding: 100px 0;
  display: flex;
  align-items: center;
}
.contacts__content .title { margin-bottom: 0; }
.contacts__rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  margin-top: 48px;
}
.contacts__label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.contacts__item p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
}
.contacts__item small {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--dim);
}
.contacts__phone {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  transition: color 0.3s;
}
.contacts__phone:hover { color: var(--gold); }
.contacts__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contacts__links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.3s;
}
.contacts__links a:hover { color: var(--gold); }
.contacts__map iframe { display: block; width: 100%; height: 100%; min-height: 400px; }

/* ─── Footer ─── */
.footer {
  padding: 32px 0;
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--dim);
  letter-spacing: 0.06em;
}
.footer__logo { height: 34px; width: auto; opacity: 0.7; }
.footer__row a { transition: color 0.3s; }
.footer__row a:hover { color: var(--gold); }

/* ─── Modal ─── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.modal.active { opacity: 1; visibility: visible; }
.modal__shade {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 26, 0.82);
  backdrop-filter: blur(12px);
}
.modal__box {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--navy-mid);
  border: 1px solid var(--line);
  padding: 48px 44px;
  transform: translateY(24px);
  transition: transform 0.5s var(--ease);
}
.modal.active .modal__box { transform: translateY(0); }
.modal__x {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--dim);
  transition: color 0.3s;
}
.modal__x:hover { color: var(--white); }
.modal__box .title { font-size: 2rem; margin-bottom: 8px; }
.modal__box .copy { margin-bottom: 32px; }

.form__field {
  display: block;
  margin-bottom: 20px;
}
.form__field span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color 0.3s;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form__field select option { background: var(--navy); }
.form__field textarea { resize: vertical; min-height: 72px; }

.modal__done {
  text-align: center;
  padding: 20px 0;
}
.modal__done-mark {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.modal__done .title { font-size: 1.8rem; margin-bottom: 12px; }
.modal__done .copy { margin-bottom: 28px; }

/* ─── Mobile action bar ─── */
.mob-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(6, 14, 26, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  gap: 10px;
  grid-template-columns: 1fr 1.2fr;
}
.mob-bar .btn {
  width: 100%;
  min-height: 50px;
  font-size: 0.68rem;
  padding: 14px 16px;
}
.mob-bar__call {
  border-color: var(--line-strong);
}

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .hero__title { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
  .about__grid { grid-template-columns: 1fr; gap: 56px; }
  .about__tag { right: 0; }
  .price__tables { grid-template-columns: 1fr; }
  .gallery__strip { grid-template-columns: repeat(3, 1fr); }
  .contacts__layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header: 64px; }
  .wrap { width: min(1320px, 100% - 32px); }
  body { padding-bottom: 76px; }

  .header__nav,
  .header__tel { display: none; }
  .header__book {
    display: inline-flex !important;
    padding: 10px 14px;
    min-height: 40px;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }
  .header__book svg { width: 13px; height: 13px; }
  .burger { display: flex; }
  .header__logo img { height: 36px; }

  .hero {
    flex-direction: column;
    height: auto;
    min-height: 100dvh;
  }
  .hero__photo-side {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    order: -1;
    padding-top: var(--header);
    justify-content: flex-end;
  }
  .hero__photo-side::before {
    width: 100%;
    height: 80px;
    top: auto;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, transparent, var(--navy-mid));
  }
  .hero__photo {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 62svh;
    margin-left: auto;
    object-fit: contain;
    object-position: bottom right;
  }
  .hero__content {
    width: 100%;
    min-height: auto;
    padding: 24px 24px 100px;
  }
  .hero__inner {
    margin: 0;
    max-width: none;
  }
  .hero__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 16px;
  }
  .hero__lead {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .hero__actions { display: none; }
  .hero__notes {
    flex-direction: column;
    gap: 16px;
  }
  .hero__note { max-width: none; }
  .hero__scroll { display: none; }

  .about, .price, .gallery { padding: 72px 0; }
  .gallery { padding-bottom: 0; }
  .gallery__strip { grid-template-columns: 1fr; }

  .price__col { padding: 32px 24px; }
  .price__bar {
    padding: 28px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .price__bar .btn { width: 100%; }
  .cta-band { padding: 64px 0; }
  .cta-band__inner { flex-direction: column; align-items: stretch; }
  .cta-band__actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-band__actions .btn { width: 100%; }
  .contacts__panel { padding: 64px 0; }
  .contacts__rows { grid-template-columns: 1fr; gap: 28px; }

  .mob-bar { display: grid; }
  .modal__box { padding: 36px 28px; }
  .footer__row { flex-direction: column; text-align: center; }
  .drawer__panel { padding: calc(var(--header) + 24px) 28px 28px; }
  .drawer__nav a { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .title { font-size: clamp(2rem, 8vw, 2.6rem); }
  .price__bar p { font-size: 1.3rem; }
}
