/* ============================================================
   Leslie's Laces — styles.css
   ============================================================ */

:root {
  --red:      #B5342B;
  --navy:     #1B2A4A;
  --cream:    #FFFDF8;
  --white:    #FFFFFF;
  --gray:     #6B6B6B;
  --gray-lt:  #F2F0EB;
  --gray-mid: #D8D5CE;
  --sponsored-bg:   #EFF6EE;
  --sponsored-text: #3A7A47;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w: 1060px;
  --radius: 12px;
  --shadow: 0 2px 16px rgba(27,42,74,.07);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: .75rem;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 2rem;
}

section { padding-block: 5rem; }

/* ── Divider ── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-block: 1.5rem;
}
.divider--center { margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s, color .18s, border-color .18s;
  text-decoration: none;
  line-height: 1;
}
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: #9a2b23; border-color: #9a2b23; text-decoration: none; color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; text-decoration: none; }
.btn-disabled {
  background: var(--gray-lt); color: var(--gray); border-color: var(--gray-mid);
  cursor: not-allowed; font-size: .82rem; padding: .55rem 1.1rem;
}
.btn-spotify {
  background: #1DB954; color: #fff; border-color: #1DB954;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  width: 300px;
  white-space: nowrap;
}
.btn-spotify:hover { background: #17a349; border-color: #17a349; text-decoration: none; color: #fff; }
.btn-spotify svg { flex-shrink: 0; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  padding-block: .9rem;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.nav-logo img { height: 68px; width: 68px; object-fit: contain; border-radius: 4px; }
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .01em;
}
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a {
  color: var(--gray); font-size: .88rem; font-weight: 500;
  letter-spacing: .02em; text-decoration: none; transition: color .15s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta { margin-left: .5rem; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--gray-mid); }
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu ul {
  list-style: none; padding: 1rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: .25rem;
}
.nav-mobile-menu a {
  display: block; padding: .6rem 0; color: var(--navy);
  font-size: .95rem; font-weight: 500; text-decoration: none;
  border-bottom: 1px solid var(--gray-mid);
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu .btn { margin-top: .75rem; width: 100%; text-align: center; }

/* ── HERO ── */
#hero {
  background: var(--cream);
  padding-block: .5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(181,52,43,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-logo {
  margin-inline: auto;
  margin-bottom: 0;
  width: min(700px, 95vw);
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.10));
}
#hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-top: -1rem;
  margin-bottom: 1.1rem;
  letter-spacing: -.01em;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--gray);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-tag {
  margin-top: 3rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  opacity: .7;
}

/* ── SPONSOR A PAIR ── */
#how-it-works { background: var(--white); }
#how-it-works h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .5rem; }
.how-intro { color: var(--gray); font-size: 1rem; margin-bottom: 3rem; max-width: 520px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.step-card { background: var(--cream); border-radius: var(--radius); padding: 1.5rem; }
.step-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; color: var(--red);
  opacity: .18; line-height: 1; margin-bottom: .4rem;
}
.step-text { font-size: .93rem; color: var(--navy); line-height: 1.6; }

.price-callout {
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 1.5rem 2rem; display: flex; align-items: center;
  gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.price-callout .amount {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  color: #fff; white-space: nowrap; flex-shrink: 0;
}
.price-callout p { font-size: .97rem; color: rgba(255,255,255,.78); line-height: 1.5; }

.request-callout {
  background: var(--cream); border: 1.5px solid var(--gray-mid);
  border-left: 4px solid var(--red); border-radius: var(--radius);
  padding: 1.4rem 1.75rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.request-callout-text strong { display: block; color: var(--navy); font-size: 1rem; margin-bottom: .25rem; }
.request-callout-text p { color: var(--gray); font-size: .92rem; line-height: 1.5; margin: 0; }

/* ── LESLIE'S STORY ── */
#leslies-story { background: var(--navy); color: #fff; padding-block: 6rem; }
#leslies-story .section-label { color: rgba(255,255,255,.5); }
#leslies-story h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: #fff; margin-bottom: 1.5rem; }

.story-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.story-photo-wrap { position: sticky; top: 6rem; }

.story-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}

.story-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 2px dashed rgba(255,255,255,.2);
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.35);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

.story-content { padding-top: .25rem; }

.story-body p {
  font-size: 1.05rem; color: rgba(255,255,255,.78);
  line-height: 1.85; margin-bottom: 1.4rem;
}
.story-body p:last-child { margin-bottom: 0; }
.story-accent { border-left: 3px solid var(--red); padding-left: 1.5rem; margin-block: 2rem; }
.story-accent p {
  font-family: var(--font-display);
  font-size: 1.2rem !important;
  font-style: italic;
  color: rgba(255,255,255,.9) !important;
  line-height: 1.6 !important;
}

/* ── FOUNDING CAMPAIGN ── */
/* ── MAGIC CARD (inside Leslie's Story) ── */
.magic-card {
  margin-top: 3rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  max-width: 680px;
}
.magic-card-heading {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: .4rem;
}
.magic-card-sub {
  font-size: .9rem;
  color: var(--red);
  font-style: italic;
  margin-bottom: 1rem;
}
.magic-card-body {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: .75rem;
}
.magic-card-closing {
  font-size: .95rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0;
}

#campaign { background: var(--white); padding-block: 4.5rem; }

.campaign-inner {
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 3rem;
}

.campaign-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  max-width: 780px;
  margin-inline: auto;
}

.campaign-content { max-width: 380px; }

#campaign h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); margin-bottom: .5rem; }
.campaign-body { font-size: 1.1rem; color: var(--gray); margin-bottom: 1rem; line-height: 1.7; }
.campaign-note { font-size: 1rem; color: var(--red); font-style: italic; }

.campaign-album {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.album-cover-img {
  width: 300px; height: 300px;
  object-fit: cover; border-radius: 8px;
  box-shadow: 0 4px 20px rgba(27,42,74,.12);
}
.album-cover-placeholder {
  width: 200px; height: 200px;
  border-radius: 8px; background: var(--gray-lt);
  border: 2px dashed var(--gray-mid);
  display: none; align-items: center; justify-content: center;
  color: var(--gray); font-size: .8rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; text-align: center;
}

/* ── SHOE BOARD ── */
#shoe-board { background: var(--navy); color: #fff; padding-block: 5.5rem; }
#shoe-board .section-label { color: var(--red); }
#shoe-board h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: #fff; margin-bottom: 1rem; }
#shoe-board .divider { background: rgba(255,255,255,.15); margin-bottom: 2rem; }

.sb-intro {
  font-size: 1rem; color: rgba(255,255,255,.72);
  line-height: 1.85; max-width: 680px; margin-bottom: 2.5rem;
}

.sb-filters {
  display: flex; flex-wrap: wrap; gap: .5rem .75rem;
  align-items: center; margin-bottom: 1.25rem;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  min-height: 0;
}
.sb-filters:empty { display: none; }

.filter-group { display: flex; flex-wrap: wrap; gap: .35rem; align-items: center; }

.filter-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  margin-right: .15rem; white-space: nowrap;
}

.filter-divider {
  width: 1px; height: 22px;
  background: rgba(255,255,255,.1); flex-shrink: 0;
}

.filter-btn {
  font-family: var(--font-body); font-size: .75rem; font-weight: 600;
  padding: .25rem .7rem; border-radius: 99px;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.55); background: transparent;
  cursor: pointer; transition: all .15s; white-space: nowrap;
}
.filter-btn:hover { border-color: rgba(255,255,255,.45); color: rgba(255,255,255,.85); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

.sb-notebook-wrap {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.45); margin-bottom: 2rem;
}

.sb-notebook {
  background: #fafaf8;
  background-image: repeating-linear-gradient(
    transparent 0px, transparent 39px,
    #c8dbe8 39px, #c8dbe8 40px
  );
  padding: 1rem 1.5rem 1.5rem 4.5rem;
  position: relative;
  min-height: 140px;
}

.sb-notebook::before {
  content: '';
  position: absolute;
  left: 3.5rem; top: 0; bottom: 0;
  width: 2px; background: rgba(210,80,80,.5);
  pointer-events: none;
}

.board-entry {
  display: flex; align-items: center; gap: .75rem;
  min-height: 40px; padding-block: .15rem;
  flex-wrap: wrap;
}

.entry-num {
  font-family: 'Kalam', cursive;
  font-size: 1rem; color: #aaa;
  min-width: 1.5rem; flex-shrink: 0;
}

.entry-text {
  font-family: 'Kalam', cursive;
  font-size: 1.2rem; color: #1a1a1a;
  position: relative; line-height: 1.3;
}

/* Open entries — slide-to-cover */
.board-entry.open {
  cursor: ew-resize;
  user-select: none;
  transition: background .15s;
}
.board-entry.open:hover { background: rgba(0,0,0,.025); }
.board-entry.open.is-sliding { background: rgba(0,0,0,.04); }

.entry-slide-hint {
  font-family: 'Kalam', cursive;
  font-size: .82rem; color: #555;
  font-style: italic; margin-left: auto;
  white-space: nowrap; pointer-events: none;
  transition: opacity .2s;
}
.board-entry.open.is-sliding .entry-slide-hint { opacity: 0; }
.board-entry.open.slide-complete .entry-slide-hint { opacity: 0; }

/* Sharpie drag line */
.sharpie-drag-line {
  position: absolute;
  left: -2px; top: 52%;
  height: 3px; width: 0;
  background: #1a1a1a;
  border-radius: 2px;
  pointer-events: none;
  transform: translateY(-50%) rotate(-0.4deg);
}
.board-entry.open.slide-complete .entry-text { color: #bbb; }

/* Covered — permanent animated Sharpie */
.board-entry.covered .entry-text { color: #bbb; }
.board-entry.covered .entry-text::after {
  content: '';
  position: absolute;
  left: -3px; right: -3px; top: 50%;
  height: 2.5px; background: #333;
  transform: scaleX(0); transform-origin: left;
  animation: sharpie-out .55s cubic-bezier(.4,0,.2,1) .2s forwards;
}
@keyframes sharpie-out { to { transform: scaleX(1); } }

/* Pending — light pencil strike */
.board-entry.pending .entry-text {
  color: #aaa;
  position: relative;
}
.board-entry.pending .entry-text::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px; top: 50%;
  height: 1.5px;
  background: #ccc;
  transform: translateY(-50%);
}
.entry-pending-note {
  font-family: 'Kalam', cursive;
  font-size: .82rem; color: #555;
  font-style: italic; margin-left: auto;
  white-space: nowrap;
}

.entry-done-note {
  font-family: 'Kalam', cursive;
  font-size: .9rem; color: #5a9c5a; margin-left: auto;
}

.sb-loading, .sb-empty {
  font-family: 'Kalam', cursive;
  font-size: 1.1rem; color: #aaa;
  padding: 1.5rem 0; text-align: center;
}
.sb-error {
  font-family: 'Kalam', cursive;
  font-size: 1rem; color: #888;
  padding: 1.5rem 0; text-align: center;
}
.sb-error a { color: var(--red); }

.sb-view-all-wrap {
  padding: .75rem 0 .25rem;
  text-align: center;
}
.sb-view-all {
  font-family: 'Kalam', cursive;
  font-size: 1rem;
  color: var(--red);
  text-decoration: none;
  border-bottom: 1.5px dashed var(--red);
  padding-bottom: 1px;
  transition: opacity .15s;
}
.sb-view-all:hover { opacity: .7; text-decoration: none; }

.sb-covered-count {
  font-family: 'Kalam', cursive;
  font-size: 1.1rem;
  color: #5a9c5a;
  text-align: center;
  margin-bottom: .5rem;
  min-height: 0;
}

.sb-goal {
  font-family: 'Kalam', cursive;
  font-size: 1.15rem; color: rgba(255,255,255,.55);
  text-align: center; margin-bottom: 2.5rem; font-style: italic;
}

.sb-request-block {
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.12);
  border-left: 4px solid var(--red); border-radius: var(--radius);
  padding: 1.4rem 1.75rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.sb-request-block strong { color: #fff; font-size: 1rem; display: block; margin-bottom: .25rem; }
.sb-request-block p { color: rgba(255,255,255,.6); font-size: .92rem; margin: 0; line-height: 1.5; }

.sb-dignity-note {
  background: rgba(255,255,255,.04); border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.4rem; font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.7;
}
.sb-dignity-note strong { color: rgba(255,255,255,.75); display: block; margin-bottom: .3rem; }

/* ── FOUNDERS ── */
#about { background: var(--white); padding-block: 5rem; }
#about h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 1rem; }

.founders-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}

.founders-photo-wrap { flex-shrink: 0; }

.founders-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.founders-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: var(--gray-lt);
  border: 2px dashed var(--gray-mid);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

.founders-content { padding-top: .25rem; }

.about-body {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  max-width: 560px;
}
.about-body:last-child { margin-bottom: 0; }

/* ── CONTACT ── */
#contact { background: var(--navy); color: #fff; text-align: center; }
#contact h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; margin-bottom: .75rem; }
.contact-sub { color: rgba(255,255,255,.65); margin-bottom: 3rem; font-size: 1rem; max-width: 520px; margin-inline: auto; }
.contact-email-block { margin-bottom: 3rem; }
.contact-email-label { font-size: .9rem; color: rgba(255,255,255,.55); margin-bottom: .5rem; }
.contact-email-link {
  display: inline-block; font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.55rem); color: #fff; text-decoration: none;
  border-bottom: 2px solid var(--red); padding-bottom: .2rem; transition: border-color .15s;
}
.contact-email-link:hover { border-color: #fff; text-decoration: none; }

.contact-form {
  max-width: 520px; margin-inline: auto; display: flex;
  flex-direction: column; gap: 1rem; text-align: left;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .82rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 6px; padding: .75rem 1rem; color: #fff;
  font-family: var(--font-body); font-size: .95rem; outline: none;
  transition: border-color .15s; width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group textarea:focus { border-color: rgba(255,255,255,.5); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .78rem; color: rgba(255,255,255,.38); margin-top: .25rem; }

/* ── FOOTER ── */
footer {
  background: var(--white); border-top: 1px solid var(--gray-mid);
  padding-block: 2.5rem; text-align: center;
}
.footer-logo { width: 110px; margin-inline: auto; margin-bottom: 1rem; }
.footer-tagline {
  font-family: var(--font-display); font-size: .95rem;
  font-style: italic; color: var(--gray); margin-bottom: 1rem;
}
.footer-email a { color: var(--navy); font-size: .88rem; text-decoration: none; transition: color .15s; }
.footer-email a:hover { color: var(--red); }
.footer-copy { margin-top: 1rem; font-size: .78rem; color: var(--gray); opacity: .55; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .story-layout { grid-template-columns: 200px 1fr; gap: 2.5rem; }
  .story-photo-wrap { position: static; }
  .campaign-layout { gap: 2rem; }
  .album-cover-img, .album-cover-placeholder { width: 220px; height: 220px; }
  .btn-spotify { width: 220px; }
  .founders-layout { grid-template-columns: 240px 1fr; gap: 2.5rem; }
  .sb-coming-layout { gap: 2.5rem; }
}

@media (max-width: 700px) {
  section { padding-block: 3.5rem; }
  .container { padding-inline: 1.25rem; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-logo { width: min(85vw, 85vw); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .price-callout { flex-direction: column; gap: .75rem; text-align: center; }

  .story-layout { grid-template-columns: 1fr; gap: 2rem; }
  .story-photo-wrap { max-width: 240px; }

  .campaign-inner { padding: 1.75rem; }
  .campaign-layout { grid-template-columns: 1fr; gap: 1.75rem; }
  .campaign-content { max-width: 100%; }
  .campaign-album { order: 1; width: 100%; align-items: stretch; }
  .album-cover-img, .album-cover-placeholder { width: 100%; height: auto; aspect-ratio: 1; border-radius: var(--radius); }
  .btn-spotify { width: 100%; box-sizing: border-box; }

  .sb-coming-layout { grid-template-columns: 1fr; }

  .founders-layout { grid-template-columns: 1fr; gap: 2rem; }
  .founders-photo-wrap { max-width: 280px; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}
