/* ===================================================================
   GERTIE GETS UPRIGHT — Stylesheet
   Soft rose-coral + cream + gold + burgundy. Wellness-brand warmth
   with a streak of leopard-print sass.
   =================================================================== */

/* -- 1. Design tokens -------------------------------------------------- */
:root {
  /* Core palette — softer rose/coral leaning */
  --rose: #E26D8E;          /* Primary CTA, accents */
  --rose-deep: #C95377;     /* Hover states, emphasis */
  --rose-soft: #F8DDE4;     /* Card hovers, subtle backgrounds */
  --rose-whisper: #FDF3F6;  /* Very faint pink wash */

  --cream: #FDF8EE;         /* Body background */
  --cream-warm: #F8EFD9;    /* Section panels */
  --paper: #FFFCF5;         /* Card backgrounds */

  --gold: #C9A14A;          /* Filigree, borders */
  --gold-deep: #A07F2E;     /* Stronger gold details */
  --gold-soft: #E5D2A0;     /* Faint gold accents */

  --burgundy: #5C1A2B;      /* Display headlines */
  --burgundy-soft: #7A2A3E;
  --ink: #2A1F1F;           /* Body text */
  --ink-soft: #5B4A4A;      /* Secondary text */
  --hairline: #EBE2D1;      /* Borders, dividers */

  /* Typography */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  --font-script: 'Caveat', 'Brush Script MT', cursive;

  /* Layout */
  --container: 1140px;
  --container-tight: 920px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* -- 2. Reset & base --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--rose-deep); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--burgundy); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--burgundy);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); text-align: center; }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

/* -- 3. Decorative elements ------------------------------------------- */
/* Heart bullet (small svg) */
.heart {
  display: inline-block;
  width: 0.95em; height: 0.95em;
  vertical-align: -0.1em;
  color: var(--rose);
}

/* Ornate divider — a flourish + heart + flourish */
.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto;
  color: var(--gold);
  max-width: 360px;
}
.flourish::before,
.flourish::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
}
.flourish .heart { color: var(--rose); width: 14px; height: 14px; }

/* Gold corner ornament (used on cards and panels) */
.corner-frame {
  position: relative;
}
.corner-frame::before,
.corner-frame::after {
  content: "";
  position: absolute;
  width: 36px; height: 36px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' fill='none' stroke='%23C9A14A' stroke-width='1.4'><path d='M2 14 Q2 2 14 2 M6 14 Q6 6 14 6'/><circle cx='9' cy='9' r='1.2' fill='%23C9A14A'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.corner-frame::before { top: 6px; left: 6px; }
.corner-frame::after  { top: 6px; right: 6px; transform: scaleX(-1); }

/* -- 4. Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  text-align: center;
  line-height: 1;
}
.btn-primary {
  background: var(--rose);
  color: white;
  box-shadow: 0 6px 0 -2px var(--rose-deep), 0 12px 24px -10px rgba(201, 83, 119, .45);
}
.btn-primary:hover {
  background: var(--rose-deep);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 0 -2px #a8385e, 0 18px 28px -10px rgba(201, 83, 119, .55);
}
.btn-secondary {
  background: var(--paper);
  color: var(--burgundy);
  border-color: var(--rose);
}
.btn-secondary:hover {
  background: var(--rose-whisper);
  color: var(--burgundy);
  transform: translateY(-2px);
}
.btn .crown { width: 18px; height: 18px; color: var(--gold); }
.btn-primary .crown { color: #FFE7A1; }

/* -- 5. Layout helpers ------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-tight { max-width: var(--container-tight); }

section { padding: 96px 0; position: relative; }
section + section { padding-top: 64px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--gold-deep);
  font-weight: 700;
  font-family: var(--font-body);
}

.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 .heart-inline { color: var(--rose); display: inline-block; margin: 0 8px; vertical-align: 0.1em; }
.section-head p { color: var(--ink-soft); max-width: 580px; margin: 0 auto; }

/* -- 6. Header & nav --------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 20px;
  flex-wrap: nowrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--burgundy);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  white-space: nowrap;
}
.logo-crown {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}
.logo small {
  display: block;
  font-family: var(--font-script);
  font-size: 1rem;
  color: var(--rose);
  font-weight: 500;
  margin-top: 2px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
  transform-origin: center;
}
.nav-links a:hover { color: var(--rose-deep); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { flex-shrink: 0; }
.nav-cta .btn { padding: 11px 20px; font-size: 0.95rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--burgundy);
}

/* -- 7. Hero ----------------------------------------------------------- */
.hero {
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rose-whisper);
  color: var(--rose-deep);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid var(--rose-soft);
}
.hero-eyebrow .crown { width: 14px; height: 14px; color: var(--gold); }

.hero h1 {
  margin-bottom: 20px;
}
.hero h1 .accent {
  font-family: var(--font-script);
  font-weight: 500;
  color: var(--rose);
  font-style: italic;
  font-size: 0.85em;
  display: inline-block;
  transform: rotate(-3deg);
  margin-right: 6px;
}
.hero-lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 14px;
}
.hero-sub {
  font-size: 0.98rem;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-tagline {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--burgundy-soft);
  font-style: italic;
  font-size: 1.05rem;
  font-family: var(--font-display);
}
.hero-tagline .flourish-mini {
  width: 36px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-tagline .heart { color: var(--rose); }

/* Hero image — Gertie character as main visual, book cover as secondary */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 580px;
}
.hero-character {
  position: relative;
  z-index: 2;
  max-height: 560px;
  max-width: 100%;
  width: auto;
  filter: drop-shadow(0 30px 30px rgba(92, 26, 43, 0.18));
  transition: transform .4s var(--ease);
}
.hero-character:hover { transform: translateY(-4px) rotate(-1deg); }

/* Mini book cover floating to one side */
.hero-cover-card {
  position: absolute;
  right: -10px;
  bottom: 30px;
  z-index: 3;
  width: 180px;
  text-decoration: none;
  transform: rotate(6deg);
  transition: transform .35s var(--ease), filter .25s var(--ease);
  display: block;
}
.hero-cover-card:hover {
  transform: rotate(2deg) translateY(-6px) scale(1.04);
}
.hero-cover-mini {
  width: 100%;
  border-radius: 4px;
  box-shadow:
    0 20px 40px -15px rgba(92, 26, 43, .45),
    0 8px 16px -8px rgba(92, 26, 43, .35),
    0 0 0 1px rgba(0,0,0,.05);
}
.hero-cover-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 14px -6px rgba(201, 83, 119, .5);
}
.hero-cover-badge svg {
  width: 12px; height: 12px;
}

/* Decorative blob behind the cover/character */
.hero-blob {
  position: absolute;
  width: 580px; height: 580px;
  background: radial-gradient(circle, var(--rose-whisper) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.9;
}

/* Floating crown decoration */
.hero-crown-decor {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  color: var(--gold);
  z-index: 3;
  animation: gentle-float 4s ease-in-out infinite;
}
@keyframes gentle-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* Pre-launch banner */
.prelaunch-banner {
  background: linear-gradient(90deg, var(--rose-whisper), var(--cream-warm), var(--rose-whisper));
  border-top: 1px solid var(--rose-soft);
  border-bottom: 1px solid var(--rose-soft);
  padding: 14px 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--burgundy);
  font-weight: 500;
}
.prelaunch-banner strong { color: var(--rose-deep); }

/* -- 8. About the book ------------------------------------------------- */
.about-book {
  background: var(--cream-warm);
  position: relative;
}
.about-book::before,
.about-book::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 24px;
  background: var(--cream);
  /* Torn-paper effect using mask */
}
.about-book::before {
  top: -1px;
  clip-path: polygon(0 100%, 3% 30%, 7% 70%, 12% 20%, 18% 80%, 24% 25%, 30% 75%, 37% 30%, 43% 80%, 50% 20%, 57% 75%, 63% 30%, 70% 80%, 76% 25%, 82% 70%, 88% 20%, 94% 75%, 100% 30%, 100% 0, 0 0);
}
.about-book::after {
  bottom: -1px;
  clip-path: polygon(0 0, 3% 70%, 7% 30%, 12% 80%, 18% 20%, 24% 75%, 30% 25%, 37% 70%, 43% 20%, 50% 80%, 57% 25%, 63% 70%, 70% 20%, 76% 75%, 82% 30%, 88% 80%, 94% 25%, 100% 70%, 100% 100%, 0 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 { text-align: left; }
.about-quote {
  background: var(--paper);
  border-left: 4px solid var(--rose);
  padding: 22px 26px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 28px;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--burgundy);
  position: relative;
  box-shadow: 0 4px 14px -8px rgba(0,0,0,.1);
}
.about-quote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 14px;
  font-size: 3.5rem;
  font-family: var(--font-display);
  color: var(--rose);
  line-height: 1;
}
.about-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.95rem;
  font-style: normal;
  color: var(--rose-deep);
  font-weight: 600;
  font-family: var(--font-body);
}

.about-quote cite::before { content: "— "; }

.inside-find {
  margin-top: 32px;
}
.inside-find h3 {
  font-family: var(--font-display);
  color: var(--burgundy);
  font-size: 1.4rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.inside-find h3::before, .inside-find h3::after {
  content: "";
  flex: 0 0 24px;
  height: 1px;
  background: var(--gold);
}
.inside-find h3::after { flex: 1; }

.find-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 24px;
}
.find-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.02rem;
  color: var(--ink);
  padding: 4px 0;
}
.find-list .heart {
  color: var(--rose);
  flex-shrink: 0;
  margin-top: 5px;
}

.about-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.about-image img {
  max-height: 560px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 20px 24px rgba(92, 26, 43, 0.18));
  transform: rotate(1deg);
}
.about-image-caption {
  margin-top: 18px;
  text-align: center;
  max-width: 280px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--burgundy-soft);
  line-height: 1.4;
}
.about-image-caption .caption-byline {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--rose-deep);
  font-weight: 600;
}

/* -- 9. Start Here (printables) --------------------------------------- */
.printables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.printable-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.printable-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px -16px rgba(92, 26, 43, .2);
  border-color: var(--rose-soft);
}
.printable-thumb {
  background: var(--rose-whisper);
  border-radius: var(--radius);
  height: 180px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rose-soft);
  overflow: hidden;
}
.printable-thumb svg { width: 70%; height: auto; }
.printable-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--burgundy);
}
.printable-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  flex: 1;
}
.printable-card .arrow {
  color: var(--rose);
  font-size: 1.4rem;
  display: inline-block;
  transition: transform .2s var(--ease);
}
.printable-card:hover .arrow { transform: translateX(4px); }

.printables-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* -- 10. Meet Gertie --------------------------------------------------- */
.meet-gertie {
  background: var(--cream);
}
.meet-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center;
}
.meet-image {
  display: flex;
  justify-content: center;
  position: relative;
}
.meet-image img {
  max-width: 360px;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .14));
}
.meet-text h2 { text-align: left; }
.meet-text .lead {
  font-size: 1.15rem;
  color: var(--burgundy-soft);
  font-style: italic;
  font-family: var(--font-display);
  margin-bottom: 20px;
}
.author-note {
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--rose-whisper);
  border-radius: var(--radius);
  font-size: 0.97rem;
  color: var(--ink);
  border: 1px solid var(--rose-soft);
}
.author-note strong { color: var(--rose-deep); }

/* -- 11. Tools (affiliate) -------------------------------------------- */
.tools {
  background: var(--cream-warm);
  position: relative;
}
.tools::before,
.tools::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 24px;
  background: var(--cream);
}
.tools::before {
  top: -1px;
  clip-path: polygon(0 100%, 3% 30%, 7% 70%, 12% 20%, 18% 80%, 24% 25%, 30% 75%, 37% 30%, 43% 80%, 50% 20%, 57% 75%, 63% 30%, 70% 80%, 76% 25%, 82% 70%, 88% 20%, 94% 75%, 100% 30%, 100% 0, 0 0);
}
.tools::after {
  bottom: -1px;
  clip-path: polygon(0 0, 3% 70%, 7% 30%, 12% 80%, 18% 20%, 24% 75%, 30% 25%, 37% 70%, 43% 20%, 50% 80%, 57% 25%, 63% 70%, 70% 20%, 76% 75%, 82% 30%, 88% 80%, 94% 25%, 100% 70%, 100% 100%, 0 100%);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.tool-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -12px rgba(0,0,0,.12);
}
.tool-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--rose-whisper);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-deep);
}
.tool-icon svg { width: 36px; height: 36px; }
.tool-content h3 {
  font-size: 1.02rem;
  margin-bottom: 4px;
  color: var(--burgundy);
}
.tool-content p {
  font-size: 0.88rem;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.affiliate-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* -- 12. Email signup ------------------------------------------------- */
.signup {
  padding: 80px 0;
}
.signup-card {
  background: linear-gradient(135deg, var(--paper) 0%, var(--rose-whisper) 100%);
  border: 2px solid var(--rose-soft);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden; /* keep Queenie contained inside the card edge */
  box-shadow: 0 20px 40px -20px rgba(201, 83, 119, .25);
}
.signup-card .corner-frame::before { top: 12px; left: 12px; }
.signup-card .corner-frame::after  { top: 12px; right: 12px; }
.signup-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.signup-text {
  padding-bottom: 110px; /* room for Queenie */
}
.signup-text h2 {
  text-align: left;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}
.signup-text p { color: var(--ink-soft); }
.signup-text .no-mumbo {
  color: var(--rose-deep);
  font-style: italic;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-top: 14px;
}
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.signup-form input[type="email"],
.signup-form input[type="text"] {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--rose-soft);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.signup-form input[type="email"]:focus,
.signup-form input[type="text"]:focus {
  outline: 0;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px var(--rose-whisper);
}
.signup-form input[type="email"]::placeholder,
.signup-form input[type="text"]::placeholder { color: #B89BA3; }
.signup-form button {
  width: 100%;
}
.signup-fineprint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.signup-fineprint svg { width: 12px; height: 12px; }

.signup-success {
  display: none;
  text-align: center;
  padding: 30px 20px;
  color: var(--burgundy);
}
.signup-success.show { display: block; }
.signup-success h3 { font-size: 1.4rem; margin-bottom: 8px; }
.signup-success p { color: var(--ink-soft); margin: 0; }

/* -- 13. Footer ------------------------------------------------------- */
.footer {
  background: var(--burgundy);
  color: #F8E5EA;
  padding: 60px 0 30px;
  position: relative;
}
.footer a { color: #F8E5EA; }
.footer a:hover { color: var(--rose-soft); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .logo { color: #FFF; }
.footer-brand .logo small { color: var(--rose-soft); }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.92rem;
  opacity: 0.85;
  max-width: 340px;
}
.footer-col h4 {
  font-family: var(--font-display);
  color: #FFE7A1;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; font-size: 0.93rem; }
.footer-bottom {
  border-top: 1px solid rgba(248, 229, 234, 0.15);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.7;
  line-height: 1.6;
}
.footer-bottom p { margin: 4px 0; }

/* -- 14. New character-based decorations -------------------------- */

/* Care professionals discreet callout — homepage strip */
.pro-callout {
  padding: 24px 0 56px;
  background: var(--cream);
}
.pro-callout-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: linear-gradient(135deg, var(--cream-warm), var(--paper));
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--burgundy);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.pro-callout-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -14px rgba(92, 26, 43, 0.18);
  border-left-color: var(--rose-deep);
  color: var(--ink);
}
.pro-callout-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--burgundy);
  color: var(--gold-soft);
  border-radius: 50%;
}
.pro-callout-icon svg {
  width: 22px; height: 22px;
}
.pro-callout-content {
  flex: 1;
}
.pro-callout-content strong {
  display: block;
  color: var(--burgundy);
  font-family: var(--font-display);
  font-size: 1.08rem;
  margin-bottom: 3px;
}
.pro-callout-content span {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-style: italic;
}
.pro-callout-arrow {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--rose-deep);
  transition: transform .2s var(--ease);
}
.pro-callout-link:hover .pro-callout-arrow {
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .pro-callout-link {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 24px 20px;
    border-left: 0;
    border-top: 4px solid var(--burgundy);
  }
  .pro-callout-arrow { display: none; }
}
/* Pointing Gertie above tools section */
.tools-intro {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 28px;
  margin-bottom: 56px;
  padding-top: 12px;
  position: relative;
}
.tools-pointer {
  width: 180px;
  flex-shrink: 0;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.14));
  margin-bottom: -8px;
  transform: scaleX(-1); /* mirror so she points toward the headline */
}
.tools-headline {
  text-align: left;
  max-width: 540px;
  padding-bottom: 14px;
}
.tools-headline .eyebrow { display: block; margin-bottom: 8px; }
.tools-headline h2 {
  text-align: left;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.tools-headline p {
  margin: 0;
  color: var(--ink-soft);
}

/* Queenie decoration on signup card — bottom-left, smaller, doesn't block form */
.signup-queenie {
  position: absolute;
  bottom: 16px;
  left: 24px;
  width: 100px;
  z-index: 1;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.1));
  transform: rotate(-4deg);
  pointer-events: none;
}

/* Thumbs-up image in success state */
.success-image {
  width: 140px;
  margin: 0 auto 16px;
  display: block;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.12));
}

/* Footer wordmark */
.footer-wordmark {
  max-width: 200px;
  margin-bottom: 16px;
  /* The wordmark has dark text — needs lighter context against dark burgundy footer */
  background: var(--cream);
  padding: 16px 22px 12px;
  border-radius: 10px;
  display: block;
  box-shadow: 0 4px 14px -6px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 231, 161, 0.15);
}
.footer-brand p em { color: #FFE7A1; font-style: italic; }

/* -- 15. Animations on scroll ----------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* -- 16. Responsive --------------------------------------------------- */
@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .meet-grid,
  .signup-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image-wrap { order: -1; min-height: 480px; }
  .about-image { order: -1; }
  .meet-image { order: -1; }
  .hero-character { max-width: 380px; }
  .hero-cover-card { width: 150px; right: 0; }
  .tools-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .tools-pointer { width: 140px; margin-bottom: 0; transform: none; }
  .tools-headline { text-align: center; }
  .tools-headline h2 { display: flex; justify-content: center; }
  .printables-grid,
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .signup-queenie { width: 100px; right: -5px; bottom: -5px; opacity: 0.85; }
  section { padding: 72px 0; }
}

/* Intermediate breakpoint — switch to hamburger nav before things wrap */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  /* Mobile nav drawer (shared with smaller breakpoint) */
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--hairline);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    z-index: 100;
  }
  .nav-links.open li { border-bottom: 1px solid var(--hairline); }
  .nav-links.open li:last-child { border-bottom: 0; }
  .nav-links.open a {
    padding: 14px 24px;
    display: block;
  }
}

@media (max-width: 640px) {
  body { font-size: 17px; }
  .nav-cta { display: none; }
  .nav-bar { padding: 14px 20px; }
  .logo { font-size: 1.3rem; }
  .logo small { font-size: 0.85rem; }
  .printables-grid,
  .tools-grid {
    grid-template-columns: 1fr;
  }
  .signup-card { padding: 40px 24px; }
  .signup-queenie { display: none; } /* too crowded on mobile */
  .hero { padding: 40px 0 60px; }
  .hero-image-wrap { min-height: 440px; }
  .hero-character { max-width: 320px; }
  .hero-cover-card { width: 120px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  section { padding: 60px 0; }
  h1 { font-size: 2.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
