:root {
  --ink: #1c1410;
  --cream: #f7f0e6;
  --paper: #fff8f0;
  --rust: #b85a3a;
  --rust-deep: #8f3f28;
  --sage: #6d7f6a;
  --gold: #c9a227;
  --muted: #6b5a4e;
  --line: rgba(28, 20, 16, 0.12);
  --shadow: 0 24px 60px rgba(28, 20, 16, 0.18);
  --radius: 22px;
  --font: "DM Sans", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(201, 162, 39, 0.18), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(109, 127, 106, 0.16), transparent 55%),
    var(--cream);
  line-height: 1.55;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
strong { font-weight: 650; }
cite { font-style: italic; }
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--cream); padding: 0.5rem 1rem;
}
.skip:focus { left: 1rem; top: 1rem; z-index: 100; }

.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(247, 240, 230, 0.82);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo {
  font-weight: 700; letter-spacing: 0.04em; text-decoration: none;
  font-size: 1.05rem;
}
.nav-links {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: flex-end;
}
.nav-links > a:not(.nav-cta) {
  text-decoration: none; font-weight: 600; font-size: 0.92rem; color: var(--muted);
}
.nav-links > a:not(.nav-cta):hover { color: var(--rust); }
.nav-cta {
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  padding: 0.55rem 0.95rem; border-radius: 999px;
  background: var(--ink); color: var(--cream);
}
.nav-cta:hover { background: var(--rust-deep); }

.hero {
  max-width: 1120px; margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1.05fr 0.95fr; padding-top: 3.5rem; gap: 3rem; }
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.75rem; font-weight: 600; color: var(--rust);
  margin: 0 0 0.75rem;
}
.eyebrow.light { color: rgba(255, 248, 240, 0.75); }
h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
h1 em { font-style: italic; color: var(--rust); }
.lede {
  font-size: 1.15rem; color: var(--muted); max-width: 34rem; margin: 0 0 1.5rem;
}
.lede.tight { margin-bottom: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 0.85rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; font-weight: 600; border-radius: 999px;
  padding: 0.85rem 1.35rem; border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--rust); color: #fff; }
.btn.primary:hover { background: var(--rust-deep); }
.btn.ghost { border-color: var(--line); background: rgba(255,248,240,0.7); }
.btn.wide { width: 100%; }
.fine { font-size: 0.9rem; color: var(--muted); margin: 0; }
.hero-art {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28,20,16,0.08);
}
.hero-art img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.why-now {
  padding: 3.5rem 0 4rem;
  background:
    linear-gradient(145deg, rgba(28,20,16,0.96), rgba(143,63,40,0.92)),
    var(--ink);
  color: #fff8f0;
}
.why-now h2 {
  color: #fff8f0;
  max-width: 18ch;
}
.why-intro {
  max-width: 40rem; margin: 0 0 1.75rem; opacity: 0.92; font-size: 1.08rem;
}
.stat-grid {
  display: grid; gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
}
.stat {
  background: rgba(255,248,240,0.08);
  border: 1px solid rgba(255,248,240,0.14);
  border-radius: 18px;
  padding: 1.15rem 1.1rem 1.25rem;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  line-height: 1; margin: 0 0 0.45rem;
  color: #f0d78c;
}
.stat-label { margin: 0; font-size: 0.98rem; opacity: 0.92; }
.why-closer {
  margin: 1.75rem 0 0.85rem; max-width: 40rem; font-size: 1.12rem;
}
.cite {
  margin: 0; font-size: 0.85rem; opacity: 0.7; max-width: 42rem;
}

.band { padding: 3.5rem 0; background: var(--paper); border-block: 1px solid var(--line); }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }
h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.75rem); margin: 0 0 1.5rem;
}
.cards { display: grid; gap: 1rem; }
@media (min-width: 800px) { .cards { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 1.35rem 1.25rem; min-height: 100%;
}
.num { display: block; font-size: 0.8rem; letter-spacing: 0.12em; color: var(--sage); font-weight: 700; margin-bottom: 0.6rem; }
.card h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.card p { margin: 0; color: var(--muted); }

.who { padding: 3.5rem 0; }
.split { display: grid; gap: 1.75rem; align-items: start; }
@media (min-width: 800px) { .split { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.checklist {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0.75rem;
}
.checklist li {
  padding: 0.9rem 1rem 0.9rem 2.6rem; position: relative;
  background: rgba(255,255,255,0.65); border: 1px solid var(--line); border-radius: 14px;
}
.checklist li::before {
  content: ""; position: absolute; left: 0.95rem; top: 1.15rem;
  width: 0.65rem; height: 0.65rem; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,39,0.2);
}

.event { padding: 3.5rem 0 4rem; }
.event-card {
  max-width: 520px; margin: 0 auto;
  background: #fff; border-radius: 24px; padding: 2rem 1.5rem;
  border: 1px solid var(--line); box-shadow: var(--shadow); text-align: center;
}
.event-card h2 { margin-bottom: 0.75rem; }
.place { color: var(--muted); margin: 0 0 1rem; }
.meta { font-size: 0.95rem; color: var(--sage); font-weight: 600; margin: 0 0 1.25rem; }
.map { margin: 1rem 0 0; }
.map a { color: var(--rust); font-weight: 600; }

.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem; background: rgba(255,248,240,0.7);
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
}
.muted { color: var(--muted); margin: 0.25rem 0 0; font-size: 0.95rem; }
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a { font-weight: 600; text-decoration: none; }
.footer-links a:hover { color: var(--rust); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}


.cities { padding: 3.5rem 0; background: var(--paper); border-block: 1px solid var(--line); }
.cities-lede { max-width: 42rem; margin: -0.5rem 0 1.75rem; }
.city-grid {
  display: grid; gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 1.25rem;
}
@media (min-width: 800px) {
  .city-grid { grid-template-columns: repeat(4, 1fr); }
}
.city-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1rem 1rem 1.1rem;
}
.city-code {
  margin: 0 0 0.35rem; font-size: 0.75rem; letter-spacing: 0.14em;
  font-weight: 700; color: var(--sage); text-transform: uppercase;
}
.city-card h3 { margin: 0 0 0.25rem; font-size: 1.15rem; }
.city-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.hosts {
  display: grid; gap: 0.85rem;
}
@media (min-width: 800px) {
  .hosts { grid-template-columns: repeat(3, 1fr); }
}
.host {
  background: rgba(255,255,255,0.85); border: 1px solid var(--line);
  border-radius: 18px; padding: 1.25rem 1.15rem;
}
.host-role {
  margin: 0 0 0.35rem; font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700; color: var(--rust);
}
.host h3 { margin: 0 0 0.45rem; font-family: var(--serif); font-weight: 400; font-size: 1.55rem; }
.host p { margin: 0; color: var(--muted); }
.host-open .btn { margin-top: 1rem; }


.hosts-founder { margin-bottom: 0.85rem; }
.host-founder {
  display: grid; gap: 1.25rem; align-items: center;
  padding: 1.25rem; background: #fff;
}
@media (min-width: 720px) {
  .host-founder { grid-template-columns: 200px 1fr; padding: 1.35rem; }
}
.host-photo {
  width: 100%; max-width: 220px; margin: 0 auto;
  aspect-ratio: 4 / 5; object-fit: cover; border-radius: 16px;
  border: 1px solid var(--line);
}
.host-copy h3 { margin-bottom: 0.55rem; }
.host-link { margin: 0.85rem 0 0; }
.host-link a {
  font-weight: 700; color: var(--rust); text-decoration: none;
}
.host-link a:hover { text-decoration: underline; }


.hosts-texas { align-items: stretch; }
@media (min-width: 800px) {
  .hosts-texas { grid-template-columns: 1fr 1fr 0.9fr; }
}
.host-with-photo {
  display: grid; gap: 1rem; align-items: start;
}
@media (min-width: 520px) {
  .host-with-photo { grid-template-columns: 120px 1fr; }
}
.host-photo-slot {
  aspect-ratio: 4 / 5; border-radius: 14px;
  border: 1.5px dashed rgba(184, 90, 58, 0.45);
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(184, 90, 58, 0.06),
      rgba(184, 90, 58, 0.06) 8px,
      rgba(255,255,255,0.5) 8px,
      rgba(255,255,255,0.5) 16px
    );
  display: grid; place-items: center;
  color: var(--rust); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  min-height: 140px;
}
.bio-slot { color: var(--muted); }
.bio-slot-link span {
  color: var(--muted); font-weight: 600; font-size: 0.92rem;
  border-bottom: 1px dashed var(--line);
}
.jobs-callout {
  margin: 1.75rem 0 0;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: 18px;
  background: rgba(240, 215, 140, 0.12);
  border: 1px solid rgba(240, 215, 140, 0.28);
}
.jobs-callout .eyebrow { margin-bottom: 0.55rem; color: #f0d78c; }
.jobs-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  margin: 0 0 0.75rem;
  max-width: 22ch;
  color: #fff8f0;
}
.jobs-body {
  margin: 0 0 0.85rem;
  max-width: 42rem;
  font-size: 1.02rem;
  opacity: 0.94;
}
.jobs-points {
  margin: 0;
  padding-left: 1.15rem;
  max-width: 40rem;
  opacity: 0.92;
}
.jobs-points li { margin: 0.35rem 0; }
