:root {
  --ink: #101820;
  --ink-soft: #4a555f;
  --paper: #ffffff;
  --fog: #f3f5f6;
  --line: #dce1e4;
  --cyan: #00a7ce;
  --cyan-dark: #007d9c;
  --red: #d81f26;
  --alca: #342f8f;
  --shell: min(1200px, calc(100% - 40px));
  --radius: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 1000; top: 12px; left: 12px; transform: translateY(-160%);
  padding: 10px 14px; background: var(--paper); color: var(--ink); border-radius: 2px;
}
.skip-link:focus { transform: none; }

.service-bar { background: var(--ink); color: #cdd4d8; font-size: 12px; letter-spacing: .03em; }
.service-bar__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; }
.service-bar__links { display: flex; gap: 28px; }
.service-bar a { color: #fff; text-decoration: none; }
.service-bar a:hover { color: #76d8ef; }

.site-header { background: var(--paper); position: relative; z-index: 30; }
.header-row {
  min-height: 168px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: "partners brand contact";
  align-items: center;
  gap: 32px;
}
.brand { grid-area: brand; justify-self: center; }
.brand img { width: auto; height: 92px; max-height: 92px; object-fit: contain; }
.partner-logos {
  grid-area: partners;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-self: start;
  gap: 6px;
}
.partner-logos img:first-child { width: auto; height: 70px; max-height: 70px; object-fit: contain; }
.partner-logos img:last-child { width: auto; height: 62px; max-height: 62px; object-fit: contain; }
.partner-divider { display: none; }
.header-contact { grid-area: contact; justify-self: end; display: flex; flex-direction: column; align-items: flex-end; }
.header-contact span { color: var(--ink-soft); font-size: 12px; }
.header-contact a { font-size: 18px; font-weight: 750; text-decoration: none; letter-spacing: -.02em; }
.menu-toggle { display: none; }

.main-nav { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.nav-row { min-height: 54px; display: flex; align-items: center; gap: 4px; }
.nav-row > a {
  position: relative; display: flex; align-items: center; min-height: 54px; padding: 0 17px;
  color: #303940; font-size: 13px; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: .045em;
}
.nav-row > a:first-child { padding-left: 0; }
.nav-row > a::after {
  content: ""; position: absolute; left: 17px; right: 17px; bottom: -1px; height: 3px;
  background: var(--cyan); transform: scaleX(0); transition: transform .2s ease;
}
.nav-row > a:first-child::after { left: 0; }
.nav-row > a:hover::after, .nav-row > a.active::after { transform: scaleX(1); }
.nav-row .nav-fitment { margin-left: auto; color: var(--cyan-dark); }

.hero { position: relative; min-height: 610px; overflow: hidden; background: #12212c; color: white; }
.hero__image {
  position: absolute; inset: 0; background: url("../img/decor/rear.jpg") center 58% / cover no-repeat;
  transform: scale(1.015); animation: settle 1.3s ease-out both;
}
@keyframes settle { from { transform: scale(1.05); opacity: .72; } to { transform: scale(1.015); opacity: 1; } }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,16,23,.96) 0%, rgba(7,16,23,.88) 34%, rgba(7,16,23,.24) 68%, rgba(7,16,23,.05) 100%); }
.hero__content { position: relative; z-index: 2; min-height: 610px; display: flex; align-items: center; }
.hero__copy { width: min(650px, 58%); padding: 70px 0; }
.eyebrow, .section-kicker { margin: 0 0 13px; color: var(--cyan); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero h1 { margin: 0; max-width: 650px; font-size: clamp(48px, 5.7vw, 78px); line-height: .98; letter-spacing: -.045em; text-transform: uppercase; }
.hero__lead { max-width: 585px; margin: 28px 0 0; color: #e8ecef; font-size: 19px; line-height: 1.55; }
.hero__actions { display: flex; gap: 12px; margin-top: 34px; }
.button {
  min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 25px;
  border: 1px solid transparent; border-radius: var(--radius); font-size: 13px; font-weight: 800; letter-spacing: .045em;
  text-decoration: none; text-transform: uppercase; transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--cyan); color: #061218; }
.button--primary:hover { background: #26c3e8; }
.button--ghost { border-color: rgba(255,255,255,.55); color: white; }
.button--ghost:hover { background: white; color: var(--ink); border-color: white; }
.button--dark { background: var(--ink); color: white; white-space: nowrap; }
.button--dark:hover { background: #293640; }
.button--light { background: white; color: var(--ink); }
.hero__benefits { display: flex; gap: 28px; padding: 0; margin: 38px 0 0; list-style: none; color: #dce4e8; font-size: 12px; }
.hero__benefits li { position: relative; padding-left: 19px; }
.hero__benefits li::before { content: ""; position: absolute; left: 0; top: .48em; width: 7px; height: 7px; border: 2px solid var(--cyan); border-radius: 50%; }

.quick-fitment { background: var(--cyan); }
.quick-fitment__inner { min-height: 150px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.quick-fitment .section-kicker { color: rgba(5,28,36,.62); }
.quick-fitment h2 { margin: 0; font-size: clamp(24px, 3vw, 38px); line-height: 1.12; letter-spacing: -.03em; }

.section { padding: 104px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 60px; margin-bottom: 42px; }
.section-heading h2, .brand-story h2, .contact-cta h2 { margin: 0; font-size: clamp(34px, 4vw, 53px); line-height: 1.06; letter-spacing: -.045em; }
.section-heading > p { width: min(460px, 45%); margin: 0; color: var(--ink-soft); }
.section-heading--compact { margin-bottom: 34px; }

.categories { background: var(--fog); }
.category-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 18px; }
.category-card { min-width: 0; overflow: hidden; background: white; border: 1px solid #e2e6e8; text-decoration: none; transition: transform .24s ease, box-shadow .24s ease; }
.category-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(19,35,44,.1); }
.category-card__visual { height: 270px; display: flex; align-items: center; justify-content: center; padding: 24px; background: linear-gradient(145deg, #eef2f4, #fff); overflow: hidden; }
.category-card--featured .category-card__visual { height: 310px; }
.category-card__visual img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.category-card:hover .category-card__visual img { transform: scale(1.04); }
.category-card__body { position: relative; padding: 28px 30px 31px; }
.category-card__number { position: absolute; top: 30px; right: 28px; color: #b5bdc2; font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.category-card h3 { max-width: 82%; margin: 0; font-size: 25px; line-height: 1.15; letter-spacing: -.025em; }
.category-card p { min-height: 68px; margin: 16px 0 22px; color: var(--ink-soft); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--cyan-dark); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.text-link b { font-size: 20px; transition: transform .2s; }
.category-card:hover .text-link b, .text-link:hover b { transform: translateX(4px); }

.brand-story { padding: 112px 0; background: var(--ink); color: white; overflow: hidden; }
.brand-story__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 82px; align-items: center; }
.brand-story__photo { position: relative; min-height: 570px; }
.brand-story__photo::before { content: ""; position: absolute; width: 76%; height: 78%; left: -120px; top: -45px; border: 1px solid rgba(0,167,206,.35); }
.brand-story__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; filter: contrast(1.04); }
.brand-story__badge { position: absolute; right: -25px; bottom: 32px; width: 125px; height: 125px; display: grid; place-items: center; background: var(--cyan); color: #07151b; border-radius: 50%; font-size: 13px; font-weight: 900; line-height: 1.1; text-align: center; text-transform: uppercase; letter-spacing: .07em; transform: rotate(-9deg); }
.brand-story__copy > p:not(.section-kicker) { margin: 28px 0; color: #c5cdd1; font-size: 17px; }
.brand-points { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 28px 0 30px; margin-bottom: 28px; border-top: 1px solid #344049; border-bottom: 1px solid #344049; }
.brand-points div { display: flex; flex-direction: column; }
.brand-points strong { font-size: 15px; }
.brand-points span { margin-top: 5px; color: #9eabb2; font-size: 13px; }
.text-link--dark { color: #5ed5f1; text-decoration: none; }

.resources { padding-top: 92px; }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.resource-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; min-height: 122px; padding: 24px; border: 1px solid var(--line); text-decoration: none; transition: border-color .2s, background .2s; }
.resource-card:hover { border-color: var(--cyan); background: #f5fbfc; }
.resource-card__icon { width: 48px; height: 48px; display: grid; place-items: center; background: var(--ink); color: white; font-size: 11px; font-weight: 900; }
.resource-card > span:nth-child(2) { display: flex; flex-direction: column; }
.resource-card strong { font-size: 15px; }
.resource-card small { margin-top: 4px; color: var(--ink-soft); font-size: 12px; }
.resource-card > b { color: var(--cyan-dark); }

.contact-cta { background: var(--cyan); }
.contact-cta__inner { min-height: 250px; display: flex; align-items: center; justify-content: space-between; gap: 55px; }
.contact-cta__inner > div:first-child { max-width: 690px; }
.contact-cta .section-kicker { color: rgba(5,28,36,.6); }
.contact-cta__actions { display: flex; flex-direction: column; align-items: stretch; gap: 16px; min-width: 240px; }
.contact-phone { font-size: 22px; font-weight: 850; text-decoration: none; text-align: center; letter-spacing: -.02em; }

.site-footer { padding: 76px 0 24px; background: #0b1116; color: #9ea8ae; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 60px; padding-bottom: 58px; }
.footer-brand img {
  width: 155px;
  padding: 8px 12px;
  background: #fff;
  border-radius: 999px;
  filter: none;
}
.footer-brand p { max-width: 270px; margin: 22px 0 0; font-size: 13px; }
.footer-grid h2 { margin: 0 0 19px; color: white; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid a { color: #b8c1c6; font-size: 13px; text-decoration: none; }
.footer-grid a:hover { color: var(--cyan); }
.footer-contacts span { font-size: 13px; }
.footer-bottom { min-height: 58px; display: flex; align-items: end; justify-content: space-between; border-top: 1px solid #2b343a; padding-top: 22px; font-size: 12px; }
.footer-partners { display: flex; align-items: center; gap: 22px; }
.footer-partners img { max-width: 78px; max-height: 30px; object-fit: contain; opacity: .76; }
.footer-partners img:first-child { filter: grayscale(1) brightness(0) invert(1); }
.footer-partners img:last-child {
  filter: grayscale(1) invert(1) brightness(1.25);
  mix-blend-mode: screen;
}

@media (max-width: 980px) {
  .header-row { grid-template-columns: 1fr auto auto; min-height: 78px; }
  .partner-logos { justify-self: center; }
  .header-contact { display: none; }
  .hero, .hero__content { min-height: 560px; }
  .hero__copy { width: 72%; }
  .hero__shade { background: linear-gradient(90deg, rgba(7,16,23,.94), rgba(7,16,23,.62) 66%, rgba(7,16,23,.18)); }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .category-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.15fr .85fr; }
  .category-card--featured .category-card__visual { height: 340px; }
  .brand-story__grid { gap: 48px; }
  .brand-story__photo { min-height: 500px; }
  .resource-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 1200px); }
  .service-bar__inner > span { display: none; }
  .service-bar__inner { justify-content: center; }
  .service-bar__links { width: 100%; justify-content: space-between; gap: 10px; }
  .header-row { min-height: 72px; grid-template-columns: 1fr auto; grid-template-areas: "brand menu"; gap: 15px; }
  .brand { justify-self: start; }
  .brand img { width: 126px; height: auto; max-height: 56px; }
  .partner-logos { display: none; }
  .menu-toggle { grid-area: menu; width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; padding: 0; border: 0; background: transparent; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { border-bottom: 0; }
  .nav-row { display: none; min-height: 0; padding: 10px 14px 18px; align-items: stretch; flex-direction: column; }
  .nav-row.is-open { display: flex; }
  .nav-row > a, .nav-row > a:first-child { min-height: 46px; padding: 0 4px; border-bottom: 1px solid var(--line); }
  .nav-row > a::after { display: none; }
  .nav-row .nav-fitment { margin-left: 0; }
  .hero, .hero__content { min-height: 610px; }
  .hero__image { background-position: 63% 57%; }
  .hero__shade { background: linear-gradient(90deg, rgba(7,16,23,.94), rgba(7,16,23,.76)); }
  .hero__copy { width: 100%; padding: 68px 0; }
  .hero h1 { font-size: clamp(41px, 12.2vw, 55px); }
  .hero__lead { font-size: 17px; }
  .hero__actions { align-items: stretch; flex-direction: column; max-width: 330px; }
  .hero__benefits { align-items: flex-start; flex-direction: column; gap: 12px; }
  .quick-fitment__inner, .contact-cta__inner { padding: 38px 0; align-items: flex-start; flex-direction: column; gap: 26px; }
  .section { padding: 76px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 20px; }
  .section-heading > p { width: 100%; }
  .section-heading h2, .brand-story h2, .contact-cta h2 { font-size: 37px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card--featured { grid-column: auto; display: block; }
  .category-card__visual, .category-card--featured .category-card__visual { height: 250px; }
  .brand-story { padding: 78px 0; }
  .brand-story__grid { grid-template-columns: 1fr; }
  .brand-story__photo { min-height: 420px; }
  .brand-story__badge { right: -3px; width: 105px; height: 105px; font-size: 11px; }
  .brand-points { grid-template-columns: 1fr; gap: 18px; }
  .resources { padding-top: 70px; }
  .resource-card { padding: 18px; }
  .contact-cta__actions { width: 100%; min-width: 0; align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contacts { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
