/* ============================================
   Sister Wealth Creators — base stylesheet
   ============================================ */

:root {
  --color-ink: #47202b;
  --color-ink-soft: #57303c;
  --color-ink-line: rgba(246, 236, 227, 0.16);

  --color-parchment: #fbf6ee;
  --color-parchment-alt: #f2e6d6;
  --color-plum: #2b2018;
  --color-plum-muted: #6c5a4f;
  --color-line: #e7dbc7;

  --color-cream: #f6ece1;
  --color-cream-muted: rgba(246, 236, 225, 0.7);

  --color-rose: #c17b86;
  --color-rose-bright: #e3aab3;
  --color-rose-deep: #96525d;

  --color-forest: #45594a;
  --color-forest-bright: #6d8a72;

  --color-gold: #c39a3f;
  --color-gold-bright: #e6c877;
  --color-gold-deep: #9c7825;

  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1120px;
  --radius: 10px;
  --radius-lg: 24px;
  --glow-rose: radial-gradient(circle at 50% 20%, rgba(225, 160, 170, 0.22), transparent 60%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-parchment);
  color: var(--color-plum);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.3rem, 4.6vw, 3.7rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

em, .italic { font-style: italic; }

p { margin: 0 0 1em; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

.section { padding: 100px 0; }

.section--dark { background: var(--color-ink); color: var(--color-cream); }
.section--dark-soft { background: var(--color-ink-soft); color: var(--color-cream); }
.section--alt { background: var(--color-parchment-alt); }

.text-muted { color: var(--color-plum-muted); }
.section--dark .text-muted,
.section--dark-soft .text-muted,
.site-footer .text-muted { color: var(--color-cream); }

.section-head { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.section-head p { color: var(--color-plum-muted); }
.section--dark .section-head p,
.section--dark-soft .section-head p { color: var(--color-cream-muted); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-rose-deep);
  font-weight: 600;
  margin-bottom: 1em;
}

.section--dark .eyebrow,
.section--dark-soft .eyebrow { color: var(--color-rose-bright); }

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal-ready [data-reveal] { opacity: 1; transform: none; transition: none; }
}

.stagger > [data-reveal]:nth-child(1) { transition-delay: 0s; }
.stagger > [data-reveal]:nth-child(2) { transition-delay: 0.12s; }
.stagger > [data-reveal]:nth-child(3) { transition-delay: 0.24s; }
.stagger > [data-reveal]:nth-child(4) { transition-delay: 0.36s; }
.stagger > [data-reveal]:nth-child(5) { transition-delay: 0.48s; }
.stagger > [data-reveal]:nth-child(6) { transition-delay: 0.6s; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, var(--color-gold-bright), var(--color-gold));
  color: #2c2109;
}

.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(195, 154, 63, 0.35); }

.btn-secondary {
  background: transparent;
  color: var(--color-plum);
  border-color: var(--color-line);
}

.section--dark .btn-secondary,
.section--dark-soft .btn-secondary,
.hero .btn-secondary,
.cta-band .btn-secondary,
.site-header .btn-secondary,
.final-cta .btn-secondary {
  color: var(--color-cream);
  border-color: var(--color-ink-line);
}

.btn-secondary:hover { border-color: var(--color-rose); color: var(--color-rose-deep); }
.section--dark .btn-secondary:hover,
.section--dark-soft .btn-secondary:hover,
.hero .btn-secondary:hover,
.cta-band .btn-secondary:hover,
.site-header .btn-secondary:hover,
.final-cta .btn-secondary:hover { color: var(--color-rose-bright); border-color: var(--color-rose-bright); }

.btn-block { width: 100%; justify-content: center; }

.link-quiet {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-plum-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.link-quiet:hover { color: var(--color-rose-deep); border-color: var(--color-rose-deep); }

.section--dark .link-quiet,
.section--dark-soft .link-quiet {
  color: var(--color-cream-muted);
  border-color: var(--color-ink-line);
}

.section--dark .link-quiet:hover,
.section--dark-soft .link-quiet:hover { color: var(--color-rose-bright); border-color: var(--color-rose-bright); }

.cta-row { display: flex; flex-wrap: wrap; gap: 16px; }
.cta-row.center { justify-content: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(71, 32, 43, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-ink-line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
}

.brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--color-cream);
  letter-spacing: 0.01em;
}

.brand span { color: var(--color-rose-bright); font-style: italic; }

.brand-logo {
  display: inline-flex;
  align-items: center;
  background: radial-gradient(
    ellipse 70% 75% at center,
    var(--color-parchment) 0%,
    rgba(251, 246, 238, 0.8) 50%,
    rgba(251, 246, 238, 0) 85%
  );
  padding: 4px 12px;
  isolation: isolate;
}

.brand-logo img {
  height: 42px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-cream-muted);
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--color-rose-bright); }

.nav-free-link { display: none; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.86rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span { width: 22px; height: 2px; background: var(--color-cream); display: block; }

.hero {
  position: relative;
  padding: 120px 0 96px;
  background: linear-gradient(180deg, var(--color-ink-soft), var(--color-ink) 55%);
  color: var(--color-cream);
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--glow-rose);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-line {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--color-rose-bright);
  margin: 0 0 0.5em;
}

.hero-line--tight { font-size: clamp(1.1rem, 2.1vw, 1.5rem); }

.hero-sub {
  font-size: 1.12rem;
  color: var(--color-cream-muted);
  max-width: 620px;
  margin: 0 auto 2em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 2.2em;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-free { margin-top: 26px; position: relative; }

.understanding {
  display: grid;
  gap: 26px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.understanding p {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  margin: 0;
  color: var(--color-cream);
}

.understanding .step-label {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-rose-bright);
  margin-bottom: 0.6em;
}

.power-statement {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(160deg, var(--color-ink), var(--color-ink-soft));
  color: var(--color-cream);
}

.power-statement h2 {
  color: var(--color-gold-bright);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  max-width: 720px;
  margin: 0 auto;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }

.card {
  background: var(--color-parchment);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
}

.section--dark .card,
.section--dark-soft .card { background: rgba(246, 236, 225, 0.05); border-color: var(--color-ink-line); }

.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(193, 123, 134, 0.14);
  color: var(--color-rose-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.1rem;
}

.section--dark .card-icon,
.section--dark-soft .card-icon { color: var(--color-rose-bright); background: rgba(225, 160, 170, 0.14); }

.card h3 { margin-bottom: 0.4em; font-size: 1.1rem; }
.card p { color: var(--color-plum-muted); margin: 0; font-size: 0.96rem; }

.cta-band {
  background: var(--color-ink);
  color: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 56px;
}

.cta-band::before { content: ""; position: absolute; inset: 0; background-image: var(--glow-rose); }
.cta-band > * { position: relative; }
.cta-band h3 { color: var(--color-cream); font-size: 1.4rem; margin-bottom: 0.5em; }
.cta-band p { color: var(--color-cream-muted); max-width: 620px; margin: 0 auto; }

.process-cta { text-align: center; margin-top: 48px; }

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
  align-items: stretch;
}

.offer-card {
  background: var(--color-parchment);
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 50px -28px rgba(195, 154, 63, 0.55);
}

.offer-card.is-primary { position: relative; }

.offer-badge {
  position: absolute;
  top: -14px;
  left: 36px;
  background: var(--color-gold);
  color: #2c2109;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.offer-name {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-rose-deep);
  margin-bottom: 10px;
}

.offer-price {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  margin-bottom: 4px;
}

.offer-price span { font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: var(--color-plum-muted); }

.offer-tagline { color: var(--color-plum-muted); margin-bottom: 24px; }

.offer-list { list-style: none; margin: 0 0 32px; padding: 0; flex-grow: 1; }

.offer-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 0.96rem;
}

.offer-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold-deep);
  font-size: 0.82rem;
}

.offers-bridge { text-align: center; margin-top: 36px; color: var(--color-plum-muted); font-size: 0.98rem; }

.hero-brand {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: 0.02em;
  color: var(--color-cream);
  margin-bottom: 28px;
}

.hero-brand span { color: var(--color-rose-bright); font-style: italic; }

.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 auto 48px;
  box-shadow: 0 24px 50px -28px rgba(71, 32, 43, 0.4);
}

.about-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.about-copy { max-width: 640px; margin: 0 auto; text-align: center; }
.about-copy p { margin-left: auto; margin-right: auto; }

.signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--color-rose-deep);
  margin-top: 1.2em;
}

.faq-list { max-width: 760px; margin: 48px auto 0; }

.faq-item { border-bottom: 1px solid var(--color-line); padding: 22px 0; }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-rose-deep);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p { margin-top: 14px; color: var(--color-plum-muted); }

.final-cta {
  position: relative;
  text-align: center;
  padding: 120px 0;
  background: var(--color-ink);
  color: var(--color-cream);
  overflow: hidden;
}

.final-cta::before { content: ""; position: absolute; inset: 0; background-image: var(--glow-rose); pointer-events: none; }
.final-cta > .container { position: relative; }

.final-cta h2 { color: var(--color-gold-bright); }

.final-cta p {
  color: var(--color-cream-muted);
  max-width: 540px;
  margin: 0 auto 2.2em;
}

.site-footer { background: var(--color-ink); color: var(--color-cream-muted); padding: 60px 0 32px; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }

.footer-grid h4 {
  font-family: var(--font-body); font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--color-cream-muted); margin-bottom: 16px;
}

.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { text-decoration: none; color: var(--color-cream); font-size: 0.94rem; }
.footer-links a:hover { color: var(--color-rose-bright); }

.footer-disclaimer {
  border-top: 1px solid var(--color-ink-line);
  padding-top: 26px;
  font-size: 0.82rem;
  color: var(--color-cream-muted);
  line-height: 1.6;
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; margin-top: 22px; border-top: 1px solid var(--color-ink-line);
  font-size: 0.82rem; flex-wrap: wrap; gap: 12px;
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .nav-toggle { display: flex; }

  body.nav-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-ink);
    flex-direction: column;
    padding: 20px 24px 26px;
    border-bottom: 1px solid var(--color-ink-line);
    gap: 18px;
  }

  body.nav-open .nav-free-link { display: block; }
  .nav-free-link a { color: var(--color-rose-bright); font-weight: 600; }

  .cta-band { padding: 40px 26px; }
  .section { padding: 72px 0; }
  .hero { padding: 96px 0 72px; }
  .brand-logo img { height: 34px; }
}

@media (max-width: 560px) {
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; }
  .offer-card { padding: 30px 24px; }
  .final-cta, .power-statement { padding: 76px 0; }
  .footer-grid { grid-template-columns: 1fr; }
}
