@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800;900&family=Lilita+One&display=swap');

:root {
  --orange: #E8652A;
  --orange-dark: #b84218;
  --green: #4A7C3F;
  --gold: #F5A623;
  --cream: #FFFDF8;
  --charcoal: #2C2C2A;
  --light-orange: #FDF0E8;
  --light-green: #EAF3DE;
  --purple: #7C5CBF;
  --border: #EDE9DF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--charcoal); overflow-x: hidden; line-height: 1.6; }

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  background: var(--orange);
  color: white;
  text-align: center;
  padding: 0.6rem 3rem;
  font-size: 0.88rem;
  font-weight: 800;
  position: relative;
  z-index: 200;
}
.announce-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.7;
  padding: 4px 8px;
}
.announce-close:hover { opacity: 1; }

/* ── NAV ── */
nav {
  background: var(--cream);
  border-bottom: 2px solid var(--border);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.nav-logo-img { width: 38px; height: 38px; object-fit: contain; mix-blend-mode: multiply; }
.nav-logo-text { font-family: 'Fredoka One', cursive; font-size: 1.4rem; color: var(--orange); }

.nav-links { list-style: none; display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.4rem 0.85rem;
  border-radius: 99px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--light-orange); color: var(--orange); }
.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  font-weight: 800 !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 99px !important;
  box-shadow: 0 3px 0 var(--orange-dark), 0 4px 10px rgba(232,101,42,0.3);
  transition: transform 0.12s, box-shadow 0.12s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 5px 0 var(--orange-dark), 0 8px 16px rgba(232,101,42,0.35) !important; }

/* ══════════════════════════════════════════
   PHASE 1 — 100vh VIDEO HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Multi-layer gradient: dark vignette + bottom scrim for text */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.1) 40%,
      rgba(0,0,0,0.5) 80%,
      rgba(0,0,0,0.7) 100%),
    linear-gradient(to right, rgba(0,0,0,0.3) 0%, transparent 60%);
}

/* Content sits above overlay */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 780px;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: 'Lilita One', cursive;
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: white;
  line-height: 1.0;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  letter-spacing: -1px;
}

.hero-hl { color: #FFD166; }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-sub strong { color: #FFD166; font-weight: 900; }

/* THE mega CTA button */
.btn-mega {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--orange);
  color: white;
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  padding: 1rem 2.8rem;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 6px 0 var(--orange-dark), 0 10px 30px rgba(232,101,42,0.5);
  transition: transform 0.12s, box-shadow 0.12s;
  animation: megaPulse 3s ease-in-out 2s infinite;
  letter-spacing: 0.3px;
  margin-bottom: 2rem;
}

.btn-mega-icon {
  font-size: 1.4rem;
  display: inline-block;
  animation: snip 2.5s ease-in-out 3s infinite;
}

@keyframes snip {
  0%,80%,100% { transform: rotate(0); }
  85%  { transform: rotate(-25deg); }
  90%  { transform: rotate(15deg); }
}

@keyframes megaPulse {
  0%,85%,100% { transform: scale(1); box-shadow: 0 6px 0 var(--orange-dark), 0 10px 30px rgba(232,101,42,0.5); }
  88% { transform: scale(1.05); box-shadow: 0 8px 0 var(--orange-dark), 0 14px 36px rgba(232,101,42,0.6); }
}

.btn-mega:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 0 var(--orange-dark), 0 16px 40px rgba(232,101,42,0.6);
  animation: none;
}

.btn-mega:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 2px 0 var(--orange-dark), 0 4px 12px rgba(232,101,42,0.4);
}

.hero-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: 700;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-scroll-arrow {
  font-size: 1.2rem;
  animation: scrollBounce 1.8s ease-in-out infinite;
  margin-top: 4px;
}

@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ══════════════════════════════════════════
   PHASE 2 — CRAFT CARDS
══════════════════════════════════════════ */
.crafts-section {
  background: var(--cream);
  padding: 5rem 2rem 4rem;
}

.crafts-inner { max-width: 1200px; margin: 0 auto; }

.craft-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.craft-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 2px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: translateY(24px);
}

.craft-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s;
}

.craft-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

.craft-card--soon { opacity: 0.75; }
.craft-card--soon.visible { opacity: 0.75; }
.craft-card--soon:hover { opacity: 0.9; }

.craft-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--light-orange);
}

.craft-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
  display: block;
}

.craft-card:hover .craft-card-img-wrap img { transform: scale(1.06); }

/* Badges */
.craft-card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.badge-free {
  background: var(--green);
  color: white;
  font-weight: 900;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  padding: 2px 8px;
  border-radius: 99px;
  width: fit-content;
}

.badge-age {
  background: white;
  color: var(--charcoal);
  font-weight: 800;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 99px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  width: fit-content;
}

.badge-new {
  background: var(--gold);
  color: white;
  font-weight: 900;
  font-size: 0.68rem;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 99px;
  width: fit-content;
}

/* Hover reveal overlay */
.craft-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 3;
}

.craft-card:hover .craft-card-hover { opacity: 1; }

.cc-btn-dl {
  background: var(--orange);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 4px 0 var(--orange-dark);
  transition: transform 0.1s;
  white-space: nowrap;
}

.cc-btn-dl:hover { transform: translateY(-2px); }

.cc-btn-watch {
  background: rgba(255,255,255,0.2);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.55rem 1.2rem;
  border-radius: 99px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  white-space: nowrap;
  transition: background 0.15s;
}

.cc-btn-watch:hover { background: rgba(255,255,255,0.35); }

/* Coming soon placeholder */
.coming-soon-img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--light-gold, #FEF6E4);
  gap: 0.5rem;
}

.coming-soon-emoji { font-size: 4rem; }

.coming-soon-img p {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: var(--charcoal);
  opacity: 0.6;
}

/* Card body */
.craft-card-body { padding: 1rem 1.1rem 1.2rem; }
.craft-card-body h3 { font-family: 'Fredoka One', cursive; font-size: 1.1rem; color: var(--charcoal); margin-bottom: 0.3rem; }
.craft-card-body p { font-size: 0.82rem; color: #666; font-weight: 600; line-height: 1.45; }

.crafts-cta-row { text-align: center; margin-top: 0.5rem; }

.btn-outline-orange {
  display: inline-block;
  background: transparent;
  color: var(--orange);
  border: 2.5px solid var(--orange);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 99px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, transform 0.12s;
}

.btn-outline-orange:hover { background: var(--orange); color: white; transform: translateY(-2px); }

/* ══════════════════════════════════════════
   HOW IT WORKS — upgraded with real images
══════════════════════════════════════════ */
.how-section {
  background: var(--light-orange);
  padding: 5rem 2rem;
}

.how-inner { max-width: 1100px; margin: 0 auto; text-align: center; }

.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.how-step {
  width: 260px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

.how-step.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s, transform 0.5s; }

.how-step-num {
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: white;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 3px 0 var(--orange-dark);
}

.how-step-img {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border: 3px solid white;
}

.how-step-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.how-step h3 { font-family: 'Fredoka One', cursive; font-size: 1.2rem; color: var(--charcoal); margin-bottom: 0.5rem; }
.how-step p { font-size: 0.85rem; color: #666; font-weight: 600; line-height: 1.5; }

.how-step-arrow {
  font-size: 2rem;
  color: #CCC;
  font-weight: 900;
  margin-top: 130px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   PHASE 3 — SOCIAL PROOF
══════════════════════════════════════════ */
.proof-section {
  background: var(--cream);
  padding: 5rem 2rem;
}

.proof-inner { max-width: 1100px; margin: 0 auto; }

/* Stats bar */
.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  background: white;
  border-radius: 20px;
  padding: 2rem 3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 2px solid var(--border);
  margin-bottom: 4rem;
}

.stat { text-align: center; }
.stat-num { display: block; font-family: 'Fredoka One', cursive; font-size: 2rem; color: var(--orange); line-height: 1; }
.stat-label { font-size: 0.8rem; font-weight: 700; color: #888; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 3.5rem;
}

.testimonial {
  background: white;
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  border: 2px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.testimonial.visible { opacity: 1; transform: translateY(0); }
.testimonial--featured { border-color: var(--orange); box-shadow: 0 8px 28px rgba(232,101,42,0.15); }

.testi-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.testi-quote { font-size: 0.9rem; color: #444; font-weight: 600; line-height: 1.6; margin-bottom: 1.2rem; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.88rem; color: var(--charcoal); }
.testi-author span { font-size: 0.75rem; color: #999; font-weight: 600; }

/* Reveal photo grid */
.reveal-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.reveal-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9/16;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(20px);
}

.reveal-photo.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s, transform 0.5s; }
.reveal-photo--muted { opacity: 0; }
.reveal-photo--muted.visible { opacity: 0.7; }

.reveal-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.4s; }
.reveal-photo:hover img { transform: scale(1.05); }

.reveal-label {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 1.5rem 0.8rem 0.8rem;
  text-align: center;
}

/* ══════════════════════════════════════════
   PAUSE FEATURE SECTION
══════════════════════════════════════════ */
.pause-feature {
  background: var(--light-green);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
}

.pause-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 2.5rem 0 2rem;
}

.pause-step {
  background: white;
  border-radius: 20px;
  padding: 1.5rem 1.2rem;
  width: 180px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform 0.2s;
}

.pause-step:hover { transform: translateY(-5px); }
.pause-step--highlight { background: var(--orange); transform: scale(1.08); }
.pause-step--highlight:hover { transform: scale(1.08) translateY(-5px); }
.pause-step--highlight h4, .pause-step--highlight p { color: white !important; }

.pause-step-icon { font-size: 2.2rem; margin-bottom: 0.6rem; }
.pause-step h4 { font-family: 'Fredoka One', cursive; font-size: 1rem; color: var(--charcoal); margin-bottom: 0.3rem; }
.pause-step p { font-size: 0.78rem; color: #666; font-weight: 600; line-height: 1.4; }

.pause-connector { font-size: 1.4rem; color: var(--green); opacity: 0.5; }

.pause-cta { margin-top: 0.5rem; }

/* ── SHARED SECTION STYLES ── */
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
  display: block;
  text-align: center;
}

.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-sub {
  color: #777;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

/* ── SHARED BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  padding: 0.8rem 1.8rem;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 4px 0 var(--orange-dark), 0 6px 16px rgba(232,101,42,0.35);
  transition: transform 0.12s, box-shadow 0.12s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 7px 0 var(--orange-dark), 0 10px 24px rgba(232,101,42,0.4); }

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--charcoal);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}

.newsletter-deco { display: flex; justify-content: center; gap: 1rem; font-size: 1.6rem; margin-bottom: 1rem; opacity: 0.25; }
.newsletter-mascot { font-size: 3.5rem; margin-bottom: 0.5rem; }

.newsletter h2 { font-family: 'Fredoka One', cursive; font-size: clamp(1.8rem, 4vw, 2.4rem); color: white; margin-bottom: 0.5rem; }
.newsletter > .section-inner > p { color: rgba(255,255,255,0.65); font-weight: 600; font-size: 0.95rem; margin-bottom: 1.8rem; }

.newsletter-form { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; max-width: 480px; margin: 0 auto 0.75rem; }
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.2rem;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 99px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  background: rgba(255,255,255,0.1);
  color: white;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { border-color: var(--orange); }
.newsletter-form button {
  background: var(--orange);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border: none;
  border-radius: 99px;
  cursor: pointer;
  box-shadow: 0 4px 0 var(--orange-dark);
  transition: transform 0.12s;
  white-space: nowrap;
}
.newsletter-form button:hover { transform: translateY(-2px); }
.newsletter-fine { font-size: 0.75rem; color: rgba(255,255,255,0.35); font-weight: 600; }

/* ── FOOTER ── */
footer { background: #1C1C1A; color: rgba(255,255,255,0.6); padding: 3.5rem 2rem 1.5rem; }

.footer-inner { max-width: 1000px; margin: 0 auto; display: flex; gap: 3rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.footer-brand { flex: 2; min-width: 200px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 1.2rem; font-weight: 600; }
.footer-links, .footer-crafts { flex: 1; min-width: 140px; }

.footer-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.footer-logo-img { width: 36px; height: 36px; object-fit: contain; filter: brightness(0) invert(1); }

.footer-links h4, .footer-crafts h4 { font-family: 'Fredoka One', cursive; font-size: 0.95rem; color: white; margin-bottom: 0.75rem; }
.footer-links ul, .footer-crafts ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: color 0.15s; }
.footer-links a:hover { color: var(--gold); }
.footer-crafts li { font-size: 0.85rem; font-weight: 600; }

.social-icons { display: flex; gap: 0.6rem; margin-top: 0.75rem; }
.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
  transition: background 0.15s, transform 0.15s;
}
.social-icon:hover { background: var(--orange); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.2rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  max-width: 1000px;
  margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .craft-cards { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .reveal-photos { grid-template-columns: repeat(2, 1fr); }
  .proof-stats { gap: 1rem; padding: 1.5rem; }
  .stat-divider { display: none; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 3rem; }
  .btn-mega { font-size: 1.2rem; padding: 0.9rem 1.8rem; }
  .craft-cards { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .how-steps { flex-direction: column; align-items: center; }
  .how-step-arrow { margin-top: 0; transform: rotate(90deg); }
  .pause-steps { flex-direction: column; align-items: center; }
  .pause-connector { transform: rotate(90deg); }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .reveal-photos { grid-template-columns: repeat(2, 1fr); }
}
