:root {
  --bg: #141210;
  --surface: #1e1b17;
  --raised: #26221c;
  --fg: #f0e8d8;
  --muted: #b4aa9a;
  --subtle: #8a8276;
  --gold: #c4a35a;
  --gold-bright: #d4b978;
  --gold-fg: #141210;
  --silver: #c5c7cc;
  --line: rgba(196, 163, 90, 0.35);
  --border: rgba(240, 232, 216, 0.12);
  --paper: #f4eee2;
  --paper-fg: #100e0b;
  --paper-muted: #1c1814;
  --paper-card: #fffdf8;
  --paper-raised: #e6dcc8;
  --paper-border: rgba(28, 24, 18, 0.12);
  --display: "Cinzel", Georgia, serif;
  --sans: "Source Sans 3", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, [role="button"] { cursor: pointer; font-family: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; text-wrap: balance; letter-spacing: -0.02em; }
p { text-wrap: pretty; }
::selection { background: var(--gold); color: var(--gold-fg); }

.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 50;
  background: var(--gold);
  color: var(--gold-fg);
  padding: 8px 16px;
}

.wrap { max-width: 72rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .wrap { padding: 0 2rem; } }

header.site {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--border);
  background: rgba(20, 18, 16, 0.92);
  backdrop-filter: blur(12px);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4.5rem;
}
.wordmark { display: flex; align-items: center; gap: 0.75rem; }
.wordmark img { height: 3.25rem; width: auto; }
.wordmark strong {
  display: block;
  font-family: var(--display);
  font-size: 1.125rem;
  color: var(--silver);
  letter-spacing: 0.2em;
}
.wordmark small {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.links { display: none; gap: 2rem; }
.links a { font-size: 0.875rem; color: var(--muted); }
.links a:hover { color: var(--fg); }
.desktop-cta { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 0;
  background: var(--gold);
  color: var(--gold-fg);
  transition: background 150ms ease, transform 150ms ease;
}
.btn:hover { background: var(--gold-bright); }
.btn:active { transform: scale(0.96); }
.btn-lg { height: 3rem; padding: 0 2rem; font-size: 1rem; }
.btn-outline {
  background: rgba(20, 18, 16, 0.4);
  color: var(--gold-bright);
  border: 1px solid rgba(212, 185, 120, 0.85);
  font-weight: 600;
}
.btn-outline:hover {
  background: rgba(196, 163, 90, 0.18);
  color: var(--fg);
}
.btn-wide { width: 100%; }
@media (min-width: 640px) { .btn-wide { width: auto; } }

.icon-btn {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196,163,90,0.5);
  background: transparent;
  color: var(--gold);
  border-radius: 0.625rem;
}
@media (min-width: 768px) {
  .links, .desktop-cta { display: flex; }
  .icon-btn { display: none; }
}

.sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
}
.sheet.open { display: block; }
.sheet-bg {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.8);
}
.sheet-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(18rem, 100%);
  background: var(--surface);
  border-left: 1px solid var(--line);
  padding: 1.5rem;
}
.sheet-panel h2 { margin: 0 2rem 0 0; font-size: 1.125rem; }
.sheet-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
}
.sheet nav { display: flex; flex-direction: column; gap: 0.25rem; margin-top: 2rem; }
.sheet nav a {
  padding: 0.75rem 0.75rem;
  border-radius: 0.625rem;
  font-size: 1rem;
}
.sheet nav a:hover { background: rgba(237,230,214,0.05); }
.sheet .btn { margin-top: 1rem; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero { text-align: center; padding: 1.5rem 0 11rem; }
.hero-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-open {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 42rem;
  margin: 0.75rem auto 0;
}
.logo-open img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  background: transparent;
}
.hero h1 { font-size: 2.25rem; margin: 2rem 0 0; }
.lead { max-width: 42rem; margin: 1rem auto 0; color: var(--muted); font-size: 1.05rem; }
.cta-row {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.begin {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--subtle);
}
@media (min-width: 640px) {
  .cta-row { flex-direction: row; justify-content: center; }
}
@media (min-width: 768px) {
  .hero { padding: 2rem 0 14rem; }
  .hero h1 { font-size: 3rem; }
}

.band-paper {
  background: var(--paper);
  color: var(--paper-fg);
}
.band-paper .section-head p { color: var(--paper-muted); }
.band-paper .card {
  background: var(--paper-card);
  border-color: var(--paper-border);
}
.band-paper .card p { color: var(--paper-muted); }
.band-paper .card h3 { color: var(--paper-fg); }
.band-paper aside.profile {
  background: var(--paper-card);
  border-color: var(--paper-border);
}
.band-paper .story,
.band-paper .row dt,
.band-paper .meta { color: var(--paper-muted); }
.band-paper .lead { color: var(--paper-fg); }

.caps {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  padding: 1.25rem;
}
.caps span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

section { padding: 5rem 0; }
.section-head h2 { font-size: 2.25rem; margin: 0.75rem 0 0; }
.section-head p { max-width: 42rem; color: var(--muted); font-size: 1.125rem; }
@media (min-width: 768px) {
  .section-head h2 { font-size: 3rem; }
}

.grid-2 { display: grid; gap: 1rem; margin-top: 3rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) { .card { padding: 2rem; } }
.num { font-family: var(--display); color: var(--gold); letter-spacing: 0.2em; }
.card h3 { margin: 1rem 0 0; font-size: 1.5rem; }
.card p { color: var(--muted); }
.kicker {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.meta { margin-top: auto; padding-top: 1.5rem; font-size: 0.75rem; color: var(--subtle); }

.path { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.path-grid { display: grid; gap: 0; margin-top: 3rem; }
.path-grid li {
  list-style: none;
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}
.path-grid { padding: 0; margin-left: 0; }
.path-grid h3 { margin: 1rem 0 0.5rem; font-size: 1.25rem; }
.path-grid p { margin: 0; color: var(--muted); font-size: 0.9rem; }
@media (min-width: 768px) {
  .path-grid { grid-template-columns: repeat(5, 1fr); }
  .path-grid li {
    border-top: 0;
    border-left: 1px solid var(--border);
    padding: 0 1.25rem;
  }
  .path-grid li:first-child { border-left: 0; padding-left: 0; }
}

.founder { display: grid; gap: 3rem; align-items: center; }
.founder .lead {
  margin-left: 0;
  text-align: left;
  color: var(--paper-fg);
  font-size: 1.25rem;
  font-weight: 600;
}
.founder .story { color: var(--paper-fg); }
aside.profile {
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--surface);
}
aside.profile .mark {
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-raised);
  color: var(--gold);
}
aside.profile .mark svg { width: 8rem; height: 5rem; }
aside.profile img { width: 100%; height: 10rem; object-fit: cover; }
aside.profile .pad { padding: 1.5rem; }
aside.profile h3 { margin: 0; font-size: 1.5rem; }
dl { margin: 1rem 0 0; }
.row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  font-size: 0.875rem;
}
.row:last-child { border-bottom: 0; }
.row dt { color: var(--subtle); }
.gold { color: var(--gold); }
@media (min-width: 768px) {
  .founder { grid-template-columns: 7fr 5fr; }
}

.work-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.work-head a { color: var(--gold); font-size: 0.875rem; }
@media (min-width: 768px) {
  .work-head { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}

.contact { background: var(--bg); border-top: 1px solid var(--border); }
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact ul { list-style: none; padding: 0; margin: 2rem 0 0; }
.contact ul li { margin: 0.75rem 0; }

form.card label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}
form.card input, form.card textarea {
  width: 100%;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  padding: 0.75rem 1rem;
  font: inherit;
  font-size: 0.875rem;
}
form.card textarea { min-height: 7rem; resize: vertical; }
form.card input:focus, form.card textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}
.fields { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .two { grid-template-columns: 1fr 1fr; } }
.err { color: var(--gold); font-size: 0.75rem; margin: 0.4rem 0 0; }
.fine { text-align: center; font-size: 0.75rem; color: var(--subtle); margin-top: 0.75rem; }
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.success { display: none; }
.success.show { display: block; }
form.hidden { display: none; }
.check {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(196,163,90,0.15);
  color: var(--gold);
  font-size: 1.5rem;
}

footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.foot {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.muted { color: var(--muted); font-size: 0.875rem; }
.foot-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.foot-links a:hover { color: var(--fg); }
@media (min-width: 768px) {
  .foot { flex-direction: row; justify-content: space-between; align-items: center; }
  .foot-right { text-align: right; }
}

.legal { max-width: 48rem; margin: 0 auto; padding: 4rem 1.25rem; }
.legal h1 { font-size: 2.25rem; margin: 0.75rem 0 0; }
.legal .date { color: var(--subtle); font-size: 0.875rem; }
.legal .copy { color: var(--muted); }
.legal .copy h2 { color: var(--fg); font-size: 1.5rem; margin-top: 2rem; }
.legal a { color: var(--gold); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.site-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 70;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg);
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, transparent 22%),
    linear-gradient(90deg, rgba(0,0,0,0.28) 0%, transparent 18%, transparent 82%, rgba(0,0,0,0.28) 100%);
}
.hero-ridge {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 14rem;
  pointer-events: none;
  background-image: url("brand/ridge.jpg");
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 22%, black 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 22%, black 100%);
}
.hero-inner { position: relative; z-index: 1; }
@media (min-width: 768px) {
  .hero-ridge { height: 20rem; }
}
.band-paper {
  background-color: var(--paper);
  background-image: url("brand/paper.png");
  background-size: 280px 280px;
  background-repeat: repeat;
  --gold: #8a6418;
  --gold-bright: #a37622;
}
.band-paper h2 { font-weight: 700; }
.band-paper h3 { font-weight: 700; }
.band-paper .section-head p,
.band-paper .card p,
.band-paper .story,
.band-paper .meta {
  font-weight: 500;
}
.rule-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.rule-mark::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.lift-card {
  box-shadow: 0 0 0 1px rgba(28,24,18,0.08), 0 12px 28px -18px rgba(28,24,18,0.35);
  transition: transform 180ms ease, box-shadow 180ms ease;
  border-left: 2px solid rgba(196,163,90,0.7);
}
.lift-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(196,163,90,0.35), 0 18px 36px -16px rgba(28,24,18,0.4);
}
.quote-panel {
  background: linear-gradient(165deg, rgba(196,163,90,0.16), transparent 42%), var(--paper-card);
  border-color: rgba(196,163,90,0.3);
}
.empire {
  margin: 0 0 1.5rem;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--gold);
}
@media (prefers-reduced-motion: reduce) {
  .site-grain { display: none; }
  .lift-card, .lift-card:hover { transform: none; }
}
