/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blush:        #f5e8e0;
  --blush-dark:   #e8c9bb;
  --rose:         #c47a6a;
  --rose-deep:    #a85c4f;
  --gold:         #c9a96e;
  --gold-light:   #e8d5b0;
  --cream:        #fdf8f3;
  --ivory:        #faf6f0;
  --charcoal:     #3a3330;
  --stone:        #7a6e68;
  --mist:         #a8a09a;
  --white:        #ffffff;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', system-ui, sans-serif;

  --max-w:        1160px;
  --radius:       12px;
  --shadow:       0 4px 32px rgba(60,40,30,.10);
  --shadow-lg:    0 12px 56px rgba(60,40,30,.16);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; }

/* ─── Typography ─────────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .75rem;
}
.section-eyebrow.center { text-align: center; }
.section-eyebrow.light  { color: var(--gold-light); }

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.section-heading.center { text-align: center; }
.section-heading.light  { color: var(--cream); }

.section-heading em { font-style: italic; color: var(--rose); }

.section-sub {
  font-size: 1.05rem;
  color: var(--stone);
  max-width: 620px;
  margin-bottom: 3rem;
}
.section-sub.center { text-align: center; margin: 0 auto 3rem; }

.body-text {
  font-size: 1.05rem;
  color: var(--stone);
  margin-bottom: 1.2rem;
  max-width: 580px;
}
.body-text em     { font-style: italic; color: var(--charcoal); }
.body-text strong { font-weight: 500; color: var(--charcoal); }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn-primary,
.btn-ghost,
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 2.2rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  transition: all .25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
}
.btn-primary:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(168,92,79,.3); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }

.btn-white {
  background: var(--white);
  color: var(--rose-deep);
  font-weight: 500;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.15); }

.btn-large { padding: 1rem 2.6rem; font-size: .95rem; }
.btn-full  { width: 100%; }

/* ─── Nav ─────────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,248,243,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,122,106,.12);
  transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: var(--shadow); }

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: .45rem;
}
.logo-icon  { color: var(--rose); font-size: 1rem; }
.logo-bloom { color: var(--rose); font-size: 1.1rem; }
.logo-amp   { color: var(--rose); font-style: italic; margin: 0 .15rem; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--stone);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--rose); }
.nav-links .nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: .55rem 1.4rem;
  border-radius: 4px;
  font-weight: 500;
}
.nav-links .nav-cta:hover { background: var(--rose-deep); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all .3s;
  border-radius: 2px;
}

/* ─── Section Shell ───────────────────────────────────────────── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 2rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ─── Hero ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #3a2a26 0%,
    #5c3d35 30%,
    #8c5d52 60%,
    #c47a6a 100%
  );
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,169,110,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245,232,224,.08) 0%, transparent 40%);
}

/* Decorative petal shapes */
#hero::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
}

.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(40,20,15,.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold-light); font-weight: 300; }

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.15); }
}

/* ─── About ───────────────────────────────────────────────────── */
.section-about { background: var(--ivory); }

.about-image-wrap {
  position: relative;
}
.about-img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-quote-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--rose);
  color: var(--white);
  padding: 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  box-shadow: var(--shadow);
  max-width: 220px;
  z-index: 2;
}

.about-text { padding-left: 1rem; }
.about-text .btn-primary { margin-top: 1.5rem; }

/* ─── Features ────────────────────────────────────────────────── */
.section-features { background: var(--cream); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(196,122,106,.1);
  transition: all .25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(196,122,106,.25);
}

.feature-icon { font-size: 1.8rem; margin-bottom: .75rem; }
.feature-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: .5rem;
}
.feature-desc { font-size: .9rem; color: var(--stone); line-height: 1.6; }

/* ─── Quote Banner ────────────────────────────────────────────── */
.section-quote-banner {
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose) 100%);
  padding: 5rem 2rem;
}
.quote-banner-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.quote-banner-inner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.quote-banner-inner cite {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .1em;
  font-style: normal;
}

/* ─── Preview ─────────────────────────────────────────────────── */
.section-preview { background: var(--blush); }

.preview-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.preview-img { width: 100%; height: 520px; object-fit: cover; }

.preview-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.preview-list li {
  font-size: .95rem;
  color: var(--charcoal);
  padding: .5rem 0;
  border-bottom: 1px solid rgba(196,122,106,.15);
}

/* ─── Final CTA ───────────────────────────────────────────────── */
.section-final-cta {
  background: linear-gradient(
    135deg,
    #3a2a26 0%,
    #5c3d35 50%,
    #8c5d52 100%
  );
  padding: 7rem 2rem;
}
.final-cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.final-cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 440px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ─── Footer ──────────────────────────────────────────────────── */
#site-footer {
  background: var(--charcoal);
  padding: 4rem 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.footer-brand { margin-bottom: 2rem; }
.footer-brand .logo-icon { font-size: 1.2rem; color: var(--gold); }
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--cream);
  margin: .4rem 0;
}
.footer-tagline { font-size: .875rem; color: var(--mist); font-style: italic; }
.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.footer-links a {
  font-size: .875rem;
  color: var(--mist);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: .8rem; color: var(--stone); }

/* ═══════════════════════════════════════════════════════════════
   PLANNER PAGE
═══════════════════════════════════════════════════════════════ */

/* ─── Product Hero ────────────────────────────────────────────── */
#product-hero {
  padding-top: 100px;
  background: var(--ivory);
  overflow: hidden;
}
.product-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.product-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.product-hero-title em { font-style: italic; color: var(--rose); }

.product-hero-sub {
  font-size: 1.05rem;
  color: var(--stone);
  max-width: 480px;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.product-rating { display: flex; align-items: center; gap: .75rem; margin-bottom: 2rem; }
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .05em; }
.rating-text { font-size: .85rem; color: var(--stone); }

.product-price-wrap { margin-top: .5rem; }
.product-price {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-bottom: 1.25rem;
}
.price-label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--rose); }
.price-amount {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
}
.price-note { font-size: .85rem; color: var(--stone); }

.product-reassurance { font-size: .82rem; color: var(--mist); margin-top: .75rem; text-align: center; }

.product-img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.product-hero-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.product-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  box-shadow: var(--shadow);
  gap: 1px;
}
.badge-icon { font-size: 1rem; margin-bottom: 2px; }

/* ─── What You Get ────────────────────────────────────────────── */
.section-what-you-get { background: var(--cream); }

.wyg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}

.wyg-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(196,122,106,.1);
  transition: all .2s;
}
.wyg-item:hover { border-color: rgba(196,122,106,.3); box-shadow: var(--shadow); }

.wyg-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose);
  margin-top: .45rem;
}

.wyg-title {
  font-size: .95rem;
  font-weight: 500;
  color: var(--charcoal);
  display: block;
  margin-bottom: .3rem;
}
.wyg-desc { font-size: .85rem; color: var(--stone); line-height: 1.55; }

/* ─── Why ──────────────────────────────────────────────────────── */
.section-why { background: var(--blush); }

.why-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.why-points { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }

.why-point { display: flex; align-items: flex-start; gap: 1.2rem; }
.why-point-icon {
  flex-shrink: 0;
  color: var(--rose);
  font-size: 1rem;
  margin-top: .2rem;
}
.why-point-title {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: .3rem;
}
.why-point-desc { font-size: .9rem; color: var(--stone); }

/* ─── Testimonials ────────────────────────────────────────────── */
.section-testimonials { background: var(--ivory); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(196,122,106,.12);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--blush-dark);
  position: absolute;
  top: .5rem; left: 1.2rem;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: .95rem; margin-bottom: 1rem; }
.testimonial-quote {
  font-size: .95rem;
  color: var(--stone);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-name { font-size: .9rem; font-weight: 500; color: var(--charcoal); }
.testimonial-tag {
  font-size: .78rem;
  color: var(--rose);
  background: var(--blush);
  padding: .2rem .65rem;
  border-radius: 20px;
}

/* ─── Buy Section ─────────────────────────────────────────────── */
.section-buy {
  background: linear-gradient(
    160deg,
    #3a2a26 0%,
    #5c3d35 40%,
    #8c5d52 100%
  );
  padding: 7rem 2rem;
}
.buy-inner { max-width: 740px; margin: 0 auto; }

.buy-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 3rem;
}
.buy-title em { font-style: italic; color: var(--gold-light); }

.buy-card {
  background: rgba(255,255,255,.96);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
  margin-bottom: 3.5rem;
}
.buy-card-top {
  background: var(--blush);
  padding: 2.5rem 3rem;
  text-align: center;
  border-bottom: 1px solid rgba(196,122,106,.2);
}
.buy-card-badge {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.buy-card-name {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: .3rem;
}
.buy-card-format { font-size: .85rem; color: var(--stone); }
.buy-card-price { margin-top: 1rem; }
.buy-price {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
  color: var(--rose-deep);
}

.buy-includes {
  list-style: none;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.buy-includes li {
  font-size: .95rem;
  color: var(--charcoal);
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(196,122,106,.12);
}
.buy-includes li:last-child { border-bottom: none; padding-bottom: 0; }

.buy-card .btn-primary { margin: 0 3rem 2rem; width: calc(100% - 6rem); }
.buy-guarantee {
  text-align: center;
  font-size: .82rem;
  color: var(--stone);
  padding-bottom: 2rem;
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.buy-faq { margin-bottom: 2rem; }
.faq-heading {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
  text-align: center;
  margin-bottom: 1.5rem;
}

.faq-list { display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  overflow: hidden;
}
.faq-question {
  padding: 1.2rem 1.5rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--cream);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--gold-light);
  transition: transform .2s;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 1.5rem 1.2rem;
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

/* ─── Final Quote ─────────────────────────────────────────────── */
.section-final-quote {
  background: var(--blush);
  padding: 7rem 2rem;
}
.final-quote-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.final-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.final-quote-inner .btn-white {
  background: var(--rose);
  color: var(--white);
}
.final-quote-inner .btn-white:hover { background: var(--rose-deep); }

/* ─── Fade-in animations ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .two-col,
  .product-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .two-col.reverse { direction: ltr; }

  .about-img { height: 400px; }
  .about-quote-badge { right: 0; bottom: -16px; }

  .preview-img,
  .why-img,
  .product-hero-img { height: 380px; }

  .product-img-badge { bottom: -12px; left: -12px; width: 90px; height: 90px; font-size: .66rem; }

  .buy-card .btn-primary { margin: 0 1.5rem 2rem; width: calc(100% - 3rem); }
  .buy-includes { padding: 2rem 1.5rem; }
  .buy-card-top { padding: 2rem 1.5rem; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(253,248,243,.97);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(196,122,106,.15);
    backdrop-filter: blur(12px);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: flex; }

  .section-inner { padding: 4rem 1.25rem; }
  .hero-buttons { flex-direction: column; align-items: center; }

  .features-grid { grid-template-columns: 1fr; }
  .wyg-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .about-img { height: 300px; }
  .about-quote-badge { position: static; margin-top: 1rem; max-width: 100%; }

  .product-hero-inner { padding: 2rem 1.25rem 3rem; }
}

/* ═══════════════════════════════════════════════════════════════
   BRANDING UPDATE — Hydrangea & Ink
═══════════════════════════════════════════════════════════════ */
.nav-logo { gap: .35rem; }
.logo-bloom { color: var(--rose); font-size: 1.1rem; }
.logo-amp   { font-style: italic; color: var(--rose); }

/* ═══════════════════════════════════════════════════════════════
   CHECKOUT ERROR
═══════════════════════════════════════════════════════════════ */
.checkout-error {
  background: #fff0ee;
  border: 1.5px solid var(--rose);
  color: var(--rose-deep);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  font-size: .9rem;
  margin-top: 1.5rem;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   SUCCESS PAGE
═══════════════════════════════════════════════════════════════ */
.success-page {
  min-height: 100vh;
  padding-top: 100px;
  background: linear-gradient(160deg, var(--blush) 0%, var(--ivory) 60%, var(--cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-inner {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  text-align: center;
}

/* Loading */
.success-spinner {
  width: 48px; height: 48px;
  border: 3px solid var(--blush-dark);
  border-top-color: var(--rose);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto 1.5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

.success-loading-text {
  font-size: 1rem;
  color: var(--stone);
  font-style: italic;
}

/* Confirmed */
.success-bloom {
  font-size: 3.5rem;
  color: var(--rose);
  margin-bottom: 1.5rem;
  display: block;
  animation: bloomPop .6s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes bloomPop {
  0%   { transform: scale(0) rotate(-30deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg);   opacity: 1; }
}

.success-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.success-title em { font-style: italic; color: var(--rose); }

.success-sub {
  font-size: 1.05rem;
  color: var(--stone);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.success-download-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.05rem;
  padding: 1.1rem 2.8rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 32px rgba(168,92,79,.3);
  animation: pulseBtn 2.5s ease-in-out 1s infinite;
}
@keyframes pulseBtn {
  0%, 100% { box-shadow: 0 8px 32px rgba(168,92,79,.3); }
  50%       { box-shadow: 0 8px 48px rgba(168,92,79,.5); }
}

.success-note {
  font-size: .82rem;
  color: var(--mist);
  margin-bottom: 3rem;
}
.success-note a { color: var(--rose); text-decoration: underline; }

.success-tips {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: left;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(196,122,106,.15);
  box-shadow: var(--shadow);
}
.tips-heading {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.tips-list li {
  font-size: .95rem;
  color: var(--stone);
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(196,122,106,.1);
}
.tips-list li:last-child { border-bottom: none; padding-bottom: 0; }

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 2rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--stone);
  border: 1.5px solid rgba(122,110,104,.3);
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
}
.btn-ghost-dark:hover { border-color: var(--rose); color: var(--rose); }

/* Buy card CTA area */
.buy-card-cta {
  padding: 0 3rem 2rem;
}

@media (max-width: 640px) {
  .buy-card-cta { padding: 0 1.5rem 2rem; }
  .success-inner { padding: 3rem 1.25rem 4rem; }
}

/* ─── Checkout Error ──────────────────────────────────────────── */
.checkout-error {
  background: #fdecea;
  border: 1px solid #f5c6c2;
  color: #a85c4f;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin: 1.5rem auto 0;
  max-width: 740px;
  font-size: .92rem;
  text-align: center;
}

/* ─── Footer logo ─────────────────────────────────────────────── */
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--cream);
  margin: .4rem 0;
}
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-tag { font-size: .875rem; color: var(--mist); font-style: italic; }

/* ─── Success Page ────────────────────────────────────────────── */
.success-page {
  min-height: 100vh;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 2rem 5rem;
}
.success-inner {
  max-width: 680px;
  width: 100%;
  text-align: center;
}

/* Loading spinner */
#success-loading { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.success-spinner {
  width: 48px; height: 48px;
  border: 3px solid var(--blush-dark);
  border-top-color: var(--rose);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.success-loading-text { font-size: .95rem; color: var(--stone); font-style: italic; }

/* Confirmed state */
.success-bloom {
  font-size: 3.5rem;
  color: var(--rose);
  margin-bottom: 1.5rem;
  display: block;
  animation: bloomIn .6s ease both;
}
@keyframes bloomIn {
  from { opacity: 0; transform: scale(.5) rotate(-20deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

.success-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.success-title em { font-style: italic; color: var(--rose); }

.success-sub {
  font-size: 1.05rem;
  color: var(--stone);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.success-download-btn {
  font-size: 1rem;
  padding: 1.1rem 3rem;
  margin-bottom: 1rem;
  display: inline-flex;
  gap: .5rem;
}

.success-note {
  font-size: .85rem;
  color: var(--mist);
  margin-bottom: 2.5rem;
}
.success-note a { color: var(--rose); text-decoration: underline; }

.success-tips {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: left;
  margin-bottom: 2.5rem;
}
.tips-heading {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.tips-list li {
  font-size: .93rem;
  color: var(--stone);
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(196,122,106,.15);
}
.tips-list li:last-child { border-bottom: none; padding-bottom: 0; }
.tips-list strong { color: var(--charcoal); font-weight: 500; }

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  padding: .8rem 2rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--stone);
  border: 1.5px solid rgba(122,110,104,.3);
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
}
.btn-ghost-dark:hover { border-color: var(--rose); color: var(--rose); }
