/* ─────────────────────────────────────────
   Parity — Shared Styles
   Single source of truth. If it's global, it lives here.
   ───────────────────────────────────────── */

/* ── TOKENS ── */
:root {
  --cr: #FAF7F2;
  --wm: #F3EDE3;
  --wr: #EDE4D6;
  --br: #2C1810;
  --ru: #C44B2B;
  --ru2: #E05A35;
  --gn: #2D5016;
  --g2: #3A6B1E;
  --gd: #8A6219;
  --g3: #E0A030;
  --mu: #6B5642;
  --fa: #7A6B58;
  --bd: #DDD0BC;
  --b2: #EDE4D6;
  --wh: #FFFFFF;
  --sh: rgba(44,24,16,0.07);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cr);
  color: var(--br);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mu); margin-bottom: 14px;
}
.eyebrow-red  { color: var(--ru); }
.eyebrow-gold { color: var(--gd); }
.eyebrow-green{ color: var(--g2); }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,75,43,0.07); border: 1px solid rgba(196,75,43,0.18);
  border-radius: 20px; padding: 6px 14px; margin-bottom: 28px;
  color: var(--ru);
}

.fraunces { font-family: 'Fraunces', serif; }
.h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px,7vw,56px); font-weight: 900;
  line-height: 1.08; letter-spacing: -2px; color: var(--br); margin-bottom: 18px;
}
.h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px,5.5vw,40px); font-weight: 900;
  line-height: 1.12; letter-spacing: -1.5px; color: var(--br); margin-bottom: 14px;
}
.h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px,4vw,28px); font-weight: 900;
  line-height: 1.15; letter-spacing: -0.8px; color: var(--br); margin-bottom: 12px;
}
.h1 em, .h2 em, .h3 em { font-style: italic; color: var(--ru); }
.body-t { font-size: 14.5px; color: var(--mu); line-height: 1.85; margin-bottom: 18px; }
.body-t strong { color: var(--br); }

/* ── LAYOUT ── */
.page  { max-width: 600px; margin: 0 auto; padding: 0 24px 80px; }
.inner { max-width: 520px; margin: 0 auto; padding: 72px 24px; }
.narrow{ max-width: 560px; margin: 0 auto; padding: 0 24px; }
.tc    { text-align: center; }
.divider { height: 1px; background: var(--bd); margin: 0 24px; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px;
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd);
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 900;
  color: var(--br); text-decoration: none;
}
.lm {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--ru); display: flex; align-items: center; justify-content: center;
  font-size: 17px; box-shadow: 0 2px 8px rgba(196,75,43,0.3);
}
.nav-r { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 13px; font-weight: 500; color: var(--mu);
  text-decoration: none; padding: 7px 12px; border-radius: 8px; transition: all 0.2s;
}
.nav-link:hover { color: var(--br); background: var(--wm); }
.nav-link.active { color: var(--ru); font-weight: 600; }
.nav-cta {
  font-size: 13px; font-weight: 700; padding: 9px 20px;
  background: var(--br); color: var(--cr); border: none; border-radius: 9px;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.2s; text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--ru); transform: translateY(-1px); }
.nav-hamburger {
  display: none; background: none; border: none;
  font-size: 22px; cursor: pointer; color: var(--br); padding: 4px;
}
.nav-mobile-menu {
  display: none; position: fixed; top: 57px; left: 0; right: 0;
  background: rgba(250,247,242,0.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bd); padding: 12px 20px; z-index: 99;
  flex-direction: column; gap: 4px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 15px; font-weight: 500; color: var(--br);
  text-decoration: none; padding: 11px 14px; border-radius: 10px;
  border: 1.5px solid transparent;
}
.nav-mobile-menu a:hover { background: var(--wm); border-color: var(--bd); }
.nav-mobile-menu .nav-cta { text-align: center; margin-top: 4px; display: block; }
@media (max-width: 768px) {
  .nav-r .nav-link { display: none !important; }
  .nav-r .nav-cta  { display: none !important; }
  .nav-hamburger   { display: block !important; }
}

/* ── BUTTONS ── */
.btn {
  padding: 11px 18px; border: none; border-radius: 10px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s;
  white-space: nowrap; text-decoration: none; display: inline-block;
}
.btn-dark  { background: var(--br); color: var(--cr); }
.btn-dark:hover  { background: var(--ru); transform: translateY(-1px); }
.btn-red   { background: var(--ru); color: #fff; }
.btn-red:hover   { background: var(--ru2); transform: translateY(-1px); }
.btn-green { background: var(--gn); color: #fff; }
.btn-green:hover { background: var(--g2); transform: translateY(-1px); }
.btn-gold  { background: var(--gd); color: var(--br); }
.btn-gold:hover  { background: var(--g3); transform: translateY(-1px); }
.btn-ghost { background: none; color: var(--mu); border: 1.5px solid var(--bd); }
.btn-ghost:hover { border-color: var(--fa); color: var(--br); }
.btn-full {
  width: 100%; padding: 15px; border: none; border-radius: 11px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s;
  text-decoration: none; display: block; text-align: center;
}

/* ── FORMS ── */
.inw {
  width: 100%; padding: 12px 16px;
  background: var(--wh); border: 1.5px solid var(--bd);
  border-radius: 11px; font-size: 14px; font-family: 'DM Sans', sans-serif;
  color: var(--br); outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.inw:focus { border-color: var(--ru); box-shadow: 0 0 0 3px rgba(196,75,43,0.08); }
.inw::placeholder { color: var(--fa); }
.inw.err { border-color: var(--ru); }
textarea.inw { resize: vertical; min-height: 80px; line-height: 1.6; }
select.inw { appearance: none; -webkit-appearance: none; cursor: pointer; }
.field { margin-bottom: 14px; }
.field-label { display: block; font-size: 12px; font-weight: 700; color: var(--br); margin-bottom: 6px; }
.field-err { font-size: 11px; color: var(--ru); margin-top: 4px; display: none; }
.field-err.show { display: block; }

/* ── DARK SECTION ── */
.dark-sec { background: var(--br); }
.dark-sec .h2 { color: var(--cr); }
.dark-sec .h2 em { color: var(--ru); }
.dark-sec .body-t { color: rgba(250,247,242,0.65); }
.dark-sec .body-t strong { color: var(--cr); }

/* ── TAGS ── */
.tag {
  font-size: 10px; font-weight: 600; padding: 3px 9px;
  border-radius: 20px; display: inline-block;
}
.tag-green  { color: var(--g2); background: rgba(45,80,22,0.07); border: 1px solid rgba(45,80,22,0.14); }
.tag-gold   { color: var(--gd); background: rgba(198,139,42,0.08); border: 1px solid rgba(198,139,42,0.18); }
.tag-muted  { color: var(--mu); background: var(--wm); border: 1px solid var(--bd); }
.tag-red    { color: var(--ru); background: rgba(196,75,43,0.08); border: 1px solid rgba(196,75,43,0.2); }

/* ── ANIMATIONS ── */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.rv.in { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse  { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.pulse { animation: pulse 1.6s ease-in-out infinite; }

/* ── FOOTER ── */
footer {
  padding: 28px 24px; border-top: 1px solid var(--bd);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.footer-row {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; max-width: 520px; flex-wrap: wrap; gap: 12px;
}
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Fraunces', serif; font-size: 16px; font-weight: 900; color: var(--mu);
}
.footer-lm {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--fa); display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 11px; color: var(--mu); text-decoration: none; }
.footer-links a:hover { color: var(--br); }

/* ── GEO-DISCLOSURE BANNER ── */
/* Used at top of directory, shame, apply to make geo scope explicit. */
/* Click target = expand inline waitlist form. */
.geo-banner {
  max-width: 760px; margin: 14px auto 0; padding: 10px 16px;
  background: rgba(198,139,42,0.08); border: 1px solid rgba(198,139,42,0.22);
  border-radius: 10px; font-size: 12.5px; line-height: 1.5; color: var(--br);
  display: flex; gap: 10px; align-items: center; justify-content: center;
  flex-wrap: wrap; text-align: center;
}
.geo-banner strong { font-weight: 700; }
.geo-banner-cta {
  font-size: 12px; font-weight: 700; padding: 5px 12px;
  background: var(--br); color: var(--cr); border: none; border-radius: 16px;
  cursor: pointer; font-family: 'DM Sans', sans-serif; white-space: nowrap;
}
.geo-banner-cta:hover { background: var(--ru); }
.geo-waitlist {
  max-width: 760px; margin: 8px auto 0; padding: 14px 18px;
  background: var(--wm); border: 1px solid var(--bd); border-radius: 10px;
  display: none;
}
.geo-waitlist.open { display: block; }
.geo-waitlist-row { display: flex; gap: 8px; flex-wrap: wrap; }
.geo-waitlist-row input {
  flex: 1; min-width: 180px; padding: 10px 12px; font-family: 'DM Sans', sans-serif;
  font-size: 13px; background: var(--wh); color: var(--br);
  border: 1.5px solid var(--bd); border-radius: 9px; outline: none;
}
.geo-waitlist-row input:focus { border-color: var(--ru); }
.geo-waitlist-row button {
  padding: 10px 18px; background: var(--br); color: var(--cr);
  border: none; border-radius: 9px; font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap;
}
.geo-waitlist-msg { font-size: 12px; color: var(--g2); margin-top: 8px; display: none; }
.geo-waitlist-msg.show { display: block; }
@media (max-width: 480px) {
  .geo-waitlist-row { flex-direction: column; }
  .geo-waitlist-row button { width: 100%; }
}

/* ── UTILITY CLASSES ── */
/* Repeats lifted out of inline style="" attributes. Keep small + scoped. */
.mb-10        { margin-bottom: 10px; }
.fs-11-fa     { font-size: 11px; color: var(--fa); }
.fs-11-mu-mb0 { font-size: 11px; color: var(--mu); margin-bottom: 0; }
.flex-min     { flex: 1; min-width: 0; overflow: hidden; }

/* ── MANIFESTO ── */
/* Brand anchor: "HANDS NOT [HOLDCOS]" — appears in every footer */
.manifesto {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px,6vw,44px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--br);
  text-align: center;
  padding: 28px 24px 14px;
}
.manifesto-block {
  background: var(--ru);
  color: var(--cr);
  padding: 0 12px;
  display: inline-block;
  border-radius: 2px;
  margin-left: 8px;
}

.manifesto-hero {
  background: var(--br);
  padding: 80px 24px;
  text-align: center;
}
.manifesto-hero-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px,12vw,96px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
  color: var(--gd);
}
.manifesto-hero-block {
  background: var(--ru);
  color: var(--cr);
  padding: 0 18px;
  display: inline-block;
  border-radius: 4px;
  margin-left: 8px;
}
.manifesto-hero-sub {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  margin-top: 28px;
}
