:root {
  --blue: #005ed3;
  --blue-bright: #0078ff;
  --blue-dark: #003f9c;
  --blue-deep: #062a68;
  --ink: #0b1220;
  --muted: #536070;
  --soft: #f4f8ff;
  --line: #d9e5f5;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(5, 47, 110, 0.16);
  --container: 1510px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--soft);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  background: var(--soft);
  letter-spacing: 0;
}

@media (min-width: 921px) {
  body {
    zoom: 0.9;
  }
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

section {
  scroll-margin-top: 112px;
}

:focus-visible {
  outline: 3px solid rgba(0, 120, 255, 0.35);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 80px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  min-height: 116px;
  padding: 0 clamp(28px, 4vw, 72px);
  color: var(--white);
  background: linear-gradient(180deg, #0069d8 0%, #004faf 100%);
  box-shadow: 0 12px 34px rgba(0, 54, 130, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: 300px;
}

.brand-mark {
  position: relative;
  width: 84px;
  height: 74px;
  padding-right: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.48);
}

.brand-mark img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 40, 100, 0.16));
}

.brand-text {
  display: grid;
  gap: 2px;
  text-transform: uppercase;
}

.brand-text strong {
  color: var(--white);
  font-size: 27px;
  font-weight: 900;
  line-height: 0.95;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 28px);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a,
.phone-link,
.header-button {
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.phone-link:hover {
  opacity: 0.82;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(20px, 1.45vw, 27px);
  font-weight: 800;
  white-space: nowrap;
}

.phone-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 7px auto;
  background: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 32px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.button:hover {
  transform: translateY(-2px);
}

.header-button {
  min-width: 152px;
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(0, 28, 82, 0.16);
}

.button-blue {
  color: var(--white);
  background: linear-gradient(180deg, #007cff 0%, #005ad1 100%);
  box-shadow: 0 18px 38px rgba(0, 92, 210, 0.28);
}

.button-outline {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--blue);
}

.button-outline span {
  font-size: 34px;
  line-height: 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  overflow: hidden;
  padding: clamp(58px, 5.6vw, 90px) 0 230px;
  background: #dbeeff;
}

.hero-photo,
.hero-shade,
.hero-diagonal {
  position: absolute;
  inset: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 30%, rgba(255, 255, 255, 0.55) 47%, rgba(255, 255, 255, 0.08) 66%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(246, 249, 253, 0.38) 100%);
}

.hero-diagonal {
  z-index: 2;
  pointer-events: none;
}

.hero-diagonal::before,
.hero-diagonal::after {
  content: "";
  position: absolute;
  top: -8%;
  bottom: -18%;
  transform: skewX(-16deg);
}

.hero-diagonal::before {
  left: 41%;
  width: 170px;
  background: rgba(0, 126, 255, 0.18);
}

.hero-diagonal::after {
  left: 46%;
  width: 46px;
  background: rgba(255, 255, 255, 0.35);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0 0 28px;
  padding: 0 24px;
  color: var(--blue);
  border: 1px solid rgba(0, 98, 211, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 805px;
  margin-bottom: 22px;
  color: #0a111d;
  font-size: clamp(46px, 4vw, 70px);
  font-weight: 900;
  line-height: 1.08;
}

h1 span {
  color: var(--blue);
}

.title-line {
  width: 80px;
  height: 3px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--blue) 0 65%, rgba(0, 98, 211, 0.2) 65% 100%);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 40px;
  color: #3f4b5e;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.stats-strip {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 12px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--container), calc(100% - 80px));
  transform: translateX(-50%);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(220, 230, 244, 0.86);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.stats-strip article {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  column-gap: 24px;
  min-height: 128px;
  padding: 24px 42px;
  border-right: 1px solid var(--line);
}

.stats-strip article:last-child {
  border-right: 0;
}

.stat-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--white);
  background: linear-gradient(180deg, #007bff 0%, #0057c8 100%);
  border-radius: 50%;
}

.stat-icon svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

.stats-strip strong {
  color: #07101f;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.stats-strip p {
  margin: 8px 0 0;
  color: #596272;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.section {
  padding: clamp(78px, 7vw, 118px) 0;
}

.studio-section,
.works-section,
.booking-section {
  background: var(--white);
}

.services-section,
.reviews-section {
  background: #eef6ff;
}

.benefits-section {
  color: var(--white);
  background: #071e3b;
}

.video-section,
.contacts-section {
  color: var(--white);
  background: #061a32;
}

.section-head {
  max-width: 900px;
  margin-bottom: 44px;
}

.row-head {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 3px;
  background: currentColor;
}

.benefits-section .eyebrow,
.video-section .eyebrow,
.contacts-section .eyebrow {
  color: #80caff;
}

h2 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(34px, 3.35vw, 56px);
  font-weight: 900;
  line-height: 1.12;
}

.section-head > p:last-child,
.lead-copy p,
.booking-content > p,
.work-copy p,
.benefit-grid p,
.service-body p,
.review-card p {
  color: var(--muted);
  line-height: 1.62;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 84px);
  align-items: start;
}

.lead-copy {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
}

.lead-copy p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.controls {
  display: flex;
  gap: 10px;
}

.arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0 0 4px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.arrow:hover {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-2px);
}

.service-list,
.review-list {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-padding-inline: 2px;
  padding: 2px 0 22px;
  -webkit-overflow-scrolling: touch;
}

.service-list::-webkit-scrollbar,
.review-list::-webkit-scrollbar {
  display: none;
}

.service-card,
.review-card,
.before-card,
.benefit-grid article,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(6, 41, 89, 0.08);
}

.service-card,
.review-card {
  scroll-snap-align: start;
}

.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 98, 211, 0.38);
  box-shadow: 0 28px 72px rgba(6, 41, 89, 0.15);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.service-body {
  display: grid;
  grid-template-rows: auto minmax(104px, 1fr) auto auto;
  gap: 14px;
  flex: 1;
  padding: 28px;
}

h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.18;
}

.service-body p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.service-body strong {
  color: var(--blue);
  font-size: 25px;
  font-weight: 900;
}

.service-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 8px;
  color: var(--blue);
  border: 1px solid rgba(0, 98, 211, 0.35);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease;
}

.service-body a:hover {
  color: var(--white);
  background: var(--blue);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.benefit-grid article {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.benefit-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: #83ccff;
  font-size: 14px;
  font-weight: 900;
}

.benefit-grid h3 {
  color: var(--white);
}

.benefit-grid p {
  margin: 14px 0 0;
  color: #c0cde0;
  font-weight: 600;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.before-card {
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.compare-image {
  position: relative;
  overflow: hidden;
  background: #d9e2ec;
}

.compare-image::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 2;
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(0, 98, 211, 0.22), 0 0 28px rgba(0, 120, 255, 0.32);
  transform: translateX(-50%);
  transition: transform 360ms ease, box-shadow 360ms ease;
}

.compare-image::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -32%;
  z-index: 1;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  transition: left 520ms ease;
}

.compare-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  transition: transform 420ms ease, filter 420ms ease;
}

.before-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 98, 211, 0.36);
  box-shadow: 0 30px 76px rgba(6, 41, 89, 0.16);
}

.before-card:hover .compare-image img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.05);
}

.before-card:hover .compare-image::before {
  transform: translateX(-50%) scaleY(1.08);
  box-shadow: 0 0 0 1px rgba(0, 98, 211, 0.34), 0 0 42px rgba(0, 120, 255, 0.45);
}

.before-card:hover .compare-image::after {
  left: 112%;
}

.before-card:hover .before-label {
  transform: translateX(4px) translateY(-4px);
}

.before-card:hover .after-label {
  transform: translateX(-4px) translateY(-4px);
}

.before-label,
.after-label {
  position: absolute;
  bottom: 18px;
  z-index: 2;
  padding: 8px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease;
}

.before-label {
  left: 18px;
}

.after-label {
  right: 18px;
}

.work-copy {
  padding: 28px;
}

.work-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.work-copy p {
  margin: 14px 0 0;
  font-weight: 600;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
}

.video-grid iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.review-list {
  grid-template-columns: none;
}

.review-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  align-content: stretch;
  height: 100%;
  min-height: 310px;
  padding: 30px;
}

.stars {
  margin-bottom: 18px;
  color: var(--blue);
  letter-spacing: 2px;
}

.review-card p {
  margin-bottom: 24px;
  font-weight: 600;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card strong {
  color: var(--ink);
  font-weight: 900;
}

.review-card span {
  margin-top: 8px;
  color: #8792a2;
  font-size: 14px;
  font-weight: 700;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.booking-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
}

.booking-content > p {
  margin: 20px 0 28px;
  font-size: 18px;
  font-weight: 600;
}


.form-title {
  margin: 20px 30px 0;
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label span {
  color: #243249;
  font-size: 14px;
  font-weight: 900;
}

.lead-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  color: var(--ink);
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lead-form input:focus {
  border-color: rgba(0, 98, 211, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 98, 211, 0.1);
  outline: 0;
}

.lead-form input[readonly] {
  color: var(--blue-dark);
  font-weight: 800;
}

.consent-line {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.consent-line input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
  padding: 0;
  flex: 0 0 16px;
}

.consent-line span {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: 600 !important;
}

.consent-line a {
  color: var(--blue);
  text-decoration: underline;
}

.lead-form small {
  color: #8390a2;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.lead-result {
  margin: 0;
  padding: 12px 14px;
  color: #095f35;
  background: #e4f8ee;
  border: 1px solid #bcebd1;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.lead-result.is-error {
  color: #8a1f14;
  background: #fde9e6;
  border-color: #f1b7ad;
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 52px;
  align-items: stretch;
}

.contacts-copy dl {
  display: grid;
  gap: 24px;
  margin: 32px 0 0;
}

.contacts-copy dt {
  margin-bottom: 6px;
  color: #83ccff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.contacts-copy dd {
  margin: 0;
  color: var(--white);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.4;
}

.contacts-copy a {
  color: var(--white);
}

.map-wrap {
  min-height: 420px;
  overflow: hidden;
  background: #0b284a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.floating-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  box-shadow: 0 20px 46px rgba(0, 88, 202, 0.36);
}

@media (min-width: 921px) {
  .floating-call {
    display: none;
  }
}

.floating-call svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.footer {
  padding: 34px 0;
  color: #bed0e6;
  background: #041122;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer strong {
  display: block;
  color: var(--white);
  font-size: 20px;
}

.footer p {
  max-width: 860px;
  margin: 12px 0 10px;
  font-size: 13px;
  line-height: 1.55;
}

.footer a {
  color: var(--white);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 96px;
  }

  .brand {
    min-width: 0;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  body.nav-open .site-nav {
    position: fixed;
    inset: 96px 0 auto;
    z-index: 40;
    display: grid;
    gap: 0;
    padding: 12px clamp(24px, 5vw, 56px) 28px;
    color: var(--white);
    background: rgba(0, 79, 175, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  body.nav-open .site-nav a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero {
    min-height: 720px;
  }

  .stats-strip article {
    grid-template-columns: 58px 1fr;
    column-gap: 16px;
    padding: 22px 24px;
  }

  .stat-icon {
    width: 54px;
    height: 54px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    min-height: 82px;
    padding: 0 16px;
  }

  body.nav-open .site-nav {
    inset: 82px 0 auto;
  }

  .brand-mark {
    width: 61px;
    height: 54px;
    padding-right: 11px;
  }

  .brand {
    width: auto;
  }

  .brand-mark img {
    width: 48px;
    height: 48px;
  }

  .brand-text strong {
    font-size: 20px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 48px 0 28px;
    background: var(--white);
  }

  .hero-photo {
    position: relative;
    order: 2;
    height: 380px;
    margin-top: 34px;
    object-position: center center;
  }

  .hero-shade,
  .hero-diagonal {
    display: none;
  }

  .hero-content {
    order: 1;
  }

  h1 {
    font-size: 41px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    gap: 14px;
  }

  .stats-strip {
    position: relative;
    left: auto;
    bottom: auto;
    order: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 32px, var(--container));
    margin: 22px auto 0;
    transform: none;
  }

  .stats-strip article {
    min-height: 108px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-strip article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .stats-strip article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .split-grid,
  .work-grid,
  .booking-grid,
  .contacts-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .row-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .controls {
    align-self: flex-end;
  }

  .service-list,
  .review-list {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 82%);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
}

@media (max-width: 560px) {
  section {
    scroll-margin-top: 82px;
  }

  .section {
    padding: 68px 0;
  }

  .pill {
    min-height: 32px;
    padding: 0 14px;
    font-size: 11px;
  }

  h1 {
    font-size: 30px;
    line-height: 1.12;
  }

  h2 {
    font-size: 29px;
  }

  h3 {
    font-size: 21px;
  }

  .button {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    font-size: 16px;
  }

  .hero-photo {
    height: 300px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stats-strip article,
  .stats-strip article:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-strip article:last-child {
    border-bottom: 0;
  }

  .service-list,
  .review-list {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 90%);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .service-body p {
    min-height: auto;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 24px;
  }

  .contacts-copy dd {
    font-size: 18px;
  }

  .footer-grid {
    display: grid;
  }

  .floating-call {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
