/* ════════════════════════════════════════════════════════════════════════
   ShireenChada.com — Homepage Stylesheet
   Palette: Rose gold · Warm ivory · Sage green · Deep navy · Gold
   ════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Custom Properties ───────────────────────────────────────────────── */
:root {
  --ivory:       #faf7f2;
  --ivory-dark:  #f0ebe0;
  --rose:        #c4827a;
  --rose-light:  #e8b4b0;
  --rose-pale:   #fdf0ee;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-pale:   #fdf7e8;
  --sage:        #7a9e7e;
  --sage-light:  #a8c5ac;
  --navy:        #1a2640;
  --navy-mid:    #243354;
  --text-dark:   #1e1e2e;
  --text-mid:    #4a4a6a;
  --text-light:  #8a8aaa;
  --white:       #ffffff;

  --shadow-soft: 0 8px 32px rgba(30,30,46,0.08);
  --shadow-card: 0 16px 48px rgba(30,30,46,0.12);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.2);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-w:       1100px;
}

/* ── Reset ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Shared Utility ──────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 18px;
}
.section-tag.rose  { color: var(--rose); background: rgba(196,130,122,0.1); border: 1px solid rgba(196,130,122,0.25); }
.section-tag.gold  { color: var(--gold); background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); }
.section-tag.sage  { color: var(--sage); background: rgba(122,158,126,0.1); border: 1px solid rgba(122,158,126,0.25); }
.section-tag.navy  { color: var(--navy); background: rgba(26,38,64,0.08); border: 1px solid rgba(26,38,64,0.15); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}
.section-title em { font-style: italic; color: var(--rose); }
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 620px;
  margin-top: 14px;
}

/* Ornament divider */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 0 auto 20px;
}
.ornament-line { width: 50px; height: 1px; background: linear-gradient(90deg,transparent,var(--gold)); }
.ornament-line.r { background: linear-gradient(90deg,var(--gold),transparent); }
.ornament-dot { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }

/* ── Navigation ──────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.03em;
  transition: var(--transition);
}
.nav-logo span { color: var(--rose); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--rose); }
.nav-cta {
  background: linear-gradient(135deg,var(--rose),#b36960);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(196,130,122,0.35);
  transition: var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,130,122,0.45) !important; }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center top;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(250,247,242,0.92) 0%, rgba(250,247,242,0.75) 50%, rgba(250,247,242,0.55) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { animation: fadeLeft 0.9s ease both; }
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--rose); }
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg,var(--rose) 0%,#b36960 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(196,130,122,0.35);
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(196,130,122,0.45); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(26,38,64,0.2);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--rose); color: var(--rose); }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.stat-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose);
}
.stat-item p { font-size: 0.82rem; color: var(--text-light); font-weight: 500; letter-spacing: 0.04em; }

.hero-image {
  animation: fadeRight 0.9s ease 0.2s both;
  position: relative;
}
.hero-image img {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  box-shadow: 0 30px 80px rgba(30,30,46,0.18);
}
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatY 3s ease-in-out infinite;
}
.hero-badge-icon { font-size: 1.8rem; }
.hero-badge-text p:first-child { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.hero-badge-text p:last-child { font-size: 0.75rem; color: var(--text-light); }

/* ── Mission / Introduction ──────────────────────────────────────────── */
.mission-section {
  padding: 100px 0;
  background: var(--white);
}
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-quote {
  position: relative;
  padding: 40px;
  background: linear-gradient(135deg,var(--ivory) 0%,var(--ivory-dark) 100%);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--rose);
}
.mission-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 16px;
}
.mission-quote cite {
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.05em;
}
.quote-ornament {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  line-height: 0.5;
  color: var(--rose-light);
  position: absolute;
  top: 24px;
  left: 28px;
  opacity: 0.4;
}
.mission-content .section-sub { max-width: 100%; margin-bottom: 24px; }
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--ivory);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05);
}
.pillar-icon { font-size: 1.3rem; flex-shrink: 0; }
.pillar h4 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.pillar p { font-size: 0.8rem; color: var(--text-mid); }

/* ── Books ───────────────────────────────────────────────────────────── */
.books-section {
  padding: 100px 0;
  background: var(--ivory);
}
.books-header { text-align: center; margin-bottom: 60px; }
.books-header .section-sub { margin: 14px auto 0; }
.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.book-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.book-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.book-cover {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ivory-dark);
}
.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.book-card:hover .book-cover img { transform: scale(1.04); }
.book-info { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.book-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}
.book-info p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.book-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.book-link:hover { gap: 10px; }

/* ── About ───────────────────────────────────────────────────────────── */
.about-section {
  padding: 100px 0;
  background: linear-gradient(180deg,var(--navy) 0%,var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(201,168,76,0.06),transparent 70%);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.about-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--gold),#b8860b);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  box-shadow: var(--shadow-gold);
}
.about-accent p { font-size: 0.72rem; font-weight: 700; color: var(--white); line-height: 1.3; text-transform: uppercase; letter-spacing: 0.05em; }
.about-accent strong { font-size: 1.6rem; display: block; margin-bottom: 2px; }
.about-content .section-title { color: var(--white); }
.about-content .section-title em { color: var(--gold-light); }
.about-content .section-sub { color: rgba(255,255,255,0.65); }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.about-tag {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  color: rgba(255,255,255,0.8);
}

/* ── Offerings ───────────────────────────────────────────────────────── */
.offerings-section {
  padding: 100px 0;
  background: var(--white);
}
.offerings-header { text-align: center; margin-bottom: 60px; }
.offerings-header .section-sub { margin: 14px auto 0; }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offering-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.offering-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,var(--rose),var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.offering-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.offering-card:hover::after { transform: scaleX(1); }
.offering-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}
.offering-card:nth-child(1) .offering-icon { background: rgba(196,130,122,0.12); }
.offering-card:nth-child(2) .offering-icon { background: rgba(201,168,76,0.12); }
.offering-card:nth-child(3) .offering-icon { background: rgba(122,158,126,0.12); }
.offering-card:nth-child(4) .offering-icon { background: rgba(26,38,64,0.08); }
.offering-card:nth-child(5) .offering-icon { background: rgba(196,130,122,0.12); }
.offering-card:nth-child(6) .offering-icon { background: rgba(201,168,76,0.12); }
.offering-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.offering-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }
.offering-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rose);
  margin-top: 16px;
  transition: gap 0.2s;
}
.offering-card a:hover { gap: 10px; }

/* ── Free Workbook CTA ───────────────────────────────────────────────── */
.workbook-section {
  padding: 100px 0;
  background: linear-gradient(135deg,var(--rose-pale) 0%,var(--gold-pale) 100%);
  position: relative;
  overflow: hidden;
}
.workbook-section::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(196,130,122,0.12),transparent 70%);
}
.workbook-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.workbook-content .section-sub { margin-bottom: 32px; }
.workbook-bullets { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 14px; }
.workbook-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.workbook-bullets li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 4px;
}
.workbook-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.workbook-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(196,130,122,0.2);
  max-width: 380px;
  width: 100%;
}
.workbook-icon { font-size: 3.5rem; margin-bottom: 16px; }
.workbook-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.workbook-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.65;
}
.workbook-card .btn-primary { width: 100%; justify-content: center; }
.workbook-badge-row { display: flex; justify-content: center; gap: 20px; margin-top: 16px; }
.workbook-badge-row span { font-size: 0.75rem; color: var(--text-light); display: flex; align-items: center; gap: 5px; }

/* ── Podcast & Social ────────────────────────────────────────────────── */
.connect-section {
  padding: 100px 0;
  background: var(--ivory);
  text-align: center;
}
.connect-header { margin-bottom: 56px; }
.connect-header .section-sub { margin: 14px auto 0; }
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
.social-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.social-link.youtube:hover { color: #ff0000; border-color: #ff0000; }
.social-link.insight:hover { color: var(--sage); border-color: var(--sage); }
.social-link.podcast:hover { color: var(--rose); border-color: var(--rose); }
.social-link.amazon:hover { color: #ff9900; border-color: #ff9900; }
.social-icon { font-size: 1.2rem; }

/* Tampa Center info */
.center-info {
  max-width: 540px;
  margin: 0 auto;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--rose);
}
.center-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.center-info p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 8px; }
.center-info a { color: var(--rose); font-weight: 500; }
.center-info a:hover { text-decoration: underline; }

/* ── Footer ──────────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 48px 0 28px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { color: var(--white); font-size: 1.5rem; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: var(--rose-light); }

/* ── Animations ──────────────────────────────────────────────────────── */
@keyframes fadeLeft  { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeRight { from { opacity:0; transform:translateX(30px); }  to { opacity:1; transform:translateX(0); } }
@keyframes fadeUp    { from { opacity:0; transform:translateY(30px); }  to { opacity:1; transform:translateY(0); } }
@keyframes floatY    { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-l { opacity:0; transform:translateX(-28px); transition: opacity 0.7s ease,transform 0.7s ease; }
.reveal-l.in { opacity:1; transform:translateX(0); }
.reveal-r { opacity:0; transform:translateX(28px); transition: opacity 0.7s ease,transform 0.7s ease; }
.reveal-r.in { opacity:1; transform:translateX(0); }

.stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger.in > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:0.05s; }
.stagger.in > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:0.15s; }
.stagger.in > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:0.25s; }
.stagger.in > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:0.35s; }
.stagger.in > *:nth-child(5) { opacity:1; transform:translateY(0); transition-delay:0.45s; }
.stagger.in > *:nth-child(6) { opacity:1; transform:translateY(0); transition-delay:0.55s; }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner, .mission-inner, .about-inner, .workbook-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 340px; }
  .about-image-wrap img { max-width: 400px; margin: 0 auto; }
  .books-grid, .offerings-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 600px) {
  .books-grid, .offerings-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .pillars { grid-template-columns: 1fr; }
  .social-links { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
