:root{
  --navy:#16324F;
  --navy-deep:#0F2438;
  --gold:#C99A2E;
  --gold-light:#E8C871;
  --cream:#F7F2E7;
  --clay:#B65C38;
  --charcoal:#24211C;
  --paper:#FFFDF8;
  --line: rgba(22,50,79,0.16);
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--cream);
  color:var(--charcoal);
  font-family:'Inter', sans-serif;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{
  font-family:'Fraunces', serif;
  margin:0;
  color:var(--navy-deep);
  letter-spacing:-0.01em;
}
a{color:inherit;}
img{max-width:100%;display:block;}
.wrap{max-width:1140px;margin:0 auto;padding:0 28px;}
.eyebrow{
  font-family:'Space Mono', monospace;
  font-size:0.72rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--clay);
  font-weight:700;
}

/* ---------- Tag / label motif (signature element) ---------- */
.tag{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:'Space Mono', monospace;
  font-size:0.72rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-weight:700;
  background:var(--paper);
  border:1.5px dashed var(--navy);
  color:var(--navy-deep);
  padding:7px 14px 7px 10px;
  border-radius:2px;
}
.tag::before{
  content:"";
  width:7px;height:7px;
  border-radius:50%;
  background:var(--clay);
  flex:none;
}
.tag.gold{border-color:var(--gold);}
.tag.gold::before{background:var(--gold);}

/* ---------- Header ---------- */
header{
  position:sticky; top:0; z-index:40;
  background:var(--navy-deep);
  border-bottom:3px solid var(--gold);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 28px;
  max-width:1140px;margin:0 auto;
}
.brand{
  display:flex;align-items:center;gap:12px;
  font-family:'Fraunces', serif;
  color:var(--paper);
  text-decoration:none;
}
.brand-mark{
  width:38px;height:38px;border-radius:50%;
  border:2px solid var(--gold);
  display:flex;align-items:center;justify-content:center;
  font-family:'Space Mono',monospace;
  font-weight:700;color:var(--gold);
  font-size:0.85rem;
  flex:none;
}
.brand-text{line-height:1.15;}
.brand-text strong{display:block;font-size:1.05rem;font-weight:700;}
.brand-text span{display:block;font-family:'Inter',sans-serif;font-size:0.68rem;letter-spacing:0.05em;color:var(--gold-light);text-transform:uppercase;}
nav.links{display:flex;gap:26px;align-items:center;}
nav.links a{
  color:var(--paper);
  text-decoration:none;
  font-size:0.9rem;
  font-weight:500;
  opacity:0.82;
  padding-bottom:3px;
  border-bottom:2px solid transparent;
}
nav.links a:hover{opacity:1;color:var(--gold-light);}
nav.links a.current{opacity:1;border-bottom-color:var(--gold);}
.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:36px;
  height:36px;
  padding:0;
  background:none;
  border:none;
  cursor:pointer;
  flex:none;
}
.nav-toggle span{
  display:block;
  width:100%;
  height:2px;
  background:var(--paper);
  border-radius:1px;
  transition:transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle.is-active span:nth-child(2){opacity:0;}
.nav-toggle.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
.btn{
  font-family:'Inter',sans-serif;
  font-weight:600;
  font-size:0.88rem;
  padding:10px 20px;
  border-radius:2px;
  text-decoration:none;
  display:inline-block;
  border:1.5px solid transparent;
  cursor:pointer;
}
.btn-gold{background:var(--gold);color:var(--navy-deep);}
.btn-gold:hover{background:var(--gold-light);}
.btn-outline{border-color:var(--paper);color:var(--paper);background:transparent;}
.btn-outline:hover{background:rgba(255,255,255,0.08);}
.btn-clay{background:var(--clay);color:var(--paper);}
.btn-clay:hover{background:#a04f30;}

/* ---------- Page header banner (non-home pages) ---------- */
.page-banner{
  background:var(--navy-deep);
  color:var(--paper);
  padding:56px 0 44px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.page-banner .eyebrow{color:var(--gold-light);}
.page-banner h1{color:var(--paper);font-size:clamp(2rem,3.6vw,2.7rem);font-weight:600;margin:12px 0 12px;}
.page-banner p{color:rgba(255,253,248,0.75);max-width:56ch;font-size:1.02rem;margin:0;}
.crumb{font-family:'Space Mono',monospace;font-size:0.72rem;color:rgba(255,253,248,0.5);margin-bottom:10px;}
.crumb a{text-decoration:none;color:rgba(255,253,248,0.75);}
.crumb a:hover{color:var(--gold-light);}

/* ---------- Hero (home) ---------- */
.hero{
  position:relative;
  background:var(--navy-deep);
  color:var(--paper);
  overflow:hidden;
  padding:0;
}
.hero-bg-video{
  position:absolute;
  top:0;left:0;
  width:100%;height:100%;
  object-fit:cover;
  z-index:0;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(15,36,56,0.8), rgba(15,36,56,0.92));
  z-index:1;
}
.hero-center{
  position:relative;
  z-index:2;
}
.hero-grid{
  max-width:640px;
  padding:38px 0 22px;
}
.hero-eyebrow{color:var(--gold-light);}
.hero h1{
  font-size:clamp(2rem, 3.4vw, 2.7rem);
  color:var(--paper);
  font-weight:600;
  line-height:1.1;
  margin:10px 0 14px;
}
.hero h1 em{
  font-style:italic;
  color:var(--gold-light);
  font-weight:500;
}
.hero p.lede{
  font-size:1.02rem;
  max-width:46ch;
  color:rgba(255,253,248,0.82);
  margin-bottom:18px;
}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:22px;}
.hero-strip{
  position:relative;
  z-index:2;
  border-top:1px solid rgba(255,255,255,0.15);
  padding:16px 0;
}
.hero-strip .wrap{
  display:flex;
  gap:36px;
  flex-wrap:wrap;
  justify-content:space-between;
}
.stat{font-family:'Space Mono',monospace;}
.stat b{display:block;color:var(--gold-light);font-size:1.3rem;}
.stat span{font-size:0.72rem;text-transform:uppercase;letter-spacing:0.08em;color:rgba(255,253,248,0.65);}

/* ---------- Section shell ---------- */
section{padding:88px 0;}
section.tight{padding:64px 0;}
.section-head{max-width:640px;margin-bottom:48px;}
.section-head h2{font-size:clamp(1.7rem,3vw,2.3rem);font-weight:600;margin:12px 0 14px;}
.section-head p{color:#4a463d;font-size:1.02rem;}

/* ---------- About ---------- */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
.about-copy p{margin:0 0 16px;color:#3c392f;}
.mission-card{
  background:var(--navy-deep);
  color:var(--paper);
  padding:32px;
  border-radius:6px;
  position:relative;
}
.mission-card::before{
  content:"\201C";
  font-family:'Fraunces',serif;
  font-size:4rem;
  color:var(--gold);
  position:absolute;
  top:6px;left:20px;
  line-height:1;
  opacity:0.7;
}
.mission-card p{
  font-family:'Fraunces',serif;
  font-style:italic;
  font-size:1.2rem;
  line-height:1.5;
  margin:22px 0 18px;
  position:relative;
}
.mission-card .who{font-family:'Space Mono',monospace;font-size:0.75rem;letter-spacing:0.06em;color:var(--gold-light);text-transform:uppercase;}

.value-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:16px;}
.value-card{background:var(--paper);border:1px solid var(--line);border-radius:6px;padding:24px;}
.value-card .tag{margin-bottom:14px;}
.value-card h3{font-size:1.05rem;margin-bottom:8px;}
.value-card p{font-size:0.92rem;color:#4a463d;margin:0;}

/* ---------- What we collect : crate/label cards ---------- */
.crate-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.crate{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:6px;
  padding:12px 12px 0;
}
.crate-img{
  width:100%;
  height:140px;
  object-fit:cover;
  display:block;
  border:1px solid var(--gold);
  border-radius:4px;
}
.crate-body{
  padding:18px 8px 22px;
  position:relative;
}
.crate-body::before{
  content:attr(data-code);
  position:absolute;
  top:14px; right:14px;
  font-family:'Space Mono',monospace;
  font-size:0.68rem;
  color:var(--line);
  letter-spacing:0.05em;
}
.crate .tag{margin-bottom:16px;}
.crate h3{font-size:1.15rem;font-weight:600;margin-bottom:8px;}
.crate ul{margin:0;padding:0;list-style:none;}
.crate li{
  font-size:0.92rem;
  color:#4a463d;
  padding:6px 0;
  border-top:1px dashed var(--line);
}
.crate li:first-child{border-top:none;}

.collect-note{
  margin-top:32px;
  display:flex;
  align-items:center;
  gap:16px;
  background:var(--gold);
  color:var(--navy-deep);
  padding:18px 24px;
  border-radius:6px;
  font-weight:600;
}
.collect-note svg{flex:none;}

/* ---------- How it works ---------- */
.dark{background:var(--navy-deep);color:var(--paper);}
.dark .section-head h2{color:var(--paper);}
.dark .section-head p{color:rgba(255,253,248,0.7);}
.dark .eyebrow{color:var(--gold-light);}
.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  counter-reset:step;
  position:relative;
}
.steps::before{
  content:"";
  position:absolute;
  top:22px; left:0; right:0;
  height:1px;
  background:rgba(255,255,255,0.18);
}
.step{position:relative;padding:0 20px 0 0;}
.step:last-child{padding-right:0;}
.step-num{
  counter-increment:step;
  width:44px;height:44px;
  border-radius:50%;
  background:var(--navy-deep);
  border:2px solid var(--gold);
  color:var(--gold-light);
  font-family:'Space Mono',monospace;
  font-weight:700;
  display:flex;align-items:center;justify-content:center;
  position:relative;z-index:2;
  margin-bottom:18px;
}
.step-num::before{content:counter(step,decimal-leading-zero);}
.step h3{color:var(--paper);font-size:1.05rem;font-weight:600;margin-bottom:8px;}
.step p{color:rgba(255,253,248,0.68);font-size:0.92rem;margin:0;}

/* ---------- Impact / destination ---------- */
.impact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.route{
  background:var(--cream);
  border:1px solid var(--line);
  border-radius:6px;
  padding:30px;
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.route:hover{
  transform:translateY(-4px);
  border-color:var(--gold);
  box-shadow:0 12px 28px rgba(22,50,79,0.14);
}
.route-line{
  display:flex;align-items:center;gap:10px;
  font-family:'Space Mono',monospace;
  font-size:0.85rem;
  color:var(--navy-deep);
  margin-bottom:22px;
}
.route-line .dot{width:9px;height:9px;border-radius:50%;background:var(--clay);}
.route-line .path{flex:1;height:1px;background:repeating-linear-gradient(90deg, var(--navy) 0 6px, transparent 6px 12px);}
.route-line .dest{width:9px;height:9px;border-radius:50%;background:var(--gold);}
.route h3{font-size:1.3rem;margin-bottom:10px;}
.route p{color:#4a463d;font-size:0.96rem;}

/* ---------- Flyer download ---------- */
.flyer-block{max-width:560px;}
.flyer-copy .tag{margin-bottom:18px;}
.flyer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}
.flyer-frame{
  border:1px solid var(--line);
  background:var(--paper);
  padding:20px;
  border-radius:6px;
}
.flyer-frame img{
  display:block;
  width:100%;
  border-radius:6px;
}

/* ---------- Contact / CTA ---------- */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
}
.contact-card{
  background:rgba(255,253,248,0.05);
  border:1px solid rgba(255,253,248,0.16);
  border-radius:6px;
  padding:32px;
}
.contact-row{display:flex;gap:14px;align-items:flex-start;margin-bottom:20px;}
.contact-row:last-child{margin-bottom:0;}
.contact-row .ic{
  width:36px;height:36px;flex:none;
  border-radius:50%;
  border:1.5px solid var(--gold);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold-light);
}
.contact-row div h4{margin:0 0 3px;font-size:0.72rem;letter-spacing:0.08em;text-transform:uppercase;font-family:'Space Mono',monospace;color:rgba(255,253,248,0.55);font-weight:400;}
.contact-row div p{margin:0;font-size:1.05rem;font-weight:600;}
.contact-row div a{text-decoration:none;color:var(--navy-deep);}
.contact-row div a:hover{color:var(--clay);}

.form-card{
  background:var(--paper);
  color:var(--charcoal);
  border-radius:6px;
  padding:32px;
}
.form-message{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  background:var(--gold);
  color:var(--navy-deep);
  padding:14px 16px;
  border-radius:6px;
  font-weight:600;
  font-size:0.92rem;
  margin-bottom:20px;
}
.form-message-close{
  background:none;
  border:none;
  color:var(--navy-deep);
  font-size:1.3rem;
  line-height:1;
  cursor:pointer;
  padding:0;
  flex:none;
}
.form-message-close:hover{color:var(--clay);}
.form-card h3{font-size:1.2rem;margin-bottom:6px;}
.form-card p.hint{color:#6b675c;font-size:0.9rem;margin:0 0 20px;}
.field{margin-bottom:16px;}
.field label{display:block;font-size:0.78rem;font-weight:600;margin-bottom:6px;color:var(--navy-deep);}
.field input,.field select,.field textarea{
  width:100%;
  padding:11px 12px;
  border:1px solid var(--line);
  border-radius:3px;
  font-family:'Inter',sans-serif;
  font-size:0.95rem;
  background:var(--cream);
  color:var(--charcoal);
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:2px solid var(--gold);
  outline-offset:1px;
}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.form-card .btn-clay{width:100%;text-align:center;border:none;font-size:0.95rem;padding:13px;}

/* ---------- CTA banner (reused across pages) ---------- */
.cta-banner{
  background:var(--navy-deep);
  color:var(--paper);
  border-top:3px solid var(--gold);
}
.cta-banner .wrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  max-width:620px;
  margin:0 auto;
  gap:14px;
  padding:72px 28px;
}
.cta-banner .eyebrow{color:var(--gold-light);}
.cta-banner h2{font-size:1.9rem;line-height:1.3;color:var(--paper);margin:0;}
.cta-banner p{color:rgba(255,253,248,0.78);font-size:1.02rem;margin:0;}
.cta-banner .btn-clay{background:var(--gold);color:var(--navy-deep);padding:14px 30px;margin-top:10px;}
.cta-banner .btn-clay:hover{background:var(--gold-light);}

/* ---------- Footer ---------- */
footer{background:var(--navy-deep);color:rgba(255,253,248,0.6);padding:36px 0;border-top:3px solid var(--gold);}
.foot-row{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:14px;font-size:0.85rem;}
.foot-row a{text-decoration:none;color:rgba(255,253,248,0.75);}
.foot-row a:hover{color:var(--gold-light);}
.foot-links{display:flex;gap:20px;flex-wrap:wrap;}

/* ---------- Scroll reveal ---------- */
.reveal{
  opacity:0;
  transform:translateY(56px) scale(0.97);
  transition:opacity 0.9s cubic-bezier(.19,1,.22,1), transform 0.9s cubic-bezier(.19,1,.22,1);
  will-change:opacity, transform;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0) scale(1);
}
.reveal.no-anim{
  transition:none;
}
.reveal-stagger > *:nth-child(1){transition-delay:0ms;}
.reveal-stagger > *:nth-child(2){transition-delay:140ms;}
.reveal-stagger > *:nth-child(3){transition-delay:280ms;}
.reveal-stagger > *:nth-child(4){transition-delay:420ms;}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .about-grid, .impact-grid, .contact-grid, .flyer-grid{grid-template-columns:1fr;}
  .crate-grid{grid-template-columns:repeat(2,1fr);}
  .value-grid{grid-template-columns:1fr;}
  .steps{grid-template-columns:repeat(2,1fr);gap:32px 20px;}
  .steps::before{display:none;}
  .nav{flex-wrap:wrap;}
  nav.links{display:none;}
  nav.links.open{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
    width:100%;
    order:10;
    margin-top:16px;
    padding-top:16px;
    border-top:1px solid rgba(255,255,255,0.14);
  }
  nav.links a{width:100%;padding:8px 0;}
  nav.links .nav-cta{
    width:auto;
    padding:12px 22px;
    margin-top:10px;
  }
  .nav-toggle{display:flex;}
  .field-row{grid-template-columns:1fr;}
  .hero-grid{padding:32px 0 20px;}
  .hero-strip{padding:18px 0;}
  .hero-strip .wrap{display:grid;grid-template-columns:repeat(2,1fr);gap:18px 16px;}
}
@media (max-width:560px){
  .crate-grid{grid-template-columns:1fr;}
  .steps{grid-template-columns:1fr;}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  .hero-bg-video{display:none;}
  .reveal{transition:none;}
}
