
:root {
  --graphite: #272928;
  --graphite-2: #343633;
  --ink: #171918;
  --muted: #626862;
  --line: #e8dfcf;
  --warm: #f6f0e4;
  --gold: #f1b52e;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fffaf1;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 241, .92);
  border-bottom: 1px solid rgba(39, 41, 40, .10);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: .08em;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}
.brand span { color: var(--ink); }
.brand em { color: var(--gold); font-style: normal; }
nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}
nav a {
  text-decoration: none;
  font-weight: 850;
  font-size: 14px;
  color: #2c2d2a;
}
.hero {
  position: relative;
  max-width: 1240px;
  min-height: 650px;
  margin: 24px auto;
  border-radius: 34px;
  overflow: hidden;
  background: var(--graphite);
  box-shadow: 0 32px 80px rgba(18, 20, 18, .16);
}
.hero-compact { min-height: 460px; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(.88) contrast(.96);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 15%, rgba(241,181,46,.28), transparent 28%), linear-gradient(0deg, rgba(0,0,0,.32), rgba(0,0,0,.06));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: clamp(36px, 7vw, 86px);
  color: white;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}
h1, h2, h3, p { text-wrap: balance; }
h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .94;
  letter-spacing: -.055em;
}
.hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: rgba(255,255,255,.90);
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 600;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  border-radius: 18px;
  background: var(--gold);
  color: #16140e;
  text-decoration: none;
  font-weight: 950;
  border: 1px solid var(--gold);
}
.btn-outline { background: rgba(255,255,255,.08); color: #fff; }
.strip {
  max-width: 1240px;
  margin: 18px auto 0;
  padding: 0 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.strip div {
  min-height: 128px;
  padding: 22px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
}
.strip b {
  display: block;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 54px);
  line-height: .9;
}
.strip span { display: block; margin-top: 12px; color: var(--muted); font-weight: 800; }
.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 86px) 18px 0;
}
.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}
h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .98;
  letter-spacing: -.045em;
}
.lead {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 650;
}
.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.model-grid.small { grid-template-columns: repeat(3, 1fr); }
.model-card, .note, .offer-box, .market-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(24, 24, 20, .055);
}
.model-card .image-frame {
  display: block;
  aspect-ratio: 1.12 / .82;
  background: var(--graphite);
  border-bottom: 5px solid var(--gold);
  overflow: hidden;
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.model-card div { padding: 22px; }
.model-card h3, .note h3, .offer-box h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.model-card p, .note p, .offer-box p { margin: 0 0 14px; color: var(--muted); font-weight: 650; }
.model-card strong {
  display: block;
  color: var(--ink);
  font-size: 30px;
  letter-spacing: -.04em;
}
.production {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: 26px;
  align-items: start;
}
.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.check-list li {
  padding: 14px 16px;
  border-radius: 17px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
}
.check-list li::before { content: "•"; color: var(--gold); margin-right: 10px; font-size: 24px; line-height: 0; }
.big-photo {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: var(--graphite);
  border: 5px solid var(--gold);
}
.big-photo img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  filter: saturate(.85) contrast(.94);
}
.photo-mosaic {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 230px 230px;
  gap: 12px;
  padding: 12px;
  border-radius: 30px;
  background: var(--graphite);
  border: 5px solid var(--gold);
  overflow: hidden;
}
.photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  filter: saturate(.9) contrast(.96);
}
.photo-mosaic img:first-child {
  grid-row: span 2;
}
.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.market-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}
.market-tabs a {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--graphite);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}
.market-card {
  display: grid;
  gap: 12px;
  min-height: 132px;
  padding: 22px;
  text-decoration: none;
}
.market-card strong { font-size: 22px; line-height: 1.05; }
.market-card span { color: var(--muted); font-weight: 750; }
.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: start;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pill-row span {
  padding: 12px 15px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 900;
}
.offer-box, .note { padding: 26px; }
.offer-box {
  background: var(--graphite);
  color: #fff;
  border-color: rgba(255,255,255,.08);
}
.offer-box p { color: rgba(255,255,255,.82); }
.article { max-width: 920px; }
.article p { font-size: 20px; color: var(--muted); font-weight: 650; }
.cta {
  max-width: 1240px;
  margin: clamp(48px, 7vw, 86px) auto 0;
  padding: clamp(38px, 6vw, 70px);
  border-radius: 34px;
  background: var(--graphite);
  color: white;
}
.cta h2 { max-width: 880px; }
.cta p {
  max-width: 760px;
  color: rgba(255,255,255,.78);
  font-size: 22px;
  font-weight: 650;
}
.footer {
  margin-top: 64px;
  padding: 34px clamp(18px, 4vw, 56px);
  background: #171918;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.footer div { display: grid; gap: 6px; }
.footer span { color: rgba(255,255,255,.68); }
.footer a { color: var(--gold); font-weight: 950; }
@media (max-width: 1050px) {
  .strip, .model-grid, .market-grid { grid-template-columns: repeat(2, 1fr); }
  .production, .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .site-header { align-items: flex-start; flex-direction: column; padding: 13px 16px; }
  nav { gap: 12px; }
  .hero { min-height: 560px; margin: 12px; border-radius: 26px; }
  .hero-compact { min-height: 430px; }
  .hero-content { padding: 34px 22px; }
  h1 { font-size: clamp(42px, 13vw, 62px); }
  .strip, .model-grid, .model-grid.small, .market-grid { grid-template-columns: 1fr; }
  .section { padding-top: 46px; }
  .cta { margin-left: 12px; margin-right: 12px; border-radius: 26px; }
  .footer { align-items: flex-start; flex-direction: column; }
}
