/* ═══════════════════════════════════════════════════════
   ROAST LAUNCH — Complete Stylesheet
   Brand-aligned, responsive, Ali Abdaal / Airbnb-inspired
   ═══════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ─────────────────────────────────── */
:root {
  --warm-white:   #FAFAF8;
  --espresso:     #1C1209;
  --terracotta:   #C4612A;
  --coffee-brown: #3D2314;
  --warm-cream:   #F0E6D8;
  --sage:         #5C7A4E;
  --mid-gray:     #6B6B6B;
  --light-cream:  #F7F3EE;
  --text-primary:   #1C1209;
  --text-secondary: #6B6B6B;
  --bg-primary:     #FAFAF8;
  --accent:         #C4612A;
  --accent-hover:   #A8522A;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--accent-hover); }
ul { list-style: none; }

/* ── TYPOGRAPHY ────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-primary); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 24px; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 20px; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 12px; }
p { margin-bottom: 18px; }

/* ── LAYOUT ────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }

/* ── NAVIGATION ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28, 18, 9, 0.06);
  transition: box-shadow 0.3s var(--ease);
}
.nav--scrolled { box-shadow: 0 1px 12px rgba(28, 18, 9, 0.08); }
.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text-primary);
}
.nav-logo:hover { color: var(--text-primary); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease);
}
.nav-menu a:hover { color: var(--text-primary); }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 6px 0;
  transition: all 0.3s var(--ease);
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  gap: 8px;
}
.btn-primary {
  background: var(--accent);
  color: var(--warm-white) !important;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--warm-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 97, 42, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--warm-white) !important;
  transform: translateY(-2px);
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  padding-left: 24px;
  padding-right: 24px;
}
.hero-content {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 5.5vw, 3.8rem);
  line-height: 1.08;
  max-width: 680px;
}
.hero .subtitle {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.proof-line {
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ── SECTION BASICS ────────────────────────────────── */
.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 40px;
}

/* ── LEARNING PILLARS ──────────────────────────────── */
.learning-pillars { background: var(--warm-cream); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.pillar-card {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 32px 24px;
  border: 1px solid rgba(28, 18, 9, 0.04);
  transition: all 0.3s var(--ease);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28, 18, 9, 0.08);
}
.pillar-icon {
  width: 52px; height: 52px;
  background: rgba(196, 97, 42, 0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.pillar-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── LAUNCH SYSTEM / MODULES ──────────────────────── */
.launch-system { padding-bottom: 72px; }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.module-card {
  padding: 28px;
  border: 1px solid rgba(28, 18, 9, 0.06);
  border-radius: 12px;
  transition: all 0.3s var(--ease);
}
.module-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(28, 18, 9, 0.06);
}
.module-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.module-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}
.system-cta { text-align: center; }

/* ── FEATURED BLOG / BLOG PAGE ─────────────────────── */
.featured-blog { background: var(--warm-cream); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--warm-white);
  border: 1px solid rgba(28, 18, 9, 0.04);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28, 18, 9, 0.08);
}
.blog-card-full {
  background: var(--warm-white);
  border: 1px solid rgba(28, 18, 9, 0.06);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s var(--ease);
}
.blog-card-full:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28, 18, 9, 0.08);
}
.blog-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.blog-badge.coffee   { background: rgba(196, 97, 42, 0.12); color: var(--accent); }
.blog-badge.business { background: rgba(92, 122, 78, 0.12); color: var(--sage); }
.blog-badge.faith    { background: rgba(61, 35, 20, 0.12); color: var(--coffee-brown); }
.blog-badge.community{ background: rgba(107, 107, 107, 0.12); color: var(--mid-gray); }
.blog-date {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 0;
  margin-top: 8px;
}
.blog-card p, .blog-card-full p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.read-more:hover { text-decoration: underline; }

/* ── CTA BANNER ────────────────────────────────────── */
.cta-banner {
  background: var(--espresso);
  text-align: center;
  padding: 80px 24px;
}
.cta-banner h2 {
  color: var(--warm-white);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(250, 250, 248, 0.8);
  max-width: 540px;
  margin: 0 auto 32px;
}

/* ── NEWSLETTER FORM ───────────────────────────────── */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 20px;
  border: 2px solid rgba(250, 250, 248, 0.15);
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.08);
  color: var(--warm-white);
  outline: none;
  transition: border-color 0.2s var(--ease);
}
.newsletter-form input[type="email"]:focus {
  border-color: var(--accent);
}
.newsletter-form input[type="email"]::placeholder {
  color: rgba(250, 250, 248, 0.45);
}

/* On light backgrounds */
.newsletter-section .newsletter-form input[type="email"],
.newsletter-signup-section .newsletter-form input[type="email"] {
  background: var(--warm-white);
  border-color: rgba(28, 18, 9, 0.1);
  color: var(--text-primary);
}
.newsletter-section .newsletter-form input[type="email"]::placeholder,
.newsletter-signup-section .newsletter-form input[type="email"]::placeholder {
  color: var(--text-secondary);
}

/* ── PAGE HEADER (subpages) ────────────────────────── */
.page-header {
  padding-top: calc(72px + 56px);
  padding-bottom: 48px;
  text-align: center;
}
.page-header h1 {
  margin-bottom: 16px;
}
.page-header .subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ── ABOUT PAGE ────────────────────────────────────── */
.story-section { padding: 64px 0; }
.story-content {
  max-width: 720px;
  margin: 0 auto;
}
.story-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-primary);
}

.difference-section { background: var(--warm-cream); }
.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.difference-card {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(28, 18, 9, 0.04);
  transition: all 0.3s var(--ease);
}
.difference-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28, 18, 9, 0.08);
}
.difference-card h3 { margin-bottom: 12px; }
.difference-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

.values-section { padding: 72px 0; }
.values-content {
  max-width: 760px;
  margin: 0 auto;
}
.value-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(28, 18, 9, 0.06);
}
.value-item:last-child { border-bottom: none; }
.value-item h3 { color: var(--accent); margin-bottom: 8px; }
.value-item p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ── CURRICULUM PAGE ───────────────────────────────── */
.modules-section { padding: 56px 0 72px; }
.modules-detailed {
  max-width: 760px;
  margin: 0 auto;
}
.module-detailed-card {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(28, 18, 9, 0.06);
}
.module-detailed-card:last-child { border-bottom: none; }
.module-number-large {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  min-width: 56px;
  line-height: 1;
  padding-top: 4px;
}
.module-header h3 { margin-bottom: 8px; }
.module-header p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

.how-it-works { background: var(--warm-cream); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.how-step {
  padding: 32px 24px;
}
.step-number {
  width: 56px; height: 56px;
  background: var(--accent);
  color: var(--warm-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 auto 20px;
}
.how-step h3 { margin-bottom: 10px; }
.how-step p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ── FAQ / ACCORDION ───────────────────────────────── */
.faq-section { padding: 72px 0; }
.faq-container {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(28, 18, 9, 0.08);
}
.faq-item h3 {
  width: 100%;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s var(--ease);
  margin-bottom: 0;
}
.faq-item h3:hover { color: var(--accent); }
.faq-item h3::after {
  content: '+';
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active h3::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer p {
  padding-bottom: 24px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── COMMUNITY / TIERS ─────────────────────────────── */
.whats-included {
  background: var(--warm-cream);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-item {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid rgba(28, 18, 9, 0.04);
}
.feature-item h3 { margin-bottom: 10px; }
.feature-item p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.tiers-section { padding: 72px 0; }
.tiers-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 40px;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}
.tier-card {
  background: var(--warm-white);
  border: 1px solid rgba(28, 18, 9, 0.06);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s var(--ease);
  position: relative;
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28, 18, 9, 0.08);
}
.tier-featured {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(196, 97, 42, 0.12);
}
.tier-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(196, 97, 42, 0.1);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.tier-pricing {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.tier-pricing span {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 400;
}
.tier-note {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.tier-features {
  list-style: none;
  margin-bottom: 28px;
}
.tier-features li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(28, 18, 9, 0.04);
  padding-left: 24px;
  position: relative;
}
.tier-features li:last-child { border-bottom: none; }
.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ── NEWSLETTER SECTIONS ───────────────────────────── */
.newsletter-section,
.newsletter-signup-section {
  padding: 72px 0;
  text-align: center;
}
.newsletter-prompt {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 28px;
}

/* ── ARCHIVE SECTION ───────────────────────────────── */
.archive-section {
  background: var(--warm-cream);
  text-align: center;
  padding: 56px 0;
}
.archive-section p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ── CONTACT PAGE ──────────────────────────────────── */
.contact-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.contact-option {
  background: var(--warm-cream);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.contact-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(28, 18, 9, 0.06);
}
.contact-option h3 { margin-bottom: 8px; font-size: 1.1rem; }
.contact-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
}

/* ── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--espresso);
  color: rgba(250, 250, 248, 0.7);
  padding: 64px 0 32px;
}
.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-column h4 {
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-white);
  margin-bottom: 20px;
}
.footer-column:first-child h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0;
  text-transform: none;
}
.footer-column p {
  font-size: 15px;
  color: rgba(250, 250, 248, 0.55);
  max-width: 280px;
}
.footer-column ul li { margin-bottom: 12px; }
.footer-column a {
  font-size: 15px;
  color: rgba(250, 250, 248, 0.6);
}
.footer-column a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(250, 250, 248, 0.08);
  text-align: center;
  font-size: 14px;
  color: rgba(250, 250, 248, 0.4);
}

/* ── ANIMATIONS ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in--visible { opacity: 1; transform: translateY(0); }

.stagger > * {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.stagger--visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger--visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.stagger--visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.stagger--visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stagger--visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.stagger--visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }
.stagger--visible > *:nth-child(7) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }
.stagger--visible > *:nth-child(8) { transition-delay: 0.56s; opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid, .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }

  .pillars-grid, .modules-grid, .blog-grid,
  .difference-grid, .how-grid, .features-grid,
  .contact-options, .tiers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero { min-height: auto; padding-top: 110px; padding-bottom: 56px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 20px 24px;
    gap: 0;
    border-bottom: 1px solid rgba(28, 18, 9, 0.06);
    box-shadow: 0 8px 24px rgba(28, 18, 9, 0.08);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px 0; border-bottom: 1px solid rgba(28, 18, 9, 0.04); width: 100%; }
  .hamburger { display: block; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
  .nav-container > .btn { display: none; }

  .newsletter-form { flex-direction: column; }
  .cta-banner { padding: 56px 24px; }

  .footer-container { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { text-align: center; }

  .module-detailed-card { flex-direction: column; gap: 8px; }

  .page-header { padding-top: calc(72px + 32px); }
}

/* NEWSLETTER SUCCESS STATE */
.newsletter-wrap { position: relative; }
.newsletter-form--out { opacity: 0; transform: translateY(-6px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); pointer-events: none; }
.newsletter-success { display: none; text-align: center; padding: 12px 0; }
.newsletter-success--visible { display: block; animation: nl-fade-in 0.5s var(--ease) forwards; }
@keyframes nl-fade-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.newsletter-success-icon { width: 52px; height: 52px; background: var(--terracotta); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700; margin: 0 auto 18px; box-shadow: 0 4px 20px rgba(196, 97, 42, 0.4); }
.newsletter-success-title { font-family: var(--font-display); font-size: 1.5rem; color: inherit; margin-bottom: 8px; }
.newsletter-success-sub { font-size: 0.95rem; opacity: 0.75; margin-bottom: 0; color: inherit; }
