:root {
  --bg: #070706;
  --bg-2: #11100e;
  --ink: #f4efe6;
  --muted: #b5aa9a;
  --dim: #6f675c;
  --line: rgba(244, 239, 230, 0.12);
  --gold: #e8c39a;
  --gold-2: #c4925a;
  --sans: "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --ui: "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ui);
  line-height: 1.55;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 1.4rem 0;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-bar.scrolled {
  position: fixed;
  background: rgba(7, 7, 6, 0.58);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mark {
  font-family: var(--sans);
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  text-transform: uppercase;
  text-decoration: none;
}
.mark span { color: var(--gold); }

.who {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.who-in, .who-up {
  text-decoration: none;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
}
.who-in { color: rgba(244, 239, 230, 0.62); }
.who-in:hover { color: var(--ink); }
.who-up { color: var(--gold); }
.who-up:hover { color: var(--ink); }
.who-more {
  text-decoration: none;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--gold);
}
.who-more:hover { color: var(--ink); }
.who-acct {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
  max-width: 14rem;
}
.who-face {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  background: #1a1814;
  box-shadow: 0 0 0 1px rgba(244, 239, 230, 0.18);
}
.who-face b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--gold);
}
.who-face img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.who-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.who-own {
  text-decoration: none;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.62rem;
  padding-left: 0.75rem;
  border-left: 1px solid var(--line);
}
.who-own:hover { color: var(--ink); }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: end start;
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,6,0.15) 0%, rgba(7,7,6,0.18) 40%, rgba(7,7,6,0.88) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 0 4.5rem;
  max-width: 34rem;
}
.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.8rem;
}
.hero h1 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.lede {
  color: var(--muted);
  max-width: 36ch;
  margin: 0 0 1.6rem;
  font-size: 1.05rem;
}
.actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--line);
}
.btn.solid {
  background: var(--ink);
  color: #111;
  border-color: var(--ink);
}
.btn.ghost { color: var(--ink); }
.btn:hover { transform: translateY(-1px); }

section { padding: 5rem 0; }
.section-h {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 2rem;
  max-width: 46rem;
}
.section-h h2 {
  font-family: var(--sans);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}
.section-h p { margin: 0; color: var(--muted); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem 1.3rem 1.4rem;
}
.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-family: var(--sans);
}
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.card .n {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: stretch;
}
.photo {
  border-radius: 22px;
  overflow: hidden;
  min-height: 360px;
  background: #1a1814;
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.panel {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.6rem 1.5rem;
}
.panel h2 {
  font-family: var(--sans);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  margin: 0 0 0.7rem;
}
.panel p { color: var(--muted); margin: 0 0 1rem; }
.list { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.list li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.95rem;
}
.list li span { color: var(--dim); display: block; font-size: 0.82rem; }

.truth {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.stat {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}
.stat b {
  display: block;
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 500;
}
.stat span { color: var(--dim); font-size: 0.82rem; }

.foot {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 2.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--dim);
  font-size: 0.82rem;
}
.foot a { color: var(--muted); text-decoration: none; }
.foot a:hover { color: var(--ink); }

.rack {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.rack-empty { color: var(--dim); margin: 0; }
.rack-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.rack-card img, .rack-card .ph {
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
  background: #141210;
}
.rack-card .ph {
  display: grid;
  place-items: center;
  color: var(--dim);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rack-card .body { padding: 0.8rem 0.9rem 1rem; }
.rack-card strong { display: block; font-weight: 600; }
.rack-card span { color: var(--muted); font-size: 0.82rem; }
.rack-card:hover { border-color: var(--gold); }

@media (max-width: 860px) {
  .grid-3, .split, .truth { grid-template-columns: 1fr; }
  .hero { min-height: 86vh; }
  .foot { flex-direction: column; }
}
