/* ═══════════════════════════════════════════════════════════════════════════
   SHEDWORKS.ORG — style.css
   Design tokens, typography, layout, components, animations, responsive
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  --bg:           #070905;
  --bg-warm:      #0C0A06;
  --bg-ink:       #0D0B08;
  --oyster:       #EAE3D5;
  --oyster-dim:   #9A9082;
  --gold:         #C9962A;
  --gold-light:   #E0B84A;
  --gold-pale:    #F0D898;
  --marsh-light:  #6FA035;
  --marsh-mid:    #3D6E1A;
  --marsh-pale:   #9DC85A;
  --water-light:  #3A82A8;
  --water-mid:    #1F5478;
  --sand-light:   #D4B070;
  --indigo:       #1A1F5E;
  --indigo-dark:  #0A0D30;

  --font-head: 'Cinzel', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max-w: 1100px;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--oyster); font-family: var(--font-body); overflow-x: hidden; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; cursor: pointer; font-family: var(--font-body); background: none; }
input { font-family: var(--font-body); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); opacity: .4; border-radius: 2px; }

/* ── Animations ──────────────────────────────────────────────────────────── */
@keyframes rise     { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes sway     { 0%,100% { transform: rotate(-1.5deg); } 50% { transform: rotate(1.5deg); } }
@keyframes glow     { 0%,100% { box-shadow: 0 0 30px #C9962A22; } 50% { box-shadow: 0 0 60px #C9962A44; } }
@keyframes ticker   { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes dotPulse { 0%,100% { opacity:.3; transform:scale(.7); } 50% { opacity:1; transform:scale(1); } }
@keyframes orbPulse { 0%,100% { transform:scale(1); } 50% { transform:scale(1.05); } }

/* ── Reveal on scroll ────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Layout helpers ──────────────────────────────────────────────────────── */
.container       { max-width: var(--max-w);  margin: 0 auto; padding: 0 24px; }
.container.wide  { max-width: 1100px; }
.container.narrow{ max-width: 760px; }
.section { padding: 100px 0; }
.section-dark    { background: var(--bg); }
.section-warm    { background: var(--bg-warm); }
.section-indigo  { background: linear-gradient(180deg, var(--bg) 0%, #1A1F5E18 50%, var(--bg) 100%); }
.section-glow-gold { background: radial-gradient(ellipse 80% 60% at 50% 50%, #C9962A07 0%, var(--bg) 70%); }
.section-marsh-fade { background: radial-gradient(ellipse 100% 80% at 50% 100%, #3D6E1A18 0%, var(--bg) 60%), radial-gradient(ellipse 60% 40% at 50% 0%, #1A1F5E18 0%, transparent 50%); }
.stats-section { border-top: 1px solid #C9962A14; border-bottom: 1px solid #C9962A14; }

.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.center { text-align: center; }

/* ── Typography ──────────────────────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #C9962A77;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(24px, 4vw, 48px);
  letter-spacing: 1px;
  color: var(--oyster);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-body {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.85;
  color: #EAE3D599;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--sand-light));
  border-radius: 100px;
  padding: 15px 36px;
  color: var(--indigo-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 0 10px 36px #C9962A44;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.btn-primary:hover { transform: scale(1.04); box-shadow: 0 14px 44px #C9962A55; }

.btn-ghost {
  display: inline-block;
  background: #EAE3D50D;
  border: 1px solid #EAE3D533;
  border-radius: 100px;
  padding: 15px 36px;
  color: var(--oyster);
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  transition: all .2s ease;
  cursor: pointer;
}
.btn-ghost:hover { background: #EAE3D518; border-color: #C9962A44; }

.btn-outline-gold {
  display: inline-block;
  background: #C9962A14;
  border: 1px solid #C9962A33;
  border-radius: 100px;
  padding: 12px 32px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all .2s ease;
  cursor: pointer;
}
.btn-outline-gold:hover { background: #C9962A24; }

/* ── NAV ─────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  transition: background .4s ease, border-color .4s ease, padding .4s ease;
  padding: 16px 28px;
}
#nav.scrolled {
  background: #070905F2;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #C9962A18;
  padding: 10px 28px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-wordmark {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  color: var(--gold);
  transition: opacity .2s;
}
.nav-wordmark:hover { opacity: .85; }
.nav-wordmark-text { display: flex; flex-direction: column; line-height: 1; }
.nav-name { font-family: var(--font-head); font-size: 17px; font-weight: 700; letter-spacing: 2px; color: var(--oyster); }
.nav-sub  { font-family: var(--font-head); font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: #C9962A99; }

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  font-family: var(--font-head);
  font-size: 12px; letter-spacing: .5px;
  color: #EAE3D577;
  padding: 7px 14px; border-radius: 8px;
  border: 1px solid transparent;
  transition: all .2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: #C9962A14;
  border-color: #C9962A33;
}

.nav-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.btn-chat {
  display: flex; align-items: center; gap: 6px;
  background: #C9962A14; border: 1px solid #C9962A33;
  color: var(--gold);
  border-radius: 8px; padding: 8px 14px;
  font-family: var(--font-head); font-size: 12px; letter-spacing: .5px;
  transition: all .2s;
}
.btn-chat:hover { background: #C9962A24; }
.btn-support {
  background: linear-gradient(135deg, var(--gold), var(--sand-light));
  border-radius: 8px; padding: 8px 18px;
  color: var(--indigo-dark);
  font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .5px;
  box-shadow: 0 4px 14px #C9962A33;
  transition: transform .2s;
}
.btn-support:hover { transform: scale(1.04); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 32px; height: 32px; justify-content: center; align-items: center;
  background: #EAE3D511; border: 1px solid #EAE3D522; border-radius: 7px;
}
.nav-hamburger span { display: block; width: 18px; height: 1.5px; background: var(--oyster); border-radius: 2px; transition: all .3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 860px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 2px; background: #0C0A06F8; padding: 16px 20px; border-bottom: 1px solid #C9962A22; backdrop-filter: blur(20px); }
  .nav-links.open { display: flex; }
  .nav-link { padding: 10px 14px; }
  .btn-chat span:not(.btn-chat svg) { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 130px 24px 80px;
  background:
    radial-gradient(ellipse 120% 60% at 50% 0%, #1A1F5E33 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 15% 80%, #3D6E1A22 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 70%, #1F547818 0%, transparent 50%),
    var(--bg);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(#C9962A12 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0; transition: opacity 2s ease;
}
.hero-grid.visible { opacity: 1; }

/* Marsh grass blades */
.hero-marsh { position: absolute; inset: 0; pointer-events: none; }
.grass-blade {
  position: absolute; bottom: 0;
  background: #3D6E1A44; border-radius: 50% 50% 0 0;
  transform-origin: bottom center;
}

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 820px; }
.hero-content > * { opacity: 0; transform: translateY(28px); }
.hero-content.loaded > * { transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out); opacity: 1; transform: translateY(0); }
.hero-content.loaded > *:nth-child(1) { transition-delay: .1s; }
.hero-content.loaded > *:nth-child(2) { transition-delay: .25s; }
.hero-content.loaded > *:nth-child(3) { transition-delay: .38s; }
.hero-content.loaded > *:nth-child(4) { transition-delay: .50s; }
.hero-content.loaded > *:nth-child(5) { transition-delay: .63s; }
.hero-content.loaded > *:nth-child(6) { transition-delay: .76s; }
.hero-content.loaded > *:nth-child(7) { transition-delay: .90s; }
.hero-content.loaded > *:nth-child(8) { transition-delay: 1.04s; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #C9962A14; border: 1px solid #C9962A28;
  border-radius: 100px; padding: 6px 18px;
  color: #C9962ACC; font-family: var(--font-head);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-head); font-weight: 700; letter-spacing: 3px;
  font-size: clamp(48px, 8vw, 96px); color: var(--oyster); line-height: 1;
  margin-bottom: 14px;
}
.hero-tagline {
  font-family: var(--font-body); font-style: italic;
  font-size: clamp(18px, 2.5vw, 26px); color: var(--sand-light);
  margin-bottom: 16px; letter-spacing: .5px;
}
.hero-mission {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 18px);
  color: #EAE3D5CC;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 10px;
  letter-spacing: .2px;
}
.hero-sub {
  font-family: var(--font-body); font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: 3px; text-transform: uppercase; color: #EAE3D566;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 44px; }
.hero-seven-label {
  font-family: var(--font-head); font-size: 9px; letter-spacing: 4px;
  text-transform: uppercase; color: #EAE3D533; margin-bottom: 14px;
}
.hero-seven-row { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.sym-pill {
  background: var(--pill-bg, #6FA03512); border: 1px solid var(--pill-border, #6FA03528);
  border-radius: 12px; padding: 8px 12px; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  transition: all .25s ease;
}
.sym-pill:hover { transform: translateY(-2px); }
.sym-pill.active { border-color: var(--pill-color, #6FA035); background: var(--pill-active, #6FA03518); box-shadow: 0 8px 24px var(--pill-shadow, #6FA03533); }
.sym-pill-label {
  font-family: var(--font-head); font-size: 7px; letter-spacing: 1.5px;
  text-transform: uppercase; white-space: nowrap; color: var(--pill-color, #6FA035); opacity: .7;
}

/* Symbol pill tooltip */
.sym-pill { position: relative; }
.sym-tooltip {
  position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  background: #0C0A06F4; border: 1px solid var(--pill-color, #6FA035);
  border-radius: 10px; padding: 10px 14px; white-space: nowrap;
  pointer-events: none; opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
  transform: translateX(-50%) translateY(4px);
  z-index: 50;
  min-width: 140px; text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}
.sym-tooltip::after {
  content: '';
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--pill-color, #6FA035);
}
.sym-tooltip-num   { font-family: var(--font-head); font-size: 9px; letter-spacing: 3px; color: var(--pill-color, #6FA035); opacity: .7; margin-bottom: 3px; }
.sym-tooltip-name  { font-family: var(--font-head); font-size: 12px; font-weight: 600; color: var(--oyster); margin-bottom: 4px; letter-spacing: .5px; }
.sym-tooltip-teach { font-family: var(--font-body); font-size: 12px; font-style: italic; color: #EAE3D5AA; line-height: 1.5; }
.sym-pill:hover .sym-tooltip,
.sym-pill:focus  .sym-tooltip {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

/* Join section */
.join-sub {
  font-family: var(--font-body); font-style: italic;
  font-size: 15px; color: var(--oyster-dim); margin-bottom: 32px; margin-top: 4px;
}

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: 8px; letter-spacing: 3px;
  text-transform: uppercase; color: #EAE3D533;
  opacity: 0; transition: opacity 1.5s ease 1.4s;
}
.scroll-cue.visible { opacity: 1; }
.scroll-line { width: 1px; height: 28px; background: linear-gradient(var(--gold), transparent); margin-top: 4px; }

/* ── TICKER ──────────────────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden; padding: 16px 0;
  background: #C9962A0D;
  border-top: 1px solid #C9962A22; border-bottom: 1px solid #C9962A22;
}
.ticker-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  font-family: var(--font-body); font-size: 14px; letter-spacing: .4px;
  color: var(--sand-light); flex-shrink: 0; padding: 0 40px;
}
.ticker-sep { color: #C9962A44; padding: 0; }

/* ── MISSION PILLARS ─────────────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.pillar {
  border-radius: 20px; padding: 32px 28px;
  transition: all .3s ease;
}
.pillar:hover { transform: translateY(-3px); }
.pillar-marsh { background: #6FA03508; border: 1px solid #6FA03522; }
.pillar-marsh:hover { border-color: #6FA03555; }
.pillar-gold  { background: #C9962A08; border: 1px solid #C9962A22; }
.pillar-gold:hover  { border-color: #C9962A55; }
.pillar-water { background: #3A82A808; border: 1px solid #3A82A822; }
.pillar-water:hover { border-color: #3A82A855; }
.pillar-icon  { font-size: 36px; margin-bottom: 16px; }
.pillar h3 { font-family: var(--font-head); font-size: 17px; font-weight: 600; letter-spacing: .5px; margin-bottom: 10px; color: var(--oyster); }
.pillar p  { font-family: var(--font-body); font-size: 15px; line-height: 1.75; color: #EAE3D588; }
.pillar-bar { height: 2px; border-radius: 1px; margin-top: 16px; width: 32px; }
.pillar-bar-marsh { background: var(--marsh-light); }
.pillar-bar-gold  { background: var(--gold); }
.pillar-bar-water { background: var(--water-light); }

/* ── COMPANION SPOTLIGHT ─────────────────────────────────────────────────── */
.companion-orb {
  width: 72px; height: 72px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center; font-size: 32px;
  box-shadow: 0 0 40px #C9962A44; margin: 0 auto 20px;
  animation: glow 3s ease-in-out infinite;
}
.ask-bar {
  display: flex; align-items: center; gap: 10px;
  background: #EAE3D509; border: 1px solid #C9962A33;
  border-radius: 16px; padding: 8px 8px 8px 20px;
  margin-bottom: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.ask-icon { color: var(--gold); flex-shrink: 0; }
.ask-bar input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--oyster); font-size: 16px; font-family: var(--font-body);
}
.ask-bar input::placeholder { color: #EAE3D555; }
.btn-ask {
  background: linear-gradient(135deg, var(--gold), var(--sand-light));
  border-radius: 10px; padding: 11px 22px;
  color: var(--indigo-dark); font-family: var(--font-head);
  font-weight: 700; font-size: 13px; letter-spacing: .5px;
  transition: transform .2s;
}
.btn-ask:hover { transform: scale(1.04); }
.demo-prompts { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 18px; }
.demo-pill {
  border-radius: 100px; padding: 7px 14px; font-size: 13px; font-family: var(--font-body);
  cursor: pointer; transition: all .2s; border: 1px solid;
}
.demo-pill-root  { background: #6FA03510; border-color: #6FA03528; color: #EAE3D5CC; }
.demo-pill-root:hover  { background: #6FA03522; border-color: #6FA03555; }
.demo-pill-porch { background: #D4B07010; border-color: #D4B07028; color: #EAE3D5CC; }
.demo-pill-porch:hover { background: #D4B07022; border-color: #D4B07055; }
.demo-pill-net   { background: #3D6E1A10; border-color: #3D6E1A28; color: #EAE3D5CC; }
.demo-pill-net:hover   { background: #3D6E1A22; border-color: #3D6E1A55; }
.answer-box {
  background: #EAE3D507; border: 1px solid #C9962A22;
  border-radius: 14px; padding: 20px 24px;
  font-family: var(--font-body); font-size: 15px; line-height: 1.8;
  color: var(--oyster); white-space: pre-wrap;
  animation: rise .5s ease;
  max-width: 100%;
}
.answer-box.loading { display: flex; gap: 6px; justify-content: center; align-items: center; }
.dot-loader {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  animation: dotPulse 1s ease-in-out infinite;
}
.dot-loader:nth-child(2) { animation-delay: .2s; }
.dot-loader:nth-child(3) { animation-delay: .4s; }
.hidden { display: none !important; }

/* ── INITIATIVES ─────────────────────────────────────────────────────────── */
.initiatives-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.init-card {
  background: var(--bg-warm); border-radius: 22px; padding: 30px 28px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: all .35s var(--ease-out);
}
.init-card:hover { transform: translateY(-4px); }
.init-card.active { transform: translateY(-5px); }
.init-card-header { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 14px; }
.init-sym-wrap { padding: 12px; border-radius: 14px; flex-shrink: 0; }
.init-tag {
  display: inline-block; border-radius: 100px; padding: 3px 12px;
  font-family: var(--font-head); font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 8px; border: 1px solid;
}
.init-name { font-family: var(--font-head); font-weight: 600; font-size: clamp(16px,2vw,20px); letter-spacing: .5px; color: var(--oyster); line-height: 1.2; }
.init-icon { font-size: 28px; flex-shrink: 0; }
.init-desc { font-family: var(--font-body); font-size: 15px; line-height: 1.8; color: #EAE3D599; margin-bottom: 14px; }
.init-features {
  overflow: hidden; max-height: 0;
  transition: max-height .45s ease;
  border-top: 1px solid transparent; padding-top: 0;
}
.init-features.open { max-height: 160px; padding-top: 14px; }
.init-features-inner { display: flex; flex-wrap: wrap; gap: 6px; }
.init-feature-pill {
  border-radius: 100px; padding: 5px 12px;
  font-family: var(--font-body); font-size: 12px; border: 1px solid;
}
.init-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.init-cta {
  border-radius: 100px; padding: 8px 20px;
  font-family: var(--font-body); font-size: 13px; cursor: pointer;
  transition: all .2s; border: 1px solid;
}
.init-sym-label { font-family: var(--font-head); font-size: 8px; letter-spacing: 2px; text-transform: uppercase; }

/* ── THE SEVEN ───────────────────────────────────────────────────────────── */
.seven-row {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 28px;
}
.seven-card {
  background: var(--card-bg); border: 1.5px solid var(--card-border);
  border-radius: 18px; padding: 18px 14px; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  flex: 1 1 100px; max-width: 140px; min-width: 90px;
  transition: all .3s var(--ease-out);
}
.seven-card:hover   { transform: translateY(-2px); }
.seven-card.active  { transform: translateY(-4px); box-shadow: 0 16px 40px var(--card-glow); }
.seven-card-name    { font-family: var(--font-body); font-weight: 700; font-size: 13px; color: var(--oyster); text-align: center; }
.seven-card-value   { font-family: var(--font-head); font-size: 7px; letter-spacing: 2.5px; text-transform: uppercase; text-align: center; }

.seven-detail {
  background: #EAE3D50A; border: 1px solid #C9962A28;
  border-radius: 20px; padding: 22px 28px;
  display: flex; gap: 20px; align-items: center;
  max-width: 640px; margin: 0 auto 28px;
  animation: rise .35s ease;
}
.seven-detail-num   { font-family: var(--font-head); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 4px; }
.seven-detail-name  { font-family: var(--font-body); font-weight: 700; font-size: 20px; margin-bottom: 2px; color: var(--oyster); }
.seven-detail-value { font-family: var(--font-body); font-style: italic; font-size: 14px; color: #EAE3D588; }

.seven-epigraph {
  display: inline-flex; align-items: center; gap: 10px;
  color: #C9962AAA; font-style: italic;
  font-family: var(--font-body); font-size: 17px;
  margin-bottom: 16px;
}
.epigraph-rule { display: block; width: 24px; height: 1px; background: #C9962A44; }

.seven-philosophy {
  max-width: 640px; margin: 0 auto 24px;
  background: #C9962A07; border: 1px solid #C9962A18;
  border-radius: 16px; padding: 24px 32px;
}
.seven-philosophy p {
  font-family: var(--font-body); font-style: italic;
  font-size: 16px; line-height: 1.9; color: #EAE3D5CC; text-align: center;
}
.seven-philosophy strong { font-style: normal; }

/* ── STATS ───────────────────────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-block {
  text-align: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.stat-block.visible { opacity: 1; transform: translateY(0); }
.stat-icon   { font-size: 36px; margin-bottom: 8px; }
.stat-number { font-family: var(--font-head); font-weight: 700; font-size: clamp(32px, 4vw, 52px); color: var(--oyster); line-height: 1; }
.stat-label  { font-family: var(--font-body); font-size: 14px; letter-spacing: .5px; color: var(--oyster-dim); margin-top: 4px; }

/* ── EVENTS ──────────────────────────────────────────────────────────────── */
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.event-card {
  background: var(--bg-warm); border: 1px solid #D4B07022;
  border-radius: 18px; padding: 22px 20px; cursor: pointer;
  transition: all .3s ease;
}
.event-card:hover { border-color: #D4B07044; transform: translateY(-2px); }
.event-card.active { border-color: #D4B07088; box-shadow: 0 12px 36px #D4B07022; }
.event-icon  { font-size: 28px; margin-bottom: 10px; }
.event-tag   {
  display: inline-block; background: #D4B07018; border: 1px solid #D4B07028;
  color: #D4B070; border-radius: 100px; padding: 3px 10px;
  font-family: var(--font-head); font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 8px;
}
.event-name  { font-family: var(--font-body); font-weight: 700; font-size: 17px; color: var(--oyster); margin-bottom: 4px; }
.event-date  { font-family: var(--font-body); font-size: 13px; color: #D4B070AA; margin-bottom: 8px; }
.event-desc  {
  font-family: var(--font-body); font-size: 14px; line-height: 1.7; color: #EAE3D588;
  overflow: hidden; max-height: 0; transition: max-height .4s ease;
}
.event-desc.open { max-height: 100px; }

/* ── SUPPORT ─────────────────────────────────────────────────────────────── */
.support-basket { display: flex; justify-content: center; margin-bottom: 24px; animation: glow 4s ease-in-out infinite; }
.join-form {
  display: flex; gap: 8px; max-width: 480px; margin: 0 auto 24px;
  background: #EAE3D509; border: 1px solid #C9962A33;
  border-radius: 14px; padding: 8px;
}
.join-form input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--oyster); padding: 10px 14px;
  font-family: var(--font-body); font-size: 16px;
}
.join-form input::placeholder { color: #EAE3D555; }
.join-success {
  background: #C9962A14; border: 1px solid #C9962A33;
  border-radius: 14px; padding: 18px 24px;
  max-width: 480px; margin: 0 auto 24px; text-align: center;
  font-family: var(--font-body); font-style: italic; font-size: 16px; color: var(--gold);
  animation: rise .5s ease;
}
.support-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.btn-action {
  border-radius: 100px; padding: 10px 22px;
  font-family: var(--font-body); font-size: 14px; cursor: pointer;
  transition: all .2s; border: 1px solid;
}
.btn-action-gold  { background: #C9962A12; border-color: #C9962A28; color: var(--gold); }
.btn-action-gold:hover  { background: #C9962A24; }
.btn-action-marsh { background: #6FA03512; border-color: #6FA03528; color: var(--marsh-light); }
.btn-action-marsh:hover { background: #6FA03524; }
.btn-action-water { background: #3A82A812; border-color: #3A82A828; color: var(--water-light); }
.btn-action-water:hover { background: #3A82A824; }
.btn-action-sand  { background: #D4B07012; border-color: #D4B07028; color: var(--sand-light); }
.btn-action-sand:hover  { background: #D4B07024; }
.btn-action-pale  { background: #9DC85A12; border-color: #9DC85A28; color: var(--marsh-pale); }
.btn-action-pale:hover  { background: #9DC85A24; }
.creed-line {
  font-family: var(--font-body); font-style: italic; font-size: 16px;
  color: #EAE3D555; margin-bottom: 6px;
}
.powered-by { font-family: var(--font-head); font-size: 10px; letter-spacing: 2px; color: #C9962A44; text-transform: uppercase; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.footer { background: var(--bg-ink); border-top: 1px solid #C9962A18; padding: 60px 0 32px; }
.footer-inner { display: flex; flex-direction: column; gap: 0; }
.footer-brand { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid #C9962A14; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-org-name { font-family: var(--font-head); font-size: 22px; font-weight: 700; letter-spacing: 2px; color: var(--oyster); }
.footer-org-tag  { font-family: var(--font-body); font-style: italic; font-size: 13px; color: #C9962A66; }
.footer-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; margin-bottom: 40px; }
.footer-col-title { font-family: var(--font-head); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-link { display: block; font-family: var(--font-body); font-size: 14px; color: #EAE3D555; margin-bottom: 8px; transition: color .2s; }
.footer-link:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #C9962A10; padding-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom p { font-family: var(--font-body); font-size: 12px; color: #EAE3D533; }
.footer-ip { font-style: italic; max-width: 600px; }

/* ── FAB ─────────────────────────────────────────────────────────────────── */
.fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold));
  font-size: 24px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px #C9962A55;
  animation: glow 3s ease-in-out infinite;
  transition: transform .2s ease;
}
.fab:hover { transform: scale(1.1); }
.fab.hidden { display: none; }

/* ── CHAT ────────────────────────────────────────────────────────────────── */
.chat-overlay {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 24px;
  animation: fadeIn .25s ease;
}
.chat-panel {
  width: min(440px, 100%); height: min(600px, 90vh);
  background: linear-gradient(180deg, #090C06, #0C1008);
  border: 1px solid #C9962A44; border-radius: 24px;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 100px rgba(0,0,0,.9), 0 0 0 1px #C9962A22;
  overflow: hidden;
  animation: rise .4s ease;
}
.chat-header {
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid #C9962A22; background: #07090599; flex-shrink: 0;
}
.chat-orb {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  box-shadow: 0 0 16px #C9962A44;
  animation: glow 3s ease-in-out infinite;
}
.chat-orb.loading { animation: orbPulse .8s ease-in-out infinite; }
.chat-title-block { flex: 1; }
.chat-title  { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--oyster); }
.chat-status { font-family: var(--font-head); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
.chat-close  {
  background: #EAE3D511; border: 1px solid #EAE3D522;
  color: var(--oyster); width: 28px; height: 28px; border-radius: 7px;
  font-size: 15px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.chat-close:hover { background: #EAE3D522; }

.chat-messages {
  flex: 1; overflow-y: auto; padding: 14px 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.msg { display: flex; }
.msg-user      { justify-content: flex-end; animation: rise .3s ease; }
.msg-assistant { justify-content: flex-start; animation: rise .3s ease; }
.msg-bubble {
  max-width: 85%; padding: 10px 14px; border-radius: 14px;
  font-family: var(--font-body); font-size: 14px; line-height: 1.65;
  white-space: pre-wrap;
}
.msg-user .msg-bubble {
  background: linear-gradient(135deg, var(--gold), var(--sand-light));
  color: var(--indigo-dark);
  border-bottom-right-radius: 3px;
}
.msg-assistant .msg-bubble {
  background: #EAE3D50D; border: 1px solid #C9962A1A;
  color: var(--oyster);
  border-bottom-left-radius: 3px;
}
.msg-typing { display: flex; gap: 5px; padding: 10px 14px; }
.chat-quick {
  padding: 0 12px 8px; display: flex; flex-wrap: wrap; gap: 5px;
  flex-shrink: 0;
}
.quick-pill {
  background: #C9962A12; border: 1px solid #C9962A28;
  color: var(--sand-light); border-radius: 100px; padding: 5px 11px;
  font-size: 12px; font-family: var(--font-body); cursor: pointer;
  transition: background .2s; white-space: nowrap;
}
.quick-pill:hover { background: #C9962A24; }
.chat-input-row {
  padding: 10px 12px; border-top: 1px solid #C9962A1A;
  display: flex; gap: 8px; background: #07090566; flex-shrink: 0;
}
#chat-input {
  flex: 1; background: #EAE3D50D; border: 1px solid #C9962A28;
  border-radius: 10px; padding: 9px 13px; color: var(--oyster);
  font-size: 14px; font-family: var(--font-body); outline: none;
}
#chat-input::placeholder { color: #EAE3D555; }
.chat-send-btn {
  background: linear-gradient(135deg, var(--gold), var(--sand-light));
  border-radius: 10px; width: 40px; height: 40px;
  color: var(--indigo-dark); font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; flex-shrink: 0;
}
.chat-send-btn:disabled { background: #EAE3D514; color: #EAE3D544; cursor: default; }

/* ── WHAT IS SHEDWORKS cards ──────────────────────────────────────────────── */
.what-section { padding: 80px 0; }
.what-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.what-card {
  background: #0C0A06;
  border: 1px solid #C9962A1A;
  border-radius: 20px;
  padding: 36px 28px 28px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.what-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #C9962A44, transparent);
}
.what-card:hover {
  border-color: #C9962A44;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.what-card-sym { margin-bottom: 20px; }
.what-card-title {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 600; letter-spacing: .5px;
  color: var(--oyster); margin-bottom: 10px;
}
.what-card-body {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.8;
  color: #EAE3D588;
}
.what-card-rule { width: 32px; height: 2px; border-radius: 1px; margin-top: 20px; }

/* ── FOUNDER SECTION ─────────────────────────────────────────────────────── */
.founder-section { border-top: 1px solid #C9962A14; border-bottom: 1px solid #C9962A14; }
.founder-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
}
.founder-portrait {
  position: sticky; top: 100px;
}
.founder-portrait-inner {
  aspect-ratio: 3/4;
  background: #0C0A06;
  border: 1px dashed #C9962A33;
  border-radius: 12px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: #C9962A55;
  font-family: var(--font-head);
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
}
.founder-portrait-label { color: #C9962A55; font-family: var(--font-head); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; }
.founder-title { margin-bottom: 20px; }
.founder-body {
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.85;
  color: #EAE3D5AA;
  margin-bottom: 16px;
}
.founder-rule {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0;
}
.founder-creed {
  font-family: var(--font-body); font-style: italic;
  font-size: 18px; color: #C9962AAA; letter-spacing: .3px;
}

/* ── EMAIL SIGNUP SECTION ─────────────────────────────────────────────────── */
.email-section { border-top: 1px solid #C9962A14; }
.email-privacy {
  font-family: var(--font-body); font-size: 12px;
  color: #EAE3D533; margin-top: 16px; font-style: italic;
}

/* ── SEVEN short label ───────────────────────────────────────────────────── */
.sym-pill-short {
  font-family: var(--font-head);
  font-size: 8px; letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pill-color, #6FA035);
  opacity: .65;
  margin-top: -2px;
}

/* ── MOBILE SPACING (item 3) ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero-headline   { margin-bottom: 18px; }
  .hero-tagline    { margin-bottom: 20px; }
  .hero-mission    { margin-bottom: 14px; font-size: 15px; }
  .hero-sub        { margin-bottom: 36px; }
  .hero-ctas       { gap: 14px; margin-bottom: 40px; }
  .hero-seven-label{ margin-bottom: 16px; }
  .hero-seven-row  { gap: 8px; }
  .what-cards      { grid-template-columns: 1fr; gap: 14px; }
  .founder-inner   { grid-template-columns: 1fr; gap: 32px; }
  .founder-portrait{ position: static; max-width: 200px; margin: 0 auto; }
}
@media (max-width: 860px) {
  .pillars         { grid-template-columns: 1fr; }
  .initiatives-grid{ grid-template-columns: 1fr; }
  .stats-grid      { grid-template-columns: repeat(2,1fr); }
  .events-grid     { grid-template-columns: repeat(2,1fr); }
  .footer-cols     { grid-template-columns: repeat(2,1fr); }
  .hero-ctas       { flex-direction: column; align-items: center; }
  .seven-row       { gap: 8px; }
  .seven-card      { max-width: 110px; padding: 14px 10px; }
}
@media (max-width: 560px) {
  .section { padding: 72px 0; }
  .events-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .seven-card  { flex: 1 1 80px; }
  .chat-panel  { border-radius: 18px; }
  .seven-detail{ flex-direction: column; text-align: center; }
  .ask-bar     { flex-wrap: wrap; }
}
