*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #080808;
  --black-soft: #111;
  --black-card: #141414;
  --border: rgba(255, 255, 255, 0.08);
  --white: #fff;
  --gray: #777;
  --gray-light: #aaa;
  --red: #e81919;
  --red-hover: #ff2222;
  --font: 'Montserrat', sans-serif;
  --container: 1200px;
  --pad: clamp(20px, 4vw, 48px);
  --header-h: 64px;
  --radius: 12px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

@media (max-width: 1024px) {
  html {
    scroll-padding-top: calc(var(--header-h) + 8px);
    scroll-padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform 0.15s;
  white-space: nowrap;
}

.btn--red {
  background: var(--red);
  color: var(--white);
  padding: 14px 28px;
}

.btn--red:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 14px 28px;
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 12px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 14px;
}

.btn--full {
  width: 100%;
}

/* Section head */
.section-head {
  margin-bottom: clamp(40px, 5vw, 56px);
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-head__desc {
  margin-left: auto;
  margin-right: auto;
}

.section-head__label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-head__title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-head__desc {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--gray-light);
  max-width: 520px;
  line-height: 1.7;
}

/* ===== HEADER (Brooklands-style) ===== */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  pointer-events: none;
}

.header__inner {
  left: 0;
  pointer-events: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 200;
}

.header__fix,
.header__scroll {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.header__fix {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: clamp(16px, 2.4vw, 46px) clamp(20px, 6.25vw, 120px) 0;
  z-index: 6;
}

.header__fix.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.header__fix-left {
  align-items: center;
  display: flex;
  gap: clamp(16px, 1.25vw, 20px);
}

.header__fix-left__mobile {
  align-items: center;
  display: none;
  gap: clamp(20px, 1.5vw, 30px);
}

.header__logo-link {
  transition: opacity var(--transition);
}

.header__logo-link:hover {
  opacity: 0.85;
}

.header__logo {
  color: var(--white);
  font-size: clamp(18px, 1.15vw, 22px);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header__location {
  padding-left: clamp(12px, 1.25vw, 20px);
  position: relative;
}

.header__location::after {
  background-color: var(--white);
  content: "";
  height: clamp(18px, 1.8vw, 24px);
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.header__location-select {
  align-items: center;
  display: flex;
  gap: 8px;
}

.header__location-text {
  color: var(--white);
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: 400;
  line-height: 1;
}

.header__location-icon {
  height: clamp(14px, 1.25vw, 24px);
  width: clamp(14px, 1.25vw, 24px);
}

.header__fix-right {
  align-items: center;
  display: flex;
  gap: clamp(32px, 5.2vw, 100px);
}

.header__menu-item {
  position: relative;
}

.header__menu-open {
  align-items: center;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  gap: 10px;
  padding: 8px 0;
}

.header__menu-title {
  color: var(--white);
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: 500;
  transition: opacity var(--transition);
  white-space: nowrap;
}

.header__menu-title--main {
  font-weight: 600;
}

.header__menu-open:hover .header__menu-title,
.header__menu-item.is-open .header__menu-title {
  opacity: 0.75;
}

.header__menu-plus {
  height: 14px;
  position: relative;
  width: 14px;
}

.header__menu-plus::before,
.header__menu-plus::after {
  background-color: var(--white);
  border-radius: 1rem;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
  width: 12px;
}

.header__menu-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.header__menu-item.is-open .header__menu-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.header__menu-dropdown {
  left: 0;
  opacity: 0;
  padding-top: 12px;
  pointer-events: none;
  position: absolute;
  top: 100%;
  transform: translateY(-4px);
  transform-origin: top left;
  transition:
    opacity 0.18s ease,
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.18s;
  visibility: hidden;
  z-index: 10;
}

.header__menu-item.is-open .header__menu-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.header__menu-list {
  background: rgba(12, 12, 12, 0.55);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 18px);
  min-width: 280px;
  padding: clamp(16px, 1.5vw, 22px);
}

.header__menu-list .header__menu-title {
  display: block;
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 500;
}

.header__menu-list .header__menu-title:hover {
  opacity: 0.7;
}

.header__fix-contacts {
  align-items: center;
  display: flex;
  gap: clamp(20px, 2vw, 40px);
}

.header__phone {
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 500;
  transition: opacity var(--transition);
  white-space: nowrap;
}

.header__phone:hover {
  opacity: 0.75;
}

.btn-big-arrow {
  align-items: center;
  background: transparent;
  border: 1px solid var(--white);
  border-radius: 40px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  font-size: clamp(12px, 0.85vw, 14px);
  font-weight: 600;
  gap: clamp(10px, 1vw, 16px);
  padding: clamp(8px, 0.6vw, 12px) clamp(16px, 1.4vw, 24px) clamp(8px, 0.6vw, 12px) clamp(14px, 1.2vw, 20px);
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.btn-big-arrow:hover {
  background: var(--white);
  color: var(--black);
}

.btn-big-arrow__icon {
  flex-shrink: 0;
  height: clamp(14px, 1vw, 18px);
  width: clamp(14px, 1vw, 18px);
}

.header__fix-btn {
  padding: clamp(8px, 0.5vw, 10px) clamp(16px, 1.4vw, 26px) clamp(8px, 0.5vw, 10px) clamp(14px, 1.2vw, 20px);
}

.btn-big-arrow--sm {
  font-size: 12px;
  gap: 10px;
  padding: 8px 16px 8px 14px;
}

/* Scroll header */
.header__scroll {
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  display: flex;
  gap: clamp(16px, 2vw, 40px);
  justify-content: space-between;
  min-height: var(--header-h);
  opacity: 0;
  padding: 0 clamp(20px, 6.25vw, 120px);
  pointer-events: none;
  visibility: hidden;
  z-index: 7;
}

.header__scroll.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.header__scroll-logo {
  color: var(--white);
  flex-shrink: 0;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.header__scroll-nav {
  align-items: center;
  display: flex;
  flex: 1;
  gap: clamp(12px, 2vw, 32px);
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.header__scroll-nav::-webkit-scrollbar {
  display: none;
}

.header__scroll-item {
  color: var(--white);
  flex-shrink: 0;
  font-size: clamp(12px, 0.75vw, 14px);
  font-weight: 600;
  padding: 20px 0;
  position: relative;
  transition: opacity var(--transition);
  white-space: nowrap;
}

.header__scroll-item::after {
  background: var(--white);
  bottom: 12px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transition: opacity 0.3s ease;
}

.header__scroll-item:hover {
  opacity: 0.75;
}

.header__scroll-item:hover::after {
  opacity: 1;
}

.header__scroll-contacts {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: clamp(12px, 1.5vw, 24px);
}

/* Mobile socials + burger */
.header__socials {
  align-items: center;
  display: flex;
  gap: clamp(16px, 1.5vw, 24px);
}

.header__social {
  display: block;
  height: clamp(24px, 1.8vw, 30px);
  transition: opacity var(--transition);
  width: clamp(24px, 1.8vw, 30px);
}

.header__social:hover {
  opacity: 0.75;
}

.header__social-icon {
  display: block;
  height: 100%;
  width: 100%;
}

.header__menu-icon {
  background: none;
  border: none;
  cursor: pointer;
  height: 30px;
  padding: 0;
  position: relative;
  width: 30px;
}

.header__menu-img {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.header__menu-img--noactive {
  height: 23px;
  width: 25px;
}

.header__menu-img--active {
  height: 15px;
  opacity: 0;
  width: 23px;
}

.header__menu-icon.is-open .header__menu-img--noactive {
  opacity: 0;
}

.header__menu-icon.is-open .header__menu-img--active {
  opacity: 1;
}

/* Mobile menu overlay */
.menu {
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  opacity: 0;
  padding: clamp(48px, 8vw, 80px) clamp(20px, 3vw, 60px);
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transform: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s;
  visibility: hidden;
  z-index: 300;
}

.menu.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.menu__inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 24px;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.4s ease 0.05s,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}

.menu.is-open .menu__inner {
  opacity: 1;
  transform: translateY(0);
}

.menu__header {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding-top: env(safe-area-inset-top);
}

.menu__phone-btn {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.menu__header-cta {
  padding: 12px 18px;
  font-size: 13px;
}

.menu__footer {
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding-bottom: env(safe-area-inset-bottom);
  padding-top: 16px;
}

.menu__footer-link {
  color: #25d366;
  font-size: 16px;
  font-weight: 600;
}

.menu__footer-address {
  color: var(--gray-light);
  font-size: 13px;
  line-height: 1.5;
}

.menu__list {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 48px);
  overflow-y: auto;
}

.menu__item-wrap.open > .menu__item .menu__item-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.menu__item-wrap:not(.open) .menu__item-submenu__wrap {
  height: 0 !important;
}

.menu__item {
  align-items: center;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 600;
  justify-content: space-between;
  text-align: left;
  width: 100%;
}

.menu__item--subitem {
  font-size: clamp(14px, 1.4vw, 22px);
  font-weight: 500;
  padding-left: 16px;
}

.menu__item--phone {
  color: var(--red);
  margin-top: 8px;
}

.menu__item-plus {
  flex-shrink: 0;
  height: 14px;
  position: relative;
  width: 14px;
}

.menu__item-plus::before,
.menu__item-plus::after {
  background-color: var(--white);
  border-radius: 1rem;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
}

.menu__item-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.3s ease;
}

.menu__item-submenu__wrap {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

.menu__item-submenu {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 32px);
  padding-top: clamp(16px, 2vw, 32px);
}


/* ===== HERO ===== */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.04);
  animation: hero-zoom 18s ease-out forwards;
}

@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.62) 0%, rgba(5, 5, 5, 0.28) 45%, rgba(5, 5, 5, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.28) 0%, rgba(5, 5, 5, 0.05) 40%, rgba(5, 5, 5, 0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: clamp(120px, 18vh, 180px);
  padding-bottom: clamp(56px, 10vh, 96px);
  max-width: 780px;
  margin-left: 0;
  margin-right: auto;
  animation: hero-rise 0.9s ease-out both;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
}

.hero__desc {
  font-size: clamp(15px, 1.7vw, 18px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-bottom: 36px;
}

.hero__tags li {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__actions .btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.hero__actions .btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* ===== METRICS ===== */
.metrics {
  position: relative;
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(32px, 4vw, 48px) 0;
  overflow: hidden;
}

.metrics__glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--red) 20%,
    rgba(255, 255, 255, 0.6) 50%,
    var(--red) 80%,
    transparent 100%
  );
  filter: blur(1px);
  opacity: 0.9;
}

.metrics__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 32px);
}

.metrics__item {
  text-align: center;
}

.metrics__num {
  display: block;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}

.metrics__label {
  display: block;
  font-size: 12px;
  color: var(--gray-light);
  line-height: 1.4;
}

.metrics__num--text {
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

/* ===== PROMISE ===== */
.promise {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}

.promise__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

.promise__card {
  display: block;
  width: 100%;
  padding: clamp(24px, 3vw, 32px);
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  color: inherit;
  cursor: default;
  transition: border-color var(--transition);
}

.promise__card:hover {
  border-color: rgba(232, 25, 25, 0.35);
}

.promise__icon {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.promise__title {
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.3;
}

.promise__text {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.7;
}

.promise__more {
  display: none;
}

.promise-modal {
  display: none;
}

.services {
  padding: clamp(72px, 10vw, 110px) 0;
  background: var(--black);
}

.services-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: clamp(32px, 4vw, 48px);
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.services-preview__card {
  position: relative;
  aspect-ratio: 3 / 4;
  border: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  background: #111;
  transition: opacity var(--transition);
}

.services-preview__card:hover {
  opacity: 0.92;
}

.services-preview__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.services-preview__card:hover img {
  transform: scale(1.05);
}

.services-preview__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  color: var(--white);
}

.services__layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
  min-width: 0;
}

.services__tabs-wrap {
  min-width: 0;
}

.services__tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: min(520px, 60vh);
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--red) transparent;
}

.services__tabs::-webkit-scrollbar {
  width: 4px;
}

.services__tabs::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 4px;
}

.services__tab {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 18px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition), border-color var(--transition);
}

.services__tab:hover {
  background: rgba(255, 255, 255, 0.03);
}

.services__tab.is-active {
  background: var(--black-card);
  border-color: var(--border);
}

.services__tab-num {
  font-size: 11px;
  color: var(--gray);
  flex-shrink: 0;
  width: 20px;
}

.services__tab-name {
  font-size: 14px;
  font-weight: 500;
  flex: 1;
}

.services__tab-arrow {
  font-size: 14px;
  color: var(--gray);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition), color var(--transition);
}

.services__tab.is-active .services__tab-arrow,
.services__tab:hover .services__tab-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--red);
}

.services__swipe-hint {
  display: none;
}

.services__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  animation: fadeIn 0.35s ease;
}

.services__panel[hidden] {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.services__panel-media {
  position: relative;
  min-height: 280px;
  background: #0a0a0a;
}

.services__panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services__panel-body {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services__panel-title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  margin-bottom: 12px;
}

.services__panel-desc {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.services__panel-list {
  list-style: none;
  margin-bottom: 28px;
}

.services__panel-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 8px;
}

.services__panel-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
}

/* ===== CINEMATIC ===== */
.cinematic {
  position: relative;
  background: var(--black);
  line-height: 0;
}

.cinematic__img {
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
  object-position: center bottom;
}

.cinematic__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(32px, 5vw, 56px);
  pointer-events: none;
}

.cinematic__quote {
  max-width: 560px;
  text-align: center;
  font-size: clamp(13px, 1.5vw, 15px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  pointer-events: auto;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  max-width: 720px;
}

/* ===== ABOUT ===== */
.about {
  padding: clamp(72px, 10vw, 110px) 0;
  background: var(--black-soft);
  border-top: 1px solid var(--border);
}

.about__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about__text {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__features {
  list-style: none;
  margin-top: 24px;
}

.about__features li {
  position: relative;
  padding: 12px 0 12px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.about__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--red);
}

/* ===== PROCESS ===== */
.process {
  padding: clamp(72px, 10vw, 110px) 0;
  background: var(--black);
}

.process__steps {
  list-style: none;
  border-top: 1px solid var(--border);
}

.process__step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: clamp(16px, 3vw, 32px);
  padding: clamp(24px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.process__step:hover {
  background: rgba(255, 255, 255, 0.02);
}

.process__step-num {
  font-size: 13px;
  color: var(--gray);
  padding-top: 4px;
}

.process__step-title {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.process__step-body p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 600px;
}

/* ===== SHOWCASE ===== */
.showcase {
  position: relative;
  line-height: 0;
  max-height: 520px;
  overflow: hidden;
}

.showcase__img {
  width: 100%;
  height: clamp(280px, 40vw, 520px);
  object-fit: cover;
  object-position: center 60%;
}

.showcase__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.showcase__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.showcase__text {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.4;
  color: var(--white);
}

/* ===== BOOKING ===== */
.booking {
  position: relative;
  padding: clamp(72px, 10vw, 110px) 0;
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.booking__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.booking__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
}

.booking__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.85) 100%);
}

.booking__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.booking__title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 16px;
}

.booking__desc {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 32px;
}

.booking__contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking__contact-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}

.booking__contact-value {
  font-size: 15px;
  font-weight: 400;
}

a.booking__contact:hover .booking__contact-value {
  color: var(--red);
}

.booking__form {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  transition: border-color var(--transition), background var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(232, 25, 25, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

.form-note {
  font-size: 11px;
  color: var(--gray);
  margin-top: 12px;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--black);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer__logo {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer__tagline {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
}

.footer__nav {
  display: flex;
  gap: 24px;
}

.footer__nav a {
  font-size: 13px;
  color: var(--gray-light);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__copy {
  font-size: 12px;
  color: var(--gray);
  text-align: right;
}

/* Sticky mobile action bar */
.mobile-bar {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root {
    --pad: 16px;
    --header-h: 60px;
  }

  .header__fix .header__fix-contacts,
  .header__fix .header__location,
  .header__fix .header__menu-item {
    display: none;
  }

  .header__fix-left__mobile {
    display: flex;
    gap: 18px;
  }

  .header__fix-left {
    justify-content: space-between;
    width: 100%;
  }

  .header__scroll {
    display: none;
  }

  .header__fix {
    background: rgba(8, 8, 8, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 16px;
    padding-top: max(10px, env(safe-area-inset-top));
  }

  .header__fix.is-hidden {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .header__logo {
    font-size: 17px;
  }

  .header__social {
    height: 26px;
    width: 26px;
  }

  .header__menu-icon {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.25s ease, transform 0.25s ease;
  }

  .header__menu-icon:active {
    transform: scale(0.94);
    background: rgba(255, 255, 255, 0.12);
  }

  .menu {
    padding: 0 22px 28px;
    padding-top: calc(72px + env(safe-area-inset-top));
    padding-bottom: max(28px, env(safe-area-inset-bottom));
    z-index: 250;
  }

  .header__inner {
    z-index: 260;
  }

  .menu__inner {
    gap: 20px;
    min-height: auto;
  }

  .menu__list {
    gap: 8px;
    flex-grow: 0;
  }

  .menu__footer {
    gap: 8px;
    margin-top: 4px;
    padding-top: 18px;
  }

  .menu__header {
    gap: 10px;
  }

  .menu__phone-btn {
    font-size: 15px;
    letter-spacing: 0.01em;
  }

  .menu__header-cta {
    border-radius: 999px;
    min-height: 42px;
    padding: 10px 18px;
  }

  .menu__item {
    font-size: 22px;
    min-height: 52px;
    padding: 12px 0;
    transition: opacity 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }

  .menu__item:active {
    opacity: 0.7;
    transform: translateX(2px);
  }

  .menu__item--subitem {
    font-size: 15px;
    font-weight: 400;
    min-height: 44px;
    opacity: 0.85;
    padding-left: 4px;
  }

  .menu__item-submenu {
    gap: 4px;
    padding-top: 8px;
    padding-bottom: 12px;
  }

  .menu__footer-link {
    font-size: 15px;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
    align-items: stretch;
  }

  .hero__bg-img {
    object-position: center 55%;
    animation: none;
    transform: scale(1);
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.55) 0%, rgba(5, 5, 5, 0.32) 26%, rgba(5, 5, 5, 0.1) 52%, rgba(5, 5, 5, 0.55) 100%);
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    min-height: 100svh;
    padding-top: calc(76px + env(safe-area-inset-top));
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .hero__eyebrow {
    font-size: 12px;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
    text-align: center;
  }

  .hero__title {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    text-align: center;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
  }

  .hero__desc {
    font-size: 15px;
    line-height: 1.6;
    max-width: 34em;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
  }

  .hero__tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0;
  }

  .hero__tags li {
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .hero__tags li:nth-child(n + 4) {
    display: none;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
  }

  .hero__actions .btn {
    width: auto;
    flex: 1 1 calc(50% - 4px);
    min-height: 40px;
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 10px;
  }

  .hero__actions .btn--red {
    display: none;
  }

  .hero__actions .btn--outline {
    flex: 1 1 100%;
  }

  /* Sections rhythm */
  .promise,
  .services,
  .about,
  .process,
  .booking {
    padding-top: clamp(48px, 10vw, 72px);
    padding-bottom: clamp(48px, 10vw, 72px);
  }

  .process {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head__title {
    font-size: clamp(22px, 6vw, 28px);
  }

  .section-head__desc {
    font-size: 14px;
  }

  .promise {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .promise .section-head {
    margin-bottom: 20px;
  }

  .promise .section-head__title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .promise .section-head__desc {
    font-size: 13px;
    line-height: 1.5;
    max-width: 34em;
  }

  .promise__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .promise__card {
    padding: 14px 12px 12px;
    border-radius: 10px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .promise__card:active {
    border-color: rgba(232, 25, 25, 0.55);
    background: rgba(255, 255, 255, 0.04);
  }

  .promise__icon {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .promise__title {
    font-size: 13px;
    margin-bottom: 6px;
    line-height: 1.25;
  }

  .promise__text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 11.5px;
    line-height: 1.45;
  }

  .promise__more {
    display: inline-block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--red);
  }

  .promise-modal {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }

  .promise-modal[hidden] {
    display: none;
  }

  .promise-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
  }

  .promise-modal__sheet {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 360px;
    padding: 28px 22px 22px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  }

  .promise-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }

  .promise-modal__num {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--red);
    margin-bottom: 12px;
  }

  .promise-modal__title {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 14px;
    padding-right: 36px;
  }

  .promise-modal__text {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 24px;
  }

  .promise-modal__ok {
    width: 100%;
    min-height: 52px;
    border-radius: 12px;
  }

  .metrics {
    padding: 28px 0;
  }

  .metrics__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 14px;
  }

  .metrics__num {
    font-size: 26px;
  }

  .metrics__num--text {
    font-size: 18px;
  }

  .metrics__label {
    font-size: 11px;
    line-height: 1.45;
  }

  /* Services */
  .services-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-bottom: 24px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .services-preview__card {
    aspect-ratio: 1 / 1;
    border-radius: 0;
  }

  .services-preview__label {
    font-size: 11px;
    padding: 16px 12px;
  }

  .services__layout {
    grid-template-columns: 1fr;
    gap: 16px;
    min-width: 0;
    width: 100%;
  }

  .services__tabs-wrap {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 0 4px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .services__tabs-wrap::-webkit-scrollbar {
    display: none;
  }

  .services__tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 8px;
    width: max-content;
    min-width: 100%;
    max-width: none;
    max-height: none;
    overflow: visible;
    padding: 4px 0 10px;
    margin: 0;
  }

  .services__tabs::-webkit-scrollbar {
    display: none;
  }

  .services__tab {
    display: inline-flex;
    flex: 0 0 auto;
    flex-shrink: 0;
    width: max-content;
    max-width: none;
    min-width: 0;
    min-height: 40px;
    padding: 8px 14px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
  }

  .services__tab.is-active {
    background: rgba(232, 25, 25, 0.15);
    border-color: rgba(232, 25, 25, 0.55);
  }

  .services__tab-num,
  .services__tab-arrow {
    display: none;
  }

  .services__tab-name {
    flex: 0 0 auto;
    font-size: 13px;
    white-space: nowrap;
    line-height: 1.2;
  }

  .services__swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.45);
  }

  .services__swipe-hint span {
    color: var(--red);
    font-size: 14px;
    line-height: 1;
  }

  .services__panels {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    min-height: 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .services__panels::-webkit-scrollbar {
    display: none;
  }

  .services__panel,
  .services__panel[hidden] {
    display: grid !important;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    grid-template-columns: 1fr;
    border-radius: 14px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .services__panel-media {
    min-height: 220px;
    max-height: 280px;
  }

  .services__panel-body {
    padding: 20px 18px 22px;
  }

  .services__panel-title {
    font-size: 20px;
  }

  .services__panel-desc {
    font-size: 13px;
  }

  .services__panel-body .btn {
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
  }

  .about__grid,
  .booking__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about__title {
    font-size: 24px;
  }

  .process__step {
    grid-template-columns: 28px 1fr;
    gap: 10px;
    padding: 14px 0;
  }

  .process .section-head {
    margin-bottom: 20px;
  }

  .process .section-head__title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .process .section-head__desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .process__step-num {
    font-size: 11px;
    padding-top: 2px;
  }

  .process__step-title {
    font-size: 14px;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
  }

  .process__step-body p {
    font-size: 12.5px;
    line-height: 1.5;
  }

  .cinematic__quote {
    font-size: 14px;
    padding: 0 8px;
  }

  .showcase__img {
    object-position: center 72%;
    transform: scale(1.08);
    transform-origin: center bottom;
  }

  .showcase__overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0.35) 100%);
  }

  .showcase__content {
    align-items: flex-end;
    padding-bottom: 28px;
  }

  .showcase__text {
    font-size: clamp(17px, 4.8vw, 22px);
    padding: 0 20px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
  }

  .booking__title {
    font-size: clamp(24px, 7vw, 30px);
  }

  .booking__form {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .booking__contact-value {
    font-size: 15px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
    min-height: 48px;
    border-radius: 10px;
  }

  .btn--lg {
    min-height: 52px;
  }

  .footer {
    padding: 32px 0 24px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }

  .footer__nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer__copy {
    text-align: center;
  }

  /* Mobile sticky bar */
  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 190;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 8px;
    padding: 10px 12px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
  }

  .mobile-bar__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 48px;
    padding: 0 10px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.15s ease, opacity 0.15s ease;
  }

  .mobile-bar__btn:active {
    transform: scale(0.97);
    opacity: 0.9;
  }

  .mobile-bar__icon {
    display: inline-flex;
    flex-shrink: 0;
  }

  .mobile-bar__btn--call {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-bar__btn--wa {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.32);
    color: #25d366;
  }

  .mobile-bar__btn--book {
    background: var(--red);
    border: 1px solid transparent;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(232, 25, 25, 0.35);
  }

  body.menu-open .mobile-bar {
    display: none;
  }

  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 34px;
  }

  .hero__desc {
    font-size: 14.5px;
  }

  .hero__actions .btn {
    min-height: 38px;
    font-size: 12px;
    padding: 8px 12px;
  }

  .mobile-bar {
    gap: 6px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .mobile-bar__btn {
    font-size: 12px;
    gap: 4px;
    padding: 0 6px;
    border-radius: 12px;
  }
}
