:root {
  color-scheme: dark;
  --bg: #09090a;
  --surface: #141416;
  --surface-2: #19191c;
  --line: #2c2b2e;
  --text: #f7f4ef;
  --muted: #aaa49e;
  --red: #f03d32;
  --red-dark: #bd3730;
  --gold: #cba365;
  --navy: #0d1427;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
[id] { scroll-margin-top: 100px; }
.mobile-menu:not([open]) { display: none; }
.mobile-menu[open] {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) 18px env(safe-area-inset-bottom, 0px);
  border: 0;
  background: #09090a;
  color: #f7f4ef;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-menu::backdrop { background: #09090a; }
.mobile-menu__header { display: flex; gap: 14px; align-items: center; min-height: 76px; border-bottom: 1px solid var(--line); }
.mobile-menu__close { flex: none; width: 44px; height: 44px; padding: 0; background: #19191c; border: 1px solid #777; border-radius: 11px; font-size: 30px; cursor: pointer; }
.mobile-menu__links { display: grid; padding: 20px 0; }
.mobile-menu__links a { display: block; padding: 14px 12px; border-bottom: 1px solid var(--line); font-size: 23px; font-weight: 700; }
.mobile-menu__links a[aria-current] { color: var(--gold); }
.mobile-menu__contact { padding: 18px 12px 30px; }
.mobile-menu__contact a { font-size: 21px; font-weight: 700; }
.mobile-menu__contact p { color: #f7f4ef; font-size: 15px; }

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

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

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

button {
  color: inherit;
}

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

.contact-strip {
  background: #050506;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #d9d4ce;
  font-size: 12px;
}

.contact-strip__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-strip__address {
  margin-right: auto;
}

.contact-strip a:hover {
  color: #fff;
}

.socials {
  display: flex;
  align-items: center;
  gap: 7px;
}

.socials a {
  width: 34px;
  height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.socials a:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 9, 10, 0.92);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
}

.brand__mark {
  width: 45px;
  height: 56px;
  object-fit: contain;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.66);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.22));
}

.brand__name {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.13em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-inline: auto;
  color: #d7d2cb;
  font-size: 13px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: none;
  border-radius: 11px;
  background: #d62e25;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 8px 24px rgba(242, 58, 47, 0.2);
}

.ui-icon { display: block; width: 20px; height: 20px; flex: none; }
.socials .ui-icon { width: 17px; height: 17px; }
.socials a:focus-visible, .header-call:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: 0.2s ease;
}

.hero {
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero::before {
  background: linear-gradient(90deg, rgba(5, 5, 6, 0.98) 0%, rgba(5, 5, 6, 0.86) 42%, rgba(5, 5, 6, 0.2) 78%, rgba(5, 5, 6, 0.42) 100%);
}

.hero::after {
  z-index: -2;
  background: url("/assets/client/yellow-lamborghini-rear-detail.jpg") 60% center / cover no-repeat;
}

.hero__copy {
  max-width: 810px;
  padding: 86px 0 100px;
}

.eyebrow {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff4a3d;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--red);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 900px;
  margin: 22px 0 26px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.hero__lead {
  max-width: 610px;
  margin: 0;
  color: #d5d0ca;
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button--primary {
  background: #d62e25;
  color: #fff;
}

.button--light {
  background: #fff;
  color: #171717;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.button--gold {
  background: var(--gold);
  color: #121212;
}

.section {
  padding: 96px 0;
}

.section--compact {
  padding: 72px 0;
}

.section--surface {
  background: #0e0e10;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 7px 0 0;
  font-size: clamp(37px, 4.4vw, 57px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-head p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.service-card {
  min-width: 0;
  height: 292px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 18px;
  background: var(--surface);
  isolation: isolate;
  transition: border-color 0.2s ease, transform 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #4a484c;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__image {
  transform: scale(1.035);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.48) 45%, transparent 72%);
}

.service-card__copy {
  position: absolute;
  right: 64px;
  bottom: 17px;
  left: 18px;
  z-index: 2;
}

.service-card__name {
  font-size: 20px;
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.service-card__description,
.service-card__price {
  margin-top: 5px;
  color: #d6d0c9;
  font-size: 12px;
  line-height: 1.3;
}

.service-card__arrow,
.circle-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  background: rgba(26, 26, 28, 0.94);
  color: #fff;
  font-size: 19px;
  line-height: 1;
}

.service-card__arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
}

.proof {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid #252d42;
  border-radius: 26px;
  background: var(--navy);
}

.proof__image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
}

.proof__copy {
  padding: 54px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #10172b, #0b1020);
}

.proof h2 {
  margin: 0 0 30px;
  color: #f2eee7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.proof h2 span {
  color: var(--gold);
}

.proof__list {
  padding-left: 18px;
  display: grid;
  gap: 18px;
  border-left: 2px solid var(--gold);
}

.proof__list p {
  margin: 0;
  color: #efebe4;
  font-size: 16px;
  line-height: 1.28;
}

.work-promo {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
  border-radius: 26px;
  background: var(--surface);
}

.work-promo__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.45s ease, transform 0.7s ease;
}

.work-promo__image.is-active {
  opacity: 1;
  transform: scale(1);
}

.work-carousel {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: #111;
}

.work-carousel__controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.work-carousel__controls button {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(9, 9, 10, 0.82);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  pointer-events: auto;
}

.work-carousel__dots {
  display: flex;
  gap: 7px;
}

.work-carousel__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.work-carousel__dots span.is-active {
  width: 22px;
  border-radius: 10px;
  background: var(--gold);
}

.work-promo__copy {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-promo h2 {
  margin: 10px 0 16px;
  font-size: 38px;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.work-promo p {
  margin: 0 0 26px;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.faq-intro h2 {
  margin: 8px 0 16px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.faq-intro p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
}

.faq-list summary {
  padding: 20px 54px 20px 20px;
  position: relative;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.lead-section {
  background: var(--red-dark);
  color: #fff;
  padding: 42px 0;
}

.lead-section__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 52px;
}

.lead-section h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.lead-section__intro p {
  max-width: 430px;
  margin: 0;
  color: #fff;
}

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

.request-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
}

.request-form .form-field--wide,
.request-form .form-actions {
  grid-column: 1 / -1;
}

.request-form input,
.request-form textarea,
.request-form select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  outline: none;
  background: #fff;
  color: #171717;
  color-scheme: light;
  font-size: 16px;
}

.request-form input::placeholder,
.request-form textarea::placeholder { color: #535353; opacity: 1; }
.request-form .form-trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.request-form .form-status,
.request-form .form-fallback { grid-column: 1 / -1; margin: 0; color: #fff; font-size: 14px; }
.form-status:empty { display: none; }
.form-status:not(:empty) { padding: 12px; border: 1px solid #fff; border-radius: 10px; }
.form-fallback a { text-decoration: underline; text-underline-offset: 3px; }
.request-form button:disabled { opacity: .7; cursor: wait; }

.request-form textarea {
  min-height: 92px;
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus {
  border-color: #fff;
}

.request-form select option {
  color: #111;
  background: #fff;
}

.request-form select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='m1 1 6 6 6-6' stroke='%23171717' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.form-note {
  margin: 0;
  color: #fff;
  font-size: 13px;
}

.request-form .form-consent { grid-column: 1 / -1; color: #fff; }
.request-form .form-consent label { display: flex; gap: 12px; align-items: flex-start; min-height: 44px; padding: 8px 0; font-weight: 500; cursor: pointer; }
.request-form .form-consent input { appearance: auto; -webkit-appearance: checkbox; flex: 0 0 22px; width: 22px; height: 22px; min-height: 22px; margin: 2px 0 0; padding: 0; accent-color: #171717; }
.request-form .form-consent input:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
.form-consent p { margin: 4px 0 6px 34px; font-size: 14px; }
.form-consent a, .footer-legal a, .legal-document a { text-decoration: underline; text-underline-offset: 4px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px 28px; padding-top: 28px; color: #fff; font-size: 14px; }
.legal-document { max-width: 900px; padding-top: 48px; padding-bottom: 64px; color: #f7f4ef; overflow-wrap: anywhere; }
.legal-document h1 { font-size: clamp(30px, 5vw, 54px); line-height: 1.1; margin: 20px 0; }
.legal-document h2 { font-size: clamp(23px, 3vw, 30px); line-height: 1.25; margin: 36px 0 16px; }
.legal-document p { font-size: 16px; line-height: 1.75; }
.legal-document .legal-version { color: #d1d1d1; font-size: 14px; }
.legal-notice { padding: 20px; margin: 24px 0 32px; border: 1px solid #c6a469; border-radius: 12px; background: #191714; color: #f4dfba; font-size: 16px; line-height: 1.6; }
.legal-contact { margin-top: 32px; border-top: 1px solid var(--line); padding-top: 16px; }

.page-hero {
  min-height: 430px;
  position: relative;
  display: flex;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-hero::before {
  background: linear-gradient(90deg, rgba(5, 5, 6, 0.96), rgba(5, 5, 6, 0.55) 62%, rgba(5, 5, 6, 0.35));
}

.page-hero::after {
  z-index: -2;
  background: var(--page-image, url("/assets/hero.jpg")) center / cover no-repeat;
}

.page-hero__copy {
  max-width: 850px;
  padding: 86px 0 70px;
}

.breadcrumbs {
  margin-bottom: 24px;
  color: #c3bdb6;
  font-size: 12px;
}

.breadcrumbs a:hover {
  color: #fff;
}

.page-hero h1 {
  margin: 8px 0 18px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.page-hero p {
  max-width: 650px;
  margin: 0;
  color: #d7d2cb;
  font-size: 18px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 46px;
  align-items: start;
}

.service-detail__body h2,
.content-block h2 {
  margin: 0 0 20px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.service-detail__body p,
.content-block p {
  color: #c2bcb5;
  font-size: 16px;
}

.feature-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.feature-list li {
  padding: 14px 16px 14px 44px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  top: 13px;
  left: 16px;
  color: var(--red);
  font-weight: 900;
}

.price-card {
  position: sticky;
  top: 104px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.price-card__head {
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.price-card__head span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.price-card__head strong {
  display: block;
  margin-top: 5px;
  font-size: 30px;
}

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  padding: 15px 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  color: #d8d3cc;
  font-size: 14px;
}

.price-list li strong {
  color: #fff;
  white-space: nowrap;
}

.price-card__actions {
  padding: 20px 24px;
  display: grid;
  gap: 10px;
}

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

.gallery__item {
  height: 270px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 15px;
  background: var(--surface);
  cursor: zoom-in;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery__item:hover img {
  transform: scale(1.035);
}

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

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}

.lightbox {
  width: min(1080px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: hidden;
  border: 1px solid #444;
  border-radius: 18px;
  background: #050506;
  color: #fff;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
}

.lightbox__image {
  width: 100%;
  max-height: calc(100vh - 32px);
  object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.lightbox__close {
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  font-size: 24px;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  font-size: 24px;
}

.lightbox__prev {
  left: 14px;
}

.lightbox__next {
  right: 14px;
}

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

.value-card,
.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.value-card__number {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.value-card h3,
.contact-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.1;
}

.value-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-card a {
  color: #fff;
  font-weight: 800;
}

.map-frame,
.reviews-frame {
  width: 100%;
  min-height: 500px;
  display: block;
  border: 0;
  border-radius: 20px;
  background: var(--surface);
}

.site-footer {
  padding: 54px 0 28px;
  border-top: 1px solid var(--line);
  background: #080809;
}

.footer-intro {
  max-width: 620px;
  margin: 0 auto 50px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.footer-brand {
  display: block;
}

.footer-brand__mark {
  width: 90px;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.18));
}

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

.footer-copy {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.2;
}

.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-pending { opacity: 0; transform: translateY(24px); }

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

.footer-title {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  color: #f7f4ef;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #f7f4ef;
  font-size: 13px;
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(80px, 16vw, 170px);
  line-height: 0.8;
}

.not-found p {
  color: var(--muted);
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 14px;
  }

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

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

@media (max-width: 820px) {
  .shell {
    width: min(100% - 36px, var(--shell));
  }

  .contact-strip__inner {
    min-height: 42px;
    gap: 10px;
  }

  .contact-strip__address {
    max-width: 200px;
    line-height: 1.2;
  }

  .contact-strip__phone {
    display: none;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand__mark {
    width: 40px;
    height: 50px;
  }

  .brand__name {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .header-call {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"]::before {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"]::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: 700px;
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(5, 5, 6, 0.98) 0%, rgba(5, 5, 6, 0.84) 58%, rgba(5, 5, 6, 0.35) 100%);
  }

  .hero__copy {
    padding: 92px 0 84px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section,
  .section--compact {
    padding: 68px 0;
  }

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

  .proof,
  .work-promo,
  .faq-grid,
  .lead-section__grid,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .proof__image {
    height: 320px;
    min-height: 0;
  }

  .proof__copy,
  .work-promo__copy {
    padding: 32px 26px;
  }

  .proof h2,
  .work-promo h2 {
    font-size: 31px;
  }

  .work-carousel {
    min-height: 310px;
  }

  .lead-section {
    padding: 32px 0;
  }

  .request-form {
    grid-template-columns: 1fr;
  }

  .request-form label,
  .request-form .form-field--wide,
  .request-form .form-actions {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .price-card {
    position: static;
  }

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

  .gallery__item {
    height: 220px;
  }

  .video-grid,
  .values-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-intro {
    margin-bottom: 38px;
  }
}

@media (max-width: 520px) {
  .contact-strip__address {
    max-width: 195px;
    font-size: 12px;
  }

  .socials a {
    width: 32px;
    height: 32px;
  }

  .header-call {
    min-height: 44px;
    padding: 0 13px;
  }

  .header-call span:last-child {
    display: none;
  }

  .service-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 280px;
  }

  .gallery__item {
    height: 250px;
  }

  .page-hero {
    min-height: 380px;
  }

  .page-hero h1 {
    font-size: 43px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .price-list li {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll.is-pending { opacity: 1; transform: none; }
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
