@font-face {
  font-family: 'Claro Manrope';
  src: url('assets/fonts/manrope-latin.woff2') format('woff2');
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: 'Claro Condensed';
  src: url('assets/fonts/barlow-condensed-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

:root {
  --ease: cubic-bezier(.16, 1, .3, 1);
  --error: #ef6b5d;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body[data-site='grid-power'] {
  color-scheme: dark;
  --bg: #0b0e10;
  --surface: #14181b;
  --surface-strong: #1d2226;
  --text: #edf0ee;
  --muted: #aab2b3;
  --accent: #dbe838;
  --accent-text: #0b0e10;
  --line: #363d41;
  --body: 'Claro Manrope', Arial, sans-serif;
  --display: 'Claro Manrope', Arial, sans-serif;
  --radius: 6px;
}

body[data-site='motor-gallery'] {
  color-scheme: light;
  --bg: #f4f6f7;
  --surface: #e8ecef;
  --surface-strong: #dce2e6;
  --text: #202427;
  --muted: #5b6369;
  --accent: #1768d4;
  --accent-text: #f8fafb;
  --line: #c4cbd0;
  --body: Arial, 'Helvetica Neue', sans-serif;
  --display: Arial, 'Helvetica Neue', sans-serif;
  --radius: 0;
}

body[data-site='open-road'] {
  color-scheme: light;
  --bg: #eaf1ed;
  --surface: #f4f7f3;
  --surface-strong: #d8e4dc;
  --text: #153b33;
  --muted: #4d6962;
  --accent: #df6e5d;
  --accent-text: #15352e;
  --line: #b6cac0;
  --body: 'Claro Manrope', Arial, sans-serif;
  --display: 'Claro Manrope', Arial, sans-serif;
  --radius: 22px;
}

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

a {
  color: inherit;
}

button,
a,
summary {
  touch-action: manipulation;
}

button,
input,
textarea {
  font: inherit;
}

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

picture {
  display: block;
  min-width: 0;
}

.motion-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
}

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

.motion-video {
  opacity: 0;
  transition: opacity .42s var(--ease);
}

.motion-media.is-video-ready:not(.is-loop-resetting):not(.is-video-failed) .motion-video {
  opacity: 1;
}

.motion-media.is-video-failed .motion-video {
  display: none;
}

.motion-control {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(237, 240, 238, .48);
  border-radius: var(--radius);
  background: rgba(11, 14, 16, .88);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s var(--ease), background-color .2s ease, color .2s ease;
}

.motion-media.is-motion-active .motion-control {
  opacity: 1;
  transform: none;
  visibility: visible;
  pointer-events: auto;
}

.motion-control svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.motion-control span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}

.motion-icon-play {
  display: none;
}

.motion-media:is(.is-user-paused, .is-video-complete) .motion-icon-pause {
  display: none;
}

.motion-media:is(.is-user-paused, .is-video-complete) .motion-icon-play {
  display: block;
}

@media (hover: hover) {
  .motion-control:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--accent-text);
  }
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: .98;
}

p {
  max-width: 64ch;
  color: var(--muted);
}

h1 span {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 50;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--accent-text);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--text);
  font: 800 20px/1 var(--display);
  letter-spacing: .08em;
  text-decoration: none;
}

.brand img {
  width: 32px;
  height: 32px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
}

.site-header nav a,
.header-cta,
.language-button,
.menu-button {
  color: inherit;
  font: 700 11px/1 var(--body);
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header nav a {
  position: relative;
  padding-block: 27px;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}

.site-header nav a:hover::after {
  transform: scaleX(1);
}

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

.language-button,
.menu-button {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button {
  display: none;
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--accent-text);
}

.hero {
  min-height: calc(100dvh - 70px);
}

.eyebrow {
  color: var(--accent);
  font: 800 10px/1.2 var(--body);
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: 800 12px/1 var(--body);
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
}

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

.button:active {
  transform: translateY(1px) scale(.98);
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-text);
}

.button.secondary {
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.caption,
figcaption {
  color: var(--muted);
  font: 700 11px/1.45 var(--body);
  letter-spacing: .04em;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
  padding: clamp(82px, 11vw, 150px) clamp(20px, 7vw, 100px);
  background: var(--surface-strong);
}

.contact-section h2 {
  max-width: 10ch;
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  letter-spacing: -.04em;
}

.contact-copy > p {
  max-width: 54ch;
  margin-top: 22px;
  color: var(--muted);
}

.contact-links {
  margin-top: clamp(36px, 5vw, 64px);
}

.contact-links a {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

.contact-links small,
.contact-links strong {
  display: block;
}

.contact-links small {
  color: inherit;
  font: 700 10px/1 var(--body);
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .72;
}

.contact-links strong {
  margin-top: 8px;
  font: 600 clamp(1.15rem, 2.2vw, 2rem)/1.15 var(--display);
  overflow-wrap: anywhere;
}

.contact-form {
  min-width: 0;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
}

.contact-form header {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.contact-form h3 {
  font: 600 clamp(2rem, 3.6vw, 3.6rem)/1 var(--display);
  letter-spacing: -.03em;
}

.contact-form header p {
  max-width: 58ch;
  margin-top: 14px;
  color: var(--muted) !important;
}

.contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
  margin-top: 30px;
}

.contact-field,
.contact-field > span {
  display: block;
}

.contact-field-wide {
  grid-column: 1 / -1;
}

.contact-field > span,
.contact-services legend {
  margin-bottom: 9px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .035em;
}

.contact-field b,
.contact-services b {
  color: var(--accent);
}

.contact-field > span small {
  margin-inline-start: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 2px solid transparent;
  background: var(--surface);
  color: var(--text);
  font-size: 16px;
  line-height: 1.35;
  transition: border-color .2s ease, outline-color .2s ease, background-color .2s ease;
}

.contact-field textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-field input:focus-visible,
.contact-field textarea:focus-visible {
  border-color: var(--accent);
  outline-color: color-mix(in srgb, var(--accent) 42%, transparent);
  background: var(--surface-strong);
}

.contact-form.was-validated .contact-field input:invalid,
.contact-form.was-validated .contact-field textarea:invalid {
  border-color: var(--error);
}

.contact-form.was-validated .contact-services input:invalid,
.contact-form.was-validated .contact-consent input:invalid {
  outline: 2px solid var(--error);
  outline-offset: 2px;
}

.contact-services {
  min-width: 0;
  margin: 30px 0;
  padding: 0;
  border: 0;
}

.contact-services > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.contact-services label {
  min-width: 0;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.contact-services label:nth-child(odd) {
  padding-inline-end: 18px;
}

.contact-services label:nth-child(even) {
  padding-inline-start: 18px;
}

.contact-services input,
.contact-consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--accent);
}

.contact-services span,
.contact-consent span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-hint {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  color: var(--muted);
  cursor: pointer;
}

.contact-consent input {
  margin-top: 2px;
}

.contact-provider-note {
  margin: 12px 0 0 !important;
  color: var(--muted) !important;
  font-size: 12px;
}

.contact-submit-row {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 28px;
}

.contact-submit {
  cursor: pointer;
}

.contact-submit:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.contact-submit[aria-busy='true'] {
  cursor: wait;
}

.contact-botcheck {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.contact-form-status {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 13px;
  line-height: 1.45;
}

.contact-form-status[data-state='pending'] {
  color: var(--text) !important;
}

.contact-form-status[data-state='success'] {
  color: var(--accent) !important;
}

.contact-form-status[data-state='error'] {
  color: var(--error) !important;
}

footer {
  min-height: 120px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 26px clamp(20px, 5vw, 70px);
  border-top: 1px solid var(--line);
}

footer p {
  font-size: 12px;
}

/* Grid Power */
.grid-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.grid-hero .hero-picture,
.grid-hero .hero-picture img,
.grid-hero .hero-picture video,
.grid-hero .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.grid-hero .hero-picture img,
.grid-hero .hero-picture video {
  object-position: center;
}

.grid-hero .motion-control {
  top: 82px;
  right: clamp(18px, 4vw, 58px);
  bottom: auto;
}

.grid-hero .hero-shade {
  background: linear-gradient(90deg, rgba(7, 10, 12, .96) 0%, rgba(7, 10, 12, .78) 35%, rgba(7, 10, 12, .04) 74%);
}

.grid-hero-copy {
  position: relative;
  width: min(780px, 64vw);
  padding: clamp(46px, 7vw, 100px) clamp(20px, 5vw, 72px);
}

.grid-hero-copy h1 {
  max-width: 12ch;
  margin: 20px 0 24px;
  font-size: clamp(4.1rem, 6.8vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -.055em;
}

.grid-hero-copy > p:not(.eyebrow) {
  max-width: 46ch;
  color: #d6dcda;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
}

.grid-status {
  position: absolute;
  right: clamp(20px, 4vw, 58px);
  bottom: clamp(22px, 4vw, 58px);
  width: min(300px, 28vw);
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(236, 240, 238, .32);
  border-radius: var(--radius);
  background: rgba(10, 13, 15, .76);
  backdrop-filter: blur(14px);
}

.grid-status span {
  color: var(--accent);
  font: 800 9px/1 var(--body);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.grid-status strong {
  font-size: 1rem;
}

.grid-proof {
  padding: 0 clamp(20px, 5vw, 72px);
  background: var(--accent);
  color: var(--accent-text);
}

.grid-proof-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.grid-proof-list article {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 130px;
  padding: 20px 24px;
  border-right: 1px solid rgba(11, 14, 16, .35);
}

.grid-proof-list article:last-child {
  border-right: 0;
}

.grid-proof-list strong {
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.grid-proof-list span {
  font-size: 12px;
}

.grid-workshop,
.grid-technology,
.grid-coverage,
.grid-armored {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
}

.grid-workshop > div,
.grid-coverage > div,
.grid-armored > div:last-child {
  padding: clamp(64px, 8vw, 120px) clamp(20px, 6vw, 86px);
}

.grid-workshop h2,
.grid-services h2,
.grid-technology h2,
.grid-process h2,
.grid-coverage h2,
.grid-armored h2 {
  font-size: clamp(3rem, 5.8vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -.055em;
}

.grid-workshop p,
.grid-coverage p,
.grid-armored p {
  margin-top: 24px;
}

.grid-workshop figure {
  min-height: 720px;
  align-self: stretch;
  background: var(--surface);
}

.grid-workshop figure picture,
.grid-workshop figure .motion-media,
.grid-workshop figure img {
  height: 100%;
}

.grid-workshop figure .motion-media {
  min-height: 720px;
}

.grid-workshop figure img {
  filter: none;
}

.grid-workshop figcaption,
.grid-coverage figcaption {
  padding: 12px 16px;
  background: var(--surface-strong);
}

.grid-services {
  display: grid;
  grid-template-columns: .58fr 1.42fr;
  gap: clamp(42px, 6vw, 90px);
  padding: clamp(82px, 10vw, 145px) clamp(20px, 6vw, 90px);
  background: var(--surface);
}

.grid-services header {
  position: sticky;
  top: 110px;
  align-self: start;
}

.grid-services header h2 {
  margin: 18px 0 24px;
}

.grid-service-list article {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 34px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.grid-service-list article:first-child {
  border-top: 1px solid var(--line);
}

.grid-service-list .service-photo,
.grid-service-list .service-photo img {
  height: auto;
}

.grid-service-list .service-photo img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  filter: none;
}

.grid-service-list .service-copy {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px 18px;
  align-content: center;
}

.grid-service-list .service-copy > span {
  grid-column: 1;
  grid-row: 1 / 3;
  color: var(--accent);
  font: 800 10px/1 var(--body);
}

.grid-service-list h3 {
  grid-column: 2;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -.04em;
}

.grid-service-list p {
  grid-column: 2;
  align-self: end;
  font-size: 14px;
}

.grid-technology {
  grid-template-columns: .92fr 1.08fr;
  gap: 0;
}

.grid-technology-visual,
.grid-technology-visual img {
  min-height: 940px;
  height: 100%;
}

.grid-technology-visual img {
  filter: none;
}

.grid-technology > div:last-child {
  align-self: stretch;
  padding: clamp(62px, 8vw, 116px) clamp(20px, 6vw, 86px);
  background: var(--accent);
  color: var(--accent-text);
}

.grid-technology > div:last-child .eyebrow,
.grid-technology > div:last-child p {
  color: #28302a;
}

.grid-technology h2 {
  margin: 18px 0 24px;
}

.grid-technology-list {
  margin-top: 42px;
}

.grid-technology-list article {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 26px;
  padding: 22px 0;
  border-top: 1px solid rgba(11, 14, 16, .38);
}

.grid-technology-list h3 {
  font-size: 1.18rem;
}

.grid-technology-list p {
  font-size: 13px;
}

.grid-process {
  padding: clamp(82px, 10vw, 145px) clamp(20px, 6vw, 90px);
}

.grid-process header {
  max-width: 760px;
  margin-bottom: 50px;
}

.grid-process header p {
  margin-top: 22px;
}

.grid-process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.grid-process-list li {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.grid-process-list li:last-child {
  border-right: 0;
}

.grid-process-list strong {
  color: var(--accent);
  font-size: 1.4rem;
}

.grid-process-list span {
  color: var(--muted);
  font-size: 13px;
}

.grid-coverage {
  grid-template-columns: 1fr .8fr;
  background: var(--surface);
}

.grid-coverage h2,
.grid-armored h2 {
  margin: 18px 0 0;
}

.grid-coverage figure {
  align-self: stretch;
}

.grid-coverage figure picture,
.grid-coverage figure .motion-media,
.grid-coverage figure img {
  height: 100%;
  min-height: 720px;
}

.grid-coverage figure img {
  filter: none;
}

.grid-coverage-details,
.gallery-coverage-details,
.road-coverage-details {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.grid-coverage-details summary,
.gallery-coverage-details summary,
.road-coverage-details summary {
  padding: 18px 0;
  cursor: pointer;
  font-weight: 800;
}

.grid-coverage-details ul,
.gallery-coverage-details ul,
.road-coverage-details ul {
  columns: 2;
  gap: 24px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.grid-coverage-details li,
.gallery-coverage-details li,
.road-coverage-details li {
  break-inside: avoid;
  padding: 6px 0;
  color: var(--muted);
  font-size: 13px;
}

.grid-armored {
  grid-template-columns: 1.12fr .88fr;
}

.grid-armored-media,
.grid-armored-media img,
.grid-armored-media video {
  height: 100%;
  min-height: 820px;
}

.grid-armored-media img,
.grid-armored-media video {
  filter: none;
}

.grid-vehicle-list,
.gallery-vehicle-list,
.road-vehicle-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.grid-vehicle-list strong,
.gallery-vehicle-list strong,
.road-vehicle-list strong {
  flex-basis: 100%;
  margin-bottom: 4px;
  color: var(--accent);
  font: 800 10px/1 var(--body);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.grid-vehicle-list span,
.gallery-vehicle-list span,
.road-vehicle-list span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 11px;
}

.grid-armored .button,
.gallery-armored .button,
.road-armored .button {
  width: max-content;
  margin-top: 34px;
}

body[data-site='grid-power'] .contact-section {
  background: var(--accent);
  color: var(--accent-text);
}

body[data-site='grid-power'] .contact-section p {
  color: #28302a;
}

/* Motor Gallery */
body[data-site='motor-gallery'] .site-header {
  background: color-mix(in srgb, var(--bg) 96%, transparent);
}

body[data-site='motor-gallery'] .brand img {
  filter: grayscale(1);
}

.gallery-hero {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  background: var(--bg);
}

.gallery-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 7vw, 100px) clamp(20px, 5vw, 72px);
}

.gallery-hero-copy h1 {
  margin: 22px 0 24px;
  font-size: clamp(4rem, 6.5vw, 7rem);
  font-weight: 300;
  letter-spacing: -.065em;
}

.gallery-hero-copy > p:not(.eyebrow) {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.gallery-hero-picture,
.gallery-hero-picture img {
  height: 100%;
  min-height: calc(100dvh - 70px);
}

.gallery-proof {
  padding: 0 clamp(20px, 5vw, 72px);
  border-block: 1px solid var(--line);
}

.gallery-proof-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-proof-list article {
  min-height: 138px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px 26px 20px 0;
}

.gallery-proof-list strong {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 400;
}

.gallery-proof-list span {
  color: var(--muted);
  font-size: 12px;
}

.gallery-workshop {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  padding: clamp(82px, 10vw, 150px) clamp(20px, 6vw, 90px);
}

.gallery-workshop > picture img {
  min-height: 620px;
  filter: grayscale(.55) saturate(.5);
}

.gallery-workshop h2,
.gallery-services h2,
.gallery-technology h2,
.gallery-process h2,
.gallery-coverage h2,
.gallery-armored h2 {
  font-size: clamp(3rem, 5.6vw, 6rem);
  font-weight: 300;
  letter-spacing: -.065em;
}

.gallery-workshop p {
  margin-top: 24px;
}

.gallery-workshop .caption {
  margin-top: 34px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.gallery-services {
  padding: clamp(82px, 10vw, 150px) clamp(20px, 5vw, 74px);
  background: var(--surface);
}

.gallery-services > header {
  max-width: 800px;
  margin-bottom: 62px;
}

.gallery-services > header p,
.gallery-technology > header > p:last-child,
.gallery-process header p,
.gallery-coverage > div > p,
.gallery-armored > div > p {
  margin-top: 22px;
}

.gallery-service-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery-service-list article {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
}

.gallery-service-list article:nth-child(1) {
  grid-column: 1 / 8;
  grid-row: span 2;
}

.gallery-service-list article:nth-child(2),
.gallery-service-list article:nth-child(3) {
  grid-column: 8 / 13;
}

.gallery-service-list article:nth-child(4) {
  grid-column: 1 / 5;
}

.gallery-service-list article:nth-child(5) {
  grid-column: 5 / 13;
}

.gallery-service-list .service-photo img {
  height: 300px;
  filter: saturate(.72) contrast(1.04);
}

.gallery-service-list article:first-child .service-photo img {
  height: 580px;
}

.gallery-service-list .service-copy {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 24px;
}

.gallery-service-list .service-copy > span {
  color: var(--accent);
  font-size: 11px;
}

.gallery-service-list h3 {
  font-size: clamp(1.45rem, 2.6vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -.04em;
}

.gallery-service-list p {
  grid-column: 2;
  margin-top: 4px;
  font-size: 13px;
}

.gallery-technology {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  padding: clamp(82px, 10vw, 150px) clamp(20px, 6vw, 90px);
}

.gallery-technology > header {
  grid-column: 1 / 8;
}

.gallery-technology h2 {
  margin: 18px 0 0;
}

.gallery-technology-picture {
  grid-column: 8 / 13;
}

.gallery-technology-picture img {
  height: 420px;
  filter: grayscale(.7) contrast(1.1);
}

.gallery-technology-list {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
}

.gallery-technology-list article {
  min-height: 220px;
  padding: 30px;
  background: var(--bg);
}

.gallery-technology-list h3 {
  font-size: 1.5rem;
  font-weight: 400;
}

.gallery-technology-list p {
  margin-top: 14px;
  font-size: 14px;
}

.gallery-process {
  padding: clamp(82px, 10vw, 150px) clamp(20px, 6vw, 90px);
  background: var(--surface);
}

.gallery-process header {
  max-width: 720px;
  margin-bottom: 50px;
}

.gallery-process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--text);
  list-style: none;
}

.gallery-process-list li {
  display: grid;
  gap: 50px;
  min-height: 230px;
  padding: 24px 28px 24px 0;
}

.gallery-process-list strong {
  font-size: 1.5rem;
  font-weight: 400;
}

.gallery-process-list span {
  color: var(--muted);
  font-size: 13px;
}

.gallery-coverage,
.gallery-armored {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.gallery-coverage > div,
.gallery-armored > div {
  padding: clamp(64px, 8vw, 120px) clamp(20px, 6vw, 88px);
}

.gallery-coverage h2,
.gallery-armored h2 {
  margin-top: 18px;
}

.gallery-coverage > picture,
.gallery-coverage > picture img,
.gallery-armored > picture,
.gallery-armored > picture img {
  height: 100%;
  min-height: 720px;
}

.gallery-coverage > picture img {
  filter: grayscale(1) contrast(1.12);
}

.gallery-armored {
  background: var(--surface);
}

.gallery-armored > picture img {
  filter: grayscale(.72) contrast(1.1);
}

body[data-site='motor-gallery'] .contact-section {
  background: var(--accent);
  color: var(--accent-text);
}

body[data-site='motor-gallery'] .contact-copy > p {
  color: #dceaff;
}

/* Open Road */
body[data-site='open-road'] .site-header {
  background: color-mix(in srgb, var(--bg) 92%, transparent);
}

body[data-site='open-road'] .header-cta,
body[data-site='open-road'] .button {
  border-radius: 999px;
}

.road-hero {
  position: relative;
  overflow: hidden;
}

.road-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 43, 37, .9) 0%, rgba(12, 43, 37, .68) 32%, rgba(12, 43, 37, .12) 68%, transparent 82%);
  content: '';
  pointer-events: none;
}

.road-hero-picture,
.road-hero-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.road-hero-picture img {
  object-position: center;
}

.road-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1040px, 90vw);
  display: flex;
  min-height: calc(100dvh - 70px);
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(54px, 7vw, 105px) clamp(20px, 5vw, 72px);
}

.road-hero-copy h1 {
  max-width: 12ch;
  margin: 20px 0 24px;
  color: #f2f7f3;
  font-size: clamp(4.3rem, 7.5vw, 8rem);
  font-weight: 600;
  letter-spacing: -.07em;
}

.road-hero-copy > p:not(.eyebrow) {
  max-width: 42ch;
  color: #f2f7f3;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.road-hero-copy .button.secondary {
  background: rgba(244, 247, 243, .82);
}

.road-proof {
  padding: 0 clamp(20px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.road-proof-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.road-proof-list article {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 140px;
  padding: 22px 30px 22px 0;
}

.road-proof-list strong {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.road-proof-list span {
  color: var(--muted);
  font-size: 12px;
}

.road-workshop {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
  padding: clamp(82px, 10vw, 150px) clamp(20px, 6vw, 90px);
}

.road-workshop h2,
.road-services h2,
.road-coverage h2,
.road-technology h2,
.road-process h2,
.road-armored h2 {
  font-size: clamp(3.1rem, 5.8vw, 6.2rem);
  font-weight: 600;
  letter-spacing: -.065em;
}

.road-workshop p,
.road-coverage > div > p,
.road-armored > div > p {
  margin-top: 24px;
}

.road-workshop figure {
  overflow: hidden;
  border-radius: var(--radius);
}

.road-workshop figure img {
  min-height: 640px;
  filter: saturate(.8) contrast(1.02);
}

.road-workshop figcaption {
  padding: 14px 4px 0;
}

.road-services {
  padding: clamp(82px, 10vw, 150px) clamp(20px, 5vw, 72px);
  background: var(--surface-strong);
}

.road-services > header {
  max-width: 780px;
  margin-bottom: 56px;
}

.road-services h2,
.road-coverage h2,
.road-armored h2 {
  margin-top: 18px;
}

.road-services > header > p:last-child,
.road-technology header p,
.road-process header p {
  margin-top: 22px;
}

.road-carousel-shell {
  position: relative;
}

.road-carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.road-carousel-controls button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.road-carousel-controls button:hover:not(:disabled) {
  border-color: var(--accent);
  background: var(--bg);
}

.road-carousel-controls button:active:not(:disabled) {
  transform: translateY(1px);
}

.road-carousel-controls button:focus-visible,
.road-service-list:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.road-carousel-controls button:disabled {
  opacity: .38;
  cursor: not-allowed;
}

.road-service-list {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 0 0 18px;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
  cursor: grab;
}

.road-service-list:active {
  cursor: grabbing;
}

.road-service-list article {
  flex: 0 0 34vw;
  min-width: 340px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  scroll-snap-align: start;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .road-service-list article:hover {
    transform: translateY(-6px);
  }
}

.road-service-list article:nth-child(even) {
  flex-basis: 28vw;
}

.road-service-list .service-photo img {
  height: 330px;
}

.road-service-list .service-copy {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 26px;
}

.road-service-list .service-copy > span {
  color: var(--accent);
  font-size: 11px;
}

.road-service-list h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.7rem);
  letter-spacing: -.045em;
}

.road-service-list p {
  grid-column: 2;
  margin-top: 4px;
  font-size: 13px;
}

.road-coverage {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
  padding: clamp(82px, 10vw, 150px) clamp(20px, 6vw, 90px);
}

.road-map {
  overflow: hidden;
  border-radius: var(--radius);
}

.road-map img {
  min-height: 700px;
  filter: saturate(.7) hue-rotate(35deg) contrast(1.04);
}

.road-technology {
  padding: clamp(82px, 10vw, 150px) clamp(20px, 5vw, 72px);
  background: var(--surface);
}

.road-technology > header {
  max-width: 780px;
  margin-bottom: 56px;
}

.road-technology-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 16px;
}

.road-diagnostic-photo {
  grid-row: span 2;
  overflow: hidden;
  border-radius: var(--radius);
}

.road-diagnostic-photo img {
  height: 100%;
  min-height: 530px;
}

.road-technology-list {
  display: contents;
}

.road-technology-list article {
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.road-technology-list article:nth-child(2),
.road-technology-list article:nth-child(3) {
  background: var(--surface-strong);
}

.road-technology-list h3 {
  font-size: 1.35rem;
}

.road-technology-list p {
  margin-top: 14px;
  font-size: 13px;
}

.road-process {
  padding: clamp(82px, 10vw, 150px) clamp(20px, 6vw, 90px);
}

.road-process header {
  max-width: 760px;
  margin-bottom: 50px;
}

.road-process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.road-process-list li {
  min-height: 240px;
  display: grid;
  align-content: space-between;
  padding: 28px;
  border-top: 4px solid var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--surface);
}

.road-process-list strong {
  font-size: 1.45rem;
}

.road-process-list span {
  color: var(--muted);
  font-size: 13px;
}

.road-armored {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(20px, 3vw, 42px);
  padding: clamp(30px, 5vw, 72px);
  background: var(--surface-strong);
}

.road-armored > picture {
  overflow: hidden;
  border-radius: var(--radius);
}

.road-armored > picture img {
  height: 100%;
  min-height: 720px;
}

.road-armored > div {
  align-self: center;
  padding: clamp(38px, 5vw, 72px);
}

body[data-site='open-road'] .contact-section {
  background: var(--accent);
  color: var(--accent-text);
}

body[data-site='open-road'] .contact-copy > p {
  color: #31564e;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
  }

  .menu-button {
    justify-self: end;
    display: block;
  }

  .site-header nav {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
  }

  .site-header nav.is-open {
    display: grid;
  }

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

  .site-header nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    gap: 4px;
  }

  .grid-proof-list,
  .gallery-proof-list,
  .road-proof-list {
    grid-template-columns: 1fr 1fr;
  }

  .grid-proof-list article:nth-child(2) {
    border-right: 0;
  }

  .grid-workshop,
  .grid-technology,
  .grid-coverage,
  .grid-armored,
  .gallery-hero,
  .gallery-workshop,
  .gallery-coverage,
  .gallery-armored,
  .road-workshop,
  .road-coverage,
  .road-armored {
    grid-template-columns: 1fr;
  }

  .grid-workshop figure,
  .grid-workshop figure .motion-media,
  .grid-technology-visual,
  .grid-technology-visual img,
  .grid-technology-visual video,
  .grid-coverage figure .motion-media,
  .grid-coverage figure picture,
  .grid-coverage figure img,
  .grid-armored-media,
  .grid-armored-media img,
  .grid-armored-media video,
  .gallery-workshop > picture img,
  .gallery-coverage > picture,
  .gallery-coverage > picture img,
  .gallery-armored > picture,
  .gallery-armored > picture img,
  .road-workshop figure img,
  .road-map img,
  .road-armored > picture img {
    min-height: 0;
    height: 560px;
  }

  .grid-workshop figure,
  .grid-coverage figure,
  .gallery-workshop > picture,
  .gallery-coverage > picture,
  .road-map {
    order: -1;
  }

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

  .grid-services header {
    position: static;
  }

  .grid-service-list .service-copy {
    grid-template-columns: 1fr;
  }

  .grid-process-list,
  .gallery-process-list,
  .road-process-list {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-hero-picture,
  .gallery-hero-picture img {
    min-height: 0;
    height: 580px;
  }

  .gallery-hero-picture {
    order: -1;
  }

  .gallery-service-list article:nth-child(n) {
    grid-column: span 6;
    grid-row: auto;
  }

  .gallery-service-list article:first-child .service-photo img,
  .gallery-service-list .service-photo img {
    height: 320px;
  }

  .gallery-technology > header,
  .gallery-technology-picture,
  .gallery-technology-list {
    grid-column: 1 / 13;
  }

  .gallery-technology-picture img {
    height: 520px;
  }

  .road-technology-grid {
    grid-template-columns: 1fr 1fr;
  }

  .road-diagnostic-photo {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .road-diagnostic-photo img {
    min-height: 0;
    height: 500px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

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

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 29px;
    height: 29px;
  }

  .language-button,
  .menu-button {
    min-width: 40px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .contact-field-grid,
  .contact-services > div,
  .contact-submit-row {
    grid-template-columns: 1fr;
  }

  .contact-field-wide {
    grid-column: auto;
  }

  .contact-services label:nth-child(n) {
    padding-inline: 4px;
  }

  .contact-submit-row {
    align-items: stretch;
  }

  .grid-hero-copy {
    width: 100%;
    align-self: flex-start;
    padding: 44px 18px 180px;
  }

  .grid-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(3rem, 12vw, 4.4rem);
  }

  .grid-hero-copy > p:not(.eyebrow) {
    max-width: 100%;
  }

  html[lang='es'] .grid-hero-copy h1 {
    font-size: clamp(2.7rem, 10.8vw, 3.9rem);
  }

  .grid-hero .motion-control {
    top: auto;
    right: 18px;
    bottom: 112px;
    width: 44px;
    justify-content: center;
    padding: 10px;
  }

  .grid-hero .motion-control span {
    display: none;
  }

  .grid-hero .hero-shade {
    background: linear-gradient(180deg, rgba(7, 10, 12, .92) 0%, rgba(7, 10, 12, .52) 48%, rgba(7, 10, 12, .08) 72%);
  }

  .grid-status {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
  }

  .grid-proof-list,
  .gallery-proof-list,
  .road-proof-list {
    grid-template-columns: 1fr;
  }

  .grid-proof-list article {
    min-height: 96px;
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 14, 16, .35);
  }

  .gallery-proof-list article,
  .road-proof-list article {
    min-height: 96px;
    padding-inline: 0;
    border-bottom: 1px solid var(--line);
  }

  .grid-workshop > div,
  .grid-coverage > div,
  .grid-armored > div:last-child,
  .gallery-coverage > div,
  .gallery-armored > div,
  .road-armored > div {
    padding: 64px 18px;
  }

  .grid-workshop h2,
  .grid-services h2,
  .grid-technology h2,
  .grid-process h2,
  .grid-coverage h2,
  .grid-armored h2,
  .gallery-workshop h2,
  .gallery-services h2,
  .gallery-technology h2,
  .gallery-process h2,
  .gallery-coverage h2,
  .gallery-armored h2,
  .road-workshop h2,
  .road-services h2,
  .road-coverage h2,
  .road-technology h2,
  .road-process h2,
  .road-armored h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  html[lang='es'] .grid-workshop h2,
  html[lang='es'] .grid-services h2,
  html[lang='es'] .grid-technology h2,
  html[lang='es'] .grid-process h2,
  html[lang='es'] .grid-coverage h2,
  html[lang='es'] .grid-armored h2,
  html[lang='es'] .gallery-workshop h2,
  html[lang='es'] .gallery-services h2,
  html[lang='es'] .gallery-technology h2,
  html[lang='es'] .gallery-process h2,
  html[lang='es'] .gallery-coverage h2,
  html[lang='es'] .gallery-armored h2,
  html[lang='es'] .road-workshop h2,
  html[lang='es'] .road-services h2,
  html[lang='es'] .road-coverage h2,
  html[lang='es'] .road-technology h2,
  html[lang='es'] .road-process h2,
  html[lang='es'] .road-armored h2 {
    font-size: clamp(2.55rem, 11.5vw, 3.7rem);
  }

  .grid-workshop figure,
  .grid-workshop figure .motion-media,
  .grid-technology-visual,
  .grid-technology-visual img,
  .grid-technology-visual video,
  .grid-coverage figure .motion-media,
  .grid-coverage figure picture,
  .grid-coverage figure img,
  .grid-armored-media,
  .grid-armored-media img,
  .grid-armored-media video,
  .gallery-workshop > picture img,
  .gallery-coverage > picture,
  .gallery-coverage > picture img,
  .gallery-armored > picture,
  .gallery-armored > picture img,
  .road-workshop figure img,
  .road-map img,
  .road-armored > picture img {
    height: 390px;
  }

  .grid-services,
  .grid-process,
  .gallery-workshop,
  .gallery-services,
  .gallery-technology,
  .gallery-process,
  .road-workshop,
  .road-services,
  .road-coverage,
  .road-technology,
  .road-process {
    padding: 72px 18px;
  }

  .grid-service-list article {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 0;
  }

  .grid-service-list .service-copy {
    gap: 12px;
  }

  .grid-service-list .service-copy > span {
    grid-row: 1 / 3;
  }

  .grid-technology > div:last-child {
    padding: 72px 18px;
  }

  .grid-technology-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .grid-process-list,
  .gallery-process-list,
  .road-process-list {
    grid-template-columns: 1fr;
  }

  .grid-process-list li {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .gallery-process-list li {
    min-height: 160px;
    gap: 28px;
  }

  .road-process-list li {
    min-height: 180px;
  }

  .grid-coverage-details ul,
  .gallery-coverage-details ul,
  .road-coverage-details ul {
    columns: 1;
  }

  .grid-armored .button,
  .gallery-armored .button,
  .road-armored .button {
    width: 100%;
  }

  .gallery-hero {
    min-height: auto;
  }

  .gallery-hero-picture,
  .gallery-hero-picture img {
    height: 58dvh;
    min-height: 430px;
  }

  .gallery-hero-copy {
    min-height: calc(42dvh - 64px);
    padding: 40px 18px 50px;
  }

  .gallery-hero-copy h1 {
    font-size: clamp(3.4rem, 15vw, 5rem);
  }

  html[lang='es'] .gallery-hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

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

  .gallery-service-list article:nth-child(n) {
    grid-column: 1;
  }

  .gallery-service-list .service-photo img,
  .gallery-service-list article:first-child .service-photo img {
    height: 260px;
  }

  .gallery-technology {
    display: block;
  }

  .gallery-technology-picture {
    margin-top: 34px;
  }

  .gallery-technology-picture img {
    height: 330px;
  }

  .gallery-technology-list {
    grid-template-columns: 1fr;
  }

  .gallery-technology-list article {
    min-height: 170px;
  }

  .road-hero-copy {
    width: 100%;
    padding: 38px 18px 50vh;
  }

  .road-hero::after {
    background: linear-gradient(180deg, rgba(12, 43, 37, .94) 0%, rgba(12, 43, 37, .72) 42%, rgba(12, 43, 37, .08) 68%, transparent 82%);
  }

  .road-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 11.8vw, 4.2rem);
  }

  .road-hero-copy h1 span:last-child {
    max-width: 9ch;
  }

  html[lang='es'] .road-hero-copy h1 {
    font-size: clamp(2.7rem, 10.8vw, 3.9rem);
  }

  .road-hero-copy > p:not(.eyebrow) {
    max-width: 34ch;
  }

  .road-service-list article,
  .road-service-list article:nth-child(even) {
    flex-basis: 86vw;
    min-width: 0;
  }

  .road-carousel-controls {
    justify-content: stretch;
  }

  .road-carousel-controls button {
    flex: 1;
    padding-inline: 12px;
    font-size: 10px;
  }

  .road-service-list .service-photo img {
    height: 280px;
  }

  .road-technology-grid {
    grid-template-columns: 1fr;
  }

  .road-diagnostic-photo {
    grid-column: 1;
  }

  .road-diagnostic-photo img {
    height: 330px;
  }

  .road-technology-list article {
    min-height: 190px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 76px 18px;
  }

  .contact-section h2 {
    max-width: 12ch;
  }

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .road-service-list {
    scroll-behavior: auto;
  }

  .motion-video {
    display: none !important;
  }

  .motion-poster {
    opacity: 1 !important;
  }

  .motion-control {
    display: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .grid-status,
  .button.secondary {
    background: var(--bg);
    backdrop-filter: none;
  }
}
