/* ============================================================
   SomaSquish — "groovy 70s toy-shop" retro theme
   ============================================================ */

:root {
  --cream:      #F6E7C6;
  --cream-2:    #FBEFD3;
  --paper:      #FFF9EC;
  --ink:        #2A1E16;
  --ink-soft:   #5b4636;

  --red:    #E0503A;
  --orange: #EE8B33;
  --yellow: #F2B632;
  --green:  #6FA84B;
  --teal:   #2F9FB0;
  --blue:   #3E7CC0;
  --purple: #8A57A6;
  --pink:   #F0A39A;
  --pink-deep: #E8857A;

  --shadow:    6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --shadow-lg: 10px 10px 0 var(--ink);

  --radius: 22px;
  --radius-lg: 30px;

  --font-display: 'Bagel Fat One', 'Fredoka', system-ui, sans-serif;
  --font-head: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  --maxw: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  background-image: radial-gradient(rgba(42,30,22,.045) 0.5px, transparent 0.6px);
  background-size: 16px 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: min(var(--maxw), 92%); margin-inline: auto; }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.05; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* color helpers for the wordmark */
.c-red{color:var(--red)} .c-orange{color:var(--orange)} .c-yellow{color:var(--yellow)}
.c-green{color:var(--green)} .c-teal{color:var(--teal)} .c-blue{color:var(--blue)}
.c-purple{color:var(--purple)} .c-pink{color:var(--pink)} .c-cream{color:var(--cream-2)}

/* ---------- Wordmark ---------- */
.brand-wordmark {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: .015em;
  text-transform: uppercase;
  display: inline-flex;
}
.brand-wordmark b {
  font-weight: 400;
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  text-shadow: 2px 2px 0 rgba(42,30,22,.28);
  -webkit-mask-image: linear-gradient(180deg, #000 46%, rgba(0,0,0,.55) 100%);
  mask-image: linear-gradient(180deg, #000 46%, rgba(0,0,0,.55) 100%);
}
.brand-wordmark.small { font-size: 1.5rem; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  border: 2.5px solid var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-block;
  box-shadow: var(--shadow-sm);
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-head);
  font-weight: 600;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: var(--shadow-sm);
  background: var(--paper);
  font-size: 1rem;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-primary { background: var(--red); color: var(--paper); }
.btn-ghost { background: var(--paper); color: var(--ink); }
.btn-lg { padding: 15px 30px; font-size: 1.12rem; }
.btn-sm { padding: 9px 18px; font-size: 0.92rem; }

/* ---------- Announcement marquee ---------- */
.announcement { background: var(--ink); color: var(--cream); overflow: hidden; white-space: nowrap; }
.marquee {
  display: inline-flex; align-items: center; gap: 22px;
  padding: 9px 22px;
  animation: scroll 30s linear infinite;
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
}
.marquee .dot { color: var(--yellow); font-size: .5rem; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--cream); border-bottom: 3px solid var(--ink); }
.header-inner { display: flex; align-items: center; gap: 20px; padding: 12px 0; }
.brand { display: inline-flex; align-items: center; }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a { font-family: var(--font-head); font-weight: 600; font-size: 1rem; position: relative; }
.main-nav a::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 3px; background: var(--red); border-radius: 2px; transition: width .2s ease; }
.main-nav a:hover::after { width: 100%; }
.header-cta { flex-shrink: 0; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; }
.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 0 4%; background: var(--cream); border-bottom: 3px solid var(--ink); }
.mobile-nav.open { display: flex; padding-bottom: 18px; }
.mobile-nav a { font-family: var(--font-head); font-weight: 600; padding: 12px 4px; border-bottom: 2px dashed var(--cream-2); }
.mobile-nav .btn { margin-top: 10px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 56px 0 96px; background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.hero-rainbow {
  position: absolute; left: 50%; top: 4%; transform: translateX(-50%);
  width: 900px; height: 900px; max-width: 150vw; border-radius: 50%;
  background: radial-gradient(circle,
    transparent 0 26%,
    var(--purple) 26% 31%,
    var(--blue)   31% 36%,
    var(--teal)   36% 41%,
    var(--green)  41% 46%,
    var(--yellow) 46% 51%,
    var(--orange) 51% 56%,
    var(--red)    56% 61%,
    transparent 61%);
  opacity: .15; z-index: 0; pointer-events: none;
}
.hero-rainbow.small { top: -120%; opacity: .22; width: 620px; height: 620px; }
.hero-grain { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(var(--ink) 0.5px, transparent 0.7px); background-size: 20px 20px; opacity: .05; }
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 960px; margin-inline: auto; }

.hero-stage { position: relative; width: min(800px, 86%); margin: 30px auto 54px; }
.hero-logo-card {
  background: var(--cream-2);
  border: 4px solid var(--ink);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  transform: rotate(-1.4deg);
}
.hero-logo-card img { width: 100%; }
.hero-logo-card.logo-missing { min-height: 180px; display: grid; place-items: center; }
.hero-logo-card.logo-missing::after { content: 'SomaSquish'; font-family: var(--font-display); font-size: 2rem; color: var(--red); }

.squish-bubble {
  position: absolute; width: 130px; height: 130px; border-radius: 50%;
  border: 4px solid var(--ink); overflow: hidden; background: var(--cream);
  box-shadow: var(--shadow); z-index: 3;
  animation: bob 4s ease-in-out infinite;
}
.squish-bubble img { width: 100%; height: 100%; object-fit: cover; }
.sb1 { top: -40px; left: -52px; transform: rotate(-6deg); }
.sb2 { top: -34px; right: -54px; transform: rotate(6deg); animation-delay: .6s; }
.sb3 { bottom: -38px; left: -34px; transform: rotate(5deg); animation-delay: 1.1s; }
.sb4 { bottom: -44px; right: -30px; transform: rotate(-5deg); animation-delay: 1.6s; }
@keyframes bob { 0%,100% { translate: 0 0; } 50% { translate: 0 -9px; } }

.hero-tagline { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: 0; }
.lede { font-size: 1.18rem; max-width: 40ch; margin: 16px auto 0; color: var(--ink-soft); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin: 26px 0 22px; }

/* ---------- Dividers ---------- */
.divider-scallop {
  position: absolute; left: 0; bottom: 0; width: 100%; height: 34px; z-index: 2;
  background: radial-gradient(circle at 17px 34px, var(--paper) 17px, transparent 18px) repeat-x;
  background-size: 34px 34px;
}
.stripe-divider { display: flex; height: 16px; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.stripe-divider i { flex: 1; }
.stripe-divider i:nth-child(1){ background: var(--red); }
.stripe-divider i:nth-child(2){ background: var(--orange); }
.stripe-divider i:nth-child(3){ background: var(--yellow); }
.stripe-divider i:nth-child(4){ background: var(--green); }
.stripe-divider i:nth-child(5){ background: var(--teal); }
.stripe-divider i:nth-child(6){ background: var(--purple); }

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 16px 0 12px; }
.section-head .section-sub { color: var(--ink-soft); font-size: 1.08rem; }
.section-head.light .eyebrow { color: var(--cream); background: rgba(0,0,0,.18); border-color: var(--cream); }
.section-head.light h2, .section-head.light .section-sub { color: var(--cream); }

/* ---------- Value props ---------- */
.angles { background: var(--paper); padding: 54px 0; border-bottom: 3px solid var(--ink); }
.value-props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 30px; }
.value-prop { display: flex; align-items: flex-start; gap: 16px; text-align: left; }
.vp-emoji { flex-shrink: 0; width: 64px; height: 64px; display: grid; place-items: center; font-size: 1.95rem; border-radius: 50%; }
.value-prop:nth-child(1) .vp-emoji { background: #cfe9ec; }
.value-prop:nth-child(2) .vp-emoji { background: #fbe0cd; }
.value-prop:nth-child(3) .vp-emoji { background: #e2efd2; }
.vp-text h3 { font-size: 1.3rem; margin-bottom: 4px; }
.value-prop:nth-child(1) .vp-text h3 { color: var(--teal); }
.value-prop:nth-child(2) .vp-text h3 { color: var(--orange); }
.value-prop:nth-child(3) .vp-text h3 { color: var(--green); }
.vp-text p { color: var(--ink-soft); }

/* ---------- How ---------- */
.how { padding: 72px 0; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.step { text-align: center; background: var(--paper); border: 3px solid var(--ink); border-radius: var(--radius); padding: 34px 24px 28px; box-shadow: var(--shadow); }
.step-num { font-family: var(--font-display); width: 58px; height: 58px; margin: 0 auto 16px; display: grid; place-items: center; background: var(--teal); color: var(--paper); border: 3px solid var(--ink); border-radius: 50%; font-size: 1.5rem; box-shadow: var(--shadow-sm); }
.step:nth-child(2) .step-num { background: var(--orange); }
.step:nth-child(3) .step-num { background: var(--purple); }
.step h3 { font-size: 1.35rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); }

/* ---------- Inside / brands / gallery ---------- */
.inside { padding: 72px 0; background: var(--paper); border-bottom: 3px solid var(--ink); }
.brand-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 46px; }
.brand-pill { font-family: var(--font-head); font-weight: 600; background: var(--cream-2); border: 3px solid var(--ink); border-radius: 999px; padding: 10px 22px; box-shadow: var(--shadow-sm); font-size: 1.05rem; }
.brand-pill:nth-child(2n){ background: #fce7d6; }
.brand-pill:nth-child(3n){ background: #e3f1f3; }
.box-contents { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.content-card { background: var(--cream-2); border: 3px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: transform .15s ease; }
.content-card:hover { transform: translateY(-6px); }
.content-media { position: relative; height: 178px; border-bottom: 3px solid var(--ink); background: var(--cream); }
.content-media img { width: 100%; height: 100%; object-fit: cover; }
.content-media.img-missing img { display: none; }
.content-media.img-missing { background: repeating-linear-gradient(45deg, var(--cream) 0 12px, var(--cream-2) 12px 24px); }
.content-emoji { position: absolute; left: 16px; bottom: -22px; width: 54px; height: 54px; display: grid; place-items: center; font-size: 1.6rem; background: var(--paper); border: 3px solid var(--ink); border-radius: 14px; box-shadow: var(--shadow-sm); z-index: 2; }
.content-body { padding: 30px 22px 26px; }
.content-card h4 { font-size: 1.3rem; margin-bottom: 6px; }
.content-card p { color: var(--ink-soft); }
.fine-print { text-align: center; color: var(--ink-soft); font-size: .85rem; margin-top: 28px; opacity: .8; }

/* ---------- Pricing ---------- */
.pricing { padding: 72px 0; }
.value-callout { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 16px; max-width: 100%; margin: 6px auto 0; font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; color: var(--ink-soft); }
.value-callout b { font-family: var(--font-display); font-weight: 400; color: var(--red); font-size: 1.35rem; }
.value-callout .vc-divider { width: 2px; height: 22px; background: var(--ink); opacity: .22; }
.delivery-toggle { display: inline-flex; gap: 6px; background: var(--paper); border: 3px solid var(--ink); border-radius: 999px; padding: 6px; box-shadow: var(--shadow-sm); margin: 0 auto 40px; position: relative; left: 50%; transform: translateX(-50%); }
.toggle-btn { font-family: var(--font-head); font-weight: 600; border: none; background: transparent; padding: 10px 22px; border-radius: 999px; cursor: pointer; font-size: 1rem; display: inline-flex; align-items: center; gap: 8px; }
.toggle-btn.active { background: var(--teal); color: var(--paper); }
.save-flag { font-family: var(--font-body); font-size: .7rem; background: var(--yellow); color: var(--ink); padding: 2px 8px; border-radius: 999px; border: 2px solid var(--ink); }
.plan-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; max-width: 880px; margin-inline: auto; }
.plan-card { background: var(--paper); border: 3px solid var(--ink); border-radius: var(--radius); padding: 28px 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; position: relative; transition: transform .15s ease; }
.plan-card:hover { transform: translateY(-6px); }
.plan-card.featured { background: var(--cream-2); border-width: 4px; box-shadow: var(--shadow-lg); }
.plan-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); font-family: var(--font-body); font-weight: 800; font-size: .65rem; letter-spacing: .04em; text-transform: uppercase; background: var(--red); color: var(--paper); border: 3px solid var(--ink); border-radius: 999px; padding: 5px 14px; white-space: nowrap; }
.plan-name { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; margin-bottom: 4px; }
.plan-save { font-weight: 800; color: var(--green); font-size: .9rem; min-height: 1.2em; }
.plan-price { margin: 16px 0 4px; display: flex; align-items: baseline; gap: 4px; }
.plan-price .amount { font-family: var(--font-display); font-size: 2.3rem; line-height: 1; }
.plan-price .per { font-weight: 700; color: var(--ink-soft); }
.plan-billed { color: var(--ink-soft); font-size: .9rem; font-weight: 600; min-height: 1.3em; }
.plan-card ul { list-style: none; margin: 18px 0 22px; display: grid; gap: 8px; }
.plan-card li { font-size: .92rem; padding-left: 24px; position: relative; }
.plan-card li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.plan-card .btn { margin-top: auto; width: 100%; }

/* ---------- Parties ---------- */
.parties { padding: 72px 0; background: var(--orange); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.party-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.party-copy .eyebrow { background: var(--ink); color: var(--yellow); border-color: var(--cream); }
.party-copy h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 16px 0 12px; color: var(--ink); }
.party-copy p { color: #4a2f15; font-size: 1.08rem; margin-bottom: 24px; max-width: 44ch; }
.party-visual { position: relative; background: var(--paper); border: 3px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; }
.confetti { position: absolute; inset: 0; border-radius: inherit; opacity: .5; pointer-events: none;
  background-image:
    radial-gradient(var(--red) 3px, transparent 4px),
    radial-gradient(var(--teal) 3px, transparent 4px),
    radial-gradient(var(--purple) 3px, transparent 4px);
  background-size: 70px 70px, 90px 90px, 110px 110px;
  background-position: 0 0, 35px 20px, 15px 50px;
}
.party-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.party-grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border: 3px solid var(--ink); border-radius: 16px; box-shadow: var(--shadow-sm); background: var(--cream-2); }
.party-grid img:nth-child(odd){ transform: rotate(-2deg); }
.party-grid img:nth-child(even){ transform: rotate(2deg); }
.party-grid img.cell-missing { background: repeating-linear-gradient(45deg, var(--cream) 0 10px, var(--cream-2) 10px 20px); }

/* ---------- Founders ---------- */
.founders { padding: 72px 0; }
.founder-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: stretch; margin-bottom: 36px; }
.founder-photo { position: relative; border: 4px solid var(--ink); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--cream); min-height: 340px; display: grid; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-fallback { display: none; place-items: center; text-align: center; flex-direction: column; gap: 10px; color: var(--ink-soft); padding: 40px; }
.photo-fallback span { font-size: 3rem; }
.photo-fallback code { background: var(--paper); padding: 2px 8px; border-radius: 6px; border: 2px solid var(--ink); font-size: .8rem; }
.founder-photo.photo-missing { place-items: center; }
.founder-photo.photo-missing .photo-fallback { display: grid; }
.founder-bios { display: grid; gap: 20px; align-content: center; }
.bio-card { background: var(--paper); border: 3px solid var(--ink); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow); position: relative; }
.bio-badge { position: absolute; top: -16px; right: 22px; width: 46px; height: 46px; display: grid; place-items: center; background: var(--yellow); border: 3px solid var(--ink); border-radius: 50%; font-size: 1.3rem; box-shadow: var(--shadow-sm); }
.bio-card h3 { font-size: 1.5rem; }
.bio-role { font-family: var(--font-head); font-weight: 600; color: var(--red); margin-bottom: 8px; font-size: .95rem; }
.bio-card p:last-child { color: var(--ink-soft); }
.founder-strip { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.founder-strip img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border: 3px solid var(--ink); border-radius: 16px; box-shadow: var(--shadow-sm); background: var(--cream); }
.founder-strip img.strip-missing { background: repeating-linear-gradient(45deg, var(--cream) 0 10px, var(--cream-2) 10px 20px); }

/* ---------- Charity ---------- */
.charity { padding: 56px 0; background: var(--yellow); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.charity-inner { display: flex; align-items: center; gap: 28px; justify-content: center; flex-wrap: wrap; }
.charity-badge { width: 128px; height: 128px; padding: 12px; display: grid; place-items: center; background: var(--paper); border: 4px solid var(--ink); border-radius: 22px; box-shadow: var(--shadow); flex-shrink: 0; }
.charity-badge a { width: 100%; height: 100%; display: grid; place-items: center; }
.charity-badge img { width: 100%; height: 100%; object-fit: contain; }
.charity-badge.logo-missing { font-size: 2.4rem; }
.charity-badge.logo-missing a::after { content: '💛'; }
.charity-badge.logo-missing img { display: none; }
.charity-copy { max-width: 620px; }
.charity-copy h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 8px; }
.charity-copy p { color: #5a4410; }
.charity a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; font-weight: 800; }
.charity a:hover { color: var(--red); }
.charity-link { display: inline-block; margin-top: 4px; }
.footer-meta a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-meta a:hover { color: var(--yellow); }

/* ---------- Waitlist ---------- */
.waitlist { padding: 72px 0; }
.waitlist-card { position: relative; overflow: hidden; background: var(--red); color: var(--paper); border: 4px solid var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 52px 36px; text-align: center; }
.waitlist-card > *:not(.hero-rainbow) { position: relative; z-index: 1; }
.waitlist-card h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.waitlist-card p { max-width: 48ch; margin: 12px auto 26px; font-size: 1.08rem; }
.waitlist-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.waitlist-form input { font-family: var(--font-body); font-weight: 600; border: 3px solid var(--ink); border-radius: 999px; padding: 13px 22px; font-size: 1rem; min-width: 280px; box-shadow: var(--shadow-sm); color: var(--ink); }
.form-note { margin-top: 18px; font-weight: 800; font-size: 1.05rem; }

/* ---------- FAQ ---------- */
.faq { padding: 72px 0; background: var(--paper); border-top: 3px solid var(--ink); }
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--cream-2); border: 3px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary { font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; padding: 18px 22px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-display); font-size: 1.4rem; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 20px; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding: 52px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; align-items: start; }
.footer-brand .brand-wordmark b { -webkit-text-stroke-color: var(--cream); text-shadow: 2px 2px 0 rgba(0,0,0,.45); }
.footer-brand p { margin-top: 12px; color: #d8c9a8; font-size: .95rem; }
.footer-nav { display: grid; gap: 10px; }
.footer-nav a { font-family: var(--font-head); font-weight: 600; }
.footer-nav a:hover { color: var(--yellow); }
.footer-meta p { font-size: .9rem; color: #d8c9a8; }
.footer-meta .muted { margin-top: 8px; opacity: .8; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .steps, .box-contents { grid-template-columns: 1fr; }
  .party-inner { grid-template-columns: 1fr; }
  .party-copy { text-align: center; }
  .party-copy p { margin-inline: auto; }
  .founder-layout { grid-template-columns: 1fr; }
  .founder-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .hero-stage { width: min(480px, 92%); margin: 22px auto 40px; }
  .squish-bubble { width: 84px; height: 84px; }
  .sb1 { top: -26px; left: -26px; } .sb2 { top: -22px; right: -28px; }
  .sb3, .sb4 { display: none; }
  .plan-grid { grid-template-columns: 1fr; }
  .hero { padding: 34px 0 56px; }
  .angles, .how, .inside, .pricing, .parties, .founders, .waitlist, .faq { padding-top: 42px; padding-bottom: 42px; }
  .charity { padding-top: 38px; padding-bottom: 38px; }
  .section-head { margin-bottom: 28px; }
  .value-props { grid-template-columns: 1fr; gap: 22px; max-width: 480px; margin-inline: auto; }
}
@media (max-width: 560px) {
  .plan-grid { grid-template-columns: 1fr; }
  .party-grid { grid-template-columns: 1fr 1fr; }
  .founder-strip { grid-template-columns: repeat(2, 1fr); }
  .founder-strip img:nth-child(5) { display: none; }
  .waitlist-form input { min-width: 0; width: 100%; }
  .delivery-toggle { flex-direction: column; left: 0; transform: none; width: 100%; border-radius: 20px; }
  .toggle-btn { justify-content: center; border-radius: 14px; }
  .value-callout { flex-direction: column; gap: 6px; }
  .value-callout .vc-divider { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee, .squish-bubble { animation: none; }
  * { scroll-behavior: auto; }
}
