:root {
  --bg: #08090c;
  --bg2: #0e1015;
  --panel: #12151c;
  --line: #262a33;
  --text: #f3f4f6;
  --muted: #a7acb6;
  --gold: #d39c3f;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  padding-top: 92px;
}
.container { width: min(1120px, 92%); margin: 0 auto; }
.narrow { width: min(760px, 92%); }
.center { text-align: center; }
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 92px;
  background: rgba(8, 9, 12, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-logo {
  width: min(560px, 92vw);
  height: 70px;
  object-fit: contain;
  object-position: left center;
  border: none;
  border-radius: 0;
  background: transparent;
}
.hero {
  position: relative;
  padding: 96px 0 95px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(160deg, rgba(8,9,12,.92), rgba(8,9,12,.68) 48%, rgba(8,9,12,.92)), url("assets/logo-grille.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-logo {
  display: block;
  width: min(760px, 96%);
  margin: 0 0 18px;
  border: 1px solid #3a3f4a;
  border-radius: 10px;
  background: #000;
}
.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--gold);
  font-weight: 700;
  font-size: .78rem;
}
h1 {
  margin: 10px 0 12px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: .96;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.subtitle {
  margin: 0;
  max-width: 760px;
  color: #d4d6db;
  font-size: clamp(1rem, 2.2vw, 1.24rem);
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 10px;
  padding: 12px 18px;
}
.btn-primary { background: var(--gold); color: #111; }
.btn-outline { border: 1px solid #4b5160; color: var(--text); }
.section { padding: 74px 0; border-bottom: 1px solid var(--line); }
.section.alt { background: var(--bg2); }
h2 {
  margin: 0 0 14px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(1.9rem, 3.3vw, 2.7rem);
  text-transform: uppercase;
  letter-spacing: .02em;
}
h3 {
  margin: 0 0 8px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 1.25rem;
}
.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
  background: #6d6d6d;
  border: none;
  border-radius: 14px;
  padding: 20px;
}
#about .split > div {
  color: #111827;
}
#about .split h2 {
  color: #0b0f19;
}
#about .split p {
  color: #111827;
}
.about-art {
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  background: #6d6d6d;
}
.tier-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.tier-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: .9rem;
  color: #c8cbd1;
}
.tier-list li::before {
  content: "✓ ";
  color: #b8860b;
  font-weight: 700;
}
.tier-list li:last-child { border-bottom: none; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.chips span {
  border: 1.5px solid #1f2a6b;
  background: #4a4a4a;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: .84rem;
  font-weight: 600;
  color: #f3f4f6;
  cursor: default;
  user-select: none;
  letter-spacing: .03em;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.muted { color: var(--muted); }
.lower-logo {
  display: block;
  width: min(680px, 100%);
  margin: 24px auto 0;
  border: 1px solid #3a3f4a;
  border-radius: 12px;
  background: #111;
}
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.process > div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.footer {
  padding: 40px 0 60px;
  color: var(--muted);
}
.footer a { color: #f4b450; text-decoration: none; }
.small { font-size: .86rem; }
/* ── Inventory ─────────────────────────────────────────── */
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.inventory-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.inventory-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.inventory-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.inventory-info {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sold-badge {
  display: inline-block;
  background: #8b1a1a;
  color: #fff;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
  padding: 3px 10px;
  border-radius: 4px;
  width: fit-content;
}
.coming-soon-badge {
  display: inline-block;
  background: #1f3a7a;
  color: #fff;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
  padding: 3px 10px;
  border-radius: 4px;
  width: fit-content;
}
.inventory-cta {
  color: var(--muted);
  margin-top: 8px;
}
.inventory-cta a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

/* ── Contact Form ──────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; flex-direction: column; gap: 20px; }
.form-row.two-col { flex-direction: row; }
.form-group { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color .15s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555b6a; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  align-self: flex-start;
  padding: 14px 32px;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
}
.hidden { display: none; }

/* ── Success Page ───────────────────────────────────────── */
.success-wrap {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .form-row.two-col { flex-direction: column; }
}
