:root {
      --black: #070809;
      --ink: #151516;
      --paper: #f4f2ec;
      --white: #ffffff;
      --red: #e0182d;
      --cyan: #60c9c1;
      --amber: #d8a65f;
      --steel: #bbc3c7;
      --muted: #757570;
      --line: rgba(21, 21, 22, .14);
      --line-dark: rgba(255, 255, 255, .16);
      --radius: 8px;
      --max: 1240px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: "Manrope", Arial, sans-serif;
      letter-spacing: 0;
    }

    img,
    video {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 3px;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    .shell {
      width: min(var(--max), calc(100% - 44px));
      margin: 0 auto;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 40;
      pointer-events: none;
    }

    .nav {
      position: relative;
      min-height: 64px;
      padding: 8px;
      border-radius: 0 0 var(--radius) var(--radius);
      color: var(--white);
      display: grid;
      grid-template-columns: 230px 1fr auto;
      gap: 18px;
      align-items: center;
      pointer-events: auto;
    }

    .nav::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: inherit;
      background: rgba(7, 8, 9, .72);
      backdrop-filter: blur(18px);
      pointer-events: none;
    }

    .nav > * {
      position: relative;
      z-index: 1;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      padding-left: 8px;
    }

    .brand img {
      width: 42px;
      height: 42px;
      object-fit: contain;
    }

    .brand span {
      font-family: "Space Grotesk", "Manrope", sans-serif;
      color: var(--white);
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      color: rgba(255, 255, 255, .72);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .nav-links a {
      padding: 14px 0;
      color: rgba(255, 255, 255, .82);
      transition: color .18s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--white);
    }

    .nav-item {
      position: relative;
      display: flex;
      align-items: center;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      min-height: 46px;
    }

    .nav-item > .nav-link::after {
      content: "";
      width: 6px;
      height: 6px;
      margin-left: 8px;
      border-right: 2px solid rgba(255, 255, 255, .68);
      border-bottom: 2px solid rgba(255, 255, 255, .68);
      flex: 0 0 auto;
      transform: translateY(-2px) rotate(45deg);
      transition: border-color .18s ease, transform .18s ease;
    }

    .nav-item:hover > .nav-link::after,
    .nav-item:focus-within > .nav-link::after {
      border-color: var(--red);
      transform: translateY(1px) rotate(225deg);
    }

    .nav-dropdown {
      position: fixed;
      top: 68px;
      left: 50vw;
      z-index: 65;
      width: min(1020px, calc(100vw - 64px));
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      padding: 10px 14px;
      border: 1px solid var(--line-dark);
      border-radius: var(--radius);
      background: rgba(9, 10, 12, .96);
      box-shadow: 0 18px 48px rgba(0, 0, 0, .34);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translate(-50%, 10px);
      transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }

    .nav-dropdown::before {
      content: "";
      position: absolute;
      inset: -12px 0 auto;
      height: 12px;
    }

    .nav-item:hover .nav-dropdown,
    .nav-item:focus-within .nav-dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }

    .nav-dropdown a {
      min-height: 44px;
      display: flex;
      align-items: center;
      border-radius: 6px;
      padding: 0 18px;
      color: rgba(255, 255, 255, .78);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.2;
      text-transform: none;
      white-space: nowrap;
    }

    .nav-dropdown a:hover,
    .nav-dropdown a:focus-visible {
      background: rgba(255, 255, 255, .08);
      color: white;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .button {
      min-height: 46px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      padding: 0 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      font-size: 13px;
      line-height: 1;
      font-weight: 800;
      cursor: pointer;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .button:hover {
      transform: translateY(-1px);
    }

    .button-red {
      background: var(--red);
      color: var(--white);
    }

    .button-dark {
      background: var(--black);
      color: var(--white);
    }

    .button-light {
      background: var(--white);
      color: var(--black);
    }

    .button-line {
      border-color: rgba(255, 255, 255, .26);
      background: rgba(255, 255, 255, .06);
      color: var(--white);
    }

    .button-shop {
      border-color: rgba(255, 255, 255, .22);
      background: rgba(255, 255, 255, .09);
      color: var(--white);
    }

    .menu-button {
      width: 46px;
      height: 46px;
      display: none;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .08);
      color: white;
      cursor: pointer;
    }

    .menu-button svg {
      width: 20px;
      height: 20px;
    }

    .mobile-panel {
      display: none;
    }

    .hero {
      min-height: 92svh;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background: var(--black);
      color: white;
    }

    .hero video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .7;
      filter: contrast(1.12) saturate(1.08);
      z-index: -4;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -3;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, .94), rgba(0, 0, 0, .5) 47%, rgba(0, 0, 0, .1)),
        linear-gradient(0deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .04) 56%),
        radial-gradient(circle at 76% 18%, rgba(224, 24, 45, .42), transparent 28%);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      opacity: .22;
      background-image:
        linear-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .14) 1px, transparent 1px);
      background-size: 82px 82px;
      mask-image: linear-gradient(90deg, black, transparent 72%);
    }

    .hero-layout {
      min-height: 92svh;
      padding: 128px 0 30px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 390px;
      gap: 42px;
      align-items: center;
    }

    .hero-kicker,
    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--red);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .hero-kicker::before,
    .kicker::before {
      content: "";
      width: 42px;
      height: 2px;
      background: currentColor;
    }

    h1,
    h2,
    h3 {
      font-family: "Space Grotesk", "Manrope", sans-serif;
      letter-spacing: 0;
    }

    h1 {
      max-width: 940px;
      margin: 18px 0 0;
      font-size: clamp(40px, 4.8vw, 70px);
      line-height: .95;
      text-wrap: balance;
    }

    .mobile-title {
      display: none;
    }

    .hero-copy {
      max-width: 700px;
      margin: 28px 0 0;
      color: rgba(255, 255, 255, .72);
      font-size: clamp(16px, 1.5vw, 20px);
      line-height: 1.58;
    }

    .hero-actions {
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .control-panel {
      border: 1px solid var(--line-dark);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .08);
      backdrop-filter: blur(18px);
      overflow: hidden;
    }

    .panel-screen {
      min-height: 330px;
      padding: 14px;
      display: grid;
      gap: 10px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(224, 24, 45, .2), transparent 42%),
        rgba(255, 255, 255, .04);
      position: relative;
    }

    .panel-screen::before {
      content: "";
      position: absolute;
      left: -20%;
      right: -20%;
      top: 43%;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(96, 201, 193, .86), transparent);
      box-shadow: 0 0 34px rgba(96, 201, 193, .5);
      transform: rotate(-11deg);
      z-index: 2;
      pointer-events: none;
    }

    .panel-screen::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .3));
      pointer-events: none;
    }

    .panel-screen > * {
      position: relative;
      z-index: 3;
    }

    .visual-grid {
      display: grid;
      grid-template-columns: 1.18fr .82fr;
      grid-template-rows: repeat(3, 1fr);
      gap: 8px;
      height: 300px;
      min-height: 0;
    }

    .visual-tile {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, .16);
      background: #111;
    }

    .visual-tile:first-child {
      grid-row: span 3;
    }

    .visual-tile img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .88;
    }

    .visual-tile::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .72));
    }

    .visual-tile span,
    .trust-badge {
      position: absolute;
      left: 10px;
      bottom: 10px;
      z-index: 1;
      padding: 7px 8px;
      border-radius: 999px;
      background: rgba(7, 8, 9, .7);
      color: rgba(255, 255, 255, .82);
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      backdrop-filter: blur(10px);
    }

    .trust-badge {
      left: 14px;
      right: 14px;
      bottom: 14px;
      text-align: center;
      color: white;
      background: rgba(224, 24, 45, .82);
    }

    .selector-list {
      display: grid;
      gap: 1px;
      border-top: 1px solid var(--line-dark);
      background: rgba(255, 255, 255, .12);
    }

    .selector-item {
      min-height: 54px;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      background: rgba(7, 8, 9, .68);
    }

    .selector-item b {
      color: white;
      font-family: "Space Grotesk", "Manrope", sans-serif;
      font-size: 15px;
      text-transform: uppercase;
    }

    .signature-strip {
      overflow: hidden;
      background: var(--red);
      color: white;
      border-block: 1px solid rgba(0, 0, 0, .12);
    }

    .signature-track {
      min-width: max-content;
      display: flex;
      width: max-content;
      animation: sd-signature-loop 42s linear infinite;
      font-family: "Space Grotesk", "Manrope", sans-serif;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      will-change: transform;
    }

    .signature-group {
      display: flex;
      flex: 0 0 auto;
      gap: 34px;
      padding: 12px 34px 12px 0;
    }

    @keyframes sd-signature-loop {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    section {
      padding: 96px 0;
      scroll-margin-top: 76px;
    }

    section.hero {
      padding: 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: .72fr 1fr;
      gap: 48px;
      align-items: end;
      margin-bottom: 42px;
    }

    .section-head h2,
    .split-copy h2,
    .studio-note h2,
    .contact-copy h2 {
      margin: 0;
      font-size: clamp(38px, 5vw, 76px);
      line-height: .92;
      text-transform: uppercase;
    }

    .section-head p,
    .split-copy p,
    .studio-note p,
    .contact-copy p {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.7;
    }

    .packages .section-head,
    .interior .section-head {
      grid-template-columns: 1.06fr .94fr;
      align-items: center;
    }

    .packages .section-head h2,
    .interior .section-head h2 {
      max-width: 760px;
      font-size: clamp(34px, 3.6vw, 50px);
      line-height: 1;
    }

    .protection-lab {
      background:
        linear-gradient(180deg, rgba(7, 8, 9, .95), rgba(7, 8, 9, .98)),
        url("assets/hero-poster.jpeg") center / cover;
      color: white;
    }

    .protection-lab .section-head p {
      color: rgba(255, 255, 255, .66);
    }

    .coating-deck {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-bottom: 18px;
    }

    .coating-card {
      min-height: 330px;
      border-radius: var(--radius);
      border: 1px solid var(--line-dark);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .02)),
        rgba(255, 255, 255, .04);
      overflow: hidden;
      position: relative;
      display: grid;
      align-content: space-between;
      padding: 26px;
    }

    .coating-card::before {
      content: "";
      position: absolute;
      inset: auto -74px -86px auto;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      border: 1px solid rgba(224, 24, 45, .34);
      background: radial-gradient(circle, rgba(224, 24, 45, .28), transparent 64%);
    }

    .coating-card::after {
      content: "";
      position: absolute;
      left: 26px;
      right: 26px;
      top: 50%;
      height: 1px;
      background: var(--line-dark);
    }

    .coating-years {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: flex-end;
      gap: 12px;
      color: var(--red);
      font-family: "Space Grotesk", "Manrope", sans-serif;
      font-size: clamp(88px, 9.4vw, 126px);
      line-height: .74;
      font-weight: 700;
    }

    .coating-years span {
      display: block;
      margin: 0 0 10px;
      color: rgba(255, 255, 255, .78);
      font-family: "Manrope", Arial, sans-serif;
      font-size: clamp(18px, 2vw, 28px);
      line-height: 1;
      text-transform: uppercase;
    }

    .coating-card h3 {
      position: relative;
      z-index: 1;
      max-width: 330px;
      margin: 0 0 12px;
      color: white;
      font-size: 26px;
      line-height: 1;
      text-transform: uppercase;
    }

    .coating-card small {
      position: relative;
      z-index: 1;
      color: var(--cyan);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .coating-card p,
    .coating-note {
      position: relative;
      z-index: 1;
      margin: 0;
      color: rgba(255, 255, 255, .66);
      font-size: 14px;
      line-height: 1.6;
    }

    .coating-note {
      margin-top: 14px;
      padding: 15px 16px;
      border-left: 2px solid var(--red);
      background: rgba(255, 255, 255, .06);
    }

    .trust-console {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      background: var(--black);
      color: white;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, .2);
    }

    .trust-item {
      min-height: 235px;
      padding: 24px;
      border-right: 1px solid var(--line-dark);
      border-bottom: 1px solid var(--line-dark);
      display: grid;
      align-content: space-between;
      gap: 20px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .07), transparent),
        var(--black);
    }

    .trust-item:nth-child(3n) {
      border-right: 0;
    }

    .trust-icon {
      width: 52px;
      height: 52px;
      border: 1px solid rgba(224, 24, 45, .72);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
      background: rgba(224, 24, 45, .08);
    }

    .trust-icon svg {
      width: 25px;
      height: 25px;
    }

    .trust-item h3 {
      margin: 0 0 10px;
      font-size: 22px;
      line-height: 1.05;
      text-transform: uppercase;
    }

    .trust-item p {
      margin: 0;
      color: rgba(255, 255, 255, .64);
      font-size: 14px;
      line-height: 1.55;
    }

    .services {
      background: var(--black);
      color: white;
    }

    .services .section-head p {
      color: rgba(255, 255, 255, .66);
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .service-card {
      display: block;
      min-height: 390px;
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      background: #111;
      color: white;
      text-decoration: none;
    }

    .service-card:visited {
      color: white;
    }

    .service-card.featured {
      grid-column: span 2;
      min-height: 520px;
    }

    .service-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .92;
      transition: transform .45s ease, opacity .45s ease;
    }

    .service-card:hover img {
      transform: scale(1.035);
      opacity: .92;
    }

    .service-card:focus-visible img {
      transform: scale(1.025);
    }

    .service-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .18) 45%, rgba(0, 0, 0, .74) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, .34), transparent 58%);
    }

    .service-content {
      position: absolute;
      z-index: 1;
      inset: auto 0 0;
      padding: 28px;
    }

    .service-content small {
      color: var(--cyan);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .service-content h3 {
      max-width: 520px;
      margin: 10px 0 12px;
      font-size: clamp(22px, 2.4vw, 38px);
      line-height: 1;
      text-transform: uppercase;
      overflow-wrap: break-word;
      hyphens: manual;
    }

    .service-content p {
      max-width: 520px;
      margin: 0;
      color: rgba(255, 255, 255, .82);
      line-height: 1.6;
    }

    .technical-tag {
      position: absolute;
      z-index: 2;
      top: 18px;
      left: 18px;
      min-height: 28px;
      display: inline-flex;
      align-items: center;
      padding: 0 10px;
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 999px;
      background: rgba(7, 8, 9, .54);
      color: rgba(255, 255, 255, .78);
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      backdrop-filter: blur(10px);
    }

    .packages {
      background:
        linear-gradient(180deg, rgba(244, 242, 236, .98), rgba(244, 242, 236, 1)),
        image-set(url("assets/paintwork-768.webp") 1x, url("assets/paintwork-1600.webp") 2x) center / cover;
    }

    .package-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 12px;
    }

    .package-card {
      min-height: 330px;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .76);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .package-card:hover {
      transform: translateY(-3px);
      border-color: rgba(224, 24, 45, .45);
      background: white;
    }

    .package-card.featured {
      background: var(--black);
      color: white;
      border-color: rgba(224, 24, 45, .45);
    }

    .package-card b {
      color: var(--red);
      font-family: "Space Grotesk", "Manrope", sans-serif;
      font-size: 13px;
      text-transform: uppercase;
    }

    .package-card h3 {
      margin: 16px 0 10px;
      font-size: clamp(22px, 1.65vw, 26px);
      line-height: 1;
      text-transform: uppercase;
      overflow-wrap: break-word;
      hyphens: manual;
    }

    .package-card strong {
      display: block;
      min-height: 42px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .package-card.featured strong,
    .package-card.featured p {
      color: rgba(255, 255, 255, .68);
    }

    .package-card p {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .package-actions {
      margin-top: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .interior {
      background: var(--black);
      color: white;
    }

    .interior .section-head p {
      color: rgba(255, 255, 255, .66);
    }

    .interior-layout {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 16px;
      align-items: stretch;
    }

    .before-after {
      min-height: 620px;
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      border: 1px solid var(--line-dark);
    }

    .before-after figure {
      margin: 0;
      position: relative;
      overflow: hidden;
      background: #151515;
    }

    .before-after img {
      width: 100%;
      height: 100%;
      min-height: 620px;
      object-fit: cover;
    }

    .before-after figcaption {
      position: absolute;
      left: 16px;
      bottom: 16px;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(7, 8, 9, .72);
      color: white;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      backdrop-filter: blur(10px);
    }

    .before-after::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 1px;
      background: rgba(255, 255, 255, .44);
      box-shadow: 0 0 28px rgba(96, 201, 193, .45);
    }

    .interior-levels {
      display: grid;
      gap: 12px;
    }

    .interior-level {
      padding: 22px;
      border: 1px solid var(--line-dark);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .06);
    }

    .interior-level h3 {
      margin: 0 0 8px;
      font-size: 24px;
      line-height: 1;
      text-transform: uppercase;
    }

    .interior-level p {
      margin: 0;
      color: rgba(255, 255, 255, .66);
      line-height: 1.55;
    }

    .method {
      background: var(--paper);
    }

    .method-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      border-left: 1px solid var(--line);
      border-top: 1px solid var(--line);
    }

    .method-item {
      min-height: 270px;
      padding: 24px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: rgba(255, 255, 255, .48);
    }

    .method-item b {
      color: var(--red);
      font-family: "Space Grotesk", "Manrope", sans-serif;
      font-size: 56px;
      line-height: 1;
    }

    .method-item h3 {
      margin: 0 0 10px;
      font-size: 22px;
      line-height: 1;
      text-transform: uppercase;
      overflow-wrap: break-word;
      hyphens: auto;
    }

    .method-item p {
      margin: 0;
      color: var(--muted);
      line-height: 1.56;
    }

    .academy {
      background: var(--black);
      color: white;
    }

    .split {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 54px;
      align-items: center;
    }

    .split-media {
      min-height: 660px;
      border-radius: var(--radius);
      overflow: hidden;
      background: #222;
    }

    .split-media img {
      width: 100%;
      height: 100%;
      min-height: 660px;
      object-fit: cover;
    }

    .academy .split-copy p {
      color: rgba(255, 255, 255, .66);
    }

    .academy-markers {
      margin: 24px 0 0;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .proof-marker {
      min-height: 32px;
      display: inline-flex;
      align-items: center;
      padding: 0 11px;
      border: 1px solid rgba(96, 201, 193, .42);
      border-radius: 999px;
      color: var(--cyan);
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      background: rgba(96, 201, 193, .08);
    }

    .badge-grid {
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .badge {
      min-height: 118px;
      padding: 18px;
      border: 1px solid var(--line-dark);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .07);
    }

    .badge strong {
      display: block;
      font-family: "Space Grotesk", "Manrope", sans-serif;
      font-size: 20px;
      text-transform: uppercase;
    }

    .badge span {
      display: block;
      margin-top: 8px;
      color: rgba(255, 255, 255, .6);
      font-size: 13px;
      line-height: 1.5;
    }

    .studio {
      padding: 0;
      background: var(--black);
      color: white;
    }

    .studio-band {
      display: grid;
      grid-template-columns: .68fr 1.32fr;
      min-height: 520px;
    }

    .studio-note {
      padding: 56px max(28px, calc((100vw - var(--max)) / 2)) 56px 28px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: clamp(72px, 8vw, 138px);
      border-right: 1px solid var(--line-dark);
    }

    .studio-note h2 {
      max-width: 560px;
      font-size: clamp(38px, 4.4vw, 68px);
    }

    .studio-note p {
      max-width: 430px;
      color: rgba(255, 255, 255, .66);
    }

    .studio-gallery {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: repeat(2, minmax(0, 260px));
      gap: 1px;
      background: var(--line-dark);
    }

    .studio-gallery img {
      width: 100%;
      height: 100%;
      min-height: 0;
      object-fit: cover;
    }

    .studio-gallery img:first-child {
      grid-row: span 2;
    }

    .brands {
      padding: 86px 0;
      background:
        linear-gradient(180deg, rgba(7, 8, 9, .96), rgba(7, 8, 9, .98)),
        image-set(url("assets/exterior-768.webp") 1x, url("assets/exterior-1600.webp") 2x) center / cover;
      color: white;
      border-block: 1px solid var(--line);
    }

    .brand-row {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 44px;
      align-items: end;
    }

    .brand-row h2 {
      margin: 0;
      font-size: clamp(28px, 3vw, 44px);
      line-height: .96;
      text-transform: uppercase;
    }

    .brand-row p {
      margin: 18px 0 0;
      color: rgba(255, 255, 255, .66);
      line-height: 1.65;
    }

    .brand-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .brand-card {
      min-height: 132px;
      padding: 18px;
      border: 1px solid var(--line-dark);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .07);
      display: grid;
      align-content: space-between;
      gap: 16px;
      color: white;
      text-decoration: none;
      transition: border-color .18s ease, background .18s ease, transform .18s ease;
    }

    .brand-card:hover,
    .brand-card:focus-visible {
      border-color: rgba(96, 201, 193, .7);
      background: rgba(255, 255, 255, .12);
      transform: translateY(-2px);
    }

    .brand-card:visited {
      color: white;
    }

    .brand-card strong {
      display: block;
      font-family: "Space Grotesk", "Manrope", sans-serif;
      font-size: 20px;
      text-transform: uppercase;
    }

    .brand-card span {
      color: rgba(255, 255, 255, .58);
      font-size: 13px;
      line-height: 1.45;
    }

    .brand-tile {
      width: 132px;
      height: 78px;
      object-fit: contain;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
    }

    .contact {
      background:
        linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .32)),
        image-set(url("assets/gallery-car-768.webp") 1x, url("assets/gallery-car-1600.webp") 2x) center / cover;
      color: white;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 48px;
      align-items: end;
    }

    .contact-copy p {
      color: rgba(255, 255, 255, .7);
    }

    .contact-form {
      display: grid;
      gap: 12px;
      padding: 22px;
      border: 1px solid var(--line-dark);
      border-radius: var(--radius);
      background: rgba(7, 8, 9, .68);
      backdrop-filter: blur(16px);
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .form-field {
      display: grid;
      gap: 7px;
    }

    .form-intro {
      margin: 0 0 4px;
      color: rgba(255, 255, 255, .72);
      font-size: 14px;
      line-height: 1.5;
    }

    .form-label {
      color: rgba(255, 255, 255, .92);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .01em;
    }

    .form-label span[aria-hidden="true"] {
      color: var(--red);
    }

    .form-optional {
      color: rgba(255, 255, 255, .52);
      font-weight: 600;
    }

    .contact-form .field {
      width: 100%;
      min-height: 54px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .08) !important;
      color: white !important;
      padding: 0 15px;
      outline: 0;
      box-shadow: none;
    }

    .contact-form .field::placeholder {
      color: rgba(255, 255, 255, .55);
    }

    .contact-form .field:focus {
      border-color: rgba(224, 24, 45, .9);
      box-shadow: 0 0 0 3px rgba(224, 24, 45, .18);
    }

    textarea.field {
      min-height: 120px;
      padding-top: 15px;
      resize: vertical;
    }

    .form-honeypot {
      position: absolute;
      left: -9999px;
    }

    .form-status {
      margin: 0;
      padding: 12px 14px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.45;
    }

    .form-status-success {
      background: rgba(96, 201, 193, .18);
      color: #d5fffb;
    }

    .form-status-error {
      background: rgba(224, 24, 45, .2);
      color: #ffe0e5;
    }

    .contact-info {
      margin-top: 22px;
      display: grid;
      gap: 12px;
    }

    .contact-info a,
    .contact-info span {
      display: block;
      padding: 14px 16px;
      border: 1px solid var(--line-dark);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .07);
      color: rgba(255, 255, 255, .82);
      line-height: 1.45;
    }

    .reassurance {
      margin-top: 14px;
      padding: 16px;
      border-left: 2px solid var(--red);
      background: rgba(224, 24, 45, .12);
      color: rgba(255, 255, 255, .76);
      line-height: 1.55;
    }

    .mobile-sticky-cta {
      display: none;
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }

      .signature-track {
        animation: sd-signature-loop 42s linear infinite !important;
      }
    }

body.sd-redesign-home h1,
body.sd-redesign-home h2,
body.sd-redesign-home h3 {
  color: inherit;
}

    .site-footer {
      padding: 28px 0;
      background: var(--black);
      color: rgba(255, 255, 255, .56);
      font-size: 13px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    @media (min-width: 761px) and (max-height: 820px) {
      .hero {
        min-height: 92svh;
      }

      .hero-layout {
        min-height: 92svh;
        padding-top: 104px;
        padding-bottom: 22px;
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 28px;
      }

      h1 {
        font-size: clamp(38px, 4.2vw, 56px);
      }

      .hero-copy {
        margin-top: 18px;
        font-size: 16px;
      }

      .panel-screen {
        min-height: auto;
      }

      .visual-grid {
        height: 216px;
      }

      .selector-item {
        padding: 10px 12px;
      }
    }

    @media (max-width: 1320px) {
      .nav {
        grid-template-columns: 1fr auto;
      }

      .nav-links,
      .nav-actions {
        display: none;
      }

      .menu-button {
        display: inline-flex;
      }

      .mobile-panel {
        position: fixed;
        left: 22px;
        right: 22px;
        top: 64px;
        z-index: 39;
        display: grid;
        gap: 0;
        max-height: calc(100svh - 80px);
        border: 1px solid rgba(255, 255, 255, .16);
        border-top: 0;
        border-radius: 0 0 var(--radius) var(--radius);
        overflow-x: hidden;
        overflow-y: auto;
        background: rgba(7, 8, 9, .98);
        box-shadow: 0 24px 55px rgba(0, 0, 0, .42);
        backdrop-filter: blur(18px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-16px);
        transition: opacity .2s ease, transform .2s ease;
      }

      body.menu-open .mobile-panel {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      body.menu-open .nav {
        border-radius: var(--radius) var(--radius) 0 0;
        border-bottom-color: transparent;
        background: rgba(7, 8, 9, .98);
      }

      .mobile-panel a {
        min-height: 52px;
        padding: 0 18px;
        display: flex;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, .08);
        background: transparent;
        color: white;
        font-weight: 800;
        text-transform: uppercase;
        font-size: 13px;
        transition: background .18s ease, color .18s ease, padding-left .18s ease;
      }

      .mobile-panel a:first-child {
        border-top: 0;
      }

      .mobile-panel a:hover,
      .mobile-panel a:focus-visible {
        padding-left: 22px;
        background: rgba(224, 24, 45, .14);
        color: white;
      }

      .hero-layout,
      .section-head,
      .split,
      .studio-band,
      .interior-layout,
      .brand-row,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .control-panel {
        max-width: 620px;
      }

      .coating-deck,
      .trust-console,
      .service-grid,
      .package-grid,
      .brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .service-card.featured {
        grid-column: span 2;
      }

      .trust-item:nth-child(3n) {
        border-right: 1px solid var(--line-dark);
      }

      .trust-item:nth-child(2n) {
        border-right: 0;
      }

      .method-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .studio-note {
        padding: 64px 22px;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
        gap: 28px;
      }

      .brand-row {
        align-items: start;
      }
    }

    @media (max-width: 760px) {
      .shell {
        width: min(100% - 28px, var(--max));
      }

      .site-header {
        inset: 0 0 auto;
      }

      .nav {
        min-height: 58px;
        padding: 6px;
        border-radius: var(--radius);
      }

      .brand {
        gap: 10px;
      }

      .brand img {
        width: 38px;
        height: 38px;
      }

      .brand span {
        font-size: 10px;
      }

      .menu-button {
        width: 42px;
        height: 42px;
      }

      .mobile-panel {
        left: 14px;
        right: 14px;
        top: 58px;
        max-height: calc(100svh - 72px);
      }

      .hero {
        min-height: auto;
      }

      .hero-layout {
        min-height: auto;
        padding: 94px 0 34px;
        grid-template-columns: 1fr;
      }

      h1 {
        font-size: clamp(30px, 8.4vw, 36px);
        line-height: 1.02;
        overflow-wrap: anywhere;
      }

      h2 {
        overflow-wrap: anywhere;
      }

      .hero-copy {
        margin-top: 20px;
        font-size: 15px;
      }

      .hero-actions {
        margin-top: 22px;
      }

      .control-panel {
        display: none;
      }

      section {
        padding: 66px 0;
      }

      .section-head {
        gap: 22px;
        margin-bottom: 30px;
      }

      .section-head h2,
      .split-copy h2,
      .studio-note h2,
      .contact-copy h2 {
        font-size: clamp(34px, 12vw, 52px);
      }

      .coating-deck,
      .trust-console,
      .service-grid,
      .package-grid,
      .interior-layout,
      .method-grid,
      .badge-grid,
      .studio-gallery,
      .brand-row,
      .brand-grid,
      .form-row {
        grid-template-columns: 1fr;
      }

      .coating-card {
        min-height: 236px;
      }

      .coating-card h3 {
        font-size: 23px;
      }

      .trust-item,
      .trust-item:nth-child(2n),
      .trust-item:nth-child(3n) {
        min-height: 186px;
        border-right: 0;
      }

      .service-card,
      .service-card.featured {
        min-height: 420px;
        grid-column: auto;
      }

      .service-content {
        padding: 22px;
      }

      .method-item {
        min-height: 210px;
      }

      .package-card {
        min-height: auto;
      }

      .before-after {
        min-height: auto;
        grid-template-columns: 1fr;
      }

      .before-after::after {
        top: 50%;
        bottom: auto;
        left: 0;
        right: 0;
        width: auto;
        height: 1px;
      }

      .before-after img {
        min-height: 280px;
      }

      .split {
        gap: 30px;
      }

      .split-media,
      .split-media img,
      .studio-gallery img {
        min-height: 300px;
      }

      .studio-gallery {
        grid-template-rows: auto;
      }

      .studio-gallery img:first-child {
        grid-row: auto;
      }

      .brand-tile {
        width: 100%;
      }

      body {
        padding-bottom: 76px;
      }

      .mobile-sticky-cta {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 60;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius);
        background: var(--red);
        color: white;
        font-size: 14px;
        font-weight: 800;
        box-shadow: 0 18px 50px rgba(0, 0, 0, .32);
      }
    }

    body.admin-bar .site-header {
      top: 32px;
    }

    body.admin-bar .nav-dropdown {
      top: 100px;
    }

    @media (max-width: 1320px) {
      body.admin-bar .mobile-panel {
        top: 96px;
      }
    }

    @media (max-width: 782px) {
      body.admin-bar .site-header {
        top: 46px;
      }

      body.admin-bar .mobile-panel {
        top: 110px;
      }
    }

    @media (max-width: 760px) {
      body.sd-redesign-home .buttonizer,
      body.sd-redesign-home #buttonizer-backdrop,
      body.sd-redesign-home .vi-wcaio-menu-cart,
      body.sd-redesign-home .vi-wcaio-sidebar-cart-icon-wrap,
      body.sd-redesign-home #fb-root {
        display: none !important;
      }

      body.admin-bar .mobile-panel {
        top: 104px;
      }
    }
