:root {
  --red: #e20d13;
  --red-dark: #a90005;
  --ink: #0b0b0d;
  --ink-soft: #202024;
  --paper: #f4f2ee;
  --white: #ffffff;
  --muted: #6d6d72;
  --line: rgba(11, 11, 13, 0.14);
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --sans: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

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

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

.shell {
  width: min(1380px, calc(100% - 80px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: 82px;
  border-bottom: 1px solid rgba(11, 11, 13, 0.08);
  background: rgba(244, 242, 238, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 165px;
}

.brand-logo {
  width: 130px;
  max-height: 74px;
  object-fit: contain;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--red);
  color: white;
  transform: skewX(-9deg);
  box-shadow: inset -10px 0 0 rgba(0, 0, 0, 0.1);
}

.brand-mark::after {
  position: absolute;
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background: white;
  content: "";
  transform: translateY(1px) rotate(-17deg);
}

.brand-mark span {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
  transform: skewX(9deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 0.86;
  letter-spacing: -0.04em;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 20px;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.35em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--ink);
  color: white;
}

.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  min-height: 820px;
  padding-top: 128px;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 60px 0 42px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  color: #3d3d41;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 34px;
  height: 3px;
  background: var(--red);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.66);
}

.hero h1,
.section-heading h2,
.craft-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(62px, 6.8vw, 116px);
}

.hero h1 em,
.section-heading h2 em,
.craft-copy h2 em,
.contact-copy h2 em {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.06em;
  text-transform: none;
}

.hero-lede {
  max-width: 560px;
  margin: 34px 0 0;
  color: #4f4f53;
  font-size: 18px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 23px;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-red {
  background: var(--red);
  box-shadow: 0 14px 30px rgba(226, 13, 19, 0.2);
  color: white;
}

.button-red:hover,
.button-red:focus-visible {
  background: var(--red-dark);
  box-shadow: 0 18px 36px rgba(169, 0, 5, 0.25);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  padding: 8px 0;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-points {
  display: flex;
  gap: 0;
  margin-top: 66px;
}

.hero-points > div {
  display: flex;
  min-width: 136px;
  flex-direction: column;
  border-left: 1px solid var(--line);
  padding: 0 24px;
}

.hero-points > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-points strong {
  font-family: var(--display);
  font-size: 15px;
  text-transform: uppercase;
}

.hero-points span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  height: 650px;
  align-self: end;
  overflow: hidden;
}

.hero-visual > img {
  position: absolute;
  z-index: 3;
  right: -7%;
  bottom: 35px;
  width: 108%;
  height: 78%;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: normal;
  filter: contrast(1.04) saturate(1.04);
  animation: hero-arrive 850ms cubic-bezier(0.2, 0.78, 0.25, 1) both;
}

.hero-red-disc {
  position: absolute;
  z-index: 1;
  top: 22px;
  right: 5%;
  width: 540px;
  max-width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 40px 90px rgba(226, 13, 19, 0.16);
}

.hero-red-disc::after {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  content: "";
}

.hero-outline-word {
  position: absolute;
  z-index: 2;
  top: 146px;
  right: -20px;
  margin: 0;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(92px, 11vw, 170px);
  letter-spacing: -0.08em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
}

.hero-model-tag {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 44px;
  display: grid;
  width: 205px;
  min-height: 88px;
  padding: 17px 64px 15px 19px;
  background: var(--ink);
  color: white;
}

.hero-model-tag span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-model-tag strong {
  margin-top: 6px;
  font-family: var(--display);
  font-size: 17px;
}

.hero-model-tag button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52px;
  border: 0;
  background: var(--red);
  color: white;
  cursor: pointer;
  font-size: 25px;
  transition: background 180ms ease;
}

.hero-model-tag button:hover,
.hero-model-tag button:focus-visible {
  background: var(--red-dark);
}

.hero-vertical {
  position: absolute;
  z-index: 4;
  top: 90px;
  right: 0;
  color: rgba(11, 11, 13, 0.56);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.24em;
  writing-mode: vertical-rl;
}

.hero-vertical span {
  color: var(--red);
}

.ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding: 16px 0;
  background: var(--red);
  color: white;
  transform: rotate(-1.1deg) scale(1.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  animation: ticker-scroll 25s linear infinite;
}

.ticker span {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.ticker i {
  color: var(--ink);
  font-size: 9px;
}

.models-section {
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  align-items: end;
  gap: 60px;
}

.section-heading h2 {
  font-size: clamp(48px, 6vw, 92px);
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 60px 0 30px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.filter-bar button {
  min-height: 40px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition: border 180ms ease, color 180ms ease, background 180ms ease;
}

.filter-bar button:hover,
.filter-bar button:focus-visible {
  border-color: rgba(11, 11, 13, 0.2);
  color: var(--ink);
}

.filter-bar button.active {
  background: var(--ink);
  color: white;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px 22px;
}

.product-card {
  min-width: 0;
}

.product-image-wrap {
  position: relative;
  height: 395px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 24%, rgba(226, 13, 19, 0.09), transparent 34%),
    #fbfbfa;
}

.product-image-wrap::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}

.product-card:hover .product-image-wrap::after {
  transform: scaleX(1);
}

.product-image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  mix-blend-mode: normal;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.25, 1);
}

.product-card:hover .product-image-wrap > img {
  transform: scale(1.055);
}

.product-number,
.product-label {
  position: absolute;
  z-index: 2;
  top: 18px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-number {
  left: 19px;
  color: #919195;
}

.product-label {
  right: 18px;
  padding: 7px 10px;
  background: var(--red);
  color: white;
}

.image-button {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  background: var(--ink);
  color: white;
  cursor: pointer;
  transition: width 240ms ease, background 180ms ease;
}

.image-button span {
  width: 0;
  overflow: hidden;
  font-size: 9px;
  font-weight: 900;
  opacity: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transition: width 240ms ease, opacity 180ms ease;
}

.image-button b {
  font-size: 17px;
}

.product-card:hover .image-button,
.image-button:focus-visible {
  width: 125px;
  gap: 12px;
  background: var(--red);
}

.product-card:hover .image-button span,
.image-button:focus-visible span {
  width: 66px;
  opacity: 1;
}

.product-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 19px 2px 0;
}

.product-info p {
  margin: 0 0 6px;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.product-info > span {
  padding-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
}

.model-note {
  margin: 36px 0 0;
  color: #88888d;
  font-size: 11px;
}

.craft-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.craft-section::before {
  position: absolute;
  top: -170px;
  right: 8%;
  width: 540px;
  height: 780px;
  background: var(--red);
  content: "";
  opacity: 0.93;
  transform: rotate(28deg);
}

.craft-section::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 47%;
  background: repeating-linear-gradient(135deg, transparent 0 34px, rgba(255, 255, 255, 0.06) 34px 35px);
  content: "";
}

.craft-shell {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 690px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 110px;
  padding-top: 110px;
  padding-bottom: 110px;
}

.craft-copy h2,
.contact-copy h2 {
  max-width: 700px;
  font-size: clamp(48px, 5.6vw, 86px);
}

.craft-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 34px 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.8;
}

.craft-list {
  padding: 0 28px;
  background: rgba(11, 11, 13, 0.38);
  backdrop-filter: blur(8px);
}

.craft-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 30px 0;
}

.craft-list article:last-child {
  border-bottom: 0;
}

.craft-list article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.craft-list h3 {
  margin: 0 0 9px;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.craft-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.gallery-section {
  padding-top: 150px;
  padding-bottom: 150px;
}

.gallery-heading {
  margin-bottom: 62px;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 245px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(226, 13, 19, 0.1), transparent 32%),
    #fbfbfa;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.gallery-item-1 { grid-column: 1 / 8; grid-row: span 2; }
.gallery-item-2 { grid-column: 8 / 13; }
.gallery-item-3 { grid-column: 8 / 13; }
.gallery-item-4 { grid-column: 1 / 5; }
.gallery-item-5 { grid-column: 5 / 9; }
.gallery-item-6 { grid-column: 9 / 13; }
.gallery-item-7 { grid-column: 1 / 7; }
.gallery-item-8 { grid-column: 7 / 13; }

.gallery-item > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  mix-blend-mode: normal;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-item:hover > img,
.gallery-item:focus-visible > img {
  filter: contrast(1.03);
  transform: scale(1.04);
}

.gallery-item > span {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  background: rgba(11, 11, 13, 0.9);
  color: white;
  font-size: 9px;
  text-transform: uppercase;
  transform: translateY(calc(100% + 14px));
  transition: transform 240ms ease;
}

.gallery-item:hover > span,
.gallery-item:focus-visible > span {
  transform: translateY(0);
}

.gallery-item > span b {
  font-size: 11px;
  letter-spacing: 0.04em;
}

.gallery-item > span i {
  color: var(--red);
  font-size: 15px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: white;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 15%, rgba(255, 255, 255, 0.16), transparent 32%), repeating-linear-gradient(115deg, transparent 0 80px, rgba(0, 0, 0, 0.055) 80px 81px);
  content: "";
}

.contact-shell {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 720px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 110px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact-copy h2 em {
  color: var(--ink);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 34px 0 48px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.8;
}

.location-details {
  display: flex;
  align-items: center;
  gap: 15px;
}

.location-details > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  font-size: 25px;
}

.location-details p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.location-details strong {
  font-size: 13px;
  text-transform: uppercase;
}

.location-details small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.contact-email {
  width: fit-content;
  margin-top: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: border-color 180ms ease, opacity 180ms ease;
}

.contact-email:hover,
.contact-email:focus-visible {
  border-color: white;
  opacity: 0.76;
}

.map-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  padding: 14px;
  background: var(--ink);
  box-shadow: 24px 24px 0 rgba(255, 255, 255, 0.13);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  filter: grayscale(0.18) saturate(0.85) contrast(1.04);
}

.map-label {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: flex;
  min-width: 205px;
  flex-direction: column;
  padding: 17px 20px;
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  color: white;
  pointer-events: none;
}

.map-label span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-label strong {
  margin-top: 7px;
  font-family: var(--display);
  font-size: 15px;
  text-transform: uppercase;
}

.site-footer {
  background: var(--ink);
  color: white;
}

.footer-main {
  display: grid;
  min-height: 190px;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 70px;
}

.site-footer .brand-copy small {
  color: var(--red);
}

.site-footer .brand-logo {
  width: 180px;
  max-height: 128px;
}

.footer-main > p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 26px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: white;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  text-transform: uppercase;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: 30px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  animation: modal-fade 180ms ease both;
}

.bike-modal {
  position: relative;
  display: grid;
  width: min(1180px, 100%);
  max-height: min(760px, calc(100vh - 60px));
  grid-template-columns: 1.25fr 0.75fr;
  overflow: auto;
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
  animation: modal-rise 240ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.modal-close {
  position: absolute;
  z-index: 4;
  top: 15px;
  right: 15px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-size: 25px;
}

.modal-media {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
  overflow: hidden;
  background: #fbfbfa;
}

.modal-media > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  mix-blend-mode: normal;
}

.modal-thumbs {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  gap: 8px;
}

.modal-thumbs button {
  width: 76px;
  height: 54px;
  overflow: hidden;
  border: 2px solid transparent;
  background: white;
  cursor: pointer;
  padding: 0;
}

.modal-thumbs button.active {
  border-color: var(--red);
}

.modal-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 58px 48px;
}

.modal-series {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.modal-series span {
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--muted);
}

.modal-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(45px, 5vw, 72px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.modal-copy h3 {
  margin: 24px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-style: italic;
  font-weight: 400;
}

.modal-copy > p:not(.modal-series) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.modal-copy ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}

.modal-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}

.modal-copy li span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(226, 13, 19, 0.1);
  color: var(--red);
  font-size: 10px;
}

.modal-copy > small {
  margin-top: 15px;
  color: #8a8a8f;
  font-size: 9px;
  line-height: 1.5;
}

@keyframes hero-arrive {
  from { opacity: 0; transform: translateX(42px) scale(0.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

@keyframes modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modal-rise {
  from { opacity: 0; transform: translateY(20px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1180px) {
  .shell { width: min(100% - 48px, 1120px); }
  .hero { grid-template-columns: 0.95fr 1.05fr; }
  .hero-visual { height: 590px; }
  .hero h1 { font-size: clamp(58px, 7.4vw, 88px); }
  .product-image-wrap { height: 330px; }
  .craft-shell,
  .contact-shell { gap: 65px; }
  .map-card { height: 470px; }
}

@media (max-width: 920px) {
  .desktop-nav,
  .header-cta { display: none; }
  .mobile-nav { display: block; position: relative; }
  .mobile-nav summary {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--ink);
    cursor: pointer;
    list-style: none;
  }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav summary span { width: 18px; height: 2px; background: var(--ink); }
  .mobile-nav summary span + span { margin-top: -13px; }
  .mobile-nav nav {
    position: absolute;
    top: 52px;
    right: 0;
    display: grid;
    min-width: 210px;
    padding: 12px;
    background: var(--ink);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  }
  .mobile-nav nav a { padding: 14px; color: white; font-size: 12px; font-weight: 800; }
  .hero {
    min-height: auto;
    padding-top: 126px;
    grid-template-columns: 1fr;
  }
  .hero-copy { padding: 40px 0 0; }
  .hero-visual { height: 570px; }
  .hero-red-disc { right: 10%; width: 510px; }
  .hero-visual > img { right: -3%; width: 102%; }
  .hero-outline-word { right: 5%; }
  .hero-vertical { right: 2%; }
  .hero-model-tag { right: 4%; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-image-wrap { height: 350px; }
  .craft-shell,
  .contact-shell { grid-template-columns: 1fr; }
  .craft-shell { gap: 70px; }
  .craft-section::before { right: -25%; }
  .contact-shell { gap: 60px; }
  .map-card { width: min(720px, 100%); }
  .gallery-grid { grid-auto-rows: 220px; }
  .gallery-item { grid-column: span 6 !important; grid-row: auto !important; }
  .gallery-item-1 { grid-column: span 12 !important; grid-row: span 2 !important; }
  .bike-modal { grid-template-columns: 1fr; max-height: calc(100vh - 40px); }
  .modal-media { min-height: 430px; }
  .modal-copy { padding: 50px 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; padding-top: 55px; padding-bottom: 55px; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .shell { width: calc(100% - 32px); }
  .site-header { height: 72px; }
  .brand { min-width: 0; }
  .brand-logo { width: 112px; max-height: 64px; }
  .hero { padding-top: 105px; }
  .hero h1 { font-size: clamp(51px, 15vw, 72px); }
  .hero-lede { margin-top: 26px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-points { margin-top: 46px; }
  .hero-points > div { min-width: 0; flex: 1; padding: 0 12px; }
  .hero-points strong { font-size: 12px; }
  .hero-points span { font-size: 9px; }
  .hero-visual { height: 400px; margin-inline: -16px; }
  .hero-red-disc { top: 34px; right: 8%; width: 330px; }
  .hero-outline-word { top: 122px; right: 4%; font-size: 80px; }
  .hero-visual > img { bottom: 28px; right: -8%; width: 116%; height: 74%; }
  .hero-model-tag { right: 16px; bottom: 16px; width: 190px; }
  .hero-vertical { display: none; }
  .ticker { padding: 13px 0; }
  .models-section,
  .gallery-section { padding-top: 95px; padding-bottom: 95px; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .section-heading h2 { font-size: clamp(48px, 15vw, 70px); }
  .filter-bar { margin-top: 42px; }
  .filter-bar button { padding: 0 12px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-image-wrap { height: 350px; }
  .craft-shell,
  .contact-shell { width: calc(100% - 32px); padding-top: 85px; padding-bottom: 85px; }
  .craft-copy h2,
  .contact-copy h2 { font-size: clamp(47px, 14.5vw, 68px); }
  .craft-section::before { right: -72%; }
  .craft-list { margin-inline: -16px; padding-inline: 22px; }
  .craft-list article { grid-template-columns: 44px 1fr; gap: 18px; }
  .gallery-grid { display: grid; grid-auto-rows: 235px; grid-template-columns: 1fr; }
  .gallery-item { grid-column: 1 !important; grid-row: auto !important; }
  .gallery-item > span { transform: translateY(0); }
  .map-card { height: 360px; margin-inline: -2px; padding: 8px; box-shadow: 11px 11px 0 rgba(255, 255, 255, 0.13); }
  .map-label { right: 20px; bottom: 20px; min-width: 180px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { grid-column: auto; flex-wrap: wrap; }
  .footer-bottom { gap: 20px; }
  .modal-backdrop { align-items: start; padding: 12px; }
  .bike-modal { max-height: none; }
  .modal-media { min-height: 300px; }
  .modal-copy { padding: 42px 25px 34px; }
  .modal-close { top: 10px; right: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
