:root {
  color-scheme: dark;
  --black: #090a0c;
  --panel: #111317;
  --muted: #a8abb2;
  --white: #f6f7f8;
  --orange: #ff7900;
  --orange-soft: #ff9c42;
  --line: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: inherit; }

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.brand img { display: block; width: 154px; height: auto; }

.header-link {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-link span { color: var(--orange); margin-left: 0.35rem; }

.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
  width: min(1160px, calc(100% - 48px));
  min-height: 620px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.hero-text {
  max-width: 510px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding: 15px 19px;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #111;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

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

.hero-art {
  padding: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #17191e, #08090b);
  box-shadow: 18px 18px 0 rgba(255, 121, 0, 0.14);
}

.hero-art img { display: block; width: 100%; height: auto; mix-blend-mode: screen; }

.lineup {
  padding: 96px max(24px, calc((100vw - 1160px) / 2)) 112px;
  background: #0e1013;
}

.section-heading { max-width: 650px; margin-bottom: 42px; }

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.section-heading > p:last-child,
.closing > p:last-child { color: var(--muted); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.product-card-featured { border-color: rgba(255, 121, 0, 0.65); }

.product-size {
  color: var(--orange);
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.product-size span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-label {
  margin-bottom: 10px;
  color: var(--orange-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h3 { margin-bottom: 12px; font-size: 1.6rem; letter-spacing: -0.04em; }

.product-card p:last-child { margin-bottom: 0; color: var(--muted); }

.closing {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 130px 0;
}

.closing h2 { max-width: 700px; }

.site-footer {
  min-height: 80px;
  border-top: 1px solid var(--line);
  color: #737780;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 780px) {
  .site-header, .site-footer, .hero, .closing { width: min(100% - 32px, 560px); }
  .site-header { min-height: 76px; }
  .brand img { width: 126px; }
  .header-link { font-size: 0.68rem; }
  .hero { grid-template-columns: 1fr; gap: 38px; min-height: auto; padding: 72px 0 90px; }
  .hero-art { order: -1; }
  .lineup { padding: 72px 16px 82px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 90px 1fr; gap: 20px; padding: 24px; }
  .product-size { font-size: 3.4rem; }
  .closing { padding: 90px 0; }
  .site-footer { min-height: 96px; }
}
