:root {
  --bg: #0a0a0b;
  --bg-2: #121215;
  --fg: #f4f4f5;
  --muted: #9a9aa3;
  --accent: #e10600;
  --line: #26262b;
  --display: "Rajdhani", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  background: rgba(10,10,11,.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 20px;
  text-transform: uppercase;
}
.brand-mark { color: var(--accent); }
.brand-accent { color: var(--muted); font-weight: 500; }
.nav nav { display: flex; gap: 24px; }
.nav nav a {
  font-size: 14px; font-weight: 600;
  color: var(--muted);
  transition: color .15s;
}
.nav nav a:hover { color: var(--fg); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: end start;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1a1e, #0a0a0b);
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .55;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,11,.95));
}
.hero-copy {
  position: relative;
  padding: 0 24px 80px;
  max-width: 760px;
}
.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .25em;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 12px;
}
h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.lede {
  margin: 20px 0 28px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 560px;
}
.cta {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  border-radius: 2px;
  transition: transform .15s, background .15s;
}
.cta:hover { background: #ff2020; transform: translateY(-1px); }

/* SECTIONS */
section { padding: 100px 0; }
section h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 56px);
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 28px;
}
.about { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about p { max-width: 780px; color: var(--muted); font-size: 18px; margin-bottom: 18px; }
.about strong { color: var(--fg); }

/* WSBK */
.wsbk { background: var(--bg); border-top: 1px solid var(--line); }
.wsbk .eyebrow { margin-bottom: 12px; }
.wsbk-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.wsbk-grid p { color: var(--muted); font-size: 17px; margin-bottom: 16px; }
.wsbk-grid strong { color: var(--fg); }
.wsbk-photo { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 4px; }
.wsbk-photo img { width: 100%; height: 100%; object-fit: cover; }
.wsbk-stats {
  display: flex; flex-wrap: wrap; gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.wsbk-stats span {
  display: flex; flex-direction: column;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--muted);
}
.wsbk-stats b {
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 700;
}
@media (max-width: 800px) {
  .wsbk-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* GALLERY */
.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 4px;
}
.gallery figure {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
  cursor: zoom-in;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.gallery figure:hover img { transform: scale(1.04); }

/* SPECS */
.specs { background: var(--bg-2); border-top: 1px solid var(--line); }
.specs .eyebrow { margin-bottom: 12px; }
.specs-intro {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 40px;
}
.specs-intro strong { color: var(--fg); }

.spec-table {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.spec-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.spec-row:last-child { border-bottom: none; }
.spec-row > div:first-child { color: var(--muted); }
.spec-row > div:not(:first-child) { font-weight: 500; }

.spec-head {
  background: var(--bg-2);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  padding: 16px 20px;
}
.spec-head > div:not(:first-child) { color: var(--accent); font-weight: 700; }

.spec-section {
  background: linear-gradient(90deg, rgba(225,6,0,.15), transparent 60%);
  padding: 12px 20px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 12px;
  color: var(--fg);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.spec-highlight {
  background: rgba(225,6,0,.06);
}
.spec-highlight > div:first-child { color: var(--fg); font-weight: 600; }

.source { margin-top: 24px; color: var(--muted); font-size: 14px; }
.source a { color: var(--accent); }

@media (max-width: 720px) {
  .spec-row {
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
    padding: 12px 16px;
    font-size: 13px;
  }
  .spec-row > div:first-child {
    grid-column: 1 / -1;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
  }
  .spec-head { grid-template-columns: 1fr 1fr; }
  .spec-head > div:first-child { display: none; }
  .spec-section { padding: 12px 16px; }
}

/* CONTACT */
.contact { text-align: center; border-top: 1px solid var(--line); }
.contact p { color: var(--muted); margin-bottom: 28px; }
.contact .cta { font-size: 18px; padding: 18px 36px; }

/* FOOTER */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 95vw; max-height: 92vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: #fff;
  font-size: 40px; cursor: pointer; line-height: 1;
}

@media (max-width: 640px) {
  .nav nav { gap: 14px; }
  .nav nav a { font-size: 12px; }
  section { padding: 72px 0; }
  .card { padding: 24px; }
}
