:root {
  --bg: #FBF4E8;
  --surface: #FFFFFF;
  --fg: #241F18;
  --muted: #7C7363;
  --brand: #2D5016;
  --brand-deep: #1E2E10;
  --gold: #D4A843;
  --gold-hover: #C49A38;
  --espresso: #241F18;
  --border: #E6DCC8;
  --cream-ink: #F5F2EB;
  --radius: 12px;
  --font-display: "Lora", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --nav-h: 72px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--espresso);
  padding: 0.6rem 1rem;
  z-index: 1000;
}
.skip:focus { left: 1rem; top: 1rem; }
.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--espresso);
  color: var(--cream-ink);
  min-height: var(--nav-h);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.wordmark span { color: var(--gold); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212,168,67,0.4);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
}
.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-panel a:not(.btn) {
  color: #E8E0D2;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
}
.nav-panel a:not(.btn):hover { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); }
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-ghost:hover { background: rgba(212,168,67,0.12); }
.btn-wide { width: 100%; }

@media (max-width: 800px) {
  .nav-toggle { display: inline-flex; }
  .nav-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--nav-h);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #1a1611;
    padding: 0.5rem 1rem 1.25rem;
    border-bottom: 1px solid rgba(212,168,67,0.25);
  }
  .nav-panel.is-open { display: flex; }
  .nav-panel a:not(.btn) {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.4rem 0.2rem;
    border-bottom: 1px solid rgba(230,220,200,0.08);
  }
  .nav-panel .btn { margin-top: 0.75rem; width: 100%; }
}

/* Hero */
.hero {
  background: var(--espresso);
  color: var(--cream-ink);
  padding: 3.25rem 0 3.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
}
.hero .lede {
  color: #C9BFAE;
  font-size: 1.12rem;
  max-width: 38rem;
  margin-bottom: 1.6rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.6rem; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.4rem;
  color: #C9BFAE;
  font-size: 0.92rem;
}
.trust-row span { display: inline-flex; align-items: center; gap: 0.4rem; }
.trust-row svg { flex-shrink: 0; }

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.card-lg { grid-column: 1 / -1; }
.media-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 120px;
  background: var(--brand-deep);
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
}
.card-lg { min-height: 180px; }
.media-card .art {
  width: 100%;
  height: 100%;
  min-height: inherit;
}
.media-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 0.85rem 0.7rem;
  background: linear-gradient(transparent, rgba(20,16,10,0.85));
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}
.badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: var(--gold);
  color: var(--espresso);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}
.art-waterfall {
  background:
    radial-gradient(ellipse at 50% 0%, #3d6a88 0%, transparent 55%),
    linear-gradient(180deg, #1e3a2a 0%, #0f1c14 100%);
}
.art-choir {
  background:
    radial-gradient(circle at 30% 40%, #5a4630 0%, transparent 50%),
    linear-gradient(180deg, #3a2a1c, #1a120c);
}
.art-health {
  background:
    radial-gradient(circle at 60% 40%, #4a7a32 0%, transparent 45%),
    linear-gradient(180deg, #2a4018, #14200c);
}

/* Pillars */
.pillars { padding: 3.5rem 0; background: var(--bg); }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pillar {
  padding: 0.5rem 1.75rem;
  text-align: left;
}
.pillar + .pillar { border-left: 1px solid var(--border); }
.pillar h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--brand);
  margin: 0.65rem 0 0.35rem;
}
.pillar p { color: var(--muted); }
.icon-mark {
  width: 40px; height: 40px;
  color: var(--gold);
}

/* Creators strip */
.creators {
  background: var(--surface);
  padding: 2.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.creators h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}
.creators p { color: #3D382F; max-width: 42rem; }

/* Waitlist */
.waitlist {
  background: var(--espresso);
  color: var(--cream-ink);
  padding: 3.75rem 0 4rem;
}
.waitlist h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-align: center;
  color: #fff;
  margin-bottom: 1.5rem;
}
.waitlist-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  max-width: 820px;
  margin: 0 auto 0.85rem;
}
.field { display: flex; flex-direction: column; gap: 0.3rem; }
.field label {
  font-size: 0.82rem;
  color: #C9BFAE;
}
.field input, .field select, .field textarea {
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(232,217,176,0.28);
  background: #1a1611;
  color: #F5F2EB;
  padding: 0.5rem 0.85rem;
  font: inherit;
}
.waitlist .btn-gold { grid-column: 1 / -1; min-height: 48px; }
.form-note, .sabbath-note, .form-status {
  max-width: 820px;
  margin: 0.75rem auto 0;
  text-align: center;
  color: #C9BFAE;
  font-size: 0.95rem;
}
.sabbath-note {
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.35);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  color: #F5F2EB;
}
.form-status[data-ok="1"] { color: #b7d59a; }
.form-status[data-ok="0"] { color: #e8b4a0; }
.field input:disabled, .field select:disabled, .waitlist .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Footer */
.site-footer {
  background: var(--bg);
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
}
.foot-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.foot-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem; }
.foot-links a { color: var(--muted); text-decoration: none; }
.foot-links a:hover { color: var(--brand); text-decoration: underline; }
.foot-loc { display: inline-flex; align-items: center; gap: 0.35rem; }

/* Inner pages */
.page-main { padding: 2.5rem 0 3.5rem; }
.prose { max-width: 820px; margin: 0 auto; }
.prose h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.35rem;
}
.prose .meta { color: var(--muted); margin-bottom: 1.5rem; }
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brand);
  margin: 1.8rem 0 0.5rem;
}
.prose p, .prose li { color: #3D382F; }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0.4rem 0 0.8rem; }
.prose li { margin: 0.28rem 0; }
.prose .lead { font-size: 1.08rem; }
.note {
  background: #F1E9DA;
  border-left: 3px solid var(--gold);
  padding: 0.8rem 1rem;
  border-radius: 0 8px 8px 0;
  margin: 1rem 0;
}

.browse-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.browse-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: center;
}
.browse-item .thumb {
  height: 80px;
  border-radius: 8px;
}
.browse-item h2 { font-size: 1.1rem; margin: 0 0 0.25rem; color: var(--fg); }
.tag {
  display: inline-block;
  background: var(--gold);
  color: var(--espresso);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 5px;
  margin-right: 0.4rem;
}
.tag-real { background: var(--brand); color: #fff; }

@media (max-width: 900px) {
  .hero-grid, .pillar-grid, .waitlist-form { grid-template-columns: 1fr; }
  .pillar + .pillar { border-left: 0; border-top: 1px solid var(--border); padding: 1.25rem 0; }
  .pillar { padding: 1.1rem 0; }
  .browse-item { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 2.2rem 0 2.5rem; }
  .hero h1 { font-size: 1.85rem; }
}
.site-footer .wordmark { font-size: 1.1rem; color: var(--espresso); }
.stack-gap { margin-top: 1.25rem; }
.hero-ghost-on-light { color: var(--gold); border-color: var(--gold); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
