/* =========================================================
   Unmuted — Louder Than Silence
   Hand-rolled stylesheet. No framework — just what the page
   actually needs, organized by section.
   ========================================================= */


:root {
  --ink:        #122622;
  --ink-2:      #0c1917;
  --parchment:  #f4efe1;
  --cream:      #faf7ef;
  --teal:       #3e8e85;
  --teal-soft:  #93c6bd;
  --gold:       #d8a441;
  --rose:       #bd5169;

  --max: 1100px;
  --gutter: 1.5rem;
  --radius: 3px;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink-2);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.serif { font-family: var(--serif); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip-link {
  position: absolute;
  top: -3rem;
  left: 0.75rem;
  background: var(--gold);
  color: var(--ink-2);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  z-index: 100;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0.75rem; }

/* ---------- buttons & links ---------- */
.btn {
  display: inline-block;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink-2);
  border-color: var(--gold);
}
.btn-gold:hover { background: #c8963c; border-color: #c8963c; }
.btn-outline {
  background: transparent;
  border-color: rgba(250, 247, 239, 0.35);
  color: var(--cream);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.text-link {
  text-decoration: underline;
  text-decoration-color: rgba(147, 198, 189, 0.55);
  text-underline-offset: 3px;
}
.text-link:hover { text-decoration-color: var(--gold); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ink);
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}
.brand { display: flex; align-items: baseline; gap: 0.6rem; text-decoration: none; }
.brand-name { font-family: var(--serif); font-size: 1.5rem; letter-spacing: -0.01em; }
.brand-tag {
  display: none;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal-soft);
}
@media (min-width: 640px) { .brand-tag { display: inline; } }

.main-nav { display: none; align-items: center; gap: 2rem; font-size: 0.92rem; }
.main-nav a:not(.btn) { text-decoration: none; border-bottom: 1px solid transparent; padding-bottom: 2px; }
.main-nav a:not(.btn):hover { border-bottom-color: var(--gold); color: var(--gold); }
@media (min-width: 860px) { .main-nav { display: flex; } .nav-toggle { display: none; } }

.nav-toggle {
  background: none; border: 0; color: var(--cream);
  padding: 0.4rem; margin-right: -0.4rem; cursor: pointer;
}
.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
  padding: 1rem var(--gutter) 1.25rem;
}
.mobile-nav a { text-decoration: none; }
.mobile-nav.is-open { display: flex; }
@media (min-width: 860px) { .mobile-nav { display: none !important; } }

/* ---------- hero ---------- */
.hero { background: var(--ink); color: var(--cream); }
.hero .wrap {
  display: grid;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}
@media (min-width: 860px) {
  .hero .wrap {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    padding-top: 5.5rem;
    padding-bottom: 6rem;
  }
}
.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--teal-soft);
  margin: 0 0 1.1rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 1.12;
  margin: 0 0 1.4rem;
  max-width: 15ch;
}
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 860px) { .hero h1 { font-size: 3.4rem; } }
.hero p.lede {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(244, 239, 225, 0.85);
  max-width: 34rem;
  margin: 0 0 2.1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 11rem;
}
@media (min-width: 860px) { .wave { height: 15rem; } }
.wave-bar {
  width: 11px;
  border-radius: 999px;
  transform-origin: bottom;
}
@media (min-width: 640px) { .wave-bar { width: 14px; } }
.wave-bar.c-teal { background: var(--teal); }
.wave-bar.c-soft { background: var(--teal-soft); }
.wave-bar.c-gold { background: var(--gold); }
.wave-bar.beat { animation: beat 3.4s ease-in-out infinite; }
@keyframes beat {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(0.86); }
}
@media (prefers-reduced-motion: reduce) { .wave-bar.beat { animation: none; } }

/* ---------- give / donate ---------- */
.section { padding: 3.75rem 0; }
@media (min-width: 860px) { .section { padding: 5rem 0; } }
.section-give { background: var(--parchment); }

.section-head { text-align: center; max-width: 38rem; margin: 0 auto 2.5rem; }
.section-head h2 { font-family: var(--serif); font-size: 1.9rem; margin: 0.6rem 0 1rem; }
@media (min-width: 640px) { .section-head h2 { font-size: 2.3rem; } }
.section-head p { line-height: 1.65; color: rgba(12, 25, 23, 0.72); }
.eyebrow-teal { color: var(--teal); }

.give-frame {
  background: #fff;
  border: 1px solid rgba(18, 38, 34, 0.08);
  border-radius: 10px;
  box-shadow: 0 16px 34px -20px rgba(12, 25, 23, 0.4);
  overflow: hidden;
}
.give-frame-inner { position: relative; overflow: hidden; height: 820px; width: 100%; }
.give-frame-inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.give-fallback { text-align: center; font-size: 0.9rem; color: rgba(12, 25, 23, 0.6); margin-top: 1rem; }

/* ---------- mission (editorial, numbered — not the usual 3-card grid) ---------- */
.section-mission { background: var(--cream); }
.mission-intro { max-width: 42rem; margin-bottom: 3rem; }
.mission-intro h2 { font-family: var(--serif); font-size: 1.9rem; margin: 0.6rem 0 1rem; }
@media (min-width: 640px) { .mission-intro h2 { font-size: 2.3rem; } }
.mission-intro p { line-height: 1.7; color: rgba(12, 25, 23, 0.75); font-size: 1.05rem; }

.mission-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(18, 38, 34, 0.12); }
.mission-list li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(18, 38, 34, 0.12);
}
@media (min-width: 640px) { .mission-list li { grid-template-columns: 4.5rem 1fr; } }
.mission-list .num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--teal);
  line-height: 1;
}
.mission-list h3 { margin: 0 0 0.35rem; font-family: var(--serif); font-size: 1.15rem; }
.mission-list p { margin: 0; color: rgba(12, 25, 23, 0.68); line-height: 1.6; font-size: 0.96rem; max-width: 40rem; }

/* ---------- shop ---------- */
.section-shop { background: var(--ink); color: var(--cream); }
.shop-head { margin-bottom: 2.25rem; }
.shop-head h2 { font-family: var(--serif); font-size: 1.9rem; margin: 0.5rem 0 0.6rem; }
@media (min-width: 640px) { .shop-head h2 { font-size: 2.2rem; } }
.shop-sub { font-size: 0.9rem; color: rgba(244, 239, 225, 0.6); margin: 0; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--ink-2);
  border: 1px solid rgba(250, 247, 239, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.product-card:hover { border-color: rgba(216, 164, 65, 0.55); }
.product-thumb { aspect-ratio: 1 / 1; background: rgba(244, 239, 225, 0.05); overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 0.9rem 1rem 1.05rem; }
.product-title { font-size: 0.88rem; line-height: 1.4; margin: 0 0 0.5rem; }
.product-row { display: flex; align-items: center; justify-content: space-between; }
.product-price { color: var(--gold); font-weight: 600; }
.product-soldout { font-size: 0.72rem; color: var(--rose); }
.product-shop-link { font-size: 0.72rem; color: var(--teal-soft); }

.shop-empty { color: rgba(244, 239, 225, 0.7); }
.shop-note { font-size: 0.78rem; color: rgba(244, 239, 225, 0.5); margin-top: 2.25rem; line-height: 1.6; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink-2); color: rgba(244, 239, 225, 0.7); }
.site-footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: 3rem 1.5rem;
}
@media (min-width: 640px) { .site-footer .wrap { flex-direction: row; align-items: center; } }
.footer-brand p { margin: 0; }
.footer-fineprint { font-size: 0.78rem; margin-top: 0.35rem !important; color: rgba(244, 239, 225, 0.5); }
.footer-brand .brand-name-sm { font-family: var(--serif); font-size: 1.15rem; color: var(--cream); margin-bottom: 0.2rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; font-size: 0.9rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
