@font-face {
  font-family: "InterVariable";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/inter-variable-latin-tr-r114.woff2") format("woff2");
}

:root {
  --ink: #111214;
  --ink-soft: #1b1d20;
  --paper: #f4f4f1;
  --white: #ffffff;
  --muted: #65686d;
  --muted-light: #b8bbc0;
  --line: #d7d8d8;
  --line-dark: rgba(255, 255, 255, 0.2);
  --signal: #c83227;
  --signal-on-dark: #ef5a4e;
  --header-height: 72px;
  --gutter: 48px;
  --section-y: 128px;
  --content-max: 1440px;
  color-scheme: light;
  font-family: "InterVariable", Arial, Helvetica, sans-serif;
  font-synthesis: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 280px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "InterVariable", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  background: var(--signal);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

[data-programmatic-focus]:focus:not(:focus-visible) {
  outline: none;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
}

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

.shell {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-dark,
.section-ink {
  background: var(--ink);
  color: var(--white);
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 14px 24px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: #e9e9e6;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: var(--white);
}

.button-outline-light:hover {
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: #2a2d31;
}

.text-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  border: 0;
  padding: 6px 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}

.text-action span {
  transition: transform 160ms ease;
}

.text-action:hover span {
  transform: translateX(4px);
}

.text-action-light {
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0 var(--gutter);
  color: var(--white);
  transition: background-color 120ms linear, color 120ms linear, border-color 120ms linear;
}

.site-header.is-solid,
.site-header.menu-active {
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--ink);
  color: var(--white);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.desktop-nav a,
.header-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: currentColor;
  content: "";
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="true"]::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-action {
  gap: 12px;
  justify-self: end;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  height: calc(100svh - 40px);
  min-height: 680px;
  max-height: 920px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  transform: scale(1.015);
}

.hero-scrim {
  background: rgba(0, 0, 0, 0.52);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  max-width: var(--content-max);
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-height);
  padding-bottom: 126px;
}

.hero-content .eyebrow {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
}

.hero h1 {
  max-width: 820px;
  font-size: 72px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.compact-label {
  display: none;
}

.hero-rail {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 104px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.28);
}

.hero-rail-inner {
  display: grid;
  min-height: 104px;
  grid-template-columns: 1.25fr 1fr 1fr auto;
  align-items: stretch;
  padding-right: 0;
}

.hero-rail-inner > div,
.hero-rail-inner > a {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 28px;
}

.hero-rail-inner > div:first-child {
  padding-left: 0;
}

.hero-rail-inner span,
.hero-rail-inner > div > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-rail-inner strong {
  margin-top: 7px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-rail-inner > a {
  min-width: 170px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-right: 0;
  font-size: 13px;
  font-weight: 700;
}

html[data-motion="pending"] .hero-content > *,
html[data-motion="pending"] .hero-rail {
  opacity: 0;
  transform: translateY(14px);
}

html[data-motion="ready"] .hero-content > * {
  animation: content-enter 560ms ease both;
}

html[data-motion="ready"] .hero-content > :nth-child(2) {
  animation-delay: 60ms;
}

html[data-motion="ready"] .hero-content > :nth-child(3) {
  animation-delay: 110ms;
}

html[data-motion="ready"] .hero-content > :nth-child(4) {
  animation-delay: 160ms;
}

html[data-motion="ready"] .hero-rail {
  animation: content-enter 520ms 190ms ease both;
}

html[data-motion="ready"] .hero-media img {
  animation: hero-media-enter 1400ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes content-enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-media-enter {
  from { transform: scale(1.04); }
  to { transform: scale(1.015); }
}

.chapter-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1.35fr) minmax(260px, 0.62fr);
  align-items: start;
  gap: 40px;
}

.chapter-heading h2,
.remote-heading h2,
.contact h2 {
  font-size: 54px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.chapter-heading > p:last-child,
.remote-heading > p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.chapter-heading.compact {
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1.15fr) minmax(260px, 0.68fr);
}

.frame-index,
.remote-grid article > p,
.contact-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.services {
  display: grid;
  min-height: 820px;
  grid-template-columns: minmax(0, 1.08fr) minmax(520px, 0.92fr);
}

.service-media {
  min-height: 820px;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% 50%;
  filter: saturate(0.72) contrast(1.06);
}

.service-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 92px max(var(--gutter), 8%);
}

.service-panel header .eyebrow {
  color: var(--muted-light);
}

.service-panel h2 {
  max-width: 620px;
  margin-top: 24px;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.14;
}

.service-selector {
  margin-top: 56px;
  border-top: 1px solid var(--line-dark);
}

.service-selector button {
  display: grid;
  width: 100%;
  min-height: 56px;
  grid-template-columns: 44px 1fr 8px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  text-align: left;
  transition: color 160ms ease, padding-left 160ms ease;
}

.service-selector button:hover,
.service-selector button[aria-pressed="true"] {
  padding-left: 8px;
  color: var(--white);
}

.service-selector button[aria-pressed="true"]::after {
  width: 6px;
  height: 6px;
  justify-self: end;
  border-radius: 50%;
  background: var(--signal);
  content: "";
}

.service-selector button span {
  color: var(--muted-light);
  font-size: 11px;
}

.service-detail {
  min-height: 250px;
  padding-top: 42px;
}

.service-kicker {
  color: var(--signal-on-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-detail h3 {
  max-width: 580px;
  margin-top: 14px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
}

.service-detail > p:not(.service-kicker) {
  max-width: 610px;
  margin-top: 18px;
  color: var(--muted-light);
}

.service-detail .text-action {
  margin-top: 24px;
}

.remote {
  padding: var(--section-y) 0;
}

.remote-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1.45fr) minmax(260px, 0.6fr);
  gap: 40px;
}

.remote-heading .eyebrow,
.remote-heading > p:last-child {
  color: var(--muted-light);
}

.remote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 92px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.remote-grid article {
  min-height: 340px;
  border-right: 1px solid var(--line-dark);
  padding: 32px 36px 44px 0;
}

.remote-grid article + article {
  padding-left: 36px;
}

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

.remote-grid article > p {
  color: var(--signal-on-dark);
}

.remote-grid h3 {
  max-width: 340px;
  margin-top: 32px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
}

.remote-grid ul {
  margin-top: 32px;
}

.remote-grid li {
  border-top: 1px solid var(--line-dark);
  padding: 12px 0;
  color: var(--muted-light);
  font-size: 14px;
}

.remote-requirements {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: stretch;
  border-bottom: 1px solid var(--line-dark);
}

.remote-requirements > div {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line-dark);
  padding: 20px 28px;
}

.remote-requirements > div:first-child {
  padding-left: 0;
}

.remote-requirements span {
  color: var(--muted-light);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.remote-requirements strong {
  margin-top: 9px;
  font-size: 14px;
}

.remote-requirements .button {
  min-width: 230px;
  align-self: center;
  margin-left: 30px;
}

.diagnostic {
  padding: var(--section-y) 0;
}

.diagnostic-shell {
  max-width: 1240px;
}

.mode-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 72px;
  border: 1px solid var(--ink);
}

.mode-switch button {
  min-width: 190px;
  min-height: 48px;
  border: 0;
  padding: 10px 22px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}

.mode-switch button + button {
  border-left: 1px solid var(--ink);
}

.mode-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}

.diagnostic-form {
  margin-top: 42px;
  border-top: 1px solid var(--ink);
}

.form-context {
  display: grid;
  min-height: 58px;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 12px 22px;
  background: var(--white);
}

.form-context[hidden] {
  display: none;
}

.form-context > span {
  color: var(--signal);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-context > strong {
  min-width: 0;
  font-size: 14px;
  font-weight: 650;
}

.form-context + .form-progress {
  border-top: 0;
}

.remote-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.remote-fields[hidden] {
  display: none;
}

.remote-fields > label:not(.authorization-check) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px 0;
}

.remote-fields > label:first-child {
  border-right: 1px solid var(--line);
  padding-right: 36px;
}

.remote-fields > label:nth-child(2) {
  padding-left: 36px;
}

.authorization-check {
  display: flex;
  min-height: 64px;
  grid-column: 1 / -1;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  cursor: pointer;
}

.authorization-check[hidden] {
  display: none;
}

.authorization-check input {
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  margin: 0;
  accent-color: var(--ink);
}

.authorization-check > span {
  display: inline;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.field-grid label,
.wide-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.field-grid label:nth-child(odd) {
  border-right: 1px solid var(--line);
  padding-right: 36px;
}

.field-grid label:nth-child(even) {
  padding-left: 36px;
}

label > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

label > span small {
  color: var(--signal);
  font-size: 10px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-bottom: 1px solid #999c9f;
  border-radius: 0;
  margin-top: 14px;
  padding: 10px 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
}

select {
  cursor: pointer;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 2px 0 var(--ink);
}

[aria-invalid="true"] {
  border-color: var(--signal);
  box-shadow: 0 2px 0 var(--signal);
}

.form-error {
  margin-top: 20px;
  color: #a5231b;
  font-weight: 700;
}

.diagnostic-form > .form-error {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 32px;
}

.form-actions p {
  max-width: 520px;
  color: var(--muted);
  font-size: 13px;
}

.message-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.32fr);
  align-items: start;
  gap: 40px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin-top: 42px;
  padding: 42px 0;
}

.message-result[hidden] {
  display: none;
}

.message-result h3 {
  margin-top: 14px;
  font-size: 30px;
  font-weight: 600;
}

.message-result [data-message-summary] {
  max-width: 720px;
  margin-top: 14px;
  color: var(--muted);
}

.message-destination {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
}

.message-preview {
  max-height: 280px;
  overflow: auto;
  border: 1px solid var(--line);
  margin: 22px 0 0;
  padding: 18px;
  background: var(--white);
  color: var(--ink);
  font: 13px/1.65 Arial, Helvetica, sans-serif;
  white-space: pre-wrap;
}

.message-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 10px;
}

.message-actions .text-action {
  justify-content: flex-start;
}

.copy-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 12px;
}

.contact {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.contact-media,
.contact-scrim {
  position: absolute;
  inset: 0;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-scrim {
  background: rgba(0, 0, 0, 0.68);
}

.contact-content {
  position: relative;
  z-index: 2;
  padding-top: 116px;
  padding-bottom: 104px;
}

.contact header {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1.65fr);
  gap: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 82px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.contact-grid > div {
  min-height: 190px;
  border-right: 1px solid var(--line-dark);
  padding: 28px 26px 34px 0;
}

.contact-grid > div + div {
  padding-left: 26px;
}

.contact-grid > div:last-child {
  border-right: 0;
}

.contact-grid span {
  color: rgba(255, 255, 255, 0.62);
}

.contact-grid a,
.contact-grid p {
  display: block;
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.55;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}

.whatsapp-fab {
  position: fixed;
  z-index: 89;
  right: 0;
  bottom: 24px;
  display: inline-grid;
  width: 48px;
  min-height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-right: 0;
  border-radius: 4px 0 0 4px;
  padding: 12px;
  background: #197b50;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(17, 18, 20, 0.24);
  font-size: 13px;
  font-weight: 750;
  transition: background-color 160ms ease, transform 160ms ease;
}

.whatsapp-fab-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  white-space: nowrap;
}

.whatsapp-fab:hover {
  background: #146842;
  transform: translateY(-2px);
}

.whatsapp-fab-mark {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  filter: brightness(0) invert(1);
}

@media (forced-colors: active){.whatsapp-fab-mark{filter:none}}

body.cookie-notice-visible .whatsapp-fab {
  visibility: hidden;
  pointer-events: none;
}

html:not([data-cookie-preference="recorded"]) .whatsapp-fab {
  visibility: hidden;
  pointer-events: none;
}

.cookie-notice {
  position: fixed;
  z-index: 90;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  width: min(calc(100% - 32px), 1160px);
  min-height: 112px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
  border: 1px solid #c9cacc;
  border-radius: 4px;
  padding: 24px 26px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(17, 18, 20, 0.22);
}

html[data-motion="static"] .cookie-notice,
html[data-cookie-preference="recorded"] .cookie-notice {
  display: none;
}

.cookie-notice-copy {
  max-width: 780px;
}

.cookie-notice-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.cookie-notice-copy p {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.55;
}

.cookie-notice-copy a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-notice-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-notice-actions .button {
  min-height: 46px;
  padding: 11px 20px;
}

body.menu-open .whatsapp-fab,
body.menu-open .cookie-notice {
  visibility: hidden;
}

@media (min-width: 901px) and (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 20px;
  }

  .whatsapp-fab {
    position: static;
    z-index: auto;
    width: 44px;
    min-height: 44px;
    justify-self: end;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    padding: 6px;
    box-shadow: none;
  }
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  min-height: 220px;
  grid-template-columns: auto 1fr minmax(260px, 0.55fr) auto;
  align-items: start;
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.footer-grid nav a,
.footer-grid p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.footer-grid nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.footer-grid nav a.footer-email {
  color: var(--white);
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.34);
  text-underline-offset: 4px;
}

.footer-grid nav a.footer-email:hover,
.footer-grid nav a.footer-email:focus-visible {
  text-decoration-color: currentColor;
}

@media (max-width: 900px) {
  .site-header > .brand {
    justify-self: start;
  }

  .whatsapp-fab {
    z-index: 102;
    top: 10px;
    right: 68px;
    bottom: auto;
    width: 44px;
    min-height: 44px;
    border-radius: 50%;
    padding: 6px;
  }

  .cookie-notice {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% - 20px);
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    margin: calc(var(--header-height) + 10px) 10px 10px;
    padding: 14px;
  }

  .cookie-notice-copy strong {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .cookie-notice-copy p {
    font-size: 13px;
    line-height: 1.45;
  }

  .cookie-notice-actions {
    align-items: center;
  }

  .cookie-notice-actions .button {
    width: auto;
    min-width: 76px;
    padding-right: 14px;
    padding-left: 14px;
  }

  body.cookie-notice-visible main [id] {
    scroll-margin-top: calc(var(--cookie-notice-height, 0px) + 12px);
  }
}

@media (max-width: 360px) {
  .cookie-notice-actions .button {
    min-width: 76px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 14px;
  }

  body.cookie-notice-visible .brand-hero .eyebrow {
    visibility: hidden;
  }
}

.brand-dark .brand-mark {
  background: var(--white);
  color: var(--ink);
}

.noscript-note {
  margin: var(--header-height) 0 0;
  border-bottom: 1px solid var(--line);
  padding: 14px var(--gutter);
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  text-align: center;
}

/* Brand route shared contract */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 56px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.breadcrumb a:hover {
  color: var(--white);
}

.page-intro-grid {
  display: grid;
  grid-template-columns: 150px minmax(0, 1.25fr) minmax(300px, 0.65fr);
  gap: 44px;
}

.page-intro-grid > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width: 1180px) {
  :root {
    --gutter: 32px;
    --section-y: 104px;
  }

  .desktop-nav {
    gap: 20px;
  }

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

  .footer-grid > p:last-child {
    grid-column: 3;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 64px;
    --gutter: 24px;
    --section-y: 88px;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: var(--header-height);
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 104px var(--gutter) 34px;
    background: var(--ink);
    color: var(--white);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    display: flex;
    min-height: 60px;
    align-items: center;
    border-bottom: 1px solid var(--line-dark);
    font-size: 24px;
    font-weight: 600;
  }

  .page-intro-grid {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .page-intro-grid > p:last-child {
    grid-column: 2;
  }

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

  .footer-grid nav {
    justify-content: flex-end;
  }

  .footer-grid > p,
  .footer-grid > p:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 18px;
    --section-y: 72px;
  }

  .site-header {
    padding-inline: var(--gutter);
  }

  .brand-name {
    font-size: 13px;
  }

  .page-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-intro-grid > p:last-child {
    grid-column: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid nav {
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    animation-delay: 0ms !important;
    transition: none !important;
  }

  html[data-motion="pending"] .hero-content > *,
  html[data-motion="pending"] .hero-rail {
    opacity: 1;
    transform: none;
  }
}

/* Brand authority pages */
.brand-hero {
  position: relative;
  min-height: min(82svh, 780px);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

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

.brand-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}

.brand-page[data-brand="land-rover"] .brand-hero-media img {
  object-position: center 50%;
}

.brand-page[data-brand="jaguar"] .brand-hero-media img {
  object-position: center 42%;
}

.brand-page[data-brand="bmw"] .brand-hero-media img {
  object-position: center 56%;
}

.brand-page[data-brand="mercedes"] .brand-hero-media img {
  object-position: center 50%;
}

.brand-page[data-brand="bmw"] .brand-hero-media,
.brand-page[data-brand="mercedes"] .brand-hero-media {
  isolation: isolate;
}

.brand-page[data-brand="bmw"] .brand-hero-media::after,
.brand-page[data-brand="mercedes"] .brand-hero-media::after {
  position: absolute;
  z-index: 1;
  border-radius: 1px;
  background: rgba(18, 20, 22, 0.48);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
  -webkit-backdrop-filter: blur(12px) saturate(0.5);
  backdrop-filter: blur(12px) saturate(0.5);
}

.brand-page[data-brand="bmw"] .brand-hero-media::after {
  top: 73%;
  left: 48.8%;
  width: 12.5%;
  height: 5.8%;
}

.brand-page[data-brand="mercedes"] .brand-hero-media::after {
  top: 53%;
  left: 41.5%;
  width: 9%;
  height: 4.8%;
}

.brand-hero-scrim {
  background: rgba(0, 0, 0, 0.58);
}

.brand-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(82svh, 780px);
  max-width: 1040px;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 86px;
}

.brand-hero-content .breadcrumb {
  margin-bottom: auto;
}

.brand-hero-content > .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.brand-hero h1 {
  max-width: 980px;
  margin-top: 20px;
  font-size: 70px;
  font-weight: 500;
  line-height: 1.03;
}

.brand-hero-lead {
  max-width: 700px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.62;
}

.brand-hero-content > p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.62;
}

.brand-hero-content > .button {
  align-self: flex-start;
  margin-top: 30px;
}

.brand-hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
}

.brand-hero-actions .text-action {
  color: var(--white);
}

.brand-facts {
  background: var(--white);
}

.brand-facts .shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
}

.brand-facts article {
  min-height: 150px;
  border-right: 1px solid var(--line);
  padding: 30px 34px;
}

.brand-facts p {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-facts strong {
  display: block;
  max-width: 330px;
  margin-top: 26px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.brand-intro {
  padding: 126px 0;
  background: var(--paper);
}

.brand-intro-grid {
  display: grid;
  grid-template-columns: 150px minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 48px;
}

.brand-intro h2,
.brand-capabilities h2,
.brand-models h2,
.brand-process h2,
.brand-crosslinks h2 {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.1;
}

.brand-intro-copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.brand-intro-copy p + p {
  margin-top: 20px;
}

.brand-capabilities {
  padding: 120px 0;
  background: var(--ink);
  color: var(--white);
}

.brand-capabilities-heading {
  display: grid;
  grid-template-columns: 190px minmax(0, 760px);
  gap: 40px;
}

.brand-capabilities-heading .eyebrow {
  color: var(--signal-on-dark);
}

.brand-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line-dark);
}

.brand-capability-grid article {
  min-height: 330px;
  border-right: 1px solid var(--line-dark);
  padding: 34px 36px 42px 0;
}

.brand-capability-grid article + article {
  padding-left: 36px;
}

.brand-capability-grid article:last-child {
  border-right: 0;
}

.brand-capability-grid span {
  color: var(--signal-on-dark);
  font-size: 11px;
  font-weight: 700;
}

.brand-capability-grid h3 {
  margin-top: 54px;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.2;
}

.brand-capability-grid p {
  margin-top: 20px;
  color: var(--muted-light);
  line-height: 1.7;
}

.brand-capability-grid a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 26px;
  font-weight: 700;
}

.brand-models {
  padding: 108px 0;
  background: var(--white);
}

.brand-models-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 84px;
}

.brand-models-copy > p {
  max-width: 540px;
  margin-top: 28px;
  color: var(--muted);
  line-height: 1.72;
}

.brand-model-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.brand-model-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.brand-model-actions .source-action {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.brand-model-actions .source-action:hover,
.brand-model-actions .source-action:focus-visible {
  color: var(--ink);
}

.brand-model-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.brand-model-list li {
  min-height: 78px;
  border-bottom: 1px solid var(--line);
  padding: 25px 22px 20px 0;
  font-size: 15px;
  font-weight: 700;
}

.brand-model-list li:nth-child(even) {
  padding-left: 22px;
}

.brand-process {
  padding: 104px 0;
  background: var(--paper);
}

.brand-process-heading {
  display: grid;
  grid-template-columns: 190px minmax(0, 760px);
  gap: 40px;
}

.brand-process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.brand-process-list li {
  min-height: 240px;
  border-right: 1px solid var(--line);
  padding: 28px 28px 36px 0;
}

.brand-process-list li + li {
  padding-left: 28px;
}

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

.brand-process-list span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.brand-process-list h3 {
  margin-top: 48px;
  font-size: 23px;
}

.brand-process-list p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.brand-crosslinks {
  padding: 110px 0;
  background: var(--white);
}

.brand-crosslink-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 62px;
  border-top: 1px solid var(--line);
}

.brand-crosslink-grid a {
  display: flex;
  min-height: 130px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 28px 28px 0;
  font-size: 18px;
  font-weight: 700;
}

.brand-crosslink-grid a + a {
  padding-left: 28px;
}

.brand-crosslink-grid a:last-child {
  border-right: 0;
}

.brand-crosslink-grid a:hover,
.brand-crosslink-grid a:focus-visible {
  background: var(--paper);
}

.brand-disclosure {
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--muted-light);
}

.brand-disclosure .shell {
  display: grid;
  min-height: 96px;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 40px;
}

.brand-disclosure strong {
  color: var(--white);
  font-size: 12px;
}

.brand-disclosure p {
  max-width: 920px;
  font-size: 13px;
  line-height: 1.6;
}

.brand-hub-hero .page-hero-media img {
  object-position: center 62%;
}

.brand-hub-intro {
  padding: 116px 0 54px;
  background: var(--paper);
}

.brand-hub-intro .page-intro-grid {
  align-items: start;
}

.brand-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding-bottom: 2px;
  background: var(--ink);
}

.brand-hub-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.brand-hub-card img,
.brand-hub-card::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.brand-hub-card img {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.brand-hub-card-rolls-royce img {
  object-position: center 50%;
}

.brand-hub-card-mini img {
  object-position: center 56%;
}

.brand-hub-card::before {
  z-index: 1;
  background: rgba(0, 0, 0, 0.48);
  content: "";
}

.brand-hub-card-bmw::after,
.brand-hub-card-mercedes::after {
  position: absolute;
  z-index: 1;
  border-radius: 1px;
  background: rgba(18, 20, 22, 0.54);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
  -webkit-backdrop-filter: blur(10px) saturate(0.5);
  backdrop-filter: blur(10px) saturate(0.5);
}

.brand-hub-card-bmw::after {
  top: 69.8%;
  left: 48.5%;
  width: 16%;
  height: 5.6%;
}

.brand-hub-card-mercedes::after {
  top: 52.2%;
  left: 39%;
  width: 11%;
  height: 4.8%;
}

.brand-hub-card > div {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 590px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 52px;
}

.brand-hub-card .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.brand-hub-card h2 {
  margin-top: 18px;
  font-size: 46px;
  font-weight: 500;
}

.brand-hub-card p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

.brand-hub-card a {
  display: inline-flex;
  min-height: 44px;
  align-self: flex-start;
  align-items: center;
  margin-top: 28px;
  font-weight: 700;
  color: var(--white);
}

.brand-hub-card .brand-card-link::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
}

.brand-hub-card:focus-within .brand-card-link::after {
  box-shadow: inset 0 0 0 3px var(--white), inset 0 0 0 5px rgba(0, 0, 0, 0.78);
}

.brand-hub-card:hover img,
.brand-hub-card:focus-within img {
  transform: scale(1.025);
}

.brand-hero-content > div {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
}

.brand-facts .shell {
  display: grid;
  border-left: 1px solid var(--line);
}

.brand-facts dl {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
}

.brand-facts dl > div {
  min-height: 150px;
  border-right: 1px solid var(--line);
  padding: 30px 28px;
}

.brand-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-facts dd {
  margin-top: 26px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
}

.brand-capabilities > .shell > .eyebrow {
  color: var(--signal-on-dark);
}

.brand-capabilities > .shell > h2 {
  max-width: 820px;
  margin-top: 22px;
}

.brand-capability-grid {
  grid-template-columns: repeat(2, 1fr);
}

.brand-capability-grid article,
.brand-capability-grid article + article {
  min-height: 300px;
  border-right: 1px solid var(--line-dark);
  padding: 34px 38px 42px 0;
}

.brand-capability-grid article:nth-child(even) {
  border-right: 0;
  padding-right: 0;
  padding-left: 38px;
}

.brand-capability-grid article:nth-child(n + 3) {
  border-top: 1px solid var(--line-dark);
}

.brand-capability-grid article:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  border-right: 0;
}

.brand-capabilities > .shell > .text-action {
  margin-top: 34px;
  color: var(--white);
}

.brand-models > .shell > .eyebrow {
  color: var(--muted);
}

.brand-models > .shell > h2 {
  max-width: 820px;
  margin-top: 22px;
}

.brand-models > .shell > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.72;
}

.brand-models > .shell:not(.brand-models-grid) {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: start;
  column-gap: 48px;
}

.brand-models > .shell:not(.brand-models-grid) > .eyebrow {
  grid-column: 1;
  grid-row: 1;
}

.brand-models > .shell:not(.brand-models-grid) > h2 {
  grid-column: 2;
  grid-row: 1;
  margin-top: 0;
}

.brand-models > .shell:not(.brand-models-grid) > p:not(.eyebrow) {
  grid-column: 3;
  grid-row: 1;
  margin-top: 0;
}

.brand-models > .shell:not(.brand-models-grid) > .brand-model-grid {
  grid-column: 2 / -1;
  width: 100%;
  margin-top: 54px;
}

.brand-model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 62px;
  border-top: 1px solid var(--line);
}

.brand-model-grid article {
  min-height: 120px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 30px 28px 0;
}

.brand-model-grid article:nth-child(even) {
  border-right: 0;
  padding-left: 30px;
}

.brand-model-grid h3 {
  font-size: 20px;
  font-weight: 500;
}

.brand-model-grid p {
  margin-top: 14px;
  color: var(--muted);
}

.brand-process > .shell > .eyebrow,
.brand-crosslinks > .shell > .eyebrow {
  color: var(--muted);
}

.brand-process > .shell {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  column-gap: 40px;
}

.brand-process-heading {
  grid-column: 1 / -1;
}

.brand-process > .shell > .eyebrow {
  grid-column: 1;
  grid-row: 1;
}

.brand-process > .shell > h2 {
  grid-column: 2;
  grid-row: 1;
  margin-top: 0;
}

.brand-process > .shell > h2,
.brand-crosslinks > .shell > h2 {
  max-width: 820px;
  margin-top: 22px;
}

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

.brand-process ol li {
  min-height: 250px;
  border-right: 1px solid var(--line);
  padding: 28px 28px 36px 0;
}

.brand-process ol li + li {
  padding-left: 28px;
}

.brand-process ol li:last-child {
  border-right: 0;
}

.brand-process ol span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.brand-process ol h3 {
  margin-top: 48px;
  font-size: 23px;
}

.brand-process ol p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.brand-crosslinks nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 62px;
  border-top: 1px solid var(--line);
}

.brand-crosslinks nav.brand-crosslink-grid {
  grid-template-columns: repeat(4, 1fr);
}

.brand-crosslinks nav a {
  display: flex;
  min-height: 130px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 28px 28px 0;
  font-size: 17px;
  font-weight: 700;
}

.brand-crosslinks nav a + a {
  padding-left: 28px;
}

.brand-crosslinks nav a:last-child {
  border-right: 0;
}

.brand-disclosure .shell {
  display: grid;
  min-height: 300px;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-content: center;
  align-items: end;
  gap: 22px 40px;
}

.brand-disclosure .eyebrow {
  align-self: start;
  color: var(--signal-on-dark);
}

.brand-disclosure h2 {
  max-width: 720px;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.12;
}

.brand-disclosure .shell > p:not(.eyebrow) {
  grid-column: 2;
  max-width: 760px;
  color: var(--muted-light);
  line-height: 1.7;
}

.brand-disclosure .shell > div {
  display: flex;
  grid-column: 3;
  grid-row: 1 / span 2;
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
}

.brand-disclosure-compact .shell {
  min-height: 96px;
  grid-template-columns: 150px minmax(0, 1fr);
  align-content: normal;
  align-items: center;
  gap: 40px;
}

.brand-disclosure-compact .shell > p:not(.eyebrow) {
  grid-column: auto;
}

@media (max-width: 1180px) {
  .brand-intro-grid {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .brand-intro-copy {
    grid-column: 2;
  }

  .brand-models-grid {
    gap: 56px;
  }

  .brand-facts dl {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-facts dl > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .brand-facts dl > div:nth-child(even) {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .brand-hero h1 {
    font-size: 58px;
  }

  .brand-facts .shell,
  .brand-capability-grid,
  .brand-process-list,
  .brand-crosslink-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-crosslinks nav.brand-crosslink-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-facts article:nth-child(3),
  .brand-capability-grid article:nth-child(3) {
    grid-column: 1 / -1;
  }

  .brand-capability-grid article:nth-child(2),
  .brand-crosslink-grid a:nth-child(2) {
    border-right: 0;
  }

  .brand-capability-grid article:nth-child(3) {
    min-height: 250px;
    border-top: 1px solid var(--line-dark);
    padding-left: 0;
  }

  .brand-models-grid {
    grid-template-columns: 1fr;
  }

  .brand-process-list li:nth-child(2),
  .brand-crosslink-grid a:nth-child(2) {
    border-right: 0;
  }

  .brand-process-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .brand-process-list li:nth-child(3) {
    padding-left: 0;
  }

  .brand-hub-card,
  .brand-hub-card > div {
    min-height: 520px;
  }

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

  .brand-process ol li:nth-child(2) {
    border-right: 0;
  }

  .brand-process ol li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .brand-process ol li:nth-child(3) {
    padding-left: 0;
  }

  .brand-models > .shell:not(.brand-models-grid) {
    grid-template-columns: 130px minmax(0, 1fr);
    column-gap: 32px;
  }

  .brand-models > .shell:not(.brand-models-grid) > p:not(.eyebrow) {
    grid-column: 2;
    grid-row: 2;
    margin-top: 20px;
  }

  .brand-models > .shell:not(.brand-models-grid) > .brand-model-grid {
    grid-column: 1 / -1;
  }

  .brand-process > .shell {
    grid-template-columns: 130px minmax(0, 1fr);
    column-gap: 32px;
  }

  .brand-disclosure .shell {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .brand-disclosure .shell > div {
    grid-column: 2;
    grid-row: auto;
    align-items: center;
    flex-direction: row;
  }
}

@media (max-width: 720px) {
  .brand-hero,
  .brand-hero-content {
    min-height: 620px;
  }

  .brand-page[data-brand="bmw"] .brand-hero-media::after {
    top: 71%;
    left: 0;
    width: 26%;
    height: 6%;
  }

  .brand-page[data-brand="mercedes"] .brand-hero-media::after {
    top: 55.5%;
    left: 0;
    width: 20%;
    height: 4.8%;
  }

  .brand-hero-content {
    padding-top: 92px;
    padding-bottom: 32px;
  }

  .brand-hero-content .breadcrumb {
    margin-bottom: auto;
  }

  .brand-hero h1 {
    font-size: 40px;
  }

  .brand-hero-lead {
    margin-top: 18px;
    font-size: 15px;
  }

  .brand-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .brand-hero-actions .button {
    width: 100%;
  }

  .brand-hero-content > .button {
    width: 100%;
  }

  .brand-hero-actions .text-action {
    align-self: flex-start;
  }

  .brand-hero-content > div {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .brand-hero-content > div .button {
    width: 100%;
  }

  .brand-facts .shell,
  .brand-intro-grid,
  .brand-capabilities-heading,
  .brand-capability-grid,
  .brand-process-heading,
  .brand-process-list,
  .brand-crosslink-grid,
  .brand-disclosure .shell,
  .brand-hub-grid {
    grid-template-columns: 1fr;
  }

  .brand-models > .shell:not(.brand-models-grid),
  .brand-process > .shell {
    display: block;
  }

  .brand-models > .shell:not(.brand-models-grid) > h2,
  .brand-process > .shell > h2 {
    margin-top: 22px;
  }

  .brand-models > .shell:not(.brand-models-grid) > p:not(.eyebrow) {
    margin-top: 24px;
  }

  .brand-models > .shell:not(.brand-models-grid) > .brand-model-grid,
  .brand-process ol {
    margin-top: 48px;
  }

  .brand-facts dl,
  .brand-capability-grid,
  .brand-model-grid,
  .brand-process ol,
  .brand-crosslinks nav {
    grid-template-columns: 1fr;
  }

  .brand-crosslinks nav.brand-crosslink-grid {
    grid-template-columns: 1fr;
  }

  .brand-facts .shell {
    border-left: 0;
  }

  .brand-facts article,
  .brand-facts article:nth-child(3) {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }

  .brand-facts article:last-child {
    border-bottom: 0;
  }

  .brand-facts dl {
    border-left: 0;
  }

  .brand-facts dl > div,
  .brand-facts dl > div:nth-child(even),
  .brand-facts dl > div:nth-child(-n + 2) {
    min-height: 108px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }

  .brand-facts dl > div:last-child {
    border-bottom: 0;
  }

  .brand-facts dd {
    margin-top: 14px;
    font-size: 17px;
  }

  .brand-facts strong {
    margin-top: 16px;
    font-size: 18px;
  }

  .brand-intro,
  .brand-capabilities,
  .brand-models,
  .brand-process,
  .brand-crosslinks {
    padding: 82px 0;
  }

  .brand-intro-grid,
  .brand-capabilities-heading,
  .brand-process-heading {
    gap: 24px;
  }

  .brand-intro-copy {
    grid-column: auto;
  }

  .brand-intro h2,
  .brand-capabilities h2,
  .brand-models h2,
  .brand-process h2,
  .brand-crosslinks h2 {
    font-size: 34px;
  }

  .brand-capability-grid,
  .brand-process-list,
  .brand-crosslink-grid {
    margin-top: 48px;
  }

  .brand-capability-grid article,
  .brand-capability-grid article + article,
  .brand-capability-grid article:nth-child(3) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    padding: 30px 0 38px;
  }

  .brand-capability-grid article:last-child {
    border-bottom: 0;
  }

  .brand-capability-grid article,
  .brand-capability-grid article + article,
  .brand-capability-grid article:nth-child(even),
  .brand-capability-grid article:nth-child(3),
  .brand-capability-grid article:last-child:nth-child(odd) {
    grid-column: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    padding: 28px 0 34px;
  }

  .brand-capability-grid article:last-child {
    border-bottom: 0;
  }

  .brand-capability-grid h3 {
    margin-top: 28px;
    font-size: 24px;
  }

  .brand-model-list {
    grid-template-columns: 1fr;
  }

  .brand-model-list li,
  .brand-model-list li:nth-child(even) {
    min-height: 64px;
    padding: 21px 0 16px;
  }

  .brand-model-grid article,
  .brand-model-grid article:nth-child(even) {
    min-height: 92px;
    border-right: 0;
    padding: 22px 0;
  }

  .brand-process-list li,
  .brand-process-list li + li,
  .brand-process-list li:nth-child(3) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 26px 0 32px;
  }

  .brand-process-list li:last-child {
    border-bottom: 0;
  }

  .brand-process-list h3 {
    margin-top: 24px;
  }

  .brand-process ol li,
  .brand-process ol li + li,
  .brand-process ol li:nth-child(3) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0 30px;
  }

  .brand-process ol li:last-child {
    border-bottom: 0;
  }

  .brand-process ol h3 {
    margin-top: 22px;
  }

  .brand-crosslink-grid a,
  .brand-crosslink-grid a + a {
    min-height: 84px;
    border-right: 0;
    padding: 22px 0;
  }

  .brand-crosslinks nav a,
  .brand-crosslinks nav a + a {
    min-height: 84px;
    border-right: 0;
    padding: 22px 0;
  }

  .brand-disclosure .shell {
    gap: 12px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .brand-disclosure .shell > p:not(.eyebrow),
  .brand-disclosure .shell > div {
    grid-column: auto;
    grid-row: auto;
  }

  .brand-disclosure h2 {
    font-size: 32px;
  }

  .brand-disclosure .shell > div {
    align-items: stretch;
    flex-direction: column;
    margin-top: 12px;
  }

  .brand-disclosure-compact .shell {
    min-height: 0;
    gap: 12px;
  }

  .brand-hub-intro {
    padding: 82px 0 38px;
  }

  .brand-hub-card,
  .brand-hub-card > div {
    min-height: 300px;
  }

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

  .brand-hub-card::before {
    z-index: 1;
    background: rgba(0, 0, 0, 0.56);
  }

  .brand-hub-card > div {
    z-index: 6;
    padding: 20px 16px;
  }

  .brand-hub-card .eyebrow {
    font-size: 10px;
    line-height: 1.25;
  }

  .brand-hub-card h2 {
    margin-top: 10px;
    font-size: 27px;
    line-height: 1.05;
  }

  .brand-hub-card p:not(.eyebrow) {
    display: none;
  }

  .brand-hub-card a {
    min-height: 44px;
    margin-top: 14px;
    font-size: 13px;
  }

  .brand-hub-card .brand-card-link::after {
    z-index: 7;
  }

  .brand-hub-card-bmw::after,
  .brand-hub-card-mercedes::after {
    z-index: 5;
    background: rgba(13, 15, 17, 0.64);
    -webkit-backdrop-filter: blur(8px) saturate(0.5);
    backdrop-filter: blur(8px) saturate(0.5);
  }

  .brand-hub-card-bmw::after {
    top: 69%;
    left: calc(50% - 5px);
    width: 58px;
    height: 7%;
  }

  .brand-hub-card-mercedes::after {
    top: 52%;
    left: calc(50% - 40px);
    width: 40px;
    height: 7%;
  }
}

@media (max-width: 360px) {
  .brand-hub-card,
  .brand-hub-card > div {
    min-height: 276px;
  }

  .brand-hub-card > div {
    padding: 18px 14px;
  }

  .brand-hub-card h2 {
    font-size: 24px;
  }

  .brand-hub-card a {
    font-size: 12px;
  }

  .brand-hub-card-bmw::after {
    left: calc(50% - 4px);
    width: 54px;
  }

  .brand-hub-card-mercedes::after {
    left: calc(50% - 37px);
    width: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-hub-card:hover img,
  .brand-hub-card:focus-within img {
    transform: none;
  }
}

@media (max-width: 360px) and (max-height: 700px) {
  .brand-hero,
  .brand-hero-content {
    min-height: 536px;
  }

  .brand-hero-content {
    padding-top: 76px;
    padding-bottom: 22px;
  }

  .brand-hero-content .breadcrumb {
    display: none;
  }

  .brand-hero h1 {
    margin-top: 12px;
    font-size: 30px;
  }

  .brand-hero-lead,
  .brand-hero-content > p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.45;
  }

  .brand-hero-actions,
  .brand-hero-content > div {
    margin-top: 16px;
  }

  .brand-hero-actions .button {
    min-height: 46px;
    margin-top: 0;
  }

  .brand-hero-content > .button {
    min-height: 46px;
    margin-top: 16px;
  }

  .brand-hero-actions .text-action,
  .brand-hero-content > div .text-action {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    font-size: 12px;
  }
}
