:root {
  --ink: #191919;
  --muted: #5c6068;
  --soft: #f4f5f7;
  --paper: #ffffff;
  --line: #dedfe3;
  --red: #c90e19;
  --red-dark: #9d0811;
  --charcoal: #23252a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(25, 25, 25, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand-link img {
  width: clamp(126px, 13vw, 182px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.8vw, 34px);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 750;
}

.site-nav a,
.footer-brand a,
.footer-contact a,
.text-link {
  text-decoration: none;
}

.site-nav a,
.nav-label {
  white-space: nowrap;
}

.site-nav a:hover,
.footer-brand a:hover,
.footer-contact a:hover,
.text-link:hover {
  color: var(--red);
}

.portal-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.portal-cta,
.button.primary {
  background: var(--red);
  color: #fff;
}

.portal-cta:hover,
.button.primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button.secondary.ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(12px);
}

.button.secondary:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}

.button.secondary.ghost:hover {
  border-color: #fff;
  color: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  overflow-anchor: none;
  background: var(--charcoal);
}

.hero-copy,
.section,
.site-footer {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.location-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6.2vw, 86px);
  font-weight: 900;
  line-height: 0.96;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 880;
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.18;
}

.hero-intro {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.5;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  min-height: calc(100vh - 76px);
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
  color: #fff;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 450ms ease, transform 900ms ease;
  pointer-events: none;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

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

.hero-slide > picture img,
.hero-slide > img,
.hero-slide > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-slide > video {
  background: var(--charcoal);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.48) 42%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.08) 56%);
}

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

.hero-content .eyebrow {
  color: #fff;
}

.hero-content h1,
.hero-content h2 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(64px, 12vw, 168px);
  font-weight: 950;
  line-height: 0.82;
}

.hero-content .hero-intro {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-video-slide .hero-content h2 {
  max-width: 860px;
  font-size: clamp(46px, 7vw, 104px);
  line-height: 0.94;
}

.hero-controls {
  position: absolute;
  z-index: 5;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(24px, 5vw, 64px);
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 48px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
}

.portrait-frame img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
  scroll-margin-top: 96px;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: start;
}

.mod-section {
  position: relative;
  width: min(1280px, calc(100% - 36px));
  margin-block: clamp(22px, 4vw, 44px);
  border-top: 7px solid var(--red);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f7f7f8 100%);
  box-shadow: 0 18px 46px rgba(25, 25, 25, 0.07);
}

.mod-section h2 {
  margin-bottom: 18px;
}

.mod-route-link {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  border-bottom: 2px solid var(--red);
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  text-decoration: none;
}

.mod-route-link:hover {
  color: var(--red-dark);
  border-color: var(--red-dark);
}

.wfc-route-link {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  border-bottom: 2px solid rgba(255, 255, 255, 0.74);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  text-decoration: none;
}

.wfc-route-link:hover {
  border-color: var(--red);
  color: var(--red);
}

.wfc-section .location-kicker {
  color: #fff;
}

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

.location-points article {
  min-height: 168px;
  border: 1px solid rgba(201, 14, 25, 0.18);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.location-points h3 {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.05;
}

.location-points p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.location-points-dark article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

.location-points-dark h3 {
  color: #fff;
}

.location-points-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.mod-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mod-proof-row span {
  border: 1px solid rgba(201, 14, 25, 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--red);
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 900;
}

.section-copy,
.feature-copy,
.about-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-copy p:last-child,
.feature-copy p:last-child,
.about-copy p:last-child {
  margin-bottom: 0;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr) minmax(320px, 0.82fr);
  gap: clamp(22px, 3.6vw, 48px);
  align-items: center;
  width: auto;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: #fff;
}

.wfc-section {
  border-top: 7px solid var(--red);
  background:
    linear-gradient(180deg, #202329 0%, #17191e 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feature-band .feature-copy {
  width: min(520px, 100%);
  justify-self: start;
  color: rgba(255, 255, 255, 0.78);
}

.feature-band h2 {
  color: #fff;
  margin-bottom: 20px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: #fff;
  font-weight: 850;
}

.feature-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 28px;
  background: var(--red);
}

.feature-card span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card strong {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.04;
}

.feature-image-card {
  min-height: 0;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #111;
}

.feature-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wfc-proof-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 26px;
}

.wfc-proof-row span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 900;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(440px, 1.12fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding-top: clamp(46px, 6vw, 78px);
  padding-bottom: clamp(46px, 6vw, 78px);
}

.portrait-frame {
  background: var(--soft);
  border-radius: 8px;
  overflow: hidden;
}

.portrait-frame img {
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.about-copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 72px);
}

.about-copy p {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.58;
}

.visit-section {
  padding-top: clamp(34px, 5vw, 72px);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.12fr repeat(2, minmax(0, 0.94fr));
  gap: 14px;
  align-items: stretch;
}

.visit-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.visit-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.visit-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.visit-card h3 {
  max-width: 360px;
  margin: auto 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
}

.visit-card h3 small {
  display: inline-block;
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.38em;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
}

.visit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.visit-card-primary {
  order: 1;
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.visit-card-primary::after {
  content: "Naar B2B Portaal";
  position: absolute;
  right: 18px;
  top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.visit-card-mod {
  order: 2;
}

.visit-card-wfc {
  order: 3;
}

.visit-card-mod::after,
.visit-card-wfc::after {
  content: "Open route";
  position: absolute;
  right: 18px;
  bottom: 18px;
  border: 1px solid rgba(201, 14, 25, 0.28);
  border-radius: 999px;
  background: rgba(201, 14, 25, 0.08);
  color: var(--red);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.showroom-route {
  position: relative;
  order: 4;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.showroom-route::before,
.showroom-route::after {
  content: "";
  flex: 1 1 0;
  min-width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 14, 25, 0.55), transparent);
}

.showroom-route strong {
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(201, 14, 25, 0.08);
  color: var(--red);
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 950;
}

.showroom-route:hover strong {
  background: var(--red);
  color: #fff;
}

.visit-card-primary span,
.visit-card-primary p {
  color: #fff;
}

.visit-card-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.visit-card-primary:hover::after,
.visit-card-primary:focus-visible::after {
  background: rgba(255, 255, 255, 0.18);
  opacity: 1;
  transform: translateY(0);
}

.visit-card-mod:hover::after,
.visit-card-mod:focus-visible::after,
.visit-card-wfc:hover::after,
.visit-card-wfc:focus-visible::after {
  background: rgba(201, 14, 25, 0.12);
  opacity: 1;
  transform: translateY(0);
}

.services-section {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 span {
  color: var(--red);
}

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

.services-grid article,
.service-card {
  position: relative;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.service-card {
  color: inherit;
  text-decoration: none;
}

.services-grid article:hover,
.service-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.services-grid article::after,
.service-card::after {
  content: "Vraag naar dienst";
  position: absolute;
  right: 18px;
  top: 18px;
  border: 1px solid rgba(201, 14, 25, 0.28);
  border-radius: 999px;
  background: rgba(201, 14, 25, 0.08);
  color: var(--red);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.services-grid article:hover::after,
.service-card:hover::after,
.service-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.services-grid span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--red);
  font-weight: 900;
}

.services-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.portal-service {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.portal-service::after {
  content: "Naar B2B Portaal";
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.portal-service span,
.portal-service p {
  color: #fff;
}

.portal-service:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.text-red {
  color: var(--red);
  font-weight: 900;
}

.video-band {
  position: relative;
  display: grid;
  min-height: clamp(520px, 62vw, 760px);
  overflow: hidden;
  background: var(--charcoal);
  color: #fff;
}

.video-band video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.video-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.34) 52%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.08) 60%);
}

.video-band-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(760px, 100%);
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.video-band-copy h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(44px, 7vw, 98px);
  line-height: 0.92;
}

.video-band-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  align-items: start;
  gap: 32px;
  width: auto;
  max-width: none;
  margin-inline: 0;
  padding: 46px clamp(18px, 5vw, 72px) 52px;
  border-top: 6px solid var(--red);
  background: #17191e;
  color: #fff;
}

.site-footer img {
  width: 78px;
}

.footer-brand,
.footer-location,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-brand strong,
.footer-location span,
.footer-contact strong {
  color: #fff;
  font-weight: 900;
}

.footer-contact strong {
  margin-bottom: 4px;
  line-height: 1.25;
}

.footer-brand p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.footer-quicklink {
  display: grid;
  gap: 4px;
  max-width: 330px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 9px 11px;
}

.footer-quicklink-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-quicklink-label svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-quicklink-label svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.footer-icon-pair {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-quicklink-label .lock-icon {
  width: 13px;
  height: 13px;
  opacity: 0.9;
  stroke-width: 2;
}

.footer-quicklink > a {
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.footer-brand p > span:not(.footer-quicklink-label) {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.35;
}

.footer-brand a,
.footer-contact a,
.footer-location p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 750;
}

.footer-brand a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-location {
  font-style: normal;
}

.footer-location p {
  margin: 0;
  line-height: 1.45;
}

.opening-hours {
  display: grid;
  gap: 5px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.opening-hours div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
}

.opening-hours dt,
.opening-hours dd {
  margin: 0;
}

.opening-hours dt {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 750;
}

.opening-hours dd {
  font-weight: 850;
}

.footer-contact a span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.footer-contact a:last-child {
  width: max-content;
  margin-top: 4px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  padding: 10px 14px;
  font-weight: 900;
}

.footer-contact a:last-child:hover {
  background: var(--red-dark);
  color: #fff;
}

.newsletter-form {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.newsletter-form label {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.newsletter-form div {
  display: grid;
  gap: 8px;
}

.newsletter-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 12px;
  font: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.newsletter-form input:focus {
  outline: 2px solid rgba(201, 14, 25, 0.7);
  outline-offset: 2px;
}

.newsletter-form button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  padding: 0 14px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: var(--red-dark);
}

.newsletter-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.newsletter-status {
  min-height: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
}

@media (max-width: 1040px) {
  .section-split,
  .about-section,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .location-points {
    grid-template-columns: 1fr;
  }

  .feature-band .feature-copy {
    justify-self: start;
  }

  .feature-image-card {
    max-width: 720px;
  }

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

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

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

  .visit-card-primary {
    grid-column: 1 / -1;
  }

}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 68px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .hero-slide {
    min-height: calc(100vh - 116px);
  }

  .hero-slide {
    align-items: end;
    padding: 46px 18px 74px;
  }

  .hero-slide-faux > picture img {
    object-position: center top;
  }

  .hero-slide-faux .hero-content {
    transform: translateY(34px);
  }

  .hero-slide-faux .hero-content h2 {
    font-size: clamp(42px, 13vw, 56px);
    line-height: 0.9;
  }

  .hero-slide-faux .hero-intro {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.35;
  }

  .hero-slide-faux .hero-actions {
    gap: 8px;
    margin-bottom: 0;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(54px, 17vw, 76px);
    line-height: 0.9;
  }

  .hero-video-slide .hero-content h2 {
    font-size: clamp(48px, 14vw, 68px);
    line-height: 0.94;
  }

  .hero-content .hero-intro {
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.42;
  }

  .visit-grid,
  .services-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .visit-card-primary {
    grid-column: auto;
  }

  .wfc-proof-row {
    flex-wrap: wrap;
  }

  .showroom-route {
    order: 3;
    align-items: flex-start;
    justify-content: start;
    flex-direction: column;
    gap: 7px;
    border-left: 3px solid var(--red);
    border-radius: 0 8px 8px 0;
    background: rgba(201, 14, 25, 0.045);
    padding: 12px 14px;
  }

  .visit-card-wfc {
    order: 4;
  }

  .showroom-route::before,
  .showroom-route::after {
    display: none;
  }

  .showroom-route strong {
    margin: 0;
  }


  .section {
    scroll-margin-top: 200px;
  }

  .about-section {
    padding-top: 42px;
    padding-bottom: 52px;
  }

  .about-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .about-copy p {
    font-size: 17px;
  }

  .hero-actions,
  .button,
  .portal-cta {
    width: 100%;
  }

  .hero-controls {
    left: 18px;
    right: auto;
    bottom: 30px;
  }

  .site-footer,
  .footer-contact {
    justify-items: start;
    justify-content: start;
  }
}
