/* LUXURYBIKENEWS.ONLINE — Corsa Red (light-first OEM press) */
:root {
  --pure-white: #FFFFFF;
  --carbon-black: #111111;
  --corsa-red: #E31937;
  --corsa-red-dark: #C4142E;
  --graphite-700: #2B2B2E;
  --fog-100: #F5F5F5;
  --fog-200: #EBEBEB;
  --muted: #6B6B70;
  --line: rgba(17, 17, 17, 0.08);
  --line-strong: rgba(17, 17, 17, 0.14);
  --shadow-1: 0 1px 2px rgba(17, 17, 17, 0.06);
  --shadow-2: 0 12px 28px rgba(17, 17, 17, 0.1);
  --font-display: "Titillium Web", "Barlow", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", "Barlow", sans-serif;
  --header-h: 72px;
  --top-h: 28px;
  --ticker-h: 42px;
  --container: 1160px;
  --narrow: 760px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--graphite-700);
  background: var(--pure-white);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--corsa-red); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--carbon-black);
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: -999px; top: 0;
  background: var(--corsa-red);
  color: #fff;
  padding: 0.65rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

:focus-visible {
  outline: 2px solid var(--corsa-red);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.narrow { width: min(100% - 2rem, var(--narrow)); margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn-red {
  background: var(--corsa-red);
  color: #fff !important;
}
.btn-red:hover { background: var(--corsa-red-dark); color: #fff !important; }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff !important;
  background: transparent;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-outline {
  border: 1px solid var(--carbon-black);
  color: var(--carbon-black) !important;
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--corsa-red);
  color: var(--corsa-red) !important;
}

.text-link {
  color: var(--corsa-red);
  font-weight: 700;
  font-size: 0.9rem;
}
.text-link:hover { text-decoration: underline; }

/* Animated highlight — background underline (never hidden behind parents) */
.hl {
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-image: linear-gradient(var(--corsa-red), var(--corsa-red));
  background-position: left 100%;
  background-repeat: no-repeat;
  background-size: 0% 0.18em;
  transition: background-size 0.7s var(--ease);
  padding-bottom: 0.08em;
}
.hl.is-on,
.hl[data-hl].is-on { background-size: 100% 0.18em; }
@media (prefers-reduced-motion: reduce) {
  .hl { background-size: 100% 0.18em; transition: none; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--pure-white);
  border-bottom: 1px solid var(--line);
}
.header-top {
  background: var(--fog-100);
  height: var(--top-h);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: none;
}
@media (min-width: 900px) {
  .header-top { display: block; }
}
.header-top__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header-bar {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}
.logo-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--carbon-black);
}
.logo-mark span { color: var(--corsa-red); }
.logo-tag {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-family: var(--font-display);
}
.logo--footer .logo-mark { color: #fff; }
.logo--footer .logo-tag { color: rgba(255,255,255,0.55); }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.nav-list > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.4rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--carbon-black);
  opacity: 0.82;
}
.nav-list > li.is-active > a,
.nav-list > li > a:hover {
  opacity: 1;
  color: var(--corsa-red);
}
.nav-cta {
  margin-left: 0.4rem;
  background: var(--carbon-black) !important;
  color: #fff !important;
  opacity: 1 !important;
  padding: 0.45rem 0.95rem !important;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--corsa-red) !important; color: #fff !important; }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 44px; height: 44px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--carbon-black);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(15, 15, 15, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    z-index: 95;
    background: var(--pure-white);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem 1.25rem;
    display: none;
  }
  .primary-nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-list a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-cta { margin: 0.5rem 0 0; text-align: center; justify-content: center; }
}

/* Breaking ticker — carbon bar, corsa tag (restyled motif) */
.breaking-ticker {
  background: var(--carbon-black);
  color: #fff;
  min-height: var(--ticker-h);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.breaking-ticker__inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: var(--ticker-h);
  padding-block: 0.35rem;
}
.breaking-ticker__tag {
  flex: none;
  background: var(--corsa-red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}
.breaking-ticker__viewport {
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: hidden;
  height: 1.5rem;
}
.breaking-ticker__track { position: relative; height: 100%; }
.breaking-ticker__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.86rem;
}
.breaking-ticker__item.is-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}
.breaking-ticker__brand {
  color: var(--corsa-red);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex: none;
}
.breaking-ticker__title {
  overflow: hidden;
  text-overflow: ellipsis;
}
.breaking-ticker__static { margin: 0; font-size: 0.86rem; }
.breaking-ticker__static a { color: #fff; }
.breaking-ticker__static[hidden] { display: none !important; }
.breaking-ticker__pause {
  flex: none;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  color: #fff;
}
.breaking-ticker__pause-icon {
  width: 10px; height: 12px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}
.breaking-ticker__pause[aria-pressed="true"] .breaking-ticker__pause-icon {
  width: 0; height: 0;
  border: 6px solid transparent;
  border-left: 10px solid currentColor;
  border-right: 0;
  margin-left: 3px;
}
@media (max-width: 700px) {
  .breaking-ticker__brand { display: none; }
  .breaking-ticker__item { font-size: 0.8rem; }
}

/* Sections */
.section { padding: var(--space-5) 0; }
.section--fog { background: var(--fog-100); }
.section-head { margin-bottom: var(--space-3); }
.section-head--center { text-align: center; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: 0.02em;
  color: var(--carbon-black);
}
.section-title--sm { font-size: 1.35rem; margin-bottom: 1rem; }
.section-dek {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}
.section-more { text-align: center; margin-top: var(--space-3); }
.range-filter {
  display: inline-block;
  margin-top: 1rem;
  background: var(--corsa-red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}

/* Hero */
.hero-swiper {
  position: relative;
  background: var(--carbon-black);
}
.hero-slide {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: end;
}
.hero-slide__media {
  position: absolute;
  inset: 0;
}
.hero-slide__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-slide__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,17,17,0.78) 0%, rgba(17,17,17,0.35) 48%, rgba(17,17,17,0.15) 100%),
              linear-gradient(0deg, rgba(17,17,17,0.55) 0%, transparent 45%);
}
.hero-slide__content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 5rem;
  max-width: 640px;
  margin-left: max(1rem, calc((100% - var(--container)) / 2));
  color: #fff;
}
.hero-slide__title {
  font-size: clamp(1.75rem, 4.2vw, 3rem);
  color: #fff;
  margin-bottom: 0.85rem;
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
  overflow-wrap: anywhere;
}
.hero-slide__dek {
  margin: 0 0 1.4rem;
  color: rgba(255,255,255,0.92);
  font-size: 0.98rem;
  max-width: 34rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  overflow-wrap: anywhere;
}
.hero-slide__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-pagination {
  position: absolute !important;
  bottom: 1.25rem !important;
  left: 50% !important;
  transform: translateX(-50%);
  width: auto !important;
  z-index: 2;
}
.hero-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.45;
  width: 8px; height: 8px;
}
.hero-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--corsa-red);
}
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  display: grid;
  place-items: center;
  background: rgba(17,17,17,0.35);
}
.hero-nav::before {
  content: "";
  width: 8px; height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.hero-nav--prev { left: 1rem; }
.hero-nav--prev::before { transform: rotate(-135deg); }
.hero-nav--next { right: 1rem; }
.hero-nav--next::before { transform: rotate(45deg); }
@media (max-width: 700px) {
  .hero-nav { display: none; }
  .hero-slide { min-height: 68vh; }
  .hero-slide__content { padding: 3rem 0 4rem; margin-left: 1rem; margin-right: 1rem; max-width: none; }
}

/* Range cards */
.range-swiper { padding: 0.5rem 0 2.5rem; position: relative; }
.range-card {
  background: var(--pure-white);
  border: 1px solid var(--line);
  padding: 1.25rem 1rem 1rem;
  text-align: center;
  position: relative;
  height: 100%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.range-card.is-open { box-shadow: var(--shadow-2); }
.range-card__badge {
  position: absolute;
  top: 0.85rem; left: 50%;
  transform: translateX(-50%);
  background: var(--corsa-red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  z-index: 1;
}
.range-card__badge.is-pulse {
  animation: badge-pulse 0.9s var(--ease) 1;
}
@keyframes badge-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.08); }
}
.range-card__media {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  margin: 0.75rem 0 0.5rem;
  overflow: hidden;
}
.range-card__media img {
  max-height: 100%;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  transition: transform 0.35s var(--ease);
}
.range-card:hover .range-card__media img { transform: scale(1.03); }
.range-card__name {
  font-size: 1rem;
  margin-top: 0.35rem;
  overflow-wrap: anywhere;
  min-height: 2.5em;
}
.range-card__brand {
  margin: 0.15rem 0 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.range-card__dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.range-card__dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}
.range-card__actions {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.range-card__expand,
.range-card__link {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--corsa-red);
  color: var(--corsa-red);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.range-card__expand:hover,
.range-card__link:hover,
.range-card__expand[aria-expanded="true"] {
  background: var(--corsa-red);
  color: #fff;
}
.range-card__spec {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s var(--ease), opacity 0.3s var(--ease), margin 0.3s var(--ease);
}
.range-card.is-open .range-card__spec {
  max-height: 4rem;
  opacity: 1;
}
.range-card__spec[hidden] { display: block !important; }
.range-nav.swiper-button-prev,
.range-nav.swiper-button-next,
.news-nav.swiper-button-prev,
.news-nav.swiper-button-next {
  color: var(--corsa-red);
  width: 44px; height: 44px;
}
.range-nav::after,
.news-nav::after { font-size: 1.1rem !important; }

/* Bento — full-width feature on top, tall + stack below (OEM press rhythm) */
.bento {
  display: grid;
  gap: 1rem;
}
.bento-feature {
  display: grid;
  background: var(--pure-white);
  border: 1px solid var(--line);
  overflow: hidden;
  color: inherit;
  min-height: 0;
}
@media (min-width: 700px) {
  .bento-feature {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    min-height: 280px;
  }
}
.bento-feature:hover { color: inherit; }
.bento-feature__text {
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  min-width: 0;
}
.bento-feature__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--corsa-red);
  font-weight: 700;
}
.bento-feature h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.bento-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}
.bento-feature__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  min-height: 200px;
  background: var(--carbon-black);
}
@media (min-width: 700px) {
  .bento-feature__media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 280px;
  }
}
.bento-feature__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.bento-feature:hover .bento-feature__media img { transform: scale(1.03); }

.bento-side {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 700px) {
  .bento-side {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    min-height: 420px;
  }
}
.bento-tall {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  color: #fff;
  background: var(--carbon-black);
  display: flex;
  align-items: flex-end;
}
@media (min-width: 700px) {
  .bento-tall { min-height: 100%; height: 100%; }
}
.bento-tall img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.4s var(--ease);
}
.bento-tall:hover img { transform: scale(1.03); }
.bento-tall__overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.5rem 1.15rem 1.25rem;
  background: linear-gradient(0deg, rgba(227,25,55,0.95) 0%, rgba(227,25,55,0.75) 45%, transparent 100%);
}
.bento-tall h3 {
  color: #fff;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
  overflow-wrap: anywhere;
}

.bento-stack {
  display: grid;
  gap: 1rem;
  grid-template-rows: 1fr 1fr;
  min-height: 280px;
}
@media (min-width: 700px) {
  .bento-stack { min-height: 100%; height: 100%; }
}
.bento-card {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  color: #fff;
  background: var(--carbon-black);
  display: flex;
  align-items: flex-end;
}
.bento-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.4s var(--ease);
}
.bento-card:hover img { transform: scale(1.03); }
.bento-card span {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 1.1rem 1rem 0.95rem;
  background: linear-gradient(0deg, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.55) 70%, transparent 100%);
  font-weight: 700;
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  overflow-wrap: anywhere;
}
.bento-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  min-height: 160px;
  overflow: hidden;
  color: #fff;
  background: var(--corsa-red);
  height: 100%;
}
.bento-split__media {
  min-height: 160px;
  overflow: hidden;
  background: var(--carbon-black);
}
.bento-split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 160px;
}
.bento-split__panel {
  background: var(--corsa-red);
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
  color: #fff;
}
.bento-split__mark {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1;
  flex: none;
}
.bento-split p {
  margin: 0;
  font-size: clamp(0.78rem, 1.4vw, 0.9rem);
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 699px) {
  .bento-side { grid-template-columns: 1fr; }
  .bento-tall { min-height: 320px; }
  .bento-stack { grid-template-rows: auto auto; }
  .bento-card { aspect-ratio: 16 / 9; }
  .bento-split { min-height: 180px; }
}

/* News cards */
.news-grid {
  display: grid;
  gap: 1.25rem;
}
.news-grid--2 { grid-template-columns: 1fr; }
.news-grid--3 { grid-template-columns: 1fr; }
.news-grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .news-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .news-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .news-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .news-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .news-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.news-card {
  position: relative;
  background: var(--pure-white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  overflow: hidden;
}
.news-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--corsa-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
  z-index: 1;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.news-card:hover::before { transform: scaleX(1); }
.news-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--fog-100);
}
.news-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.news-card:hover .news-card__media img { transform: scale(1.03); }
.news-card__body {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.news-card__meta {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.news-card__cat { color: var(--corsa-red); }
.news-card__title {
  font-size: 1.02rem;
  font-family: var(--font-body);
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.news-card__title a {
  color: var(--carbon-black);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__title a:hover { color: var(--corsa-red); }
.news-card__more {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--corsa-red);
  letter-spacing: 0.04em;
}

.news-swiper { padding-bottom: 2.5rem; position: relative; }

/* Brand tabs */
.brand-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.brand-tabs__btn {
  min-height: 44px;
  padding: 0.45rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--pure-white);
  color: var(--graphite-700);
}
.brand-tabs__btn.is-active,
.brand-tabs__btn[aria-selected="true"] {
  background: var(--corsa-red);
  border-color: var(--corsa-red);
  color: #fff;
}
.brand-panel[hidden] { display: none !important; }
.empty-inline { color: var(--muted); padding: 1rem 0; }

/* Trending */
.trending-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.trending-list__item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.trending-list__rank {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--corsa-red);
  line-height: 1;
}
.trending-list__meta {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.trending-list__body a {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--carbon-black);
}
.trending-list__body a:hover { color: var(--corsa-red); }

/* Promo band */
.promo-band {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
  background: var(--carbon-black);
  color: #fff;
  overflow: hidden;
}
.promo-band__media {
  position: absolute;
  inset: 0;
  opacity: 0.45;
}
.promo-band__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.promo-band__content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0;
  max-width: 560px;
}
.promo-band__title {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 0.75rem;
}
.promo-band p {
  margin: 0 0 1.25rem;
  color: rgba(255,255,255,0.88);
}

/* Newsletter */
.newsletter-inner { text-align: center; max-width: 640px; }
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.5rem;
  position: relative;
}
.newsletter-form input[type="email"] {
  flex: 1 1 240px;
  min-height: 48px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font: inherit;
}
.newsletter-form input:focus-visible {
  outline: 2px solid var(--corsa-red);
  outline-offset: 2px;
}
.newsletter-note {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.newsletter-form .newsletter-consent {
  flex-basis: 100%;
  justify-content: center;
  text-align: left;
  max-width: 420px;
  margin: 0.25rem auto 0;
}
.req {
  color: var(--corsa-red);
  font-weight: 700;
}
.form-error {
  flex-basis: 100%;
  color: var(--corsa-red);
  font-size: 0.85rem;
  margin: 0;
}
.form-success {
  flex-basis: 100%;
  color: #1a7a3a;
  font-size: 0.9rem;
  margin: 0;
  font-weight: 700;
}

/* Page hero (hub pages) */
.page-hero {
  background: var(--carbon-black);
  color: #fff;
  padding: 3rem 0 2.5rem;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}
.page-hero p {
  margin: 0.65rem 0 0;
  color: rgba(255,255,255,0.8);
  max-width: 40rem;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1.25rem 0 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  color: var(--fog-200);
}
.breadcrumb a:hover { color: var(--corsa-red); }

/* Article */
.article-page { padding-bottom: var(--space-5); }
.article-eyebrow {
  margin: 0 0 0.65rem;
  color: var(--corsa-red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.article-hero__title {
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  margin-bottom: 0.75rem;
  overflow-wrap: anywhere;
}
.article-hero__byline {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.article-bleed {
  margin: 1.5rem 0 2rem;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--fog-100);
}
.article-bleed img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.article-lead {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--carbon-black);
  margin-top: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
}
.article-body p {
  margin: 0 0 1.15rem;
  overflow-wrap: anywhere;
  word-break: keep-all;
}
.article-gallery { margin: 2.5rem 0; }
.article-gallery__title {
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}
.article-gallery__strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 1fr);
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
}
.article-gallery__strip figure {
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--fog-100);
}
.article-gallery__strip img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.brand-mini {
  margin: 2rem 0;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: var(--fog-100);
}
.brand-mini__label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.brand-mini__card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.brand-mini__card strong { font-size: 1.15rem; }
.related-news { margin-top: 3rem; }

/* Contact / forms */
.contact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
}
.contact-card {
  background: var(--fog-100);
  padding: 1.5rem;
  border: 1px solid var(--line);
}
.contact-card h2 { font-size: 1.15rem; margin-bottom: 0.85rem; }
.contact-card p { margin: 0 0 0.65rem; }
.contact-form {
  display: grid;
  gap: 1rem;
}
.form-row { display: grid; gap: 0.35rem; }
.form-row label { font-weight: 700; font-size: 0.88rem; }
.form-row input,
.form-row select,
.form-row textarea {
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font: inherit;
  width: 100%;
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row .field-error {
  color: var(--corsa-red);
  font-size: 0.8rem;
  margin: 0;
}
.form-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
}
.form-check input { width: 1.15rem; height: 1.15rem; margin-top: 0.2rem; flex: none; }
.form-success-box {
  display: none;
  padding: 1rem 1.15rem;
  background: #e8f6ec;
  border: 1px solid #b7e0c2;
  color: #1a7a3a;
  font-weight: 700;
}
.form-success-box.is-visible { display: block; }
.legal-content h2 { margin: 2rem 0 0.75rem; font-size: 1.2rem; }
.legal-content p, .legal-content li { color: var(--graphite-700); }
.legal-content ul { list-style: disc; padding-left: 1.25rem; margin: 0 0 1rem; }

/* Footer */
.site-footer {
  background: var(--carbon-black);
  color: rgba(255,255,255,0.82);
  padding-top: 3.5rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; }
}
.footer-heading {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.footer-col a { color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: #fff; }
.footer-col li + li { margin-top: 0.4rem; }
.footer-tagline { font-size: 0.9rem; margin: 0.85rem 0 0.5rem; }
.footer-legal-name { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin: 0; }
.footer-hours { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.15rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
}
.footer-bottom p { margin: 0; }

/* Reveal — visible fallback if JS/observer is late or blocked */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: var(--delay, 0ms);
  animation: reveal-fallback 0s 1.2s forwards;
}
@keyframes reveal-fallback {
  to { opacity: 1; transform: none; }
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  animation: none;
}

/* Empty / 404 */
.empty-state {
  text-align: center;
  padding: 4rem 1rem;
}
.empty-state h1 { font-size: 3rem; margin-bottom: 0.5rem; }
.empty-state p { color: var(--muted); margin-bottom: 1.25rem; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
  .news-card:hover { transform: none; }
  .news-card:hover .news-card__media img,
  .range-card:hover .range-card__media img,
  .bento-feature:hover .bento-feature__media img,
  .bento-tall:hover img,
  .bento-card:hover img { transform: none; }
  .range-card__badge.is-pulse { animation: none; }
  .breaking-ticker__item {
    transition: none;
  }
}

body.reduce-motion .breaking-ticker__track { display: none; }
body.reduce-motion .breaking-ticker__static { display: block !important; }
