:root {
  --navy: #082839;
  --deep: #051c2b;
  --blue: #0874bc;
  --yellow: #ffdb27;
  --ink: #122e3e;
  --muted: #4e6472;
  --paper: #f3f5f4;
  --line: #dce3e6;
  --heading: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Barlow", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  font-family: var(--body);
  color: var(--ink);
  background: #fff;
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--heading);
  line-height: 1.02;
  font-weight: 600;
}
h2 {
  font-size: clamp(44px, 5.1vw, 72px);
  letter-spacing: -1.3px;
}
h3 {
  font-size: 30px;
}
.container-wide {
  width: min(1360px, calc(100% - 100px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--yellow);
  z-index: 99;
  padding: 10px 20px;
}
.skip-link:focus {
  top: 10px;
}
:focus-visible {
  outline: 3px solid #168ee0;
  outline-offset: 5px;
}
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wordmark {
  font-family: var(--heading);
  font-size: 35px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 0.9;
  position: relative;
  padding-left: 17px;
  flex-shrink: 0;
}
.wordmark:before {
  content: "";
  width: 6px;
  height: 31px;
  background: var(--blue);
  position: absolute;
  left: 0;
  top: 0;
  transform: skew(-14deg);
}
.wordmark > span {
  color: var(--blue);
  padding-left: 3px;
}
.wordmark small {
  display: block;
  font-family: var(--body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.9px;
  margin-top: 9px;
}
.main-nav {
  display: flex;
  gap: 28px;
  font-size: 16px;
  font-weight: 600;
}
.main-nav a {
  padding: 10px 0;
  position: relative;
}
.main-nav a:after {
  content: "";
  height: 2px;
  background: var(--blue);
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 1px;
  transition: right 0.2s;
}
.main-nav a:hover:after {
  right: 0;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 24px;
}
.languages {
  display: flex;
  gap: 10px;
  align-items: center;
}
.languages button {
  border: 0;
  background: none;
  padding: 6px 0;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  border-bottom: 2px solid transparent;
}
.languages button.active {
  color: var(--ink);
  border-color: var(--blue);
}
.button {
  display: inline-flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  padding: 17px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.button:hover {
  transform: translateY(-3px);
}
.button-small {
  padding: 12px 17px;
  font-size: 14px;
  gap: 22px;
}
.button-dark {
  background: var(--navy);
  color: #fff;
}
.button-dark:hover {
  background: var(--blue);
  color: #fff;
}
.button-yellow {
  background: var(--yellow);
  color: var(--deep);
}
.button-yellow:hover {
  background: #ffe765;
  color: var(--deep);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
}
.hero {
  background: var(--deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 76% 50%, #104a69 0%, transparent 58%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff03 1px, transparent 1px),
    linear-gradient(90deg, #ffffff03 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 690px;
  align-items: center;
}
.hero-copy {
  padding: 64px 0 54px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 11px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.eyebrow.light {
  color: #c2d0d7;
}
.eyebrow > span {
  height: 5px;
  width: 5px;
  display: inline-block;
  background: var(--yellow);
}
h1 {
  font-size: clamp(64px, 7.7vw, 112px);
  letter-spacing: -1.8px;
  margin-bottom: 28px;
}
h1 em {
  font-style: normal;
  color: var(--yellow);
}
.hero-description {
  max-width: 420px;
  color: #bdccd4;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.text-link {
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 17px;
}
.text-link:hover {
  color: var(--yellow);
}
.hero-footnote {
  font-size: 14px;
  color: #a2b9c6;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 38px;
}
.hero-footnote > span {
  height: 14px;
  width: 1px;
  background: #416073;
  margin-inline: 5px;
}
.hero-visual {
  height: 100%;
  position: relative;
  min-width: 0;
  isolation: isolate;
}
.orbit {
  border: 1px solid #6f9eba25;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1;
  pointer-events: none;
}
.orbit-one {
  width: 650px;
}
.orbit-two {
  width: 530px;
}
.hero-tyre {
  position: absolute;
  inset: 70px 0 90px 50px;
  overflow: hidden;
  clip-path: polygon(18% 0, 100% 0, 84% 100%, 0 100%);
  transform: rotate(-8deg);
  opacity: 0.96;
}
.hero-tyre img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.18);
  transform: scale(1.12);
}
.hero-tyre:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #061e30, transparent 55%);
}
.hero-product-label {
  position: absolute;
  top: 61px;
  right: 0;
  font-size: 14px;
  letter-spacing: 1.5px;
  border-left: 2px solid var(--yellow);
  padding-left: 16px;
  z-index: 2;
}
.hero-product-label small {
  display: block;
  color: #92adbc;
  font-size: 14px;
  margin-top: 5px;
}
.brand-stamp {
  position: absolute;
  bottom: 115px;
  left: 44px;
  z-index: 3;
  transform: rotate(-6deg);
}
.brand-stamp img {
  width: 300px;
}
.brand-stamp > span {
  display: block;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  margin-top: 13px;
}
.visual-index {
  position: absolute;
  bottom: 47px;
  right: 0;
  font-size: 14px;
  letter-spacing: 2px;
  color: #81a1b4;
}
.hero-bottom {
  position: relative;
  border-top: 1px solid #7993a42e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  font-size: 14px;
  letter-spacing: 1.8px;
  font-weight: 600;
}
.hero-bottom > span {
  color: #89a6b7;
}
.hero-bottom > div {
  display: flex;
  gap: 40px;
}
.hero-bottom > a {
  border: 1px solid #668ba54d;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  display: grid;
  place-items: center;
}
@media (min-width: 1600px) {
  .hero-inner {
    min-height: 740px;
  }
}
@media (max-width: 1199px) {
  .container-wide {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 20px;
    height: 88px;
  }
  .main-nav {
    gap: 18px;
  }
  .header-tools {
    gap: 16px;
  }
  .hero-inner {
    min-height: 620px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-description {
    max-width: 350px;
  }
  .hero-tyre {
    left: 20px;
  }
  .hero-bottom > div {
    gap: 22px;
  }
  .hero-bottom {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero-inner {
    grid-template-columns: 1.05fr 1fr;
    min-height: 600px;
  }
  h1 {
    font-size: 76px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
  }
  .hero-description {
    font-size: 18px;
    max-width: 340px;
  }
  .brand-stamp {
    left: 0;
  }
  .brand-stamp img {
    width: 255px;
  }
  .hero-product-label {
    font-size: 14px;
    right: -10px;
  }
  .hero-bottom > span {
    display: none;
  }
  .hero-bottom {
    min-height: 70px;
  }
  .hero-footnote {
    flex-wrap: wrap;
    max-width: 270px;
  }
  .hero-tyre {
    inset: 95px -35px 120px 0;
  }
}
@media (max-width: 767px) {
  .container-wide {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 78px;
    gap: 12px;
  }
  .wordmark {
    font-size: 29px;
    padding-left: 12px;
  }
  .wordmark:before {
    height: 26px;
    width: 5px;
  }
  .wordmark small {
    font-size: 8px;
    letter-spacing: 1.8px;
  }
  .header-tools {
    gap: 16px;
  }
  .header-tools > .button {
    display: none;
  }
  .languages {
    gap: 10px;
  }
  .languages button {
    font-size: 14px;
  }
  .menu-toggle {
    font-size: 25px;
    padding: 0;
  }
  .hero-inner {
    display: block;
    min-height: 0;
  }
  .hero-copy {
    padding: 45px 0 0;
  }
  .eyebrow {
    font-size: 14px;
    letter-spacing: 1.4px;
    margin-bottom: 23px;
  }
  h1 {
    font-size: 74px;
    line-height: 0.98;
    letter-spacing: -1.1px;
    margin-bottom: 24px;
  }
  .hero-description {
    font-size: 18px;
    line-height: 1.65;
    max-width: 350px;
    margin-bottom: 26px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 22px;
  }
  .button {
    font-size: 16px;
    gap: 20px;
    padding: 16px 20px;
  }
  .text-link {
    font-size: 14px;
    gap: 10px;
  }
  .hero-footnote {
    max-width: none;
    flex-wrap: nowrap;
    font-size: 14px;
    margin-top: 24px;
    gap: 6px;
  }
  .hero-visual {
    height: 390px;
    margin-top: 14px;
  }
  .hero-tyre {
    inset: 35px 10px 40px 20px;
  }
  .orbit-one {
    width: 470px;
  }
  .orbit-two {
    width: 350px;
  }
  .hero-product-label {
    top: 24px;
    right: 4px;
    font-size: 14px;
  }
  .hero-product-label small {
    font-size: 14px;
  }
  .brand-stamp {
    left: 10px;
    bottom: 40px;
  }
  .brand-stamp img {
    width: 230px;
  }
  .brand-stamp > span {
    font-size: 14px;
    letter-spacing: 3px;
  }
  .visual-index {
    bottom: 15px;
    font-size: 14px;
  }
  .hero-bottom {
    min-height: 66px;
    font-size: 14px;
    letter-spacing: 0.8px;
  }
  .hero-bottom > div {
    gap: 16px;
  }
  .hero-bottom > a {
    height: 28px;
    width: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Shared section system */
.wordmark {
  display: block;
}
.brand-link {
  display: block;
}
.eyebrow > span {
  height: auto;
  width: auto;
  background: none;
}
.status-dot {
  width: 5px;
  height: 5px;
  background: var(--yellow);
  flex-shrink: 0;
}
.hero-footnote > span {
  height: auto;
  width: auto;
  background: none;
  margin: 0;
}
.hero-footnote > b {
  height: 14px;
  width: 1px;
  background: #416073;
  margin-inline: 5px;
}
.preserve-lines {
  white-space: pre-line;
}
.section-pad {
  padding-block: 112px;
}
.section-title {
  max-width: 480px;
}
.muted-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.lead-copy {
  font-size: 22px;
  line-height: 1.6;
}
.about-copy {
  padding-top: 42px;
}
.about-copy .muted-copy {
  max-width: 490px;
}
.about-section .eyebrow {
  color: var(--blue);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 66px;
  border-top: 1px solid var(--line);
}
.value-item {
  padding: 30px 34px 0 0;
}
.value-item + .value-item {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}
.value-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.value-top i {
  color: var(--blue);
  font-size: 28px;
}
.value-top > span {
  font-size: 14px;
  letter-spacing: 1px;
  color: #98a8b0;
}
.value-item h3 {
  font-size: 30px;
  margin-bottom: 14px;
}
.value-item p {
  color: var(--muted);
  font-size: 16px;
  max-width: 290px;
  margin-bottom: 0;
}
.hero-bg-word {
  position: absolute;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 420px;
  color: #9bc3d808;
  left: -10px;
  top: 10px;
  line-height: 1;
  letter-spacing: -20px;
}
.hero-tyre {
  inset: 65px -140px -60px 0;
  clip-path: none;
  transform: rotate(-13deg);
  opacity: 1;
  overflow: visible;
}
.hero-tyre img {
  object-fit: contain;
  filter: brightness(0.82) contrast(1.1);
  transform: none;
}
.hero-tyre:after {
  inset: -5%;
  background: linear-gradient(0deg, #061f2e 0%, transparent 38%);
}
.hero-product-label {
  top: 54px;
}
.brand-stamp {
  bottom: 85px;
  left: 12px;
}
.visual-index {
  bottom: 27px;
}
.hero-bottom > div {
  text-transform: uppercase;
}
.hero-inner {
  min-height: 650px;
}
.hero h1 {
  font-size: clamp(70px, 7.55vw, 110px);
}
.hero-copy {
  padding-block: 66px 50px;
}
.hero-visual:after {
  content: "";
  width: 65px;
  height: 2px;
  background: var(--yellow);
  position: absolute;
  top: 180px;
  right: 36px;
  transform: rotate(-40deg);
}
/* Mobile menu stays usable without a framework dependency. */
.mobile-nav {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 15px 32px 24px;
  box-shadow: 0 20px 30px #03192818;
  max-height: calc(100dvh - 88px);
  overflow: auto;
}
.mobile-nav[hidden] {
  display: none;
}
.mobile-nav > a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}
.mobile-nav .mobile-email {
  border-bottom: 0;
  color: var(--blue);
  font-size: 16px;
  margin-top: 10px;
}
.mobile-nav .mobile-email i {
  margin-right: 8px;
}
.site-header.is-scrolled {
  box-shadow: 0 5px 20px #061e2b0b;
}
/* Brand feature */
.delmax-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #056eaf;
  color: #fff;
}
.delmax-photo {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #dbe5e9;
}
.delmax-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.77) contrast(1.14);
  transform: scale(1.04);
  position: absolute;
  inset: 0;
}
.delmax-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #062133b3, transparent 65%);
}
.photo-caption {
  position: absolute;
  bottom: 28px;
  left: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  letter-spacing: 1px;
}
.photo-cross {
  position: absolute;
  right: 35px;
  top: 20px;
  font-size: 35px;
  color: #fff8;
  font-weight: 400;
}
.delmax-copy {
  padding: 65px max(40px, calc((100vw - 1360px) / 2)) 66px 75px;
  align-self: center;
}
.delmax-copy .eyebrow {
  color: #e4f2fa;
}
.delmax-section-logo {
  width: 290px;
  margin: 35px 0 30px;
}
.delmax-copy h2 {
  font-size: clamp(45px, 4.1vw, 62px);
  letter-spacing: -0.6px;
  margin-bottom: 25px;
}
.delmax-copy > p:not(.eyebrow) {
  font-size: 18px;
  color: #e0edf4;
  line-height: 1.8;
  max-width: 430px;
}
.brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 25px 0 35px;
}
.brand-pills > span {
  border: 1px solid #ffffff4a;
  padding: 7px 12px;
  font-size: 14px;
}
.delmax-copy .button {
  font-size: 16px;
}
/* Product collection */
.range-section {
  background: var(--paper);
}
.range-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 48px;
}
.range-heading > div {
  max-width: 710px;
}
.range-heading h2 {
  max-width: 660px;
  margin-bottom: 0;
}
.range-heading > p {
  max-width: 300px;
  margin-bottom: 2px;
}
.range-heading .eyebrow {
  color: var(--blue);
}
.range-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 30px;
}
.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.filter-button {
  background: transparent;
  border: 1px solid #cdd8dd;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 15px;
  transition: all 0.2s;
}
.filter-button:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.filter-button.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.launch-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
}
.launch-label > span:first-child {
  width: 5px;
  height: 5px;
  background: var(--blue);
  flex-shrink: 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.product-card {
  background: #fff;
  min-width: 0;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.product-card[hidden] {
  display: none;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 30px #0828390a;
}
.product-image {
  background: #e3eaed;
  aspect-ratio: 1.09;
  overflow: hidden;
  position: relative;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.product-card:hover img {
  transform: scale(1.06);
}
.product-index {
  position: absolute;
  top: 10px;
  left: 12px;
  z-index: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: #ffffffb3;
  padding: 1px 6px;
}
.product-plus {
  position: absolute;
  right: 10px;
  bottom: 2px;
  color: #fff;
  font-weight: 400;
  font-size: 30px;
}
.product-copy {
  padding: 22px 16px 0;
}
.product-type {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.3px;
  color: var(--blue);
  margin-bottom: 10px;
}
.product-copy h3 {
  font-size: 27px;
  letter-spacing: -0.3px;
  margin-bottom: 13px;
  min-height: 55px;
}
.product-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  min-height: 84px;
  margin-bottom: 15px;
}
.product-details summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
}
.product-details dl {
  margin: 8px 0 12px;
  font-size: 14px;
}
.product-details dl > div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-block: 5px;
}
.product-details dt {
  font-weight: 400;
  color: var(--muted);
}
.product-details dd {
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}
.spec-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.product-cta {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 0;
}
.product-cta:hover {
  color: var(--blue);
}
details > summary::-webkit-details-marker {
  display: none;
}
details > summary {
  list-style: none;
}
details[open] > summary > i {
  transform: rotate(45deg);
}
summary i {
  transition: transform 0.2s;
}
.availability-note {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  max-width: 1040px;
  margin: 24px 0 45px;
  line-height: 1.7;
}
.availability-note i {
  color: var(--blue);
  padding-top: 1px;
}
.broader-range {
  border-block: 1px solid #cad5db;
}
.broader-range > summary {
  padding: 25px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.broader-range > summary > span {
  display: flex;
  gap: 30px;
  align-items: center;
}
.broader-range strong {
  font-family: var(--heading);
  font-size: 28px;
  font-weight: 500;
}
.broader-range > summary > span > span {
  font-size: 14px;
  color: var(--muted);
}
.broader-inner {
  padding: 6px 0 25px;
}
.broader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
}
.broader-grid h3 {
  font-size: 23px;
  margin-bottom: 12px;
}
.broader-grid p {
  font-size: 14px;
  color: var(--muted);
}
.broader-inner > .spec-note {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 12px;
  margin-bottom: 0;
}
/* Multi-brand offering */
.brands-section {
  padding-block: 75px 70px;
}
.brands-heading {
  max-width: 720px;
  text-align: center;
  margin: 0 auto 42px;
}
.brands-heading .eyebrow {
  justify-content: center;
  color: var(--blue);
}
.brands-heading h2 {
  font-size: 48px;
  margin-bottom: 18px;
  letter-spacing: -0.6px;
}
.brands-heading .muted-copy {
  font-size: 16px;
  max-width: 580px;
  margin-inline: auto;
}
.brand-names {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.brand-names > span {
  min-height: 91px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #4b6270;
  font-style: italic;
}
.brand-names > span:nth-child(2) {
  font-family: Georgia, serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -1.5px;
}
.brand-names > span:nth-child(3) {
  font-family: var(--heading);
  font-size: 33px;
  font-style: normal;
  letter-spacing: 2px;
}
.brand-names > span:nth-child(7) {
  font-style: italic;
  letter-spacing: 2px;
}
.brand-names > span:nth-child(8) {
  font-size: 19px;
  font-style: normal;
  letter-spacing: 1px;
}
.all-brands > summary {
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 17px;
  cursor: pointer;
  padding: 23px 0 0;
}
.all-brands[open] > summary {
  padding-bottom: 25px;
}
.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}
.brand-list > span {
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 14px;
  padding: 6px 12px;
}
/* Partnership */
.partner-section {
  background:
    linear-gradient(90deg, #041e30f2, #06283bbb),
    url("../assets/img/touring-c3.webp") center/cover fixed;
  color: #fff;
  position: relative;
}
.partner-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 100px;
  align-items: center;
}
.partner-copy h2 {
  font-size: clamp(48px, 4.7vw, 70px);
  margin-bottom: 27px;
}
.partner-copy > p:not(.eyebrow) {
  color: #b9cdd8;
  font-size: 18px;
  max-width: 545px;
}
.partner-audiences {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 20px;
  margin: 26px 0 33px;
  font-size: 14px;
  color: #d2dce2;
}
.partner-audiences > span:before {
  content: "+";
  color: var(--yellow);
  margin-right: 8px;
}
.network-card {
  padding: 38px 40px 30px;
  border: 1px solid #88aabe4f;
  background: #0f344663;
  position: relative;
  backdrop-filter: blur(5px);
}
.network-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  letter-spacing: 4px;
  color: #9eb6c2;
  margin-bottom: 45px;
}
.network-top > i {
  font-size: 25px;
  color: var(--yellow);
  line-height: 1;
}
.network-point {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 1;
}
.network-point h3 {
  font-size: 38px;
  margin-bottom: 5px;
}
.network-point p {
  font-size: 14px;
  color: #afc7d4;
  margin-bottom: 0;
}
.network-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 7px #ffdb2715;
  flex-shrink: 0;
}
.network-dot.hollow {
  background: transparent;
  border: 2px solid #6f91a6;
  box-shadow: none;
}
.network-line {
  height: 56px;
  border-left: 1px dashed #719bb780;
  margin-left: 7px;
  margin-block: 8px;
}
.network-note {
  border-top: 1px solid #89acbd33;
  margin: 38px 0 0;
  padding-top: 22px;
  color: #95afbe;
  font-size: 14px;
  line-height: 1.8;
}
.process-section {
  padding-block: 62px;
  border-bottom: 1px solid var(--line);
}
.process-section .eyebrow {
  font-size: 14px;
  color: var(--blue);
  margin-bottom: 32px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}
.process-grid article {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.step-number {
  font-family: var(--heading);
  font-size: 55px;
  line-height: 0.95;
  color: #c4d1d9;
}
.process-grid h3 {
  font-size: 27px;
  margin-bottom: 12px;
}
.process-grid p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 0;
}
/* Contact */
.contact-section {
  background: var(--paper);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact-copy h2 {
  font-size: 65px;
  margin-bottom: 25px;
}
.contact-copy .eyebrow {
  color: var(--blue);
}
.contact-copy > .muted-copy {
  max-width: 450px;
}
.contact-item {
  display: flex;
  gap: 22px;
  margin-top: 35px;
}
.contact-item > i {
  font-size: 21px;
  color: var(--blue);
  padding-top: 2px;
}
.contact-label {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}
.email-link {
  font-family: var(--heading);
  font-size: 35px;
  line-height: 1.2;
  font-weight: 500;
}
.email-link > i {
  font-size: 23px;
  padding-left: 12px;
}
.email-link:hover {
  color: var(--blue);
}
address {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 10px;
}
.map-link {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  display: inline-flex;
  gap: 15px;
  padding-bottom: 3px;
}
.map-link:hover {
  color: var(--blue);
}
.contact-language {
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 20px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 470px;
}
.inquiry-panel {
  padding: 38px 40px;
  background: #fff;
  border-top: 3px solid var(--blue);
  box-shadow: 0 10px 40px #06263806;
}
.inquiry-panel h3 {
  font-size: 37px;
  margin-bottom: 28px;
}
.inquiry-panel label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin: 20px 0 8px;
}
.inquiry-panel label small {
  display: block;
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}
.inquiry-panel input,
.inquiry-panel select,
.inquiry-panel textarea {
  width: 100%;
  border: 1px solid #d3dde2;
  background: #f8faf9;
  border-radius: 0;
  padding: 12px 13px;
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s;
  line-height: 1.5;
}
.inquiry-panel textarea {
  resize: vertical;
  min-height: 100px;
}
.inquiry-panel :is(input, select, textarea):focus {
  outline: 2px solid #0179bf3d;
  outline-offset: 1px;
  border-color: var(--blue);
}
.inquiry-panel input::placeholder {
  color: #7c8e98;
}
.form-split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  margin-top: 22px;
}
.form-note {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 14px 0 0;
}
.draft-panel {
  margin-top: 25px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.draft-panel[hidden] {
  display: none;
}
.draft-title {
  font-size: 16px;
  font-weight: 600;
}
.draft-panel #draft-text {
  font-size: 14px;
  line-height: 1.7;
  min-height: 180px;
}
.draft-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
}
.draft-actions .button {
  font-size: 14px;
  gap: 12px;
  padding: 12px 15px;
}
.copy-button {
  border: 0;
  background: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
#copy-status {
  font-size: 14px;
  color: var(--blue);
  margin: 12px 0 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 70px;
  margin-top: 90px;
  padding-top: 55px;
  border-top: 1px solid #cfd9de;
}
.faq-grid h2 {
  font-size: 47px;
  margin: 5px 0;
}
.faq-list details {
  border-bottom: 1px solid #cfd9de;
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}
.faq-list details:first-child summary {
  padding-top: 5px;
}
.faq-list details p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  padding-right: 30px;
  margin-bottom: 25px;
}
.faq-list summary i {
  font-size: 16px;
  color: var(--blue);
  flex-shrink: 0;
}
/* Footer and persistent contact */
.site-footer {
  background: var(--deep);
  color: #fff;
  padding-block: 50px 24px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid #6a8ca235;
  padding-bottom: 37px;
}
.footer-top .wordmark > span {
  color: var(--yellow);
}
.footer-top .wordmark:before {
  background: var(--yellow);
}
.footer-top > p {
  font-size: 16px;
  color: #9cb4c4;
  margin: 0;
}
.footer-top > a:last-child {
  font-size: 16px;
  display: flex;
  gap: 25px;
  align-items: center;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 24px;
  font-size: 14px;
  color: #90aab9;
}
.footer-bottom a {
  color: #d1dfe8;
  border-bottom: 1px solid #718e9d;
  padding-bottom: 2px;
}
.footer-bottom a:hover {
  color: var(--yellow);
}
.floating-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--yellow);
  color: var(--deep);
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 24px #051c2b30;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  transition:
    transform 0.2s,
    opacity 0.2s;
  border: 1px solid #f7df69;
}
.floating-contact:hover {
  transform: translateY(-3px);
  color: var(--deep);
}
.floating-contact.is-away {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
@media (min-width: 1600px) {
  .hero-inner {
    min-height: 700px;
  }
  .hero-tyre {
    inset: 45px -150px -80px -15px;
  }
}
@media (max-width: 1199px) {
  .hero h1 {
    font-size: 91px;
  }
  .hero-tyre {
    inset: 65px -130px -55px -5px;
  }
  .hero-bg-word {
    font-size: 350px;
    top: 65px;
  }
  .hero-inner {
    min-height: 615px;
  }
  .section-pad {
    padding-block: 88px;
  }
  .delmax-copy {
    padding: 50px 40px 50px 48px;
  }
  .delmax-photo {
    min-height: 640px;
  }
  .delmax-section-logo {
    width: 260px;
  }
  .product-grid {
    gap: 10px;
  }
  .product-copy {
    padding: 18px 13px 0;
  }
  .product-copy h3 {
    font-size: 24px;
    min-height: 49px;
  }
  .product-desc {
    font-size: 14px;
    min-height: 95px;
  }
  .product-cta {
    font-size: 14px;
  }
  .launch-label {
    font-size: 14px;
    max-width: 280px;
  }
  .partner-inner {
    gap: 55px;
  }
  .network-card {
    padding: 30px;
  }
  .contact-grid {
    gap: 60px;
  }
  .contact-copy h2 {
    font-size: 58px;
  }
  .inquiry-panel {
    padding: 30px;
  }
  .range-heading h2 {
    font-size: 58px;
  }
  .range-heading > p {
    max-width: 270px;
  }
  .process-grid {
    gap: 28px;
  }
  .process-grid article {
    gap: 15px;
  }
  .process-grid h3 {
    font-size: 24px;
  }
  .brands-heading h2 {
    font-size: 45px;
  }
}
@media (max-width: 991px) {
  .hero h1 {
    font-size: 78px;
  }
  .hero-inner {
    min-height: 600px;
  }
  .hero-copy {
    padding-block: 50px;
  }
  .hero-tyre {
    inset: 115px -100px -5px -30px;
  }
  .hero-product-label {
    top: 90px;
    right: 0;
  }
  .hero-bg-word {
    font-size: 300px;
    top: 110px;
  }
  .brand-stamp {
    bottom: 85px;
    left: -10px;
  }
  .hero-visual:after {
    right: 0;
    top: 190px;
    width: 45px;
  }
  .section-pad {
    padding-block: 76px;
  }
  .about-copy {
    padding-top: 0;
  }
  .lead-copy {
    font-size: 21px;
  }
  .section-title {
    max-width: 540px;
  }
  .values-grid {
    margin-top: 40px;
  }
  .value-item {
    padding-right: 22px;
  }
  .value-item + .value-item {
    padding-left: 22px;
  }
  .value-item h3 {
    font-size: 26px;
  }
  .value-item p {
    font-size: 16px;
  }
  .delmax-copy {
    padding: 44px 32px;
  }
  .delmax-photo {
    min-height: 680px;
  }
  .delmax-section-logo {
    width: 230px;
  }
  .delmax-copy h2 {
    font-size: 48px;
  }
  .delmax-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .brand-pills > span {
    font-size: 14px;
  }
  .range-heading {
    gap: 25px;
    align-items: flex-start;
    flex-direction: column;
  }
  .range-heading h2 {
    font-size: 60px;
  }
  .range-heading > p {
    max-width: 540px;
    font-size: 18px;
  }
  .range-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .launch-label {
    max-width: none;
    font-size: 14px;
  }
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
  .product-copy {
    padding: 22px 18px 0;
  }
  .product-copy h3 {
    font-size: 28px;
    min-height: 30px;
  }
  .product-desc {
    font-size: 14px;
    min-height: 66px;
  }
  .product-cta {
    font-size: 14px;
  }
  .product-type {
    font-size: 14px;
  }
  .product-details summary {
    font-size: 14px;
  }
  .broader-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-names > span {
    font-size: 19px;
  }
  .brand-names > span:nth-child(8) {
    font-size: 18px;
  }
  .partner-inner {
    gap: 40px;
    grid-template-columns: 1.2fr 1fr;
  }
  .partner-copy h2 {
    font-size: 53px;
  }
  .partner-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .network-card {
    padding: 25px;
  }
  .network-point {
    gap: 15px;
  }
  .network-point h3 {
    font-size: 32px;
  }
  .network-note {
    font-size: 14px;
  }
  .network-point p {
    font-size: 14px;
  }
  .process-grid {
    gap: 25px;
  }
  .process-grid article {
    flex-direction: column;
    gap: 18px;
  }
  .process-grid h3 {
    font-size: 26px;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .contact-copy h2 {
    font-size: 50px;
  }
  .contact-copy > .muted-copy {
    font-size: 16px;
  }
  .contact-item {
    gap: 15px;
  }
  .email-link {
    font-size: 29px;
  }
  .email-link > i {
    font-size: 18px;
    padding-left: 4px;
  }
  .inquiry-panel {
    padding: 25px;
  }
  .inquiry-panel h3 {
    font-size: 31px;
  }
  .inquiry-panel label {
    font-size: 14px;
  }
  .faq-grid {
    gap: 30px;
  }
  .faq-list summary {
    font-size: 16px;
  }
  .footer-top > p {
    display: none;
  }
  .partner-section {
    background-attachment: scroll;
  }
  .footer-bottom {
    padding-right: 140px;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 94px;
  }
  .hero h1 {
    font-size: 77px;
  }
  .hero-copy {
    padding: 41px 0 0;
  }
  .hero-inner {
    min-height: 0;
  }
  .hero-visual {
    height: 335px;
    margin-top: 8px;
  }
  .hero-tyre {
    inset: 25px -65px -80px -20px;
    transform: rotate(-12deg);
  }
  .hero-bg-word {
    font-size: 280px;
    left: 0;
    top: 20px;
  }
  .hero-product-label {
    top: 25px;
    right: 0;
  }
  .hero-visual:after {
    top: 80px;
    right: 25px;
    width: 35px;
  }
  .brand-stamp {
    bottom: 30px;
    left: 0;
  }
  .brand-stamp img {
    width: 210px;
  }
  .hero-footnote {
    font-size: 14px;
  }
  .hero-footnote > b {
    margin-inline: 4px;
    height: 10px;
  }
  .visual-index {
    bottom: 10px;
    right: 0;
  }
  .hero-bottom {
    min-height: 64px;
    font-size: 14px;
    letter-spacing: 0.6px;
  }
  .hero-bottom > div {
    gap: 16px;
  }
  .hero-bottom > div > span {
    max-width: 75px;
  }
  .hero .eyebrow {
    font-size: 14px;
    letter-spacing: 1.5px;
  }
  .hero-bottom > a {
    flex-shrink: 0;
    margin-left: 14px;
  }
  .mobile-nav {
    padding: 10px 20px 22px;
    max-height: calc(100dvh - 78px);
  }
  .section-pad {
    padding-block: 65px;
  }
  h2 {
    font-size: 48px;
    letter-spacing: -0.7px;
  }
  .about-section .row {
    --bs-gutter-y: 1.5rem;
  }
  .about-copy {
    padding-top: 0;
  }
  .lead-copy {
    font-size: 19px;
  }
  .muted-copy {
    font-size: 16px;
  }
  .values-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
    border: 0;
    gap: 0;
  }
  .value-item,
  .value-item + .value-item {
    padding: 24px 0;
    border: 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 45px 1fr;
    column-gap: 20px;
  }
  .value-top {
    grid-row: span 2;
    margin-bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 13px;
  }
  .value-top i {
    font-size: 26px;
  }
  .value-top > span {
    font-size: 14px;
  }
  .value-item h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .value-item p {
    font-size: 16px;
    max-width: none;
  }
  .value-item:last-child {
    padding-bottom: 0;
  }
  .delmax-section {
    grid-template-columns: 1fr;
  }
  .delmax-photo {
    min-height: 335px;
  }
  .delmax-photo > img {
    object-position: center 25%;
  }
  .photo-caption {
    left: 20px;
    right: 20px;
    bottom: 22px;
    font-size: 14px;
  }
  .photo-cross {
    top: 5px;
    right: 20px;
  }
  .delmax-copy {
    padding: 45px 20px 50px;
  }
  .delmax-section-logo {
    width: 250px;
    margin: 28px 0;
  }
  .delmax-copy h2 {
    font-size: 53px;
  }
  .delmax-copy > p:not(.eyebrow) {
    font-size: 18px;
    max-width: none;
  }
  .brand-pills {
    margin: 24px 0 30px;
  }
  .range-heading {
    gap: 18px;
    margin-bottom: 30px;
  }
  .range-heading h2 {
    font-size: 50px;
  }
  .range-heading > p {
    font-size: 16px;
  }
  .range-toolbar {
    gap: 20px;
    margin-bottom: 23px;
  }
  .product-filters {
    gap: 6px;
  }
  .filter-button {
    font-size: 14px;
    padding: 9px 11px;
  }
  .launch-label {
    font-size: 14px;
    letter-spacing: 0.6px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }
  .product-copy {
    padding: 18px 12px 0;
  }
  .product-copy h3 {
    font-size: 24px;
    min-height: 49px;
    line-height: 1.02;
  }
  .product-desc {
    font-size: 14px;
    min-height: 96px;
    line-height: 1.6;
  }
  .product-type {
    font-size: 14px;
    letter-spacing: 0.6px;
    margin-bottom: 9px;
  }
  .product-image {
    aspect-ratio: 0.95;
  }
  .product-index {
    left: 8px;
    top: 8px;
    font-size: 14px;
  }
  .product-details summary {
    font-size: 14px;
    padding: 11px 0;
    gap: 5px;
  }
  .product-cta {
    font-size: 14px;
    line-height: 1.6;
    gap: 5px;
    padding: 12px 0;
  }
  .product-details dl {
    font-size: 14px;
  }
  .product-details dl > div {
    flex-wrap: wrap;
    gap: 3px;
  }
  .product-details dl dd {
    margin-left: auto;
  }
  .product-details .spec-note {
    font-size: 14px;
  }
  .availability-note {
    font-size: 14px;
    gap: 9px;
    margin: 22px 0 28px;
  }
  .broader-range > summary {
    padding: 20px 0;
    gap: 20px;
  }
  .broader-range > summary > span {
    display: block;
  }
  .broader-range strong {
    display: block;
    font-size: 27px;
    margin-bottom: 8px;
  }
  .broader-range > summary > span > span {
    font-size: 14px;
  }
  .broader-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .broader-grid h3 {
    font-size: 24px;
  }
  .broader-grid p {
    font-size: 14px;
  }
  .brands-section {
    padding-block: 55px 40px;
  }
  .brands-heading {
    margin-bottom: 30px;
  }
  .brands-heading .eyebrow {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
  .brands-heading h2 {
    font-size: 42px;
  }
  .brands-heading .muted-copy {
    font-size: 16px;
  }
  .brand-names {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-names > span {
    min-height: 75px;
    font-size: 20px;
  }
  .brand-names > span:nth-child(3) {
    font-size: 30px;
  }
  .brand-names > span:nth-child(8) {
    font-size: 18px;
  }
  .all-brands > summary {
    font-size: 14px;
  }
  .brand-list {
    gap: 6px;
  }
  .brand-list > span {
    padding: 5px 9px;
    font-size: 14px;
  }
  .partner-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .partner-copy h2 {
    font-size: 51px;
  }
  .partner-copy > p:not(.eyebrow) {
    font-size: 18px;
  }
  .partner-audiences {
    font-size: 14px;
    gap: 10px 16px;
  }
  .network-card {
    padding: 28px;
  }
  .network-top {
    margin-bottom: 32px;
  }
  .network-point {
    gap: 25px;
  }
  .network-point h3 {
    font-size: 35px;
  }
  .network-point p {
    font-size: 14px;
  }
  .network-note {
    font-size: 14px;
    margin-top: 30px;
  }
  .network-line {
    height: 40px;
  }
  .process-section {
    padding-block: 48px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-grid article {
    flex-direction: row;
    gap: 25px;
  }
  .step-number {
    font-size: 48px;
    min-width: 36px;
  }
  .process-grid h3 {
    font-size: 28px;
  }
  .process-grid p {
    font-size: 16px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-copy h2 {
    font-size: 54px;
  }
  .contact-copy > .muted-copy {
    font-size: 18px;
  }
  .contact-item {
    gap: 20px;
    margin-top: 30px;
  }
  .email-link {
    font-size: 34px;
  }
  .contact-language {
    margin-top: 25px;
    font-size: 14px;
  }
  .inquiry-panel {
    padding: 28px 22px;
  }
  .inquiry-panel h3 {
    font-size: 35px;
  }
  .inquiry-panel label {
    font-size: 14px;
  }
  .inquiry-panel input,
  .inquiry-panel select,
  .inquiry-panel textarea {
    font-size: 18px;
  }
  .form-split {
    gap: 14px;
    grid-template-columns: 1.4fr 1fr;
  }
  .inquiry-panel #draft-text {
    font-size: 18px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 55px;
    padding-top: 38px;
  }
  .faq-grid h2 {
    font-size: 43px;
  }
  .faq-list summary {
    font-size: 16px;
    padding-block: 20px;
  }
  .faq-list details p {
    padding-right: 10px;
    font-size: 14px;
  }
  .site-footer {
    padding: 40px 0 30px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 27px;
    padding-bottom: 30px;
  }
  .footer-top > .brand-link {
    flex: 1;
  }
  .footer-top > a:last-child {
    font-size: 14px;
    gap: 12px;
  }
  .footer-bottom {
    padding: 24px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 14px;
  }
  .floating-contact {
    bottom: 16px;
    right: 16px;
    padding: 12px 15px;
    font-size: 14px;
    gap: 10px;
  }
  .footer-bottom > span:last-child {
    padding-bottom: 38px;
  }
}
@media (max-width: 374px) {
  .container-wide {
    width: calc(100% - 32px);
  }
  .header-tools {
    gap: 12px;
  }
  .wordmark {
    font-size: 26px;
  }
  .languages {
    gap: 8px;
  }
  .hero h1 {
    font-size: 68px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .button {
    padding: 14px 15px;
    font-size: 14px;
    gap: 15px;
  }
  .hero-actions .text-link {
    font-size: 14px;
    gap: 7px;
  }
  .hero-footnote {
    font-size: 14px;
  }
  .hero .eyebrow {
    font-size: 14px;
  }
  .hero-visual {
    height: 315px;
  }
  .hero-bottom > div {
    gap: 10px;
  }
  .hero-bottom {
    font-size: 14px;
  }
  .product-grid {
    gap: 12px 8px;
  }
  .product-copy {
    padding-inline: 10px;
  }
  .product-copy h3 {
    font-size: 22px;
  }
  .product-cta {
    font-size: 14px;
  }
  .filter-button {
    padding: 8px 9px;
    font-size: 14px;
  }
  .email-link {
    font-size: 30px;
  }
  .brand-stamp img {
    width: 190px;
  }
  .contact-copy h2 {
    font-size: 49px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .partner-section {
    background-attachment: scroll;
  }
}
/* Progressive enhancement: content remains visible if scripts are unavailable. */
html:not(.aos-enabled) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}
.value-top > span {
  color: #627784;
}
.step-number {
  color: #8296a2;
}
.network-top {
  color: #a3bbc9;
}
@media (max-width: 767px) {
  .product-type {
    letter-spacing: 0.35px;
    font-size: 14px;
  }
}
.languages {
  gap: 3px;
}
.languages button {
  min-width: 27px;
  min-height: 38px;
}
.filter-button {
  min-height: 40px;
}
@media (max-width: 767px) {
  .about-section .row {
    --bs-gutter-x: 2rem;
  }
  .product-type {
    font-size: 14px;
    letter-spacing: 0.2px;
    min-height: 24px;
  }
  .menu-toggle {
    min-width: 30px;
    min-height: 42px;
  }
}
/* Longer translations keep the same two-line hero rhythm. */
html:lang(it) .hero h1,
html:lang(en) .hero h1 {
  font-size: clamp(60px, 6.3vw, 94px);
}
@media (max-width: 767px) {
  html:lang(it) .hero h1,
  html:lang(en) .hero h1 {
    font-size: clamp(43px, 13.2vw, 70px);
  }
}

/* Readable type, generous product cards and clear contact actions. */
.eyebrow {
  letter-spacing: 1.5px;
  line-height: 1.5;
}
.hero .eyebrow {
  font-size: 14px;
  letter-spacing: 1.2px;
}
.hero-footnote {
  flex-wrap: wrap;
  font-size: 14px;
}
.hero-product-label,
.hero-product-label small,
.brand-stamp > span,
.visual-index {
  font-size: 12px;
  letter-spacing: 1px;
}
.hero-bottom {
  font-size: 14px;
  letter-spacing: 0.6px;
  gap: 24px;
}
.hero-bottom > a {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.header-inner {
  gap: 22px;
}
.main-nav {
  gap: 22px;
}
.header-tools {
  gap: 18px;
}
.languages button {
  min-width: 32px;
  min-height: 44px;
}
.button,
.filter-button {
  border-radius: 3px;
  min-height: 48px;
}
.filter-button {
  padding: 11px 18px;
  font-size: 16px;
  font-weight: 600;
}
.range-heading > p {
  max-width: 350px;
}
.launch-label {
  font-size: 14px;
  letter-spacing: 0.4px;
}
.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #d6e0e5;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 14px #08283904;
}
.product-card:hover {
  border-color: #8eafc4;
  box-shadow: 0 16px 34px #08283912;
}
.product-image {
  aspect-ratio: 1.85;
  border-bottom: 1px solid var(--line);
}
.product-image img {
  object-position: center 42%;
}
.product-index {
  top: 14px;
  left: 16px;
  padding: 3px 9px;
  border-radius: 2px;
  font-size: 12px;
}
.product-plus {
  display: none;
}
.product-copy {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-type {
  font-size: 14px;
  letter-spacing: 0.6px;
  line-height: 1.45;
  min-height: 0;
  margin-bottom: 12px;
}
.product-copy h3 {
  font-size: 36px;
  line-height: 1.05;
  min-height: 0;
  margin-bottom: 14px;
}
.product-desc {
  font-size: 17px;
  min-height: 0;
  margin-bottom: 22px;
  flex: 1;
}
.product-details summary {
  font-size: 16px;
  padding-block: 14px;
  min-height: 50px;
}
.product-details dl,
.product-details .spec-note {
  font-size: 14px;
}
.product-cta {
  font-size: 16px;
  padding: 13px 16px;
  min-height: 50px;
  border: 1px solid #d5e7f2;
  background: #edf5fa;
  color: #07598d;
  border-radius: 3px;
  transition:
    background 0.2s,
    color 0.2s;
}
.product-cta:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.range-assistance {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 36px;
  border-radius: 6px;
  color: #fff;
  background:
    radial-gradient(ellipse at 100% 0, #125478, transparent 70%), var(--navy);
}
.range-assistance[hidden] {
  display: none;
}
.range-assistance > i {
  font-size: 36px;
  color: var(--yellow);
  margin-bottom: 24px;
}
.range-assistance .eyebrow {
  color: #bcd2df;
  font-size: 12px;
  margin-bottom: 14px;
}
.range-assistance h3 {
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.06;
  margin-bottom: 20px;
}
.range-assistance > p:not(.eyebrow) {
  color: #d3e0e8;
  font-size: 17px;
  margin-bottom: 30px;
}
.availability-note {
  font-size: 16px;
  max-width: none;
  padding: 20px 24px;
  background: #e8eef1;
  border-left: 3px solid var(--blue);
}
.network-card {
  border-radius: 6px;
  background: #0b2f42d9;
  box-shadow: 0 20px 60px #0002;
}
.network-top {
  letter-spacing: 1.5px;
}
.network-note {
  color: #bcd0dc;
}
.inquiry-panel {
  border-radius: 6px;
  box-shadow: 0 18px 50px #0828390c;
}
.inquiry-panel label {
  font-size: 16px;
  font-weight: 600;
}
.inquiry-panel :is(input, select, textarea) {
  font-size: 17px;
  border-color: #a8bac5;
  border-radius: 3px;
  min-width: 0;
}
.form-note,
.contact-language,
.footer-bottom {
  font-size: 14px;
}
.map-link {
  min-height: 44px;
  align-items: center;
}
@media (max-width: 1199px) {
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
    min-width: 44px;
    min-height: 44px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-bottom > span {
    display: none;
  }
}
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-copy > .muted-copy {
    max-width: 600px;
  }
  .hero-footnote {
    max-width: none;
  }
}
@media (max-width: 767px) {
  .header-inner {
    gap: 10px;
  }
  .header-tools {
    gap: 10px;
  }
  .languages {
    gap: 2px;
  }
  .hero-actions {
    flex-wrap: wrap;
    gap: 16px 12px;
  }
  .hero-actions .button {
    padding: 14px 16px;
    gap: 14px;
  }
  .hero-actions .text-link {
    font-size: 16px;
    min-height: 44px;
    gap: 8px;
  }
  .hero-description {
    font-size: 18px;
  }
  .hero-footnote {
    gap: 6px;
    font-size: 14px;
    line-height: 1.5;
  }
  .hero-footnote > b {
    display: none;
  }
  .hero-footnote > span:last-child {
    flex-basis: auto;
  }
  .hero-footnote > span:last-child::before {
    content: "·";
    margin-right: 6px;
  }
  .hero-product-label small {
    max-width: 240px;
  }
  .visual-index {
    display: none;
  }
  .hero-bottom {
    padding-block: 20px;
  }
  .hero-bottom > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    flex: 1;
  }
  .hero-bottom > div > span {
    max-width: none;
  }
  .hero-bottom > a {
    margin-left: 0;
  }
  .product-copy {
    padding: 22px;
  }
  .product-copy h3 {
    font-size: 34px;
  }
  .range-assistance {
    padding: 30px;
  }
  .filter-button {
    font-size: 15px;
    padding: 10px 14px;
  }
  .availability-note {
    padding: 16px;
    font-size: 15px;
  }
  .form-split {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
  .floating-contact {
    font-size: 15px;
    min-height: 48px;
  }
}
@media (max-width: 575px) {
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
  .range-assistance h3 {
    font-size: 40px;
  }
  .brand-names > span {
    min-width: 0;
  }
}
@media (max-width: 374px) {
  .wordmark {
    font-size: 25px;
  }
  .wordmark small {
    letter-spacing: 1.5px;
  }
  .languages button {
    min-width: 29px;
  }
  .hero-actions .button {
    font-size: 16px;
  }
  .inquiry-panel {
    padding-inline: 18px;
  }
}
