:root {
  color-scheme: dark;
  --ink: #080a0b;
  --ink-soft: #0d1113;
  --panel: #121719;
  --panel-light: #192024;
  --accent: #169c98;
  --accent-bright: #66d3ce;
  --burgundy: #8e2432;
  --burgundy-bright: #cf6570;
  --metal: #b8b7b2;
  --metal-bright: #e4e1dc;
  --text: #f0f2f1;
  --muted: #a4afb1;
  --line: rgba(228, 232, 230, 0.13);
  --header-height: 96px;
  --header-offset: clamp(12px, 1.6vw, 24px);
  --page-padding: clamp(20px, 5vw, 82px);
  --section-space: clamp(82px, 9vw, 132px);
  --tail-section-space: clamp(44px, 4.5vw, 64px);
  --max-width: 1520px;
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, "Helvetica Neue", Arial, sans-serif;
  --section-title-size: clamp(2rem, 3.6vw, 4.5rem);
  --section-title-compact-size: clamp(1.55rem, 2.4vw, 2.8rem);
  --section-title-line-height: 0.98;
  --section-title-letter-spacing: -0.035em;
  --section-label-size: clamp(0.9rem, 1.15vw, 1.08rem);
  --heading-label-gap: clamp(18px, 2vw, 28px);
  --lead-title-size: clamp(1.5rem, 2.6vw, 2.8rem);
  --card-title-size: clamp(1.2rem, 1.8vw, 2rem);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --motion-distance: 12px;
  --motion-hero-duration: 460ms;
  --motion-line-duration: 360ms;
  --motion-item-duration: 280ms;
  --motion-stagger: 50ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--header-offset) + 18px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
}

body::selection {
  background: var(--accent);
  color: var(--ink);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent-bright);
  outline-offset: 5px;
}

.section h1:focus-visible,
.section h2:focus-visible,
.section h3:focus-visible {
  outline: 2px solid rgba(25, 191, 193, 0.75);
  outline-offset: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.draft-badge {
  position: fixed;
  z-index: 900;
  left: var(--page-padding);
  bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(207, 101, 112, 0.42);
  background: rgba(58, 13, 20, 0.78);
  color: #e3a0a7;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.floating-contact {
  position: fixed;
  z-index: 1150;
  right: clamp(14px, 2vw, 30px);
  bottom: max(clamp(18px, 2vw, 30px), env(safe-area-inset-bottom));
  width: min(216px, calc(100vw - 28px));
  max-height: calc(100svh - 28px);
  padding: 12px 8px 8px;
  overflow-y: auto;
  border: 1px solid rgba(228, 232, 230, 0.16);
  border-radius: 13px;
  background:
    linear-gradient(155deg, rgba(24, 34, 38, 0.97), rgba(7, 11, 13, 0.98));
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.floating-contact-symbol {
  width: 30px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(207, 101, 112, 0.38);
  background: rgba(142, 36, 50, 0.18);
  color: var(--metal-bright);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-style: normal;
  font-variant-emoji: text;
  font-weight: 400;
  line-height: 1;
  box-shadow: none;
}

.floating-contact-heading {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 0 6px 9px;
}

.floating-contact-heading-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.floating-contact-heading small,
.floating-contact-links small {
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-contact-heading-copy strong {
  font-family: var(--body);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-transform: none;
  white-space: nowrap;
}

.floating-contact-links {
  display: grid;
  gap: 5px;
}

.floating-contact-links a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 44px;
  padding: 5px 6px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  transition: transform 140ms var(--ease-out), border-color 180ms var(--ease-out), background-color 180ms var(--ease-out);
}

.floating-contact-links a > span:last-child {
  min-width: 0;
  display: grid;
  line-height: 1.15;
}

.floating-contact-links strong {
  margin-top: 3px;
  overflow-wrap: anywhere;
  font-size: 0.67rem;
}

.floating-contact-code {
  width: 30px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(228, 232, 230, 0.24);
  border-radius: 8px;
  color: var(--metal-bright);
  font-size: 0.54rem;
  font-weight: 950;
}

.floating-contact-code.is-whatsapp {
  background: var(--accent);
  color: var(--ink);
}

.floating-contact-code.is-email {
  font-size: 0.94rem;
  line-height: 1;
}

.site-header {
  position: fixed;
  z-index: 1200;
  top: var(--header-offset);
  right: var(--header-offset);
  left: var(--header-offset);
  height: var(--header-height);
  overflow: hidden;
  border: 1px solid rgba(190, 190, 182, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.018), transparent 38%),
    rgba(5, 7, 8, 0.96);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
  transition: background-color 250ms var(--ease-in-out), border-color 250ms var(--ease-in-out), box-shadow 250ms var(--ease-in-out), transform 250ms var(--ease-in-out);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 78% -42%, rgba(142, 36, 50, 0.13), transparent 55%),
    radial-gradient(circle at 96% 118%, rgba(22, 156, 152, 0.08), transparent 48%),
    linear-gradient(90deg, rgba(28, 29, 29, 0.46), rgba(13, 15, 16, 0.18) 42%, transparent 70%);
  opacity: 0.94;
  pointer-events: none;
}

.header-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(350px, 1fr) auto minmax(350px, 1fr);
  align-items: center;
  gap: clamp(18px, 1.6vw, 28px);
  margin-inline: 0;
  padding-inline: clamp(20px, 2.5vw, 40px);
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100% - 36px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(228, 225, 220, 0.22) 24%, rgba(102, 211, 206, 0.18) 58%, rgba(207, 101, 112, 0.14) 82%, transparent);
  box-shadow: none;
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 8, 0.98);
  border-color: rgba(184, 184, 176, 0.2);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.brand-cluster {
  min-width: 0;
  justify-self: start;
  display: block;
}

.brand {
  flex: 0 0 auto;
  display: flex;
}

.brand-lockup {
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand-plate {
  position: relative;
  isolation: isolate;
  width: clamp(132px, 9vw, 148px);
  display: block;
}

.brand-plate::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(108deg, transparent 22%, rgba(255, 255, 255, 0.22) 45%, rgba(214, 224, 224, 0.08) 52%, transparent 68%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 1px, rgba(30, 35, 36, 0.05) 1px 3px);
  background-position: center, 0 0;
  background-size: 100% 100%, 100% 100%;
  mix-blend-mode: screen;
  opacity: 0.14;
  -webkit-mask: url("./assets/halle86-logo-metal.png") center / contain no-repeat;
  mask: url("./assets/halle86-logo-metal.png") center / contain no-repeat;
  pointer-events: none;
}

.brand-plate img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter:
    brightness(1.08)
    contrast(1.06)
    saturate(1.16)
    drop-shadow(0 5px 9px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 8px rgba(207, 224, 224, 0.16));
}

.brand-separator {
  flex: 0 0 1px;
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.26);
}

.partner-brand {
  min-width: 0;
  display: block;
}

.partner-logo-frame {
  --partner-logo-base: clamp(140px, 10vw, 148px);
  --partner-logo-copy-bg: clamp(182px, 13vw, 192.4px);
  --partner-symbol-width: clamp(49.4px, 3.525vw, 52.2px);
  --partner-copy-width: clamp(117.8px, 8.4175vw, 124.6px);
  --partner-logo-height: clamp(52.6px, 3.757vw, 55.6px);
  width: auto;
  height: var(--partner-logo-height);
  display: grid;
  grid-template-columns: var(--partner-symbol-width) var(--partner-copy-width);
  overflow: hidden;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.partner-logo-frame::before,
.partner-logo-frame::after {
  content: "";
  display: block;
  background-image: url("./assets/individual-lack-design-metal-v3.png");
  background-repeat: no-repeat;
  filter:
    brightness(1.04)
    contrast(1.04)
    saturate(1.06);
}

.partner-logo-frame::before {
  background-position: left center;
  background-size: var(--partner-logo-base) auto;
}

.partner-logo-frame::after {
  background-position: right center;
  background-size: var(--partner-logo-copy-bg) auto;
}

.partner-logo-frame img {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: clamp(18px, 1.6vw, 28px);
}

.main-nav > a {
  position: relative;
  isolation: isolate;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 250ms var(--ease-out), transform 140ms var(--ease-out);
}

.main-nav > a::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: -12px;
  right: 50%;
  bottom: auto;
  transform: translateX(50%) scale(0);
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: none;
  transition: transform 250ms var(--ease-out);
}

.main-nav > a.is-active {
  color: var(--accent-bright);
  text-shadow: none;
}

.main-nav > a.is-active::after {
  transform: translateX(50%) scale(1);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.14);
}

.language-switcher {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-switcher [aria-current="page"] {
  color: var(--accent-bright);
}

.language-switcher > :not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.24);
}

.compact-language-switcher {
  display: none;
}

html[lang="ru"] .main-nav > a {
  letter-spacing: 0.09em;
}

html[lang="ru"] .section .eyebrow {
  letter-spacing: 0.15em;
}

.header-call {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid rgba(228, 232, 230, 0.24);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--metal-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 250ms var(--ease-out), background-color 250ms var(--ease-out), box-shadow 250ms var(--ease-out), transform 140ms var(--ease-out);
}

.mobile-nav-actions {
  display: none;
}

.menu-button {
  display: none;
  transition: transform 140ms var(--ease-out), border-color 180ms var(--ease-out), background-color 180ms var(--ease-out);
}

.section {
  position: relative;
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--page-padding);
  scroll-margin-top: calc(var(--header-height) + var(--header-offset) + 20px);
}

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--metal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  flex: 0 0 24px;
  background: linear-gradient(90deg, rgba(228, 225, 220, 0.48), transparent);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  text-transform: uppercase;
}

.hero {
  min-height: 88svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + clamp(70px, 10vh, 120px));
  padding-bottom: clamp(90px, 12vh, 140px);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  overflow: hidden;
  background: #05090a;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% center;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(
      90deg,
      rgba(5, 9, 10, 0.34) 0%,
      rgba(5, 9, 10, 0.22) 28%,
      rgba(5, 9, 10, 0.08) 44%,
      transparent 58%
    ),
    linear-gradient(
      180deg,
      transparent 56%,
      rgba(5, 9, 10, 0.08) 72%,
      rgba(7, 11, 13, 0.58) 94%,
      var(--ink) 100%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
}

.hero-kicker {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--metal);
  font-size: clamp(0.7rem, 1vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  flex: 0 0 34px;
  background: linear-gradient(90deg, var(--burgundy-bright), transparent);
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 30px;
  color: var(--metal-bright);
  font-size: clamp(3.4rem, 6vw, 6.6rem);
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 0.92;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 40px;
  color: #9ba5a8;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.85;
}

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

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(var(--motion-distance));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .js .hero-kicker {
    animation: hero-enter 420ms var(--ease-out) 40ms both;
  }

  .js .hero h1 span {
    animation: hero-enter var(--motion-hero-duration) var(--ease-out) 90ms both;
  }

  .js .hero h1 span:nth-child(2) {
    animation-delay: 145ms;
  }

  .js .hero-lead {
    animation: hero-enter 400ms var(--ease-out) 215ms both;
  }

  .js .hero-actions {
    animation: hero-enter 360ms var(--ease-out) 275ms both;
  }

  .motion-ready .eyebrow::before {
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--motion-line-duration) var(--ease-out);
  }

  .motion-ready .eyebrow.is-motion-visible::before {
    transform: scaleX(1);
  }

  .motion-ready .info-tags span {
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity var(--motion-item-duration) var(--ease-out),
      transform var(--motion-item-duration) var(--ease-out);
  }

  .motion-ready .info-tags.is-motion-visible span {
    opacity: 1;
    transform: translateY(0);
  }

  .motion-ready .info-tags span:nth-child(2) {
    transition-delay: var(--motion-stagger);
  }

  .motion-ready .info-tags span:nth-child(3) {
    transition-delay: calc(var(--motion-stagger) * 2);
  }

  .motion-ready .info-tags span:nth-child(4) {
    transition-delay: calc(var(--motion-stagger) * 3);
  }
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: transform 140ms var(--ease-out), background-color 250ms var(--ease-out), color 250ms var(--ease-out), box-shadow 250ms var(--ease-out);
}

.button-hero {
  min-width: 220px;
  justify-content: space-between;
  border-color: rgba(228, 232, 230, 0.34);
  border-radius: 3px;
  background: rgba(5, 9, 10, 0.28);
  color: var(--metal-bright);
}

.button-arrow {
  position: relative;
  width: 1.2rem;
  height: 0.72rem;
  display: inline-block;
  flex: 0 0 auto;
  color: currentColor;
}

.button-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
}

.button-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1px;
  width: 0.42rem;
  height: 0.42rem;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.external-arrow,
.down-arrow,
.up-arrow {
  position: relative;
  width: 0.82rem;
  height: 0.82rem;
  display: inline-block;
  flex: 0 0 auto;
  color: currentColor;
}

.external-arrow {
  margin-left: 0.22em;
  vertical-align: -0.06em;
}

.external-arrow::before {
  content: "";
  position: absolute;
  top: 0.08rem;
  right: 0.04rem;
  width: 0.44rem;
  height: 0.44rem;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.external-arrow::after {
  content: "";
  position: absolute;
  top: 0.38rem;
  left: 0.09rem;
  width: 0.68rem;
  height: 1.5px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
}

.down-arrow::before,
.up-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1.5px;
  background: currentColor;
  transform: translateX(-50%);
}

.down-arrow::after,
.up-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0.4rem;
  height: 0.4rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
}

.down-arrow::after {
  bottom: 0;
  transform: translateX(-50%) rotate(45deg);
}

.up-arrow::after {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}

.scroll-cue {
  position: absolute;
  left: var(--page-padding);
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue .down-arrow {
  color: var(--accent);
}

.services {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.5fr);
  column-gap: clamp(40px, 8vw, 140px);
  row-gap: var(--heading-label-gap);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 78px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2,
.about-copy h2,
.contact h2 {
  margin-bottom: 0;
  font-size: var(--section-title-size);
  font-style: italic;
  font-weight: 800;
  letter-spacing: var(--section-title-letter-spacing);
  line-height: var(--section-title-line-height);
}

#legal-title,
#privacy-title {
  margin-bottom: 0;
  font-size: var(--section-title-compact-size);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.section-heading h2 span,
.about-copy h2 span,
.contact h2 span {
  color: var(--metal);
  font-weight: 300;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.services .section-heading > .eyebrow,
.media .section-heading > .eyebrow,
.vehicles .section-heading > .eyebrow,
.about-copy > .eyebrow,
.contact-copy > .eyebrow,
.related > .eyebrow,
.legal-heading > .eyebrow,
.privacy > div:first-child > .eyebrow {
  font-size: var(--section-label-size);
  letter-spacing: 0.2em;
}

.about-copy > .eyebrow,
.contact-copy > .eyebrow,
.related > .eyebrow,
.legal-heading > .eyebrow,
.privacy > div:first-child > .eyebrow {
  margin-bottom: var(--heading-label-gap);
}

.info-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.7fr);
  gap: 22px clamp(40px, 8vw, 130px);
  padding: clamp(32px, 4vw, 58px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(142, 36, 50, 0.075), transparent 42%),
    var(--panel);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);
}

.info-story::before {
  content: "";
  position: absolute;
  top: -1px;
  left: clamp(24px, 4vw, 58px);
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(207, 101, 112, 0.55), transparent);
}

.info-story p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.info-story .info-story-lead {
  grid-row: span 2;
  color: var(--text);
  font-family: var(--display);
  font-size: var(--lead-title-size);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.008em;
  line-height: 1.14;
  text-transform: uppercase;
}

.contact h2 {
  max-width: none;
}

#contact-title {
  max-width: none;
  color: var(--text);
  white-space: normal;
}

#contact-title .contact-title-line {
  display: inline-block;
  color: var(--text);
  font-weight: 800;
  white-space: nowrap;
}

#contact-title .contact-title-accent {
  color: var(--accent);
  font-weight: 300;
}

.info-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.info-tags span {
  padding: 9px 13px;
  border: 1px solid rgba(228, 232, 230, 0.2);
  color: var(--metal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(56px, 6vw, 96px);
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.about::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100vw;
  inset: 0 auto 0 50%;
  transform: translateX(-50%);
  background: var(--ink-soft);
}

.about-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 610px;
  padding: clamp(22px, 5vw, 72px);
  background: transparent;
}

.about-image-placeholder {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 490px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border: 0;
  background: transparent;
  font-family: var(--display);
}

.about-brand-lockup {
  width: min(100%, 620px);
  height: auto;
  display: block;
  margin-inline: auto;
  aspect-ratio: auto;
}

.about-brand-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  filter: none;
}

.about-brand-caption {
  margin-top: clamp(42px, 5vw, 58px);
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-copy {
  min-width: 0;
  max-width: 68ch;
}

.about-copy h2 {
  max-width: 12ch;
}

.about-copy .about-claim {
  max-width: 44ch;
  margin-top: clamp(28px, 3vw, 36px);
  margin-bottom: 0;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.48;
  text-transform: uppercase;
}

.about-story {
  max-width: 64ch;
  margin-top: clamp(34px, 4vw, 52px);
}

.about-story-block + .about-story-block {
  margin-top: clamp(28px, 3vw, 40px);
  padding-top: clamp(24px, 2.5vw, 34px);
  border-top: 1px solid var(--line);
}

.about-story h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(1.05rem, 1.2vw, 1.3rem);
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.about-story p {
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, calc(0.25vw + 0.95rem), 1.1rem);
  line-height: 1.75;
}

.about-story p + p {
  margin-top: 0.9em;
}

.media {
  padding-top: var(--section-space);
  padding-bottom: var(--tail-section-space);
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(290px, 0.75fr);
  gap: 18px;
}

.video-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #121719, #0c1012);
}

.video-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-soft);
}

.video-poster {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-noise {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 8, 0.08), rgba(4, 7, 8, 0.38));
}

.video-load-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 68px;
  min-width: 68px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 13px;
  background: #e62117;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  color: #fff;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.video-card.is-embed-enabled .video-load-button {
  display: inline-flex;
}

.video-load-button:hover {
  background: #ff0033;
  transform: translate(-50%, -50%) scale(1.04);
}

.video-load-button:active {
  transform: translate(-50%, -50%) scale(0.98);
}

.video-load-button:disabled {
  cursor: progress;
  opacity: 0.7;
}

.video-play-icon {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #fff;
}

.video-stage iframe {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.video-card.is-loaded .video-poster,
.video-card.is-loaded .video-noise,
.video-card.is-loaded .video-load-button {
  display: none;
}

.video-card.is-loaded .video-stage iframe {
  opacity: 1;
  pointer-events: auto;
}

.video-meta {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 2.2vw, 28px);
  border-top: 1px solid var(--line);
}

.video-label {
  color: var(--accent-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-meta h3 {
  margin: 0;
  font-family: var(--display);
  font-size: var(--card-title-size);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.video-meta > p {
  width: 100%;
  min-width: 0;
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.video-meta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  min-width: 0;
}

.video-external,
.social-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  min-height: 44px;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: rgba(102, 211, 206, 0.65);
  text-underline-offset: 5px;
}

.video-external:hover,
.social-profile-link:hover {
  color: var(--accent-bright);
}

.video-status {
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.social-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: clamp(16px, 2vw, 22px);
  align-content: start;
  min-height: 0;
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 90%, rgba(162, 0, 87, 0.11), transparent 35%),
    linear-gradient(145deg, #18151c, #11181b 65%);
}

.social-intro {
  min-width: 0;
  display: grid;
  gap: clamp(12px, 1.6vw, 18px);
  align-content: start;
}

.social-label {
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #d9cbd6;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-card h3 {
  margin: 0;
  font-size: var(--card-title-size);
  font-style: italic;
  font-weight: 800;
  letter-spacing: var(--section-title-letter-spacing);
  line-height: var(--section-title-line-height);
}

.social-card p {
  margin: 0;
  color: #bdb1bb;
}

.social-profile-link {
  align-self: end;
  justify-self: start;
  min-width: 0;
  max-width: 100%;
  margin-top: 0;
}

.social-carousel {
  min-width: 0;
  width: min(100%, 520px);
  display: grid;
  gap: 10px;
  align-content: start;
  justify-self: center;
}

.social-carousel-toolbar {
  min-width: 0;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.social-card.carousel-ready .social-carousel-toolbar {
  display: grid;
}

.social-carousel-button {
  position: relative;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(228, 232, 230, 0.2);
  border-radius: 4px;
  background: rgba(5, 9, 10, 0.32);
  color: var(--metal-bright);
  cursor: pointer;
  transition: border-color 180ms var(--ease-out), background-color 180ms var(--ease-out), color 180ms var(--ease-out), transform 140ms var(--ease-out);
}

.social-carousel-button:disabled {
  cursor: default;
  opacity: 0.48;
}

.social-carousel-counter {
  min-width: 0;
  justify-self: start;
  display: inline-flex;
  gap: 0.38em;
  color: rgba(228, 232, 230, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
}

.social-carousel-navigation {
  display: flex;
  gap: 6px;
}

.social-carousel-chevron {
  width: 10px;
  height: 10px;
  display: block;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.social-carousel-chevron.is-previous {
  transform: rotate(-135deg);
}

.social-description {
  line-height: 1.55;
}

.social-carousel-track {
  min-width: 0;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 4px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(102, 211, 206, 0.48) rgba(255, 255, 255, 0.06);
}

.social-carousel-track:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 4px;
}

.social-card.carousel-ready .social-carousel-track {
  display: grid;
  overflow: hidden;
  padding-bottom: 0;
}

.social-slide {
  position: relative;
  isolation: isolate;
  flex: 0 0 min(88%, 420px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(228, 232, 230, 0.16);
  border-radius: 7px;
  background: #0c1113;
  scroll-snap-align: start;
}

.social-card.carousel-ready .social-slide {
  grid-area: 1 / 1;
  width: 100%;
}

.social-card.carousel-ready .social-slide.is-active {
  animation: social-slide-in 260ms var(--ease-out) both;
}

.social-slide[hidden] {
  display: none;
}

.social-slide img,
.social-slide-placeholder {
  width: 100%;
  height: 100%;
  display: block;
}

.social-slide img {
  object-fit: cover;
}

.social-slide-placeholder {
  position: relative;
  display: grid;
  place-content: end start;
  gap: 2px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(145deg, rgba(5, 9, 10, 0.12), rgba(5, 9, 10, 0.68)),
    radial-gradient(circle at 78% 20%, rgba(102, 211, 206, 0.24), transparent 32%),
    linear-gradient(135deg, #192326, #0c1012 64%);
  color: rgba(228, 232, 230, 0.88);
}

.social-slide-placeholder::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(228, 232, 230, 0.13);
  border-radius: 4px;
  pointer-events: none;
}

.social-slide-placeholder.is-paint {
  background:
    linear-gradient(145deg, rgba(5, 9, 10, 0.08), rgba(5, 9, 10, 0.7)),
    radial-gradient(circle at 74% 24%, rgba(207, 101, 112, 0.28), transparent 34%),
    linear-gradient(135deg, #27171d, #0d1113 68%);
}

.social-slide-placeholder.is-workshop {
  background:
    linear-gradient(145deg, rgba(5, 9, 10, 0.06), rgba(5, 9, 10, 0.72)),
    radial-gradient(circle at 72% 22%, rgba(184, 183, 178, 0.25), transparent 34%),
    linear-gradient(135deg, #242629, #0c1012 66%);
}

.social-slide-placeholder span {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.social-slide-placeholder small {
  color: rgba(228, 232, 230, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@keyframes social-slide-in {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

.vehicles {
  padding-top: var(--section-space);
  padding-bottom: var(--tail-section-space);
}

.services + .vehicles {
  padding-top: 0;
}

.vehicle-empty {
  min-height: clamp(210px, 18vw, 270px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(22, 156, 152, 0.045), transparent 42%),
    var(--panel);
}

.vehicle-empty-copy {
  max-width: 54ch;
}

.vehicle-status {
  margin: 0 0 14px;
  color: var(--accent-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vehicle-empty h3 {
  margin: 0;
  color: var(--metal-bright);
  font-size: var(--card-title-size);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.vehicle-empty-copy > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.vehicle-enquiry {
  min-height: 48px;
  justify-self: end;
  justify-content: space-between;
  border-color: rgba(102, 211, 206, 0.44);
  border-radius: 3px;
  background: rgba(22, 156, 152, 0.08);
  color: var(--accent-bright);
  white-space: nowrap;
}

.related {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.related::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.024), transparent),
    var(--ink-soft);
}

.related-row {
  display: grid;
  grid-template-columns: minmax(220px, 392px) minmax(250px, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 78px);
  justify-content: space-between;
}

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

.related-logo-frame {
  position: relative;
  isolation: isolate;
  width: min(100%, 392px);
  aspect-ratio: 3.6 / 1;
  overflow: visible;
  background: transparent;
}

.related-logo-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18% 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 52%, rgba(220, 34, 58, 0.16), transparent 31%),
    radial-gradient(circle at 72% 48%, rgba(174, 20, 91, 0.11), transparent 43%);
  filter: blur(26px);
  opacity: 0.46;
  pointer-events: none;
}

.related-logo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 0 0.8px rgba(4, 7, 8, 0.9))
    drop-shadow(0 9px 18px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 15px rgba(173, 24, 75, 0.08));
}

.related-row > p {
  max-width: 420px;
  justify-self: end;
  color: var(--muted);
  text-align: right;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
  padding-top: var(--tail-section-space);
  padding-bottom: var(--tail-section-space);
}

.contact::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 84% 35%, rgba(142, 36, 50, 0.1), transparent 32%),
    var(--panel);
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.contact-actions a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 6px;
  align-items: center;
  padding: 20px;
  scroll-margin-bottom: 240px;
  border: 1px solid var(--line);
  transition: transform 140ms var(--ease-out), background-color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.contact-actions small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-actions strong {
  grid-column: 2;
  font-size: clamp(1rem, 2vw, 1.35rem);
  overflow-wrap: anywhere;
}

.contact-cta-line {
  min-width: 0;
  display: inline-flex;
  gap: 0.38em;
  align-items: baseline;
}

.contact-cta-line > .external-arrow {
  margin-left: 0;
  transform: translateY(0.14rem);
}

.contact-cta-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-action-code {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 36px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(228, 232, 230, 0.3);
  border-radius: 50%;
  color: var(--metal-bright);
  font-size: 0.58rem;
  font-weight: 900;
}

.contact-action-code.is-whatsapp {
  border-color: rgba(38, 210, 201, 0.6);
  color: var(--accent-bright);
}

.contact-action-code.is-email {
  font-size: 1.1rem;
  line-height: 1;
}

.legal {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 112px);
  padding-top: clamp(60px, 7vw, 104px);
  padding-bottom: clamp(52px, 6vw, 88px);
}

.legal-heading h2 {
  margin: 0;
  font-style: italic;
}

.legal-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
}

.legal-content h3 {
  color: var(--metal-bright);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}

.legal-content p {
  color: var(--muted);
}

.legal-placeholder {
  grid-column: 1 / -1;
  padding: 25px;
  border-left: 3px solid rgba(207, 101, 112, 0.56);
  background: rgba(58, 13, 20, 0.32);
}

.legal-placeholder strong {
  color: #e3a0a7;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-placeholder p {
  margin: 8px 0 0;
}

.privacy {
  display: block;
  padding-top: 0;
  padding-bottom: var(--tail-section-space);
}

.privacy-heading {
  min-width: 0;
  margin-bottom: clamp(28px, 4vw, 42px);
}

#privacy-title {
  max-width: 100%;
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.55rem);
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.1;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

html[lang="ru"] #privacy-title {
  overflow-wrap: anywhere;
  hyphens: none;
}

.privacy-updated {
  display: block;
  margin: 11px 0 0;
  color: rgba(164, 175, 177, 0.78);
  font-size: 0.76rem;
  line-height: 1.45;
}

.privacy-document {
  width: 100%;
  min-width: 0;
  color: rgba(164, 175, 177, 0.82);
  font-size: clamp(0.9rem, 0.16vw + 0.87rem, 0.97rem);
  line-height: 1.58;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 18px);
}

.privacy-block {
  min-width: 0;
  margin: 0;
  padding: clamp(15px, 1.7vw, 19px);
  border: 1px solid rgba(184, 183, 178, 0.16);
  border-radius: 9px;
  background: rgba(15, 19, 20, 0.52);
  font-size: clamp(0.85rem, 0.12vw + 0.82rem, 0.9rem);
  align-self: start;
}

.privacy-block.is-open {
  grid-column: 1 / -1;
  border-color: rgba(25, 191, 193, 0.3);
  background: rgba(15, 21, 22, 0.72);
}

.privacy-document h3 {
  margin: 0;
  scroll-margin-top: calc(var(--header-height) + var(--header-offset) + 20px);
  color: rgba(228, 232, 230, 0.9);
  font-size: clamp(0.96rem, 0.24vw + 0.92rem, 1.08rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.24;
  text-transform: none;
  text-wrap: balance;
}

html[lang="ru"] .privacy-document h3 {
  letter-spacing: -0.005em;
}

.privacy-document p {
  margin: 0;
  text-wrap: pretty;
}

.privacy-toggle {
  width: 100%;
  min-height: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  gap: 16px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
}

.privacy-toggle:disabled {
  cursor: default;
}

.privacy-toggle:disabled .privacy-toggle-icon {
  display: none;
}

.privacy-toggle:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 5px;
  border-radius: 3px;
}

.privacy-toggle-icon {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(184, 183, 178, 0.3);
  border-radius: 50%;
  justify-self: end;
}

.privacy-toggle-icon::before,
.privacy-toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.privacy-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 160ms ease;
}

.privacy-toggle > span:first-child {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.privacy-toggle[aria-expanded="true"] {
  color: var(--accent-bright);
}

.privacy-toggle[aria-expanded="true"] .privacy-toggle-icon::after {
  opacity: 0;
}

.privacy-preview {
  width: 100%;
  max-width: none;
  margin-top: 10px !important;
  color: rgba(164, 175, 177, 0.74);
  text-wrap: wrap;
  overflow-wrap: break-word;
  word-break: normal;
}

.privacy-accordion-ready .privacy-preview {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.privacy-accordion-ready .privacy-block.is-open .privacy-preview {
  display: block;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.privacy-panel {
  width: 100%;
  max-width: none;
  margin-top: 12px;
  margin-inline: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(184, 183, 178, 0.14);
  color: rgba(184, 193, 194, 0.86);
  line-height: 1.6;
  text-wrap: wrap;
  overflow-wrap: break-word;
  word-break: normal;
}

.privacy-panel[hidden] {
  display: none;
}

.privacy-panel > * + * {
  margin-top: 0.78em;
}

.privacy-panel h4 {
  margin: 0;
  color: rgba(228, 232, 230, 0.9);
  font-size: 0.94em;
  font-weight: 700;
  line-height: 1.35;
}

.privacy-panel ul {
  margin: 0;
  padding-left: 1.2em;
}

.privacy-panel li + li {
  margin-top: 0.42em;
}

.privacy-panel address {
  font-style: normal;
}

.privacy-accordion-ready .privacy-block.is-open .privacy-panel {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

@media (min-width: 721px) {
  .privacy-accordion-ready
    .privacy-grid:not(:has(> .privacy-block.is-open)) {
    grid-auto-rows: 1fr;
  }

  .privacy-accordion-ready
    .privacy-grid:not(:has(> .privacy-block.is-open))
    > .privacy-block {
    align-self: stretch;
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .privacy-grid {
    grid-template-columns: 1fr;
  }
}

.privacy-status p > span {
  display: block;
}

.privacy-status p > span + span {
  margin-top: 0.52rem;
}

.privacy-block a,
.legal-confirmation a {
  color: rgba(228, 232, 230, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(25, 191, 193, 0.42);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.privacy-block a:hover,
.legal-confirmation a:hover {
  color: var(--accent-bright);
  text-decoration-color: currentColor;
}

.privacy-block a:focus-visible,
.legal-confirmation a:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

.legal-confirmation {
  margin-top: clamp(16px, 2vw, 20px);
  padding: 16px 18px;
  border-left: 3px solid rgba(207, 101, 112, 0.68);
  border-radius: 0 8px 8px 0;
  background: rgba(58, 13, 20, 0.28);
}

.legal-confirmation strong {
  color: #e3a0a7;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-confirmation p {
  margin: 7px 0 0;
  color: rgba(201, 205, 203, 0.78);
  font-size: 0.86rem;
  line-height: 1.55;
}
.site-footer {
  position: relative;
  isolation: isolate;
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-inline: auto;
  padding: 46px var(--page-padding);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #000;
}

.footer-brand {
  display: grid;
  gap: 8px;
  justify-items: start;
  min-width: 0;
}

.footer-brand-logo {
  display: block;
  width: clamp(210px, 16vw, 260px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
  transform: translateX(-9.765625%);
}

.footer-brand span,
.site-footer p {
  font-size: 0.72rem;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 0.72rem;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
}

.brand,
.language-switcher a,
.scroll-cue,
.footer-links a {
  transition: transform 140ms var(--ease-out);
}

.brand:active,
.main-nav > a:active,
.language-switcher a:active,
.header-call:active,
.menu-button:active,
.button:active,
.scroll-cue:active,
.floating-contact-links a:active,
.contact-actions a:active,
.footer-links a:active {
  transform: scale(0.98);
}

@media (hover: hover) and (pointer: fine) {
  .main-nav > a:hover {
    color: var(--accent-bright);
    text-shadow: none;
  }

  .main-nav > a:hover::after {
    transform: translateX(50%) scale(1);
  }

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

  .floating-contact-links a:hover {
    transform: translateX(-3px);
    border-color: rgba(102, 211, 206, 0.46);
    background: rgba(22, 156, 152, 0.07);
  }

  .header-call:hover,
  .button-hero:hover {
    background: var(--accent);
    box-shadow: none;
    color: #061011;
  }

  .button-hero:hover {
    border-color: var(--accent);
  }

  .contact-actions a:hover {
    border-color: var(--accent);
    background: rgba(0, 161, 156, 0.08);
  }

  .social-carousel-button:not(:disabled):hover {
    border-color: rgba(102, 211, 206, 0.62);
    background: rgba(22, 156, 152, 0.12);
    color: var(--accent-bright);
  }
}

@media (min-width: 721px) {
  .site-footer {
    padding-right: max(var(--page-padding), 292px);
  }
}

@media (max-width: 1600px) {
  :root {
    --header-height: 76px;
    --header-offset: clamp(8px, 1.6vw, 14px);
  }

  .site-header {
    overflow: visible;
    border-radius: 15px;
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto 44px;
    gap: 12px;
    padding-inline: clamp(16px, 3vw, 28px);
  }

  html:not(.menu-ready) .site-header {
    position: relative;
    inset: auto;
    width: calc(100% - (var(--header-offset) * 2));
    height: auto;
    margin: var(--header-offset);
  }

  html:not(.menu-ready) .header-shell {
    min-height: var(--header-height);
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  html:not(.menu-ready) .main-nav {
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding-block: 10px;
  }

  html:not(.menu-ready) .main-nav > a {
    padding-block: 10px;
  }

  .brand-plate {
    width: clamp(108px, 14vw, 122px);
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-separator {
    height: 24px;
  }

  .partner-logo-frame {
    --partner-logo-base: clamp(112px, 15vw, 122px);
    --partner-logo-copy-bg: clamp(145.6px, 19.5vw, 158.6px);
    --partner-symbol-width: clamp(39.5px, 5.2875vw, 43px);
    --partner-copy-width: clamp(94.3px, 12.626vw, 102.7px);
    --partner-logo-height: clamp(42.1px, 5.6355vw, 45.8px);
  }

  .menu-ready .menu-button {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 9px;
    border: 1px solid rgba(228, 232, 230, 0.22);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.018);
  }

  .menu-ready .menu-button > span:not(.sr-only) {
    height: 2px;
    background: var(--text);
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu-ready .main-nav {
    position: absolute;
    grid-column: 1 / -1;
    justify-self: end;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(520px, calc(100vw - 40px));
    max-height: calc(100svh - var(--header-height) - (var(--header-offset) * 2) - 16px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 0;
    padding: 14px 22px 22px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(228, 232, 230, 0.16);
    border-radius: 14px;
    background: rgba(5, 10, 12, 0.98);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(14px);
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms var(--ease-drawer), opacity 180ms var(--ease-out);
  }

  .menu-ready .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-ready .main-nav > a {
    min-height: 64px;
    padding: 22px 0 12px;
    border-bottom: 1px solid var(--line);
    font-size: 0.82rem;
    line-height: 1.3;
    letter-spacing: 0.09em;
    white-space: normal;
    overflow-wrap: normal;
  }

  .menu-ready .main-nav > a::after {
    top: 8px;
    right: auto;
    bottom: auto;
    left: 0;
    transform: scale(0);
  }

  .menu-ready .main-nav > a.is-active::after {
    transform: scale(1);
  }

  .header-actions {
    display: none;
  }

  .menu-ready .compact-language-switcher {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    display: flex;
    gap: 2px;
    font-size: 0.68rem;
  }

  .menu-ready .compact-language-switcher > * {
    min-width: 32px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .menu-ready .compact-language-switcher > :not(:last-child)::after {
    margin-left: 4px;
  }

  .menu-ready .mobile-nav-actions .language-switcher {
    display: none;
  }

  .mobile-nav-actions {
    grid-column: 1 / -1;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
    justify-items: end;
    margin-top: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav-actions .header-call {
    min-width: 150px;
  }
}

@media (max-width: 1180px) {
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 82svh;
    padding-top: calc(var(--header-height) + 72px);
    padding-bottom: 90px;
  }

  .hero-content {
    width: min(56%, 600px);
  }

  .hero h1 {
    font-size: clamp(3.1rem, 5.4vw, 5.2rem);
    letter-spacing: 0.035em;
  }

  .hero-lead {
    max-width: 46vw;
  }

  .hero-media img {
    object-position: 57% center;
  }

  .hero::before {
    background:
      linear-gradient(
        105deg,
        rgba(5, 9, 10, 0.58) 0%,
        rgba(5, 9, 10, 0.42) 28%,
        rgba(5, 9, 10, 0.18) 52%,
        rgba(5, 9, 10, 0.06) 70%,
        transparent 84%
      ),
      linear-gradient(
        180deg,
        transparent 50%,
        rgba(5, 9, 10, 0.12) 72%,
        rgba(7, 11, 13, 0.64) 94%,
        var(--ink) 100%
      );
  }

  .about {
    gap: 48px;
  }

  .about-copy {
    width: min(100%, 68ch);
  }

  .about-visual {
    min-height: clamp(420px, 58vw, 500px);
  }

  .footer-brand-logo {
    width: min(220px, 100%);
  }

  .about-brand-lockup {
    width: min(100%, 560px);
  }

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

  .social-card {
    min-height: 0;
  }

  .legal {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .privacy-heading {
    margin-bottom: 32px;
  }
}

@media (min-width: 760px) and (max-width: 1180px) {
  .social-card {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "intro carousel"
      "profile carousel";
    gap: clamp(20px, 4vw, 42px);
    align-items: start;
  }

  .social-intro {
    grid-area: intro;
  }

  .social-carousel {
    grid-area: carousel;
    width: min(100%, 520px);
    justify-self: end;
  }

  .social-profile-link {
    grid-area: profile;
    align-self: start;
  }
}

@media (max-width: 759px) {
  .social-card {
    min-height: 0;
  }

  .social-carousel {
    width: min(100%, 520px);
    justify-self: center;
  }
}

@media (max-width: 1600px) and (hover: hover) and (pointer: fine) {
  .menu-ready .main-nav > a:hover::after {
    transform: scale(1);
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .floating-contact {
    width: min(270px, calc(100vw - 24px));
    padding: 7px;
  }

  .floating-contact-heading {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 0 4px 7px;
  }

  .floating-contact-symbol,
  .floating-contact-code {
    width: 28px;
  }

  .floating-contact-heading-copy strong {
    font-size: 0.75rem;
  }

  .floating-contact-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .floating-contact-links a {
    min-height: 56px;
    grid-template-columns: 1fr;
    gap: 4px;
    justify-items: center;
    padding: 6px 3px;
    text-align: center;
  }

  .floating-contact-links a > span:last-child {
    display: block;
  }

  .floating-contact-links strong {
    display: none;
  }

  .floating-contact-links small {
    font-size: 0.6rem;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-bottom: 228px;
  }

  .privacy-document {
    font-size: 0.9rem;
  }

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

  .privacy-accordion-ready .privacy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .privacy-accordion-ready
    .privacy-grid:has(> .privacy-block.is-open) {
    grid-template-columns: 1fr;
  }

  .privacy-grid,
  .privacy-status {
    width: min(100%, 68ch);
    margin-inline: auto;
  }

  .privacy-block {
    padding: 15px 14px;
  }

  .privacy-accordion-ready .privacy-block:not(.is-open) {
    min-height: 92px;
    display: grid;
    align-self: stretch;
    padding: 10px;
  }

  .privacy-accordion-ready .privacy-block:not(.is-open) h3 {
    width: 100%;
    font-size: clamp(0.88rem, 2.6vw, 0.96rem);
    line-height: 1.18;
  }

  .privacy-accordion-ready
    .privacy-block:not(.is-open)
    .privacy-toggle {
    height: 100%;
    grid-template-columns: minmax(0, 1fr) 26px;
    gap: 8px;
  }

  .privacy-accordion-ready
    .privacy-block:not(.is-open)
    .privacy-toggle > span:first-child {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .privacy-accordion-ready
    .privacy-block:not(.is-open)
    .privacy-toggle-icon {
    width: 26px;
    height: 26px;
  }

  .privacy-accordion-ready
    .privacy-block:not(.is-open)
    > .privacy-preview {
    display: none;
  }

  .privacy-block.is-open {
    grid-column: auto;
  }

  .privacy-accordion-ready .privacy-block.is-open {
    grid-column: 1 / -1;
  }

  .privacy-heading {
    margin-bottom: 24px;
  }

  .privacy-updated {
    margin-top: 9px;
  }

  .header-shell {
    gap: 8px;
    padding-inline: 14px;
  }

  .menu-ready .main-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    right: 0;
    left: 0;
    width: auto;
    padding: 18px var(--page-padding) 28px;
    transform-origin: top center;
  }

  .language-switcher {
    font-size: 0.68rem;
  }

  .draft-badge {
    top: calc(var(--header-height) + var(--header-offset) + 18px);
    left: 12px;
    bottom: auto;
    max-width: calc(100vw - 24px);
  }

  .floating-contact {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: min(216px, calc(100vw - 24px));
    max-height: calc(100svh - 112px);
    padding: 10px 7px 7px;
  }

  .floating-contact-heading {
    padding: 0 6px 9px;
  }

  .floating-contact-links a {
    min-height: 44px;
    padding: 5px 7px;
  }

  .brand-lockup {
    gap: 6px;
  }

  .brand-plate {
    width: clamp(88px, 28vw, 102px);
  }

  .brand-separator {
    height: 22px;
  }

  .partner-logo-frame {
    --partner-logo-base: clamp(92px, 28.75vw, 102px);
    --partner-logo-copy-bg: clamp(119.6px, 37.375vw, 132.6px);
    --partner-symbol-width: clamp(32.4px, 10.134vw, 36px);
    --partner-copy-width: clamp(77.4px, 24.2vw, 85.9px);
    --partner-logo-height: clamp(34.6px, 10.8vw, 38.3px);
  }

  .hero {
    min-height: 86svh;
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 72px;
  }

  .hero-content,
  .hero-lead {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(2.65rem, 12vw, 4.5rem);
    letter-spacing: 0.025em;
    line-height: 0.96;
  }

  .hero-kicker {
    max-width: 300px;
    margin-bottom: 22px;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .hero-actions {
    display: grid;
  }

  .button-hero {
    width: min(100%, 260px);
  }

  .hero-media img {
    object-position: 54% center;
  }

  .hero::before {
    background:
      linear-gradient(
        130deg,
        rgba(5, 9, 10, 0.9) 0%,
        rgba(5, 9, 10, 0.78) 28%,
        rgba(5, 9, 10, 0.58) 52%,
        rgba(5, 9, 10, 0.34) 76%,
        rgba(5, 9, 10, 0.1) 100%
      ),
      linear-gradient(
        180deg,
        transparent 44%,
        rgba(5, 9, 10, 0.18) 70%,
        rgba(7, 11, 13, 0.68) 94%,
        var(--ink) 100%
      );
  }

  .mobile-nav-actions {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .mobile-nav-actions .header-call {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .vehicle-empty {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .vehicle-enquiry {
    width: min(100%, 280px);
    justify-self: start;
    white-space: normal;
  }

  .info-story {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .info-story .info-story-lead {
    grid-row: auto;
    letter-spacing: 0;
    line-height: 1.16;
  }

  .info-tags {
    grid-column: auto;
  }

  .about-visual {
    min-height: clamp(300px, 82vw, 370px);
    padding: 18px;
  }

  .about-image-placeholder {
    min-height: clamp(270px, 72vw, 330px);
    padding: 22px;
  }

  .about {
    gap: 36px;
  }

  .about-copy,
  .about-story {
    max-width: none;
  }

  .about-story {
    margin-top: 32px;
  }

  .about-story-block + .about-story-block {
    margin-top: 26px;
    padding-top: 24px;
  }

  .about-story p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .about-brand-caption {
    margin-top: clamp(26px, 8vw, 38px);
  }

  .about-brand-lockup {
    width: min(100%, 320px);
  }

  .social-card {
    min-height: 0;
  }

  .social-carousel-button,
  .social-carousel-track,
  .social-profile-link {
    scroll-margin-bottom: 228px;
  }

  .related-row {
    grid-template-columns: 1fr;
  }

  .related-row > p {
    justify-self: start;
    text-align: left;
  }

  .related-logo-frame {
    aspect-ratio: 3.2 / 1;
  }

  #contact-title .contact-title-line {
    white-space: normal;
  }

  .legal-content {
    grid-template-columns: 1fr;
  }

  .legal-placeholder {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: calc(228px + env(safe-area-inset-bottom));
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-brand-logo {
    width: min(230px, 82vw);
  }

  .contact-actions a,
  .site-footer a {
    scroll-margin-bottom: 228px;
  }
}

@media (max-width: 420px) {
  .header-shell {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .menu-ready .compact-language-switcher {
    display: none;
  }

  .menu-ready .menu-button {
    grid-column: 2;
  }

  .menu-ready .mobile-nav-actions {
    justify-items: stretch;
  }

  .menu-ready .mobile-nav-actions .language-switcher {
    display: flex;
  }

  .mobile-nav-actions .language-switcher > * {
    min-width: 32px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .menu-ready .main-nav {
    grid-template-columns: 1fr;
  }

  .menu-ready .main-nav > a {
    min-height: 48px;
    padding: 16px 0 10px;
    font-size: 0.84rem;
  }

  .menu-ready .main-nav > a::after {
    top: 6px;
  }
}

@media (min-width: 421px) and (max-width: 430px) {
  .header-shell {
    padding-inline: 12px;
  }
}

@media (min-width: 421px) and (max-width: 480px) {
  .brand-plate {
    width: 92px;
  }

  .partner-logo-frame {
    --partner-logo-base: 94px;
    --partner-logo-copy-bg: 122.2px;
    --partner-symbol-width: 33.1px;
    --partner-copy-width: 79.1px;
    --partner-logo-height: 35.3px;
  }
}

@media (max-width: 480px), (max-height: 600px) {
  html {
    scroll-padding-bottom: 148px;
  }

  .floating-contact {
    width: min(270px, calc(100vw - 24px));
    padding: 7px;
  }

  .floating-contact-heading {
    grid-template-columns: 28px minmax(0, 1fr);
    padding: 0 4px 7px;
  }

  .floating-contact-symbol {
    width: 28px;
    font-size: 0.74rem;
  }

  .floating-contact-heading-copy strong {
    font-size: 0.75rem;
  }

  .floating-contact-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .floating-contact-links a {
    min-height: 56px;
    grid-template-columns: 1fr;
    gap: 4px;
    justify-items: center;
    padding: 6px 3px;
    text-align: center;
  }

  .social-carousel-button,
  .social-carousel-track {
    scroll-margin-bottom: 148px;
  }

  .floating-contact-links a > span:last-child {
    display: block;
  }

  .floating-contact-links strong {
    display: none;
  }

  .floating-contact-code {
    width: 28px;
  }

  .floating-contact-links small {
    font-size: 0.6rem;
    letter-spacing: 0.05em;
  }

  .video-load-button {
    top: 50%;
    width: 64px;
    min-width: 64px;
    height: 48px;
    min-height: 48px;
    padding: 0;
  }

  .video-meta {
    padding: 16px;
  }

  .video-meta-actions {
    display: grid;
    gap: 4px;
  }

  .video-external,
  .social-profile-link,
  .video-load-button {
    scroll-margin-bottom: 148px;
  }

  .video-stage,
  .video-stage iframe {
    scroll-margin-bottom: calc(148px + env(safe-area-inset-bottom));
  }

  .site-footer {
    padding-bottom: calc(148px + env(safe-area-inset-bottom));
  }

  .contact-actions a,
  .site-footer a {
    scroll-margin-bottom: 148px;
  }
}

@media (max-width: 480px) {
  .floating-contact {
    width: min(240px, calc(100vw - 24px));
  }

  .floating-contact-links a {
    min-height: 56px;
    gap: 2px;
    padding: 4px 3px;
  }

  .floating-contact-code {
    width: 28px;
  }

  .floating-contact-links small {
    font-size: 0.6rem;
    line-height: 1.1;
    letter-spacing: 0.05em;
  }
}

@media (min-width: 721px) and (max-height: 600px) {
  .site-footer {
    padding-right: max(var(--page-padding), 344px);
  }
}

@media (max-width: 480px) and (max-height: 600px) {
  .hero-kicker {
    margin-bottom: 12px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 10.5vw, 2.65rem);
    line-height: 0.94;
  }

  .hero-lead {
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-property: opacity, color, background-color, border-color, box-shadow !important;
    transition-duration: 120ms !important;
    transition-timing-function: linear !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .menu-ready .main-nav,
  .brand:active,
  .main-nav > a:active,
  .language-switcher a:active,
  .header-call:active,
  .menu-button:active,
  .button:active,
  .scroll-cue:active,
  .floating-contact-links a:active,
  .contact-actions a:active,
  .footer-links a:active {
    transform: none;
  }

}

@media (forced-colors: active) {
  .button,
  .header-call,
  .menu-button,
  .floating-contact,
  .floating-contact-links a,
  .contact-actions a,
  .video-load-button,
  .video-card,
  .social-carousel-button,
  .social-slide {
    border: 1px solid ButtonText;
  }

  .privacy-toggle-icon {
    border-color: ButtonText;
  }

  .privacy-toggle-icon::before,
  .privacy-toggle-icon::after {
    background: ButtonText;
  }
}

@media (max-width: 480px) {
  .privacy-accordion-ready .privacy-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  .social-card {
    display: block;
  }

  .social-carousel-toolbar {
    display: none !important;
  }

  .social-carousel-track {
    display: block !important;
    overflow: visible;
  }

  .social-slide,
  .social-slide[hidden] {
    display: block !important;
    width: min(100%, 420px);
    margin: 0 0 12px;
    break-inside: avoid;
  }

  .social-slide,
  .social-slide-placeholder {
    border-color: #000 !important;
    background: #fff !important;
    color: #000 !important;
  }

  .social-slide-placeholder::after {
    border-color: #000 !important;
  }

  .social-slide-placeholder small {
    color: #000 !important;
  }

  .privacy-grid {
    display: block;
  }

  .privacy-block {
    break-inside: avoid;
    margin-bottom: 12px;
  }

  .privacy-panel[hidden] {
    display: block !important;
  }

  .privacy-toggle-icon {
    display: none;
  }

  .privacy-preview {
    display: block !important;
    overflow: visible !important;
  }

  .privacy-accordion-ready .privacy-block.is-open .privacy-panel,
  .privacy-panel {
    max-width: none;
    column-width: auto;
    column-count: 1;
    column-rule: 0;
  }
}
