:root {
  --green: #7f9146;
  --green-bright: #a4ad62;
  --green-dark: #56662f;
  --green-deep: #202812;
  --orange: #a66d27;
  --orange-bright: #d0a24a;
  --gold-soft: #e0bd68;
  --ink: #0d0e0b;
  --muted: #8a95a5;
  --soft: #12130f;
  --line: #29251a;
  --card: #171812;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --container: 1510px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #0d0e0b;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: #e8edf5;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  background: #0d0e0b;
  letter-spacing: 0;
  max-width: 100%;
  overflow-x: hidden;
}

@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%;
  height: auto;
}

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(208, 162, 74, 0.48);
  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, #171812 0%, #0d0e0b 100%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}

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

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

.brand-mark img {
  width: 92px;
  height: 86px;
  object-fit: contain;
  border-radius: 0;
  filter:
    saturate(0.78)
    hue-rotate(12deg)
    brightness(0.92)
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.28));
}

.brand-text {
  display: grid;
  gap: 8px;
  min-width: 178px;
  text-transform: uppercase;
}

.brand-text strong {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  line-height: 0.9;
  white-space: nowrap;
}

.brand-text strong:first-child {
  font-size: 35px;
}

.brand-text strong:last-child {
  gap: 10px;
  color: var(--orange-bright);
  font-size: 15px;
  line-height: 1;
}

.brand-text strong:last-child::before,
.brand-text strong:last-child::after {
  content: "";
  flex: 1 1 24px;
  height: 2px;
  background: var(--orange);
}

.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: #15110a;
  background: linear-gradient(180deg, #e0bd68 0%, #b77b2d 100%);
  box-shadow: 0 10px 28px rgba(208, 162, 74, 0.26);
}

.button-blue {
  color: #15110a;
  background: linear-gradient(180deg, #e0bd68 0%, #b77b2d 100%);
  box-shadow: 0 18px 38px rgba(208, 162, 74, 0.28);
}

.button-blue:hover {
  box-shadow: 0 22px 46px rgba(208, 162, 74, 0.42);
}

.button-outline {
  color: var(--gold-soft);
  background: rgba(208, 162, 74, 0.08);
  border-color: rgba(208, 162, 74, 0.55);
}

.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: #090a08;
}

.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;
  filter: saturate(0.76) contrast(1.06) brightness(0.78);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, #090a08 0%, rgba(9, 10, 8, 0.96) 30%, rgba(9, 10, 8, 0.60) 52%, rgba(9, 10, 8, 0.18) 70%, rgba(9, 10, 8, 0) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.30) 100%);
}

.hero-diagonal {
  z-index: 2;
  display: none;
  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(127, 145, 70, 0.12);
}

.hero-diagonal::after {
  left: 46%;
  width: 46px;
  background: rgba(208, 162, 74, 0.16);
}

.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(--green);
  border: 1px solid rgba(127, 145, 70, 0.42);
  border-radius: 999px;
  background: rgba(127, 145, 70, 0.10);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

h1 span {
  color: var(--gold-soft);
}

.title-line {
  width: 80px;
  height: 3px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--orange-bright) 0 62%, rgba(127, 145, 70, 0.26) 62% 100%);
}

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

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

.stats-strip {
  position: absolute;
  left: max(40px, calc((100% - var(--container)) / 2));
  right: auto;
  bottom: 12px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(760px, calc(100% - 80px));
  overflow: hidden;
  background: rgba(20, 19, 14, 0.96);
  border: 1px solid rgba(208, 162, 74, 0.20);
  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: #15110a;
  background: linear-gradient(180deg, #e0bd68 0%, #a66d27 100%);
  border-radius: 50%;
}

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

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

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

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

.studio-section,
.works-section,
.booking-section {
  background: #12130f;
}

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

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

.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(--green);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.video-section .eyebrow,
.contacts-section .eyebrow {
  color: var(--orange-bright);
}

h2 {
  max-width: 920px;
  margin-bottom: 0;
  color: #f0f4fa;
  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,
.service-body p,
.review-card p {
  color: #6e7f96;
  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: #171812;
}

.lead-copy p {
  margin: 0;
  color: #a8b8cc;
  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(--green);
  background: #171812;
  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: #15110a;
  background: var(--orange-bright);
  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,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #171812;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.35);
}

.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(208, 162, 74, 0.36);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.50);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.72) contrast(1.05) brightness(0.86);
  transition: filter 260ms ease, transform 260ms ease;
}

.service-card:hover img {
  filter: saturate(0.86) contrast(1.08) brightness(0.92);
}

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

h3 {
  margin-bottom: 0;
  color: #f0f4fa;
  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(--orange-bright);
  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(--gold-soft);
  border: 1px solid rgba(208, 162, 74, 0.42);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease;
}

.service-body a:hover {
  color: #15110a;
  background: var(--orange-bright);
}

.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: #0d0e0b;
}

.compare-image::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 2;
  width: 2px;
  background: rgba(208, 162, 74, 0.92);
  box-shadow: 0 0 0 1px rgba(208, 162, 74, 0.28), 0 0 28px rgba(208, 162, 74, 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;
  filter: saturate(0.76) contrast(1.04) brightness(0.88);
  transition: transform 420ms ease, filter 420ms ease;
}

.before-card:hover {
  transform: translateY(-8px);
  border-color: rgba(208, 162, 74, 0.34);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.50);
}

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

.before-card:hover .compare-image::before {
  transform: translateX(-50%) scaleY(1.08);
  box-shadow: 0 0 0 1px rgba(208, 162, 74, 0.40), 0 0 42px rgba(208, 162, 74, 0.42);
}

.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: #15110a;
  background: var(--orange-bright);
  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(--orange-bright);
  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(--orange-bright);
  letter-spacing: 2px;
}

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

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

.review-card strong {
  color: #f0f4fa;
  font-weight: 900;
}

.review-card span {
  margin-top: 8px;
  color: #5a6778;
  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;
  filter: saturate(0.72) contrast(1.05) brightness(0.82);
}

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


.form-title {
  margin: 20px 30px 0;
  color: var(--orange-bright);
  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: #a8b8cc;
  font-size: 14px;
  font-weight: 900;
}

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

.lead-form input:focus {
  border-color: rgba(208, 162, 74, 0.66);
  box-shadow: 0 0 0 4px rgba(208, 162, 74, 0.12);
  outline: 0;
}

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

.consent-line {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: #5a6778;
  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(--orange-bright);
  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: var(--orange-bright);
  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: #0d0e0b;
  border: 1px solid rgba(208, 162, 74, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.50);
}

.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: #15110a;
  background: var(--orange-bright);
  border-radius: var(--radius);
  box-shadow: 0 20px 46px rgba(208, 162, 74, 0.34);
}

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

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

.footer {
  padding: 34px 0;
  color: #4a5566;
  background: #060708;
}

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

.footer strong {
  display: block;
  color: #a8b8cc;
  font-size: 20px;
}

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

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

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

/* === PRICELIST === */
.pricelist-section {
  background: #12130f;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #171812;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.30);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(208, 162, 74, 0.36);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.45);
}

.price-card-name {
  margin: 0 0 20px;
  color: #f0f4fa;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.price-card-rows {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.price-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #0d0e0b;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.price-card-row-label {
  color: #8a95a5;
  font-size: 14px;
  font-weight: 700;
}

.price-card-row-price {
  color: var(--orange-bright);
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.price-card-includes {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.price-card-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #6e7f96;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.price-card-includes li::before {
  content: "";
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin-top: 5px;
  background: var(--orange-bright);
  border-radius: 50%;
}

.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(13, 14, 11, 0.98);
    border-top: 1px solid var(--line);
  }

  body.nav-open .site-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 720px;
  }

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

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

}

@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: 70px;
    height: 60px;
    padding-right: 12px;
  }

  .brand {
    width: auto;
  }

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

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

  .brand-text {
    min-width: 132px;
    gap: 6px;
  }

  .brand-text strong:first-child {
    font-size: 26px;
  }

  .brand-text strong:last-child {
    gap: 7px;
    font-size: 11px;
  }

  .brand-text strong:last-child::before,
  .brand-text strong:last-child::after {
    flex-basis: 16px;
    height: 1px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 48px 0 28px;
    background: #0a0c0e;
  }

  .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,
  .pricelist-grid {
    grid-template-columns: repeat(2, minmax(0, 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) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-text {
    min-width: 0;
  }

  body.nav-open .site-nav {
    max-height: calc(100dvh - 82px);
    overflow-y: auto;
  }

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

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

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

  .section {
    padding: 58px 0;
  }

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

  .row-head {
    gap: 18px;
  }

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

  .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;
    margin-top: 26px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
  }

  .stats-strip article,
  .stats-strip article:nth-child(odd) {
    grid-template-columns: 46px 1fr;
    column-gap: 14px;
    min-height: 96px;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .stat-icon svg {
    width: 26px;
    height: 26px;
  }

  .stats-strip strong {
    font-size: 24px;
  }

  .stats-strip p {
    font-size: 14px;
  }

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

  .service-list,
  .review-list {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc(100vw - 64px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .service-body,
  .work-copy,
  .review-card,
  .price-card {
    padding: 22px;
  }

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

  .lead-copy {
    padding: 22px;
  }

  .lead-copy p,
  .booking-content > p {
    font-size: 16px;
  }

  .booking-grid {
    gap: 28px;
  }

  .booking-media img {
    aspect-ratio: 4 / 3;
  }

  .form-title {
    margin: 18px 0 0;
  }

  .lead-form {
    padding: 22px;
  }

  .price-card-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

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

  .map-wrap,
  .map-wrap iframe {
    min-height: 320px;
  }

  .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;
  }
}
