/* IGNITE — Molten Luxury */
:root {
  --bg: #0a0908;
  --bg-2: #11100e;
  --bg-3: #17160f;
  --ink: #f4eee4;
  --ink-dim: #8a857a;
  --ink-low: #3b382f;
  --gold: #d4a24c;
  --gold-bright: #f4c77b;
  --gold-deep: #8a6a28;
  --silver: #c9c9cb;
  --silver-bright: #ededed;
  --ember: oklch(0.72 0.17 55);
  --rule: rgba(212, 162, 76, 0.22);
  --rule-strong: rgba(212, 162, 76, 0.5);

  --f-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --f-sans: "Inter Tight", "Inter", -apple-system, system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); font-family: var(--f-sans); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { max-width: 100%; display: block; }

/* texture overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    radial-gradient(1200px 800px at 85% -10%, rgba(212,162,76,0.08), transparent 60%),
    radial-gradient(900px 700px at -10% 100%, rgba(212,162,76,0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.83 0 0 0 0 0.64 0 0 0 0 0.3 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 1;
}

/* Shared */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.no-rule::before { display: none; }

.display {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.display i, .display em { font-style: italic; color: var(--gold-bright); font-weight: 400; }

.rule { height: 1px; background: var(--rule); width: 100%; }
.rule-gold { height: 1px; background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent); }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(1.2);
  background: rgba(10,9,8,0.55);
  border-bottom: 1px solid rgba(212,162,76,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  max-width: 1600px;
  margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--silver-bright);
}
.brand .mark { width: 22px; height: 22px; }
.brand-logo {
  height: 38px; width: auto;
  filter: contrast(1.05) saturate(1.05);
}

/* Hero logo — centerpiece */
.hero-logo-stage {
  margin: 60px auto 20px;
  max-width: 1100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-stage::before,
.hero-logo-stage::after {
  content: "";
  position: absolute;
  top: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule-strong), transparent);
  width: 30%;
}
.hero-logo-stage::before { left: 0; }
.hero-logo-stage::after { right: 0; }
.hero-logo {
  width: 100%;
  max-width: 780px;
  height: auto;
  filter: drop-shadow(0 0 60px rgba(212,162,76,0.3));
  transition: filter 0.5s;
}
.hero-logo:hover {
  filter: drop-shadow(0 0 100px rgba(244,199,123,0.55));
}

.footer-logo {
  height: 26px; width: auto;
  opacity: 0.95;
}

@media (max-width: 900px) {
  .hero-logo-stage::before, .hero-logo-stage::after { display: none; }
}
.nav-links { display: flex; gap: 30px; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-dim); position: relative; }
.nav-links a { transition: color 0.25s; position: relative; padding: 6px 2px; }
.nav-links a:hover { color: var(--gold); }
.nav-links a.is-active { color: var(--ink); }
.nav-links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  animation: navGlow 2.4s ease-in-out infinite;
}
@keyframes navGlow { 0%,100%{opacity:.6} 50%{opacity:1} }

/* scroll-progress bar */
.nav-progress {
  position: absolute; left: 0; bottom: 0; height: 1px; width: 0%;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  box-shadow: 0 0 8px rgba(212,162,76,0.6);
  transition: width 0.08s linear;
}

/* section rail — left edge dots */
.section-rail {
  position: fixed; left: 28px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 18px; z-index: 80;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em;
}
.section-rail a {
  display: flex; align-items: center; gap: 14px; color: var(--ink-dim);
  text-transform: uppercase; transition: color 0.25s;
}
.section-rail .rail-dot {
  width: 8px; height: 8px; border: 1px solid var(--ink-dim); transform: rotate(45deg);
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
}
.section-rail .rail-label {
  opacity: 0; transform: translateX(-6px); transition: all 0.3s; white-space: nowrap;
}
.section-rail a:hover .rail-label { opacity: 1; transform: translateX(0); }
.section-rail a:hover { color: var(--gold); }
.section-rail a:hover .rail-dot { border-color: var(--gold); }
.section-rail a.is-active .rail-dot { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 12px rgba(212,162,76,0.7); }
.section-rail a.is-active { color: var(--ink); }
.section-rail a.is-active .rail-label { opacity: 1; transform: translateX(0); }
@media (max-width: 1100px) { .section-rail { display: none; } }
.nav-cta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }
@media (max-width: 900px) { .nav-links { display: none; } .nav-inner { padding: 14px 20px; } }

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  padding-top: 60px;
}
.hero-meta { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim); display: flex; flex-direction: column; gap: 14px; }
.hero-meta .row { display: flex; justify-content: space-between; border-top: 1px solid var(--rule); padding-top: 12px; }
.hero-meta .row span:last-child { color: var(--ink); }

.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(44px, 7vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: var(--silver-bright);
}
.hero-headline .amp {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 300;
}
.hero-headline .thin { font-weight: 300; color: var(--ink); }

.hero-sub {
  max-width: 440px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-dim);
}
.hero-sub strong { color: var(--ink); font-weight: 500; }

.hero-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.btn {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 24px;
  border: 1px solid var(--gold);
  color: var(--bg);
  background: var(--gold);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--rule-strong); }
.btn.ghost:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(212,162,76,0.05); }
.btn .arr { display: inline-block; transition: transform 0.2s; }
.btn:hover .arr { transform: translateX(3px); }

/* Hero marquee of artists at bottom */
.hero-ticker {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  margin-top: 80px;
  overflow: hidden;
  position: relative;
}
.hero-ticker-label {
  position: absolute; left: 48px; top: 50%; transform: translateY(-50%);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  background: var(--bg); padding-right: 16px; z-index: 2;
}
.ticker-track {
  display: flex;
  gap: 56px;
  animation: ticker 70s linear infinite;
  font-family: var(--f-display);
  font-size: 22px;
  font-style: italic;
  color: var(--silver-bright);
  white-space: nowrap;
  padding-left: 180px;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 56px; }
.ticker-track span::after {
  content: "✦"; color: var(--gold); font-style: normal; font-size: 14px;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-ticker-label { left: 20px; }
  .ticker-track { padding-left: 140px; }
}

/* SECTION GENERIC */
.section {
  padding: 140px 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: baseline;
  margin-bottom: 80px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--silver-bright);
}
.section-head h2 i { color: var(--gold-bright); font-weight: 400; }
.section-head .lede { font-size: 17px; line-height: 1.6; color: var(--ink-dim); max-width: 520px; }
.section-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
@media (max-width: 900px) { .section-head { grid-template-columns: 1fr; gap: 20px; } .section { padding: 80px 0; } }

/* MANIFESTO */
.manifesto {
  padding: 120px 0 140px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.manifesto-text {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.15;
  font-weight: 400;
  color: var(--ink);
  max-width: 1100px;
  letter-spacing: -0.015em;
}
.manifesto-text i { color: var(--gold-bright); font-weight: 400; }
.manifesto-text .dim { color: var(--ink-dim); }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.service {
  grid-column: span 2;
  padding: 40px 32px 48px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: background 0.3s;
  cursor: default;
}
.service:hover { background: rgba(212,162,76,0.04); }
.service:hover .service-num { color: var(--gold-bright); }
.service-head { display: flex; justify-content: space-between; align-items: flex-start; }
.service-num { font-family: var(--f-mono); font-size: 11px; color: var(--ink-dim); letter-spacing: 0.15em; transition: color 0.3s; }
.service-icon { width: 32px; height: 32px; color: var(--gold); }
.service h3 {
  font-family: var(--f-display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  margin-top: 80px;
  letter-spacing: -0.01em;
  color: var(--silver-bright);
}
.service h3 i { font-weight: 400; color: var(--gold-bright); }
.service p { margin-top: 16px; font-size: 14px; line-height: 1.55; color: var(--ink-dim); }
.service.wide { grid-column: span 3; }
.service.span-6 { grid-column: span 6; }
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service, .service.wide, .service.span-6 { grid-column: span 1; }
}

/* STATS */
.stats {
  padding: 100px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: radial-gradient(1000px 400px at 50% 50%, rgba(212,162,76,0.05), transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat { padding: 20px 32px; border-left: 1px solid var(--rule); }
.stat:first-child { border-left: 0; }
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(52px, 6vw, 96px);
  line-height: 1;
  font-weight: 400;
  color: var(--gold-bright);
  letter-spacing: -0.02em;
}
.stat-num .unit { font-size: 0.45em; color: var(--silver); margin-left: 4px; vertical-align: top; display: inline-block; margin-top: 0.3em; }
.stat-label {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim); margin-top: 16px;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; } .stat { border-left: 0; padding: 20px; border-top: 1px solid var(--rule); } }

/* ARTIST WALL */
.artist-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-family: var(--f-display);
  font-size: clamp(28px, 3.6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--silver);
  padding: 20px 0 40px;
}
.artist-wall .name {
  cursor: default;
  transition: color 0.2s;
  white-space: nowrap;
}
.artist-wall .name:hover { color: var(--gold-bright); font-style: italic; }
.artist-wall .sep { color: var(--gold); font-size: 0.5em; align-self: center; }
.artist-wall .more {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--ink-dim);
  letter-spacing: 0.15em;
  align-self: center;
  text-transform: uppercase;
  border: 1px solid var(--rule);
  padding: 6px 14px;
  border-radius: 999px;
}
.disclaimer { font-family: var(--f-mono); font-size: 11px; color: var(--ink-dim); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 32px; }

/* ROSTER */
.roster {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.roster-card {
  padding: 32px 24px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px;
  align-items: center;
  transition: background 0.2s;
}
.roster-card:nth-child(even) { border-right: 0; }
.roster-card:hover { background: rgba(212,162,76,0.04); }
.roster-num { font-family: var(--f-mono); font-size: 11px; color: var(--gold); letter-spacing: 0.15em; }
.roster-name { font-family: var(--f-display); font-size: 34px; font-weight: 500; color: var(--silver-bright); letter-spacing: -0.01em; }
.roster-role { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-dim); }
@media (max-width: 720px) { .roster { grid-template-columns: 1fr; } .roster-card { border-right: 0; } .roster-name { font-size: 26px; } }

/* FOUNDER */
.founder {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.founder-portrait {
  aspect-ratio: 1 / 1;
  background: var(--bg-2);
  border: 1px solid var(--rule-strong);
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(212,162,76,0.2), 0 40px 80px rgba(0,0,0,0.5), 0 0 100px rgba(212,162,76,0.15);
  max-width: 440px;
  margin: 0 auto;
}
.founder-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  filter: saturate(0.85) contrast(1.05);
}
.founder-portrait .placeholder {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(212,162,76,0.08) 0px, rgba(212,162,76,0.08) 2px, transparent 2px, transparent 10px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim);
}
.founder-portrait .caption {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-bright); z-index: 2;
  display: flex; gap: 14px;
  background: rgba(10,9,8,0.75);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(212,162,76,0.3);
  white-space: nowrap;
}
.founder-body h3 {
  font-family: var(--f-display);
  font-size: clamp(44px, 5vw, 84px);
  line-height: 0.95;
  font-weight: 500;
  color: var(--silver-bright);
  letter-spacing: -0.02em;
}
.founder-body h3 i { color: var(--gold-bright); font-weight: 400; }
.founder-title { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 14px; }
.founder-quote {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.3;
  font-style: italic;
  color: var(--ink);
  margin-top: 40px;
  padding-left: 24px;
  border-left: 1px solid var(--gold);
}
.founder-bio {
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-dim);
  max-width: 540px;
}
.founder-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: 40px; border-top: 1px solid var(--rule);
}
.founder-facts .fact {
  padding: 16px 0; border-bottom: 1px solid var(--rule);
  display: flex; justify-content: space-between; gap: 20px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim);
}
.founder-facts .fact:nth-child(odd) { padding-right: 20px; border-right: 1px solid var(--rule); }
.founder-facts .fact:nth-child(even) { padding-left: 20px; }
.founder-facts .fact b { color: var(--ink); font-weight: 500; }
@media (max-width: 900px) { .founder { grid-template-columns: 1fr; gap: 40px; } }

/* Resume callout */
.resume-card {
  margin-top: 44px;
  border: 1px solid var(--rule);
  background: linear-gradient(140deg, rgba(212,162,76,0.04), rgba(212,162,76,0) 55%), rgba(255,255,255,0.015);
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
}
.resume-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(212,162,76,0.12), transparent 50%);
  pointer-events: none;
}
.resume-label {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.resume-label::before {
  content: ""; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(212,162,76,0.8);
}
.resume-headline {
  font-family: var(--f-serif); font-size: 54px; line-height: 0.95; letter-spacing: -0.02em;
  color: var(--ink); display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap;
}
.resume-headline .num {
  font-size: 96px; font-weight: 500;
  background: linear-gradient(180deg, #f6e5b6 0%, #d4a24c 50%, #8b6522 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.04em;
}
.resume-headline i { font-weight: 400; color: var(--ink-dim); }
.resume-body {
  margin-top: 18px; font-family: var(--f-sans); font-size: 14px; line-height: 1.6;
  color: var(--ink-dim); max-width: 520px;
}
.resume-marquee {
  margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--rule);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-dim);
  display: flex; flex-wrap: wrap; gap: 10px 22px;
}
.resume-marquee span { white-space: nowrap; }
.resume-marquee span b { color: var(--gold); font-weight: 500; }
@media (max-width: 700px) {
  .resume-card { padding: 24px 22px; }
  .resume-headline { font-size: 36px; }
  .resume-headline .num { font-size: 64px; }
}

/* PILLARS (three pitches) */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.pillars.pillars-2 { grid-template-columns: repeat(2, 1fr); }
.pillar {
  padding: 40px 32px 48px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  min-height: 560px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pillar-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.pillar h3 {
  font-family: var(--f-display);
  font-size: 48px;
  line-height: 0.95;
  font-weight: 500;
  margin-top: 60px;
  color: var(--silver-bright);
  letter-spacing: -0.02em;
}
.pillar h3 i { color: var(--gold-bright); font-weight: 400; }
.pillar p { margin-top: 20px; font-size: 15px; line-height: 1.6; color: var(--ink-dim); }
.pillar ul { list-style: none; margin-top: 28px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.pillar li {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
}
.pillar li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 8px; height: 8px;
  background: var(--gold); transform: rotate(45deg);
}
.pillar-cta {
  margin-top: auto; padding-top: 32px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-bright);
  display: inline-flex; align-items: center; gap: 10px;
  transition: gap 0.2s;
}
.pillar-cta:hover { gap: 18px; }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }

/* CONTACT */
.contact {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--bg) 0%, #060504 100%);
  border-top: 1px solid var(--rule);
  position: relative;
}
.contact-huge {
  font-family: var(--f-display);
  font-size: clamp(64px, 13vw, 220px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: var(--silver-bright);
}
.contact-huge i { color: var(--gold-bright); font-weight: 400; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 80px; align-items: end; padding-bottom: 60px; border-bottom: 1px solid var(--rule); }
.contact-form { display: flex; flex-direction: column; gap: 20px; max-width: 520px; }
.contact-form label { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.contact-form .field { display: flex; flex-direction: column; gap: 8px; }
.contact-form input, .contact-form select, .contact-form textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--rule);
  color: var(--ink); padding: 10px 0; font: inherit; font-size: 18px;
  font-family: var(--f-display); font-weight: 400;
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-bottom-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 80px; }
.contact-form option { background: var(--bg); }
.contact-info { display: flex; flex-direction: column; gap: 20px; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-dim); }
.contact-info a { color: var(--ink); transition: color 0.2s; }
.contact-info a:hover { color: var(--gold-bright); }
.contact-info .label { font-size: 10px; color: var(--gold); letter-spacing: 0.2em; display: block; margin-bottom: 6px; }

.footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 40px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-dim);
  flex-wrap: wrap; gap: 20px;
}
.footer .colo { color: var(--gold); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* SIGNAL dots */
.signal {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-bright); box-shadow: 0 0 0 0 rgba(244,199,123,0.6);
  animation: pulse 2s infinite;
  vertical-align: middle;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(244,199,123,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(244,199,123,0); }
  100% { box-shadow: 0 0 0 0 rgba(244,199,123,0); }
}

/* FLAME MOTIF — the only hand-drawn SVG */
.flame-svg { width: 28px; height: 28px; color: var(--gold); }

/* Tweaks panel */
.tweaks-panel {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 280px;
  background: rgba(15,14,12,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gold);
  padding: 20px;
  z-index: 100;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink);
  letter-spacing: 0.1em;
}
.tweaks-panel h4 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold-bright);
  margin-bottom: 4px;
  letter-spacing: 0;
  text-transform: none;
}
.tweaks-panel .sub { color: var(--ink-dim); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px; }
.tweaks-row { margin-bottom: 14px; }
.tweaks-row label { display: block; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.tweaks-row .options { display: flex; gap: 6px; flex-wrap: wrap; }
.tweaks-row .opt {
  flex: 1; min-width: 60px;
  padding: 8px 10px; font-size: 10px;
  border: 1px solid var(--rule); color: var(--ink-dim);
  background: transparent; cursor: pointer; text-transform: uppercase; letter-spacing: 0.15em;
  transition: all 0.2s;
}
.tweaks-row .opt.active { border-color: var(--gold); color: var(--gold-bright); background: rgba(212,162,76,0.1); }
.tweaks-row .opt:hover { color: var(--ink); }

/* Theme variants */
body.theme-platinum {
  --bg: #ededeb;
  --bg-2: #e2e0dc;
  --ink: #0a0908;
  --ink-dim: #57544c;
  --silver-bright: #0a0908;
  --silver: #2a2824;
  --rule: rgba(138,106,40,0.25);
}
body.theme-platinum::after { opacity: 0.3; mix-blend-mode: multiply; }
/* Processed PNG has transparency — light theme needs a subtle dark scrim
   behind it so the silver type still reads */
body.theme-platinum .hero-logo {
  background: radial-gradient(ellipse at center, rgba(10,9,8,0.85), rgba(10,9,8,0.55) 60%, transparent 80%);
  padding: 40px;
  border-radius: 8px;
}
body.theme-platinum .brand-logo,
body.theme-platinum .footer-logo {
  background: rgba(10,9,8,0.9); padding: 4px 8px; border-radius: 4px;
}

body.theme-ember {
  --bg: #1a0e08;
  --bg-2: #241309;
  --gold: #f4c77b;
  --gold-bright: #ffd89a;
}
