/*
  Platinium Royal Colors — cinematic concept V2
  Original static implementation by Nexbrokers.
*/

:root {
  --black: #050507;
  --black-soft: #0a0a0d;
  --black-elevated: #101014;
  --white: #f6f5f2;
  --paper: #ecebe6;
  --paper-deep: #deddd7;
  --text: #f7f6f3;
  --text-dark: #111114;
  --muted: #b5b5b8;
  --muted-dark: #5f6066;
  --line: rgba(255, 255, 255, 0.17);
  --line-dark: rgba(12, 12, 15, 0.17);
  --magenta: #f51b7b;
  --cyan: #10b8eb;
  --yellow: #ffdc00;
  --violet: #7f35ce;
  --header-height: 88px;
  --demo-height: 27px;
  --chrome-height: calc(var(--header-height) + var(--demo-height));
  --max: 1540px;
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.2, 0.72, 0.2, 1);
  --ease-sharp: cubic-bezier(0.76, 0, 0.24, 1);
  --font-scale: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  font-size: calc(16px * var(--font-scale));
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--black);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.search-open,
body.modal-open {
  overflow: hidden;
}

body.high-contrast {
  --black: #000;
  --black-soft: #000;
  --black-elevated: #050505;
  --white: #fff;
  --paper: #fff;
  --paper-deep: #f2f2f2;
  --text: #fff;
  --text-dark: #000;
  --muted: #e7e7e7;
  --muted-dark: #222;
  --line: rgba(255, 255, 255, 0.45);
  --line-dark: rgba(0, 0, 0, 0.45);
  --magenta: #ff007e;
  --cyan: #00d9ff;
  --yellow: #fff000;
}

::selection {
  color: #fff;
  background: var(--magenta);
}

img,
picture,
video,
svg,
canvas {
  display: block;
  max-width: 100%;
}

img,
video {
  height: auto;
}

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

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

button {
  border: 0;
  background: none;
}

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

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
blockquote,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

button,
a,
input,
select,
textarea {
  outline-offset: 5px;
}

:focus-visible {
  outline: 2px solid var(--cyan);
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  padding: 0.75rem 1rem;
  color: #000;
  background: #fff;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.page-progress {
  position: fixed;
  z-index: 800;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--violet), var(--cyan));
  pointer-events: none;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}

.demo-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  height: var(--demo-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.7);
  background: rgba(3, 3, 5, 0.9);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  backdrop-filter: blur(16px);
}

.demo-ribbon a {
  color: #fff;
  font-weight: 700;
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding: 0 clamp(18px, 3vw, 52px);
  border-bottom: 1px solid transparent;
  transition: background 320ms ease, border-color 320ms ease, height 320ms ease;
}

.site-header.is-scrolled .header-shell,
body.menu-open .header-shell,
body.search-open .header-shell {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 7, 0.82);
  backdrop-filter: blur(20px) saturate(140%);
}

.header-left-actions,
.header-right-actions {
  display: flex;
  align-items: center;
}

.header-right-actions {
  justify-content: flex-end;
  gap: 1.2rem;
}

.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0;
  color: #fff;
  cursor: pointer;
}

.menu-trigger-lines {
  display: grid;
  gap: 5px;
  width: 26px;
}

.menu-trigger-lines i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, width 220ms ease;
}

.menu-trigger-lines i:nth-child(2) {
  width: 73%;
}

.menu-trigger:hover .menu-trigger-lines i:nth-child(2) {
  width: 100%;
}

.menu-trigger-label,
.header-location {
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.header-logo {
  position: relative;
  display: block;
  width: clamp(210px, 21vw, 330px);
  height: 64px;
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.header-icon-button {
  width: 32px;
  height: 32px;
  padding: 5px;
  color: #fff;
  cursor: pointer;
}

.header-icon-button svg,
.header-location svg,
.menu-close svg,
.search-close svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.header-location {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  color: #fff;
}

.header-location svg {
  width: 18px;
  height: 18px;
}

.search-panel {
  position: absolute;
  top: var(--chrome-height);
  left: 0;
  width: 100%;
  color: var(--text-dark);
  background: var(--paper);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.28);
}

.search-panel.is-open {
  display: block !important;
  animation: panelDown 360ms var(--ease) both;
}

.search-panel-inner {
  width: min(calc(100% - 44px), 1320px);
  margin: 0 auto;
  padding: 2.2rem 0 2.7rem;
}

.search-input-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}

.search-input-wrap input {
  width: 100%;
  padding: 0.7rem 0 1.25rem;
  border: 0;
  color: var(--text-dark);
  background: transparent;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 5.5rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.search-input-wrap input::placeholder {
  color: rgba(17, 17, 20, 0.28);
}

.search-close {
  width: 48px;
  height: 48px;
  padding: 11px;
  color: var(--text-dark);
  cursor: pointer;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.4rem;
  background: var(--line-dark);
}

.search-hint {
  grid-column: 1 / -1;
  padding: 1.25rem 0;
  color: var(--muted-dark);
  background: var(--paper);
}

.search-result {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.3rem;
  color: var(--text-dark);
  background: var(--paper);
  transition: color 220ms ease, background 220ms ease;
}

.search-result:hover {
  color: #fff;
  background: var(--text-dark);
}

.search-result span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.search-result strong {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
}

/* Menu overlay */

.menu-overlay {
  position: fixed;
  z-index: 500;
  inset: 0;
  color: var(--text-dark);
  background: var(--paper);
  overflow: hidden;
}

.menu-overlay.is-open {
  display: block !important;
  animation: menuReveal 600ms var(--ease-sharp) both;
}

.menu-overlay.is-closing {
  display: block !important;
  animation: menuHide 480ms var(--ease-sharp) both;
}

.menu-overlay-bg {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: url("../img/noise.png");
  pointer-events: none;
}

.menu-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 42%) 1fr;
  width: 100%;
  height: 100%;
}

.menu-primary {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(34px, 5vw, 74px);
  border-right: 1px solid var(--line-dark);
}

.menu-brand {
  width: clamp(230px, 23vw, 360px);
}

.menu-brand img {
  width: 100%;
  filter: contrast(1.12);
}

.menu-nav {
  display: grid;
  margin: auto 0;
}

.menu-nav a {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  min-height: clamp(66px, 7.5vh, 92px);
  border-bottom: 1px solid var(--line-dark);
  transition: color 220ms ease, padding 220ms ease;
}

.menu-nav a:first-child {
  border-top: 1px solid var(--line-dark);
}

.menu-nav a span {
  color: var(--muted-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

.menu-nav a strong {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 0.9;
}

.menu-nav a i {
  font-style: normal;
  font-size: 1.3rem;
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.menu-nav a:hover,
.menu-nav a:focus-visible {
  padding-left: 0.8rem;
  color: var(--magenta);
}

.menu-nav a:hover i,
.menu-nav a:focus-visible i {
  opacity: 1;
  transform: translateX(0);
}

.menu-primary-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  padding-top: 1.5rem;
}

.menu-primary-footer > div {
  display: grid;
  gap: 0.3rem;
}

.menu-primary-footer span {
  color: var(--muted-dark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.menu-primary-footer a {
  font-size: 0.8rem;
  font-weight: 600;
}

.menu-socials {
  grid-column: 1 / -1;
  display: flex !important;
  flex-direction: row;
  gap: 1.3rem !important;
}

.menu-preview {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: #fff;
  background: #08080a;
}

.menu-preview-top {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  padding: 0 clamp(30px, 4vw, 68px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.menu-close {
  width: 52px;
  height: 52px;
  padding: 13px;
  color: #fff;
  cursor: pointer;
}

.menu-preview-stage {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.menu-preview-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.menu-preview-card.is-active {
  opacity: 1;
  visibility: visible;
}

.menu-preview-card picture,
.menu-preview-card img {
  width: 100%;
  height: 100%;
}

.menu-preview-card img {
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease);
}

.menu-preview-card.is-active img {
  transform: scale(1);
}

.menu-preview-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.08) 34%, rgba(0, 0, 0, 0.84));
}

.menu-preview-card > div {
  position: absolute;
  z-index: 2;
  right: clamp(30px, 5vw, 78px);
  bottom: clamp(40px, 7vw, 92px);
  left: clamp(30px, 5vw, 78px);
}

.menu-preview-card > div > span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--magenta);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.menu-preview-card h2 {
  max-width: 900px;
  font-family: var(--display);
  font-size: clamp(3.6rem, 7vw, 9rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.84;
}

.menu-preview-card p {
  max-width: 520px;
  margin-top: 1.3rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

/* Hero */

.hero-carousel {
  position: relative;
  min-height: 100svh;
  color: #fff;
  background: #000;
  overflow: hidden;
}

.hero-viewport,
.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 900ms var(--ease), visibility 900ms var(--ease);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-media,
.hero-media picture,
.hero-media img,
.hero-media video,
.video-fallback {
  width: 100%;
  height: 100%;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-media video,
.video-fallback img {
  object-fit: cover;
}

.hero-media img,
.hero-media video {
  transform: scale(1.045);
  transition: transform 8s linear;
}

.hero-slide.is-active .hero-media img,
.hero-slide.is-active .hero-media video {
  transform: scale(1);
}

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

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 500ms ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.video-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-powder {
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: 0.5;
  background: url("../img/powder-overlay.png") left center / min(67vw, 1150px) auto no-repeat;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: powderFloat 10s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  z-index: 4;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22) 48%, rgba(0, 0, 0, 0.28)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.23), transparent 38%, rgba(0, 0, 0, 0.66));
}

.hero-shade--strong {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.75)), linear-gradient(90deg, rgba(0, 0, 0, 0.75), transparent 75%);
}

.hero-content {
  position: absolute;
  z-index: 8;
  top: 52%;
  left: 50%;
  width: min(calc(100% - 40px), 1500px);
  text-align: center;
  transform: translate(-50%, -50%);
}

.hero-content > * {
  opacity: 0;
  transform: translateY(28px);
}

.hero-slide.is-active .hero-content > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.hero-slide.is-active .hero-content > :nth-child(1) { transition-delay: 180ms; }
.hero-slide.is-active .hero-content > :nth-child(2) { transition-delay: 250ms; }
.hero-slide.is-active .hero-content > :nth-child(3) { transition-delay: 330ms; }
.hero-slide.is-active .hero-content > :nth-child(4) { transition-delay: 410ms; }

.hero-badge {
  display: inline-flex;
  margin-bottom: 1.15rem;
  padding: 0.42rem 0.8rem;
  color: #fff;
  background: var(--magenta);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.hero-badge--white {
  color: #111;
  background: #fff;
}

.hero-content h1,
.hero-content h2 {
  font-family: var(--display);
  font-size: clamp(6rem, 15vw, 17rem);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 0.72;
  text-transform: uppercase;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}


.hero-wordmark-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  line-height: 1 !important;
  text-shadow: none !important;
}

.hero-wordmark {
  display: block;
  width: min(78vw, 1180px);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.42));
}

.hero-content p {
  max-width: 1060px;
  margin: clamp(1.2rem, 2.4vw, 2.4rem) auto 0;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.hero-content .pill-button {
  margin: clamp(1.6rem, 3vw, 3.1rem) auto 0;
}

.hero-content--rating h2 {
  font-size: clamp(7rem, 17vw, 20rem);
}

.pill-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-width: 190px;
  min-height: 50px;
  padding: 0.72rem 1.6rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1;
  overflow: hidden;
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease, transform 250ms ease;
}

.pill-button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: currentColor;
  transform: translateX(-102%);
  transition: transform 350ms var(--ease);
}

.pill-button span,
.pill-button i {
  position: relative;
  z-index: 1;
}

.pill-button i {
  font-style: normal;
  font-size: 1.05rem;
  transition: transform 250ms ease;
}

.pill-button:hover {
  color: #050507;
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.pill-button:hover::before {
  transform: translateX(0);
}

.pill-button--outline {
  color: #fff;
}

.pill-button--outline::before {
  background: #fff;
}

.pill-button--dark {
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.pill-button--dark::before {
  background: var(--text-dark);
}

.pill-button--dark:hover {
  color: #fff;
  background: var(--text-dark);
  border-color: var(--text-dark);
}

.hero-ui {
  position: absolute;
  z-index: 12;
  right: clamp(20px, 4vw, 66px);
  bottom: clamp(24px, 4vw, 55px);
  left: clamp(20px, 4vw, 66px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-dots {
  display: flex;
  gap: 0.55rem;
}

.hero-dot {
  position: relative;
  width: 42px;
  height: 18px;
  cursor: pointer;
}

.hero-dot::after {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.42);
  transition: height 180ms ease, background 180ms ease;
}

.hero-dot.is-active::after {
  height: 3px;
  background: #fff;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.circle-control {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.circle-control:hover {
  color: #000;
  background: #fff;
  transform: scale(1.04);
}

.circle-control--dark {
  color: var(--text-dark);
  border-color: rgba(17, 17, 20, 0.45);
}

.circle-control--dark:hover {
  color: #fff;
  background: var(--text-dark);
}

.circle-control span {
  font-size: 1.15rem;
  line-height: 1;
}

.hero-progress {
  width: clamp(120px, 16vw, 250px);
  height: 1px;
  margin-left: 0.8rem;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}

.hero-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
}

/* Service programs */

.service-programs {
  position: relative;
  background: #000;
}

.section-floating-heading {
  position: absolute;
  z-index: 7;
  top: 4.2rem;
  left: clamp(20px, 4.4vw, 72px);
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.6rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.service-program {
  position: relative;
  min-height: min(100svh, 960px);
  color: #fff;
  background: #050507;
  overflow: hidden;
}

.service-program + .service-program {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.service-program-media,
.service-program-media picture,
.service-program-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-program-media img {
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.4s var(--ease), filter 600ms ease;
}

.service-program.is-visible .service-program-media img {
  transform: scale(1);
}

.service-program:hover .service-program-media img {
  filter: saturate(1.12) contrast(1.04);
}

.service-program-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.24) 58%, rgba(0, 0, 0, 0.15)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 42%, rgba(0, 0, 0, 0.75));
}

.service-program-overlay {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 5vw, 80px);
  bottom: clamp(38px, 6vw, 88px);
  left: clamp(20px, 5vw, 80px);
  max-width: 1050px;
}

.service-program-label {
  display: inline-flex;
  margin-bottom: 1.35rem;
  padding: 0.38rem 0.68rem;
  color: #111;
  background: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-program h3 {
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 14rem);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 0.72;
}

.service-program p {
  max-width: 640px;
  margin-top: 1.7rem;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.service-program .pill-button {
  margin-top: 2rem;
}

/* Process */

.process-section {
  padding: clamp(90px, 10vw, 170px) clamp(20px, 4.4vw, 72px);
  color: var(--text-dark);
  background: var(--paper);
}

.process-header {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  grid-template-areas:
    "kicker copy"
    "title copy";
  column-gap: clamp(30px, 7vw, 130px);
  align-items: end;
  max-width: var(--max);
  margin: 0 auto clamp(55px, 7vw, 105px);
}

.section-kicker {
  display: block;
  grid-area: kicker;
  margin-bottom: 1rem;
  color: var(--magenta);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.process-header h2,
.story-copy h2,
.discover-header h2,
.reputation-copy h2,
.gallery-intro h2,
.precision-video-content h2,
.contact-heading h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-transform: uppercase;
}

.process-header h2 {
  grid-area: title;
  font-size: clamp(4.4rem, 8.8vw, 11rem);
}

.process-header > p {
  grid-area: copy;
  padding-bottom: 0.4rem;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  background: var(--line-dark);
}

.process-card {
  position: relative;
  min-height: 560px;
  color: #fff;
  background: #111;
  overflow: hidden;
}

.process-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
  transition: transform 700ms var(--ease), filter 450ms ease;
}

.process-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.82));
}

.process-card > div {
  position: absolute;
  z-index: 2;
  right: 1.7rem;
  bottom: 1.7rem;
  left: 1.7rem;
}

.process-card span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--magenta);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.process-card h3 {
  font-family: var(--display);
  font-size: clamp(2.3rem, 4vw, 5rem);
  font-weight: 600;
  line-height: 0.9;
}

.process-card p {
  max-width: 340px;
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.process-card:hover img {
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.045);
}

.process-card--color-focus img {
  filter: saturate(1.14) contrast(1.04) brightness(0.98);
}

.process-card--color-focus:hover img {
  filter: saturate(1.22) contrast(1.05) brightness(1);
}

/* Capability carousel */

.capability-carousel {
  position: relative;
  min-height: 92svh;
  color: var(--text-dark);
  background: #f4f3ef;
  overflow: hidden;
}

.capability-stage {
  position: absolute;
  inset: 0;
}

.capability-track,
.capability-slide,
.capability-slide picture,
.capability-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.capability-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms var(--ease), visibility 700ms var(--ease);
}

.capability-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.capability-slide img {
  object-fit: cover;
  opacity: 0.88;
  filter: saturate(0.85) contrast(0.95) brightness(1.08);
  transform: scale(1.04);
  transition: transform 1.2s var(--ease);
}

.capability-slide.is-active img {
  transform: scale(1);
}

.capability-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(244, 243, 239, 0.08), rgba(244, 243, 239, 0.12) 48%, rgba(244, 243, 239, 0.87));
}

.capability-overlay {
  position: absolute;
  z-index: 4;
  right: clamp(20px, 4.4vw, 72px);
  bottom: clamp(28px, 5vw, 70px);
  left: clamp(20px, 4.4vw, 72px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.capability-copy {
  max-width: 950px;
}

.capability-index {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--magenta);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.capability-copy h2 {
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 15rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.72;
}

.capability-copy p {
  margin-top: 1.2rem;
  font-family: var(--display);
  font-size: clamp(1rem, 1.7vw, 1.65rem);
  font-weight: 500;
  letter-spacing: 0.11em;
}

.capability-actions {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.7rem;
  align-items: center;
}

.capability-actions .pill-button {
  grid-column: 1 / -1;
  margin-top: 0.6rem;
}

/* Story */

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  min-height: 94svh;
  color: var(--text-dark);
  background: var(--paper);
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 9vw, 150px) clamp(25px, 6vw, 105px);
}

.story-copy h2 {
  max-width: 850px;
  font-size: clamp(3.9rem, 7vw, 9rem);
}

.story-copy p {
  max-width: 650px;
  margin-top: 1.35rem;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.text-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  margin-top: 2.4rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.text-arrow-link span {
  transition: transform 220ms ease;
}

.text-arrow-link:hover span {
  transform: translateX(5px);
}

.story-media {
  min-height: 620px;
  overflow: hidden;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.story-media:hover img {
  transform: scale(1.035);
}

/* Discover */

.discover-section {
  padding: clamp(95px, 10vw, 170px) clamp(20px, 4.4vw, 72px);
  color: #fff;
  background: var(--black);
}

.discover-header {
  max-width: var(--max);
  margin: 0 auto clamp(50px, 7vw, 100px);
}

.discover-header h2 {
  max-width: 1250px;
  font-size: clamp(4.4rem, 9vw, 11.5rem);
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  background: var(--line);
}

.discover-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #111;
}

.discover-card--wide {
  grid-column: 1 / -1;
  min-height: 760px;
}

.discover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform 850ms var(--ease), filter 450ms ease;
}

.discover-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.82));
}

.discover-card > div {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 3vw, 48px);
  bottom: clamp(25px, 4vw, 54px);
  left: clamp(22px, 3vw, 48px);
}

.discover-card > div > span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--magenta);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.discover-card h3 {
  max-width: 950px;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 7.7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.84;
}

.discover-card p {
  max-width: 560px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.76);
}

.discover-card strong {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

.discover-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

/* Reputation */

.reputation-section {
  position: relative;
  min-height: 100svh;
  padding: clamp(100px, 11vw, 180px) clamp(20px, 4.4vw, 72px) clamp(80px, 9vw, 150px);
  color: #fff;
  background: #050507;
  overflow: hidden;
}

.reputation-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.27;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.34)),
    url("../img/photos/15-lamborghini-rear.webp") 68% center / cover no-repeat;
}

.reputation-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 20% 50%, rgba(245, 27, 123, 0.19), transparent 28%), url("../img/noise.png");
}

.reputation-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 9vw, 150px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.reputation-score > span {
  display: block;
  color: var(--magenta);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.reputation-score strong {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--display);
  font-size: clamp(10rem, 23vw, 28rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.65;
}

.reputation-stars {
  margin-top: 1.7rem;
  color: var(--yellow);
  font-size: clamp(1.2rem, 2vw, 2rem);
  letter-spacing: 0.15em;
}

.reputation-score p {
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.reputation-copy h2 {
  max-width: 920px;
  font-size: clamp(4rem, 8vw, 10rem);
}

.reputation-copy > p {
  max-width: 650px;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.reputation-copy .pill-button {
  margin-top: 2.1rem;
}

.reputation-copy small {
  display: block;
  max-width: 580px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
}

.review-carousel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
  max-width: var(--max);
  margin: clamp(70px, 9vw, 140px) auto 0;
  padding-top: clamp(45px, 6vw, 80px);
  border-top: 1px solid var(--line);
}

.review-track {
  position: relative;
  min-height: 240px;
}

.review-card {
  position: absolute;
  inset: 0;
  max-width: 1050px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 420ms ease, visibility 420ms ease, transform 420ms ease;
}

.review-card.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.review-card > span {
  color: var(--magenta);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.review-card blockquote {
  margin-top: 0.9rem;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.review-card p {
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
}

.review-controls {
  display: flex;
  gap: 0.7rem;
}

/* Gallery */

.gallery-section {
  padding: clamp(95px, 10vw, 165px) 0;
  color: var(--text-dark);
  background: var(--paper);
  overflow: hidden;
}

.gallery-intro {
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto clamp(45px, 7vw, 90px);
  text-align: center;
}

.gallery-intro h2 {
  font-size: clamp(4.7rem, 10vw, 12rem);
}

.gallery-intro p {
  max-width: 700px;
  margin: 1.4rem auto 0;
  color: var(--muted-dark);
}

.gallery-viewport {
  position: relative;
  width: 100%;
}

.gallery-track {
  display: flex;
  gap: clamp(18px, 2vw, 34px);
  align-items: center;
  padding: 0 max(20px, calc((100vw - 1050px) / 2));
  transition: transform 700ms var(--ease);
  will-change: transform;
}

.gallery-slide {
  position: relative;
  min-width: min(74vw, 1050px);
  aspect-ratio: 16 / 9;
  opacity: 0.42;
  transform: scale(0.93);
  transition: opacity 520ms ease, transform 520ms var(--ease);
  overflow: hidden;
}

.gallery-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slide figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.7rem 1rem;
  color: #fff;
  background: rgba(5, 5, 7, 0.82);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.gallery-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(17, 17, 20, 0.4);
  border-radius: 50%;
  color: var(--text-dark);
  background: rgba(244, 243, 239, 0.78);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 220ms ease, background 220ms ease;
}

.gallery-arrow:hover {
  color: #fff;
  background: #111;
}

.gallery-arrow--prev { left: clamp(15px, 3vw, 50px); }
.gallery-arrow--next { right: clamp(15px, 3vw, 50px); }

/* Precision video */

.precision-video-section {
  position: relative;
  min-height: 100svh;
  color: #fff;
  background: #000;
  overflow: hidden;
}

.precision-video-bg,
.precision-video-bg video,
.precision-video-bg .video-fallback,
.precision-video-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.precision-video-bg video {
  z-index: 2;
  object-fit: cover;
  opacity: 0;
  transition: opacity 500ms ease;
}

.precision-video-bg video.is-ready {
  opacity: 1;
}

.precision-video-bg img {
  object-fit: cover;
  animation: slowZoom 18s linear infinite alternate;
}

.precision-video-shade {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.27), rgba(0, 0, 0, 0.7));
}

.precision-video-content {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: min(calc(100% - 40px), 1400px);
  text-align: center;
  transform: translate(-50%, -50%);
}

.precision-video-content h2 {
  font-size: clamp(5rem, 12vw, 15rem);
}

.precision-video-content p {
  max-width: 670px;
  margin: 1.4rem auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.precision-loading {
  width: min(420px, 65vw);
  height: 1px;
  margin: 2.8rem auto 0;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}

.precision-loading i {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform-origin: left;
  animation: loadLoop 6s linear infinite;
}

/* Contact */

.contact-section {
  padding: clamp(95px, 10vw, 170px) clamp(20px, 4.4vw, 72px);
  color: var(--text-dark);
  background: var(--paper);
}

.contact-heading {
  max-width: var(--max);
  margin: 0 auto clamp(55px, 8vw, 110px);
}

.contact-heading h2 {
  max-width: 1250px;
  font-size: clamp(4.6rem, 9.8vw, 12.8rem);
}

.contact-heading > p {
  max-width: 730px;
  margin-top: 1.6rem;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(45px, 8vw, 135px);
  max-width: var(--max);
  margin: 0 auto;
  padding-top: clamp(40px, 5vw, 70px);
  border-top: 1px solid var(--line-dark);
}

.contact-info {
  align-self: start;
}

.contact-logo-wrap {
  width: min(390px, 100%);
  margin-bottom: clamp(35px, 5vw, 65px);
}

.contact-info dl {
  display: grid;
  gap: 1.45rem;
}

.contact-info dl > div {
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line-dark);
}

.contact-info dt {
  margin-bottom: 0.42rem;
  color: var(--muted-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.contact-info dd {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.05;
}

.contact-note {
  margin-top: 1.5rem;
  color: var(--muted-dark);
  font-size: 0.72rem;
}

.valuation-form {
  min-width: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.7rem 1.4rem;
}

.form-grid label {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.form-grid label > span:first-child {
  color: var(--muted-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.65rem 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 20, 0.38);
  border-radius: 0;
  color: var(--text-dark);
  background: transparent;
  transition: border-color 180ms ease;
}

.form-grid textarea {
  min-height: 132px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--magenta);
  outline: none;
}

.form-grid input[aria-invalid="true"],
.form-grid select[aria-invalid="true"],
.form-grid textarea[aria-invalid="true"] {
  border-color: #c70f3f;
}

.form-full {
  grid-column: 1 / -1;
}

.file-field input {
  padding: 0.85rem 0;
}

.file-field small {
  color: var(--muted-dark);
  font-size: 0.72rem;
}

.consent-field {
  display: flex !important;
  grid-template-columns: auto 1fr;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem !important;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.15rem;
}

.consent-field span {
  color: var(--muted-dark) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

.consent-field a {
  border-bottom: 1px solid currentColor;
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
  margin-top: 2.2rem;
  padding: 0 1.5rem;
  color: #fff;
  background: var(--text-dark);
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 230ms ease, transform 230ms ease;
}

.submit-button:hover {
  background: var(--magenta);
  transform: translateY(-2px);
}

.submit-button i {
  font-style: normal;
  font-size: 1.2rem;
}

.form-status {
  min-height: 24px;
  margin-top: 1rem;
  color: var(--muted-dark);
  font-size: 0.8rem;
}

.form-status.is-error {
  color: #b80d38;
}

.form-status.is-success {
  color: #136b42;
}

/* Footer */

.site-footer {
  position: relative;
  padding: 0 clamp(20px, 4.4vw, 72px);
  color: #fff;
  background: #030304;
  overflow: hidden;
}

.footer-watermark {
  position: absolute;
  top: clamp(70px, 8vw, 120px);
  left: 50%;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(8rem, 24vw, 30rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.7;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  transform: translateX(-50%);
  pointer-events: none;
  white-space: nowrap;
}

.footer-social-row,
.footer-logo-row,
.footer-columns,
.footer-bottom {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin-inline: auto;
}

.footer-social-row {
  display: flex;
  justify-content: space-between;
  padding: clamp(50px, 6vw, 85px) 0 1.6rem;
  border-bottom: 1px solid var(--line);
}

.footer-social-row > span,
.footer-social-row a {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.footer-social-row > div {
  display: flex;
  gap: 1.4rem;
}

.footer-social-row a:hover {
  color: var(--magenta);
}

.footer-logo-row {
  display: flex;
  justify-content: center;
  padding: clamp(70px, 11vw, 165px) 0 clamp(70px, 9vw, 135px);
}

.footer-logo-row img {
  width: min(850px, 80vw);
  filter: drop-shadow(0 18px 45px rgba(0, 0, 0, 0.45));
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) repeat(3, minmax(150px, 0.5fr));
  gap: clamp(30px, 5vw, 90px);
  padding: clamp(45px, 6vw, 85px) 0;
  border-top: 1px solid var(--line);
}

.footer-brand-copy h2 {
  font-family: var(--display);
  font-size: clamp(3.8rem, 7vw, 8.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.79;
}

.footer-brand-copy h2 span {
  color: var(--magenta);
}

.footer-brand-copy p {
  max-width: 440px;
  margin-top: 1.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-columns > div:not(.footer-brand-copy) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-columns h3 {
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.footer-columns a,
.footer-link-button {
  padding: 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.86rem;
  cursor: pointer;
}

.footer-columns a:hover,
.footer-link-button:hover {
  color: var(--magenta);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0 2.2rem;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
}

/* Sticky widget */

.sticky-valuation {
  position: fixed;
  z-index: 190;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 102px minmax(180px, 1fr) auto;
  width: min(410px, calc(100vw - 44px));
  min-height: 106px;
  color: #fff;
  background: rgba(8, 8, 11, 0.93);
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
  transition: opacity 350ms ease, transform 350ms var(--ease);
}

.sticky-valuation.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
}

.sticky-valuation img {
  width: 102px;
  height: 100%;
  object-fit: cover;
}

.sticky-valuation > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
}

.sticky-valuation span {
  color: var(--magenta);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.sticky-valuation strong {
  margin-top: 0.25rem;
  font-family: var(--display);
  font-size: 1.28rem;
  line-height: 1;
}

.sticky-valuation a {
  margin-top: 0.45rem;
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.sticky-valuation > button {
  align-self: start;
  padding: 0.5rem 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  font-size: 1.2rem;
}

/* Accessibility and cookies */

.a11y-panel {
  position: fixed;
  z-index: 1000;
  inset: 0;
}

.a11y-panel.is-open {
  display: block !important;
}

.a11y-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.a11y-content {
  position: absolute;
  top: 0;
  right: 0;
  width: min(430px, 100%);
  height: 100%;
  padding: 2rem;
  color: var(--text-dark);
  background: var(--paper);
  box-shadow: -25px 0 75px rgba(0, 0, 0, 0.28);
  animation: panelLeft 420ms var(--ease) both;
}

.a11y-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line-dark);
}

.a11y-header h2 {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 600;
}

.a11y-header button {
  font-size: 2rem;
  cursor: pointer;
}

.a11y-option {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.a11y-option > span {
  font-size: 0.75rem;
  font-weight: 700;
}

.a11y-option > div {
  display: flex;
  gap: 0.5rem;
}

.a11y-option button {
  flex: 1;
  min-height: 44px;
  border: 1px solid var(--line-dark);
  cursor: pointer;
}

.a11y-option button.is-active {
  color: #fff;
  background: var(--text-dark);
}

.a11y-toggle {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line-dark);
  cursor: pointer;
}

.a11y-toggle input {
  width: 20px;
  height: 20px;
}

.cookie-banner {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin-inline: auto;
  padding: 1.25rem 1.4rem;
  color: var(--text-dark);
  background: var(--paper);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
}

.cookie-banner.is-visible {
  display: grid !important;
  animation: cookieUp 420ms var(--ease) both;
}

.cookie-banner strong {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
}

.cookie-banner p {
  margin-top: 0.25rem;
  color: var(--muted-dark);
  font-size: 0.78rem;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.cookie-actions button,
.cookie-actions a {
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--line-dark);
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-actions button:first-child {
  color: #fff;
  background: var(--text-dark);
}

.noscript {
  position: fixed;
  z-index: 2000;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  color: #000;
  background: #fff;
  text-align: center;
}

/* Legal pages */

.legal-body {
  color: var(--text-dark);
  background: var(--paper);
}

.legal-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(236, 235, 230, 0.94);
  backdrop-filter: blur(16px);
}

.legal-header img {
  width: min(270px, 50vw);
}

.legal-header a:last-child {
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.legal-main {
  width: min(calc(100% - 40px), 960px);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 150px) 0;
}

.legal-main > span {
  color: var(--magenta);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.legal-main h1 {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.82;
}

.legal-main .legal-intro {
  margin-top: 1.5rem;
  color: var(--muted-dark);
  font-size: 1.05rem;
}

.legal-content {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

.legal-content section {
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
}

.legal-content h2 {
  margin-bottom: 0.8rem;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 600;
}

.legal-content p,
.legal-content li {
  color: #4f5055;
}

.legal-content ul {
  display: grid;
  gap: 0.5rem;
  padding-left: 1.2rem;
  list-style: disc;
}

.legal-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(20px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.64);
  background: var(--black);
  font-size: 0.72rem;
}

/* Reveal */

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 850ms var(--ease), transform 850ms var(--ease);
}

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

/* Animations */

@keyframes panelDown {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes menuReveal {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

@keyframes menuHide {
  from { clip-path: inset(0 0 0 0); }
  to { clip-path: inset(0 0 0 100%); }
}

@keyframes panelLeft {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes cookieUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes powderFloat {
  from { transform: translate3d(-1.5%, -0.5%, 0) scale(1); }
  to { transform: translate3d(1.5%, 0.5%, 0) scale(1.04); }
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@keyframes loadLoop {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Responsive */

@media (max-width: 1180px) {
  .menu-layout {
    grid-template-columns: minmax(350px, 47%) 1fr;
  }

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

  .footer-columns {
    grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(130px, 0.5fr));
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .menu-trigger-label,
  .header-location span,
  .header-divider {
    display: none;
  }

  .header-right-actions {
    gap: 0.4rem;
  }

  .header-logo {
    width: clamp(190px, 38vw, 270px);
    height: 54px;
  }

  .menu-layout {
    display: block;
    overflow-y: auto;
  }

  .menu-primary {
    min-height: 100%;
    padding: 28px 25px 35px;
  }

  .menu-preview {
    display: none;
  }

  .menu-brand {
    width: min(300px, 70vw);
    padding-right: 56px;
  }

  .menu-brand::after {
    position: fixed;
    top: 28px;
    right: 25px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    content: "×";
    font-size: 1.7rem;
    pointer-events: none;
  }

  .menu-nav {
    margin: 70px 0;
  }

  .menu-nav a {
    grid-template-columns: 34px 1fr auto;
    min-height: 70px;
  }

  .menu-nav a strong {
    font-size: clamp(2.3rem, 10vw, 4.5rem);
  }

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

  .menu-socials {
    grid-column: auto;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(5.4rem, 19vw, 10rem);
  }

  .hero-content--rating h2 {
    font-size: clamp(6.8rem, 24vw, 12rem);
  }

  .hero-ui {
    align-items: center;
  }

  .hero-progress {
    display: none;
  }

  .service-program {
    min-height: 82svh;
  }

  .section-floating-heading {
    top: 2.2rem;
  }

  .service-program h3 {
    font-size: clamp(4.3rem, 17vw, 9rem);
  }

  .process-header {
    display: block;
  }

  .process-header > p {
    max-width: 650px;
    margin-top: 1.5rem;
  }

  .capability-carousel {
    min-height: 80svh;
  }

  .capability-overlay {
    display: block;
  }

  .capability-actions {
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .capability-actions .pill-button {
    display: none;
  }

  .story-section {
    grid-template-columns: 1fr;
  }

  .story-media {
    min-height: 58svh;
    order: -1;
  }

  .discover-card,
  .discover-card--wide {
    min-height: 600px;
  }

  .reputation-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .reputation-score strong {
    font-size: clamp(10rem, 40vw, 20rem);
  }

  .review-carousel {
    grid-template-columns: 1fr;
  }

  .review-controls {
    margin-top: 1rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .footer-brand-copy {
    grid-column: 1 / -1;
  }

  .sticky-valuation {
    display: none;
  }
}

@media (max-width: 680px) {
  .demo-ribbon {
    font-size: 0.58rem;
  }

  .demo-ribbon span {
    display: none;
  }

  .header-shell {
    padding: 0 15px;
  }

  .header-logo {
    width: 180px;
  }

  .search-panel-inner {
    width: min(calc(100% - 30px), 1320px);
  }

  .search-results {
    grid-template-columns: 1fr;
  }

  .hero-content {
    top: 51%;
    width: calc(100% - 28px);
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(4.6rem, 23vw, 8rem);
    line-height: 0.76;
  }

  .hero-content p {
    max-width: 92%;
    font-size: 1rem;
    line-height: 1.25;
  }

  .hero-powder {
    opacity: 0.38;
    background-size: 125vw auto;
  }

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

  .hero-ui {
    right: 15px;
    bottom: 20px;
    left: 15px;
  }

  .hero-dot {
    width: 26px;
  }

  .circle-control {
    width: 44px;
    height: 44px;
  }

  .section-floating-heading {
    left: 16px;
    font-size: 1.75rem;
  }

  .service-program {
    min-height: 78svh;
  }

  .service-program-media img {
    object-position: center;
  }

  .service-program-overlay {
    right: 16px;
    bottom: 27px;
    left: 16px;
  }

  .service-program h3 {
    font-size: clamp(4rem, 21vw, 7.4rem);
  }

  .service-program p {
    font-size: 0.9rem;
  }

  .process-section,
  .discover-section,
  .reputation-section,
  .contact-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .process-header h2,
  .story-copy h2,
  .discover-header h2,
  .reputation-copy h2,
  .gallery-intro h2,
  .precision-video-content h2,
  .contact-heading h2 {
    font-size: clamp(3.7rem, 17vw, 6.6rem);
  }

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

  .process-card {
    min-height: 560px;
  }

  .capability-carousel {
    min-height: 72svh;
  }

  .capability-copy h2 {
    font-size: clamp(4.3rem, 20vw, 8rem);
  }

  .capability-copy p {
    max-width: calc(100% - 100px);
    font-size: 0.82rem;
  }

  .story-copy {
    padding: 75px 16px;
  }

  .story-media {
    min-height: 48svh;
  }

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

  .discover-card--wide {
    grid-column: auto;
  }

  .discover-card,
  .discover-card--wide {
    min-height: 520px;
  }

  .discover-card h3 {
    font-size: clamp(2.9rem, 14vw, 5.4rem);
  }

  .reputation-section {
    padding-top: 85px;
  }

  .reputation-score strong {
    font-size: clamp(9rem, 46vw, 15rem);
  }

  .review-track {
    min-height: 330px;
  }

  .review-card blockquote {
    font-size: clamp(2.5rem, 11vw, 4.2rem);
  }

  .gallery-track {
    padding-right: 13vw;
    padding-left: 13vw;
  }

  .gallery-slide {
    min-width: 74vw;
    aspect-ratio: 4 / 5;
  }

  .gallery-arrow {
    width: 46px;
    height: 46px;
  }

  .precision-video-section {
    min-height: 82svh;
  }

  .contact-heading {
    margin-bottom: 55px;
  }

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

  .form-full {
    grid-column: auto;
  }

  .footer-social-row {
    display: grid;
    gap: 1rem;
  }

  .footer-logo-row img {
    width: 92vw;
  }

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

  .footer-brand-copy {
    grid-column: 1 / -1;
  }

  .footer-columns > div:last-child {
    grid-column: 1 / -1;
  }

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

  .cookie-banner,
  .cookie-banner.is-visible {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cookie-actions {
    flex-wrap: wrap;
  }

  .legal-header {
    min-height: 72px;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body.reduced-motion *,
body.reduced-motion *::before,
body.reduced-motion *::after {
  scroll-behavior: auto !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

.menu-mobile-close {
  position: absolute;
  z-index: 7;
  top: 26px;
  right: 24px;
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--text-dark);
  cursor: pointer;
}

.menu-mobile-close svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
}

@media (max-width: 900px) {
  .menu-mobile-close { display: block; }
  .menu-brand::after { display: none; }
}

/* Mobile title fit: keeps long model/service names inside narrow viewports even if the webfont is unavailable. */
@media (max-width: 680px) {
  .hero-content h1,
  .hero-content h2 {
    max-width: 100%;
    font-size: clamp(3.4rem, 16vw, 7rem);
    letter-spacing: -0.06em;
    text-wrap: balance;
  }

  .hero-content--rating h2 {
    font-size: clamp(6rem, 24vw, 11rem);
  }
}

/* Anchor alignment below the fixed demo/header chrome. */
main section[id],
footer[id] {
  scroll-margin-top: var(--chrome-height);
}

/* Long process labels stay inside their image cards with or without the remote display font. */
.process-card h3 {
  font-size: clamp(2.2rem, 3.35vw, 4.25rem);
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

/* Reputation headline uses deliberate editorial line breaks instead of viewport-dependent wrapping. */
.reputation-copy h2 {
  max-width: 760px;
  font-size: clamp(3.4rem, 6vw, 7.5rem);
  letter-spacing: -0.045em;
}

.reputation-copy h2 > span {
  display: inline-block;
  color: var(--white);
}

.file-field input[type="file"] {
  min-height: 58px;
  padding: 0.55rem 0;
  color: var(--muted-dark);
  font-family: var(--body);
  font-size: 0.82rem;
}

.file-field input[type="file"]::file-selector-button {
  margin-right: 1rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(17, 17, 20, 0.46);
  color: var(--text-dark);
  background: transparent;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.file-field input[type="file"]::file-selector-button:hover {
  color: #fff;
  background: var(--text-dark);
}

@media (max-width: 680px) {
  .reputation-copy h2 {
    font-size: clamp(3.25rem, 15vw, 6rem);
  }

  .process-card h3 {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
    overflow-wrap: normal;
  }
}

/* Editorial headings calibrated for both condensed webfont and system fallbacks. */
.process-header h2 {
  font-size: clamp(4rem, 5.8vw, 8.25rem);
}

.story-copy h2 {
  font-size: clamp(3.5rem, 5vw, 7rem);
  letter-spacing: -0.05em;
}

@media (max-width: 680px) {
  .process-header h2,
  .story-copy h2 {
    font-size: clamp(3.2rem, 13vw, 4.8rem);
  }
}

/* Narrow-screen headline fitting for long Spanish automotive terms. */
@media (max-width: 680px) {
  .service-program h3,
  .capability-copy h2 {
    max-width: 100%;
    font-size: clamp(3.55rem, 15vw, 6rem);
    letter-spacing: -0.055em;
  }

  .reputation-copy h2 {
    font-size: clamp(2.9rem, 12vw, 5rem);
  }

  .reputation-copy h2 > span {
    font-size: 1.3em;
  }

  .contact-heading h2 {
    font-size: clamp(3.3rem, 15vw, 5.8rem);
  }
}


@media (max-width: 900px) {
  .hero-wordmark {
    width: min(88vw, 900px);
  }
}

@media (max-width: 600px) {
  .hero-wordmark {
    width: 94vw;
  }
}

/* Platinium workshop photo inside reputation section */
.reputation-workshop-photo {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: clamp(65px, 8vw, 125px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #09090b;
}

.reputation-workshop-photo picture,
.reputation-workshop-photo img {
  display: block;
  width: 100%;
}

.reputation-workshop-photo img {
  height: auto;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.03);
  transform: scale(1.0);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter 500ms ease;
}

.reputation-workshop-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 45%, rgba(0,0,0,0.72) 100%);
}

.reputation-workshop-photo:hover img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.015);
}

.reputation-workshop-photo figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 2.5vw, 38px);
  bottom: clamp(16px, 2.2vw, 32px);
  color: rgba(255,255,255,0.92);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

@media (max-width: 760px) {
  .reputation-workshop-photo {
    margin-top: 60px;
  }
}


.story-media img {
  object-position: center 58%;
}
