:root {
  --bg: #050505;
  --panel: #0b0b0b;
  --panel-2: #111;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f3f3f3;
  --muted: #a8a8a8;
  --red: #ff1f2d;
  --red-2: #ff4a18;
  --red-glow: rgba(255, 31, 45, .7);
  --wood: #c99a5e;
  --brass: #b49156;
  --leather: #3a211b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.site-shell { min-height: 100vh; overflow: hidden; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 66px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 28px;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; }
.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  background: #000;
  border: 1px solid rgba(255,255,255,.08);
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 36px;
}
.nav-links a, .footer a {
  color: #bcbcbc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  transition: color .2s ease, text-shadow .2s ease;
}
.nav-links a.is-active, .nav-links a:hover {
  color: var(--red);
  text-shadow: 0 0 18px var(--red-glow), 0 0 34px rgba(255, 74, 24, .35);
}
.nav-actions { display: flex; align-items: center; gap: 16px; }
.icon-link, .ghost-small {
  width: 44px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: #ddd;
  background: transparent;
}
.icon-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.ghost-small {
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 30px;
  border: 1px solid rgba(255, 31, 45, .55);
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 1px;
  box-shadow: 0 18px 42px rgba(255, 31, 45, .34), 0 0 28px rgba(255, 74, 24, .18);
  transition: transform .2s ease, filter .2s ease;
  cursor: pointer;
  font-family: inherit;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.button.secondary {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line);
  box-shadow: none;
}
.button-small { min-height: 32px; padding: 0 22px; }
.view { display: none; }
.view.is-active { display: block; }

.hero {
  position: relative;
  min-height: calc(100vh - 66px);
  display: flex;
  align-items: center;
  padding: 80px 28px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}
.shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 42%, rgba(255,31,45,.2), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.76) 42%, rgba(0,0,0,.48)),
    linear-gradient(0deg, #050505 0, transparent 24%);
}
.hero-content {
  position: relative;
  width: min(560px, 100%);
  margin-top: 80px;
}
.logo-card {
  width: 225px;
  aspect-ratio: 1.25;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  gap: 8px;
  padding: 26px 18px 18px;
  background: #000;
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  margin-bottom: 36px;
}
.image-logo {
  width: 225px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  padding: 0;
}
.logo-card .logo-car {
  width: 112px;
  height: 42px;
  top: 48px;
  border-width: 2px;
}
.logo-card .logo-car::before { height: 2px; top: 26px; }
.logo-card strong { font-size: 30px; letter-spacing: 2px; }
.logo-card small { color: #aaa; font-size: 7px; letter-spacing: 1px; }
.compact {
  width: 90px;
  margin: 0 0 18px;
  padding: 12px;
}
.compact .logo-car { width: 45px; height: 18px; top: 22px; }
.compact .logo-car::before { top: 11px; }
.compact strong { font-size: 12px; }
.compact small { display: none; }
.compact-logo {
  width: 92px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.08);
  background: #000;
  margin-bottom: 18px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--red);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 5px;
}
.eyebrow span { width: 48px; height: 1px; background: var(--red); }
h1, h2, h3, p { margin: 0; }
h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: .9;
  font-weight: 900;
  margin: 22px 0 24px;
}
h1 span, h2 span { color: var(--red); }
h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.03;
  font-weight: 900;
}
.laser-title {
  line-height: 1.12;
}
.laser-title span {
  display: inline-block;
  margin-top: 10px;
}
.lead, .page-head p, .story p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.button-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

.band, .story, .page-head, .gallery, .feature-grid, .timeline, .contact-grid, .cta {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}
.band { padding: 100px 0; }
.section-title { margin-bottom: 50px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-grid article, .stack article, .timeline article, .contact-card, .how {
  background: linear-gradient(180deg, #111, #080808);
  border: 1px solid var(--line);
  padding: 30px;
  min-height: 190px;
  transition: border-color .2s ease, transform .2s ease;
}
.feature-grid article:hover, .contact-card:hover { transform: translateY(-4px); border-color: rgba(255,31,45,.72); }
.feature-grid b, .timeline b {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 4px;
}
h3 {
  margin: 18px 0 12px;
  font-size: 19px;
  font-weight: 900;
}
article p, .contact-card span, .how li, .footer p {
  color: var(--muted);
  line-height: 1.7;
}
.split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  margin-top: 28px;
}
.product-frame {
  min-height: 620px;
  border: 1px solid rgba(255,31,45,.68);
  overflow: hidden;
}
.product-frame img { width: 100%; height: 100%; object-fit: cover; }
.stack { display: grid; gap: 16px; }
.stack article { min-height: auto; }

.story {
  padding: 100px 0 120px;
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 60px;
  align-items: center;
}
.story p { margin-top: 26px; }
.marquee {
  border-block: 1px solid var(--line);
  padding: 36px 0;
  color: #ddd;
  font-weight: 900;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 5px;
}

.page-head {
  padding: 100px 0 64px;
}
.page-head h1 { margin-bottom: 28px; }
.page-head p { max-width: 720px; }
.gallery-hero {
  border: 1px solid rgba(255,31,45,.68);
  max-height: 720px;
  overflow: hidden;
}
.gallery-hero img { width: 100%; height: 100%; object-fit: cover; }
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.image-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #0b0b0b;
}
.detail-grid { margin-top: 34px; }
.cta {
  margin-top: 70px;
  margin-bottom: 100px;
  padding: 54px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 80% 10%, rgba(255,31,45,.28), transparent 36%), #0b0b0b;
}
.cta h2 { font-size: clamp(32px, 4vw, 56px); }
.cta p { color: var(--muted); max-width: 610px; line-height: 1.7; margin: 18px 0 30px; }

.timeline {
  padding-bottom: 130px;
  display: grid;
  gap: 18px;
}
.timeline article {
  display: grid;
  grid-template-columns: 90px 260px 1fr;
  gap: 28px;
  align-items: start;
  min-height: auto;
}
.timeline h3 { margin: 0; }

.contact-grid {
  padding-bottom: 110px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.contact-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 16px;
  min-height: 270px;
  position: relative;
  align-content: start;
}
.recommended { border-color: rgba(255,31,45,.72); }
.contact-card p {
  color: var(--red);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 3px;
}
.contact-card h3 {
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.05;
  margin: 0;
  overflow-wrap: anywhere;
}
.contact-card small {
  color: #fff;
  font-size: clamp(15px, 1.45vw, 19px);
  font-weight: 800;
  line-height: 1.35;
  opacity: .88;
  overflow-wrap: anywhere;
}
.contact-card span {
  max-width: 96%;
}
.contact-card em {
  color: #fff;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.contact-card b {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: var(--red);
  font-size: 30px;
}
.how { grid-column: 1 / -1; min-height: auto; }
.how ol { margin: 22px 0; padding-left: 22px; }
.how p strong { color: #fff; }

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.order-modal.is-open { display: flex; }
.order-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(10px);
}
.order-panel {
  position: relative;
  width: min(980px, 100%);
  padding: 38px;
  background: #080808;
  border: 1px solid rgba(255,31,45,.68);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
}
.order-panel h2 {
  margin: 18px 0 26px;
  font-size: clamp(30px, 4vw, 54px);
}
.order-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.order-options .contact-card {
  min-height: 300px;
}
.order-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: #111;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.footer {
  display: grid;
  grid-template-columns: 1.6fr .7fr 1fr 1.2fr;
  gap: 30px;
  padding: 58px 28px;
  border-top: 1px solid var(--line);
  background: #070707;
}
.footer h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 4px;
}
.footer a { display: block; margin: 12px 0; letter-spacing: 2px; }
.brand-block p { max-width: 380px; }
.copyright {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

@media (max-width: 900px) {
  .nav {
    height: auto;
    grid-template-columns: auto 1fr;
    padding: 14px 18px;
  }
  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    overflow-x: auto;
    justify-content: start;
    gap: 22px;
    padding: 8px 0 2px;
  }
  .nav-actions { justify-content: end; gap: 10px; }
  .icon-link { display: none; }
  .button-small {
    display: inline-flex;
    min-height: 36px;
    padding: 0 14px;
    font-size: 11px;
  }
  .hero { min-height: 760px; padding-inline: 22px; }
  .hero-content { margin-top: 20px; }
  .logo-card, .image-logo { width: 185px; }
  .feature-grid, .split, .story, .image-grid, .contact-grid, .order-options, .footer {
    grid-template-columns: 1fr;
  }
  .timeline article { grid-template-columns: 1fr; }
  .product-frame { min-height: 420px; }
  .band, .story, .page-head, .gallery, .feature-grid, .timeline, .contact-grid, .cta {
    width: min(100% - 32px, 1220px);
  }
  .cta { padding: 34px 22px; }
}

@media (max-width: 560px) {
  .nav-links a { font-size: 11px; letter-spacing: 2px; }
  .hero { align-items: end; }
  .logo-card, .image-logo { width: 150px; margin-bottom: 24px; }
  .logo-card strong { font-size: 20px; }
  .button { width: 100%; padding-inline: 16px; }
  .eyebrow { font-size: 10px; letter-spacing: 3px; }
  .lead, .page-head p, .story p { font-size: 15px; }
  .feature-grid article, .stack article, .timeline article, .contact-card, .how { padding: 22px; }
  .order-panel { padding: 28px 18px; }
}
