/* =====================================================================
   furever — Design System
   Single source of truth for the entire site. No page should need to
   redefine anything here. Tokens first, then base, then components.
   Palette per brand guide: cream / peach / sage / trust-blue / charcoal.
   Type: Fraunces (display) + Nunito (body/UI). Soft, warm, premium.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600&family=Nunito:wght@400;500;600;700;800&display=swap');

/* ---------------------------------------------------------------------
   1. TOKENS
   --------------------------------------------------------------------- */
:root {
  /* --- Core palette --- */
  --cream: #FBF6EF;
  --peach: #E8927C;
  --sage: #9BB89A;
  --trust-blue: #2D4A6B;
  --charcoal: #3A352F;

  /* --- Derived tints / shades (kept as tokens, never scattered hex) --- */
  --cream-deep: #F4ECE0;        /* a slightly deeper cream for alternating sections */
  --cream-card: #FFFFFF;        /* card fill — warm white reads as paper on cream */
  --peach-soft: #F3BDAE;        /* hover wash / soft fills */
  --peach-tint: #FBE3DB;        /* very light peach field */
  --peach-deep: #D97A63;        /* peach hover/active */
  --sage-soft: #C5D6C4;         /* light sage chip fill */
  --sage-tint: #E7EFE6;         /* faint sage field */
  --sage-deep: #7E9C7D;         /* sage text on light */
  --blue-soft: #3C5F86;         /* trust-blue hover */
  --blue-deep: #233A55;         /* trust-blue active */
  --blue-tint: #E3EAF1;         /* faint blue field */
  --charcoal-soft: #6A645B;     /* muted body / captions */
  --charcoal-faint: #9A938A;    /* very muted / placeholders */
  --line-soft: #EADFD2;         /* the only "border" we allow — barely-there warm hairline */

  /* --- Type --- */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Fluid type scale (calm, generous) */
  --fs-eyebrow: 0.8125rem;
  --fs-small: 0.875rem;
  --fs-body: 1.0625rem;
  --fs-body-lg: 1.1875rem;
  --fs-h6: 1.125rem;
  --fs-h5: 1.375rem;
  --fs-h4: clamp(1.375rem, 1.1rem + 1.1vw, 1.75rem);
  --fs-h3: clamp(1.625rem, 1.3rem + 1.5vw, 2.125rem);
  --fs-h2: clamp(2rem, 1.5rem + 2.2vw, 3rem);
  --fs-h1: clamp(2.5rem, 1.8rem + 3.4vw, 4.25rem);
  --fs-display: clamp(3rem, 2rem + 4.6vw, 5rem);

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-body: 1.6;
  --lh-loose: 1.7;

  /* --- Spacing scale --- */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* --- Radii (fully rounded language, no hard corners) --- */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 44px;
  --r-pill: 999px;

  /* --- Soft shadows (warm-tinted, never harsh black) --- */
  --shadow-sm: 0 2px 8px rgba(58, 53, 47, 0.05);
  --shadow-md: 0 8px 24px rgba(58, 53, 47, 0.07);
  --shadow-lg: 0 18px 48px rgba(58, 53, 47, 0.10);
  --shadow-peach: 0 14px 38px rgba(217, 122, 99, 0.20);
  --shadow-blue: 0 12px 30px rgba(45, 74, 107, 0.22);

  /* --- Layout --- */
  --container: 1180px;
  --container-narrow: 760px;
  --header-h: 76px;

  /* --- Motion --- */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 0.18s;
  --t-med: 0.32s;
}

/* ---------------------------------------------------------------------
   2. RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: var(--lh-snug);
  color: var(--charcoal);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
h6 { font-size: var(--fs-h6); }

p { line-height: var(--lh-body); }
p + p { margin-top: var(--sp-4); }

a { color: var(--trust-blue); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--blue-soft); }

strong, b { font-weight: 700; }
ul, ol { padding-left: 1.25rem; }

/* Visible, gentle focus state everywhere */
:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: var(--sp-4); top: -100px;
  background: var(--trust-blue); color: #fff;
  padding: var(--sp-3) var(--sp-5); border-radius: var(--r-pill);
  z-index: 200; transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: var(--sp-4); color: #fff; }

/* ---------------------------------------------------------------------
   3. LAYOUT UTILITIES
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--sp-9); }
.section--tight { padding-block: var(--sp-7); }
.section--cream-deep { background: var(--cream-deep); }
.section--peach-tint { background: var(--peach-tint); }
.section--sage-tint { background: var(--sage-tint); }
.section--blue { background: var(--trust-blue); color: var(--cream); }
.section--blue h1, .section--blue h2, .section--blue h3 { color: var(--cream); }

.stack > * + * { margin-top: var(--sp-4); }
.stack-lg > * + * { margin-top: var(--sp-6); }

.text-center { text-align: center; }
.measure { max-width: 62ch; }
.measure-narrow { max-width: 52ch; }
.mx-auto { margin-inline: auto; }

.grid { display: grid; gap: var(--sp-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Soft section divider — a tender wave/curve, not a hard line */
.divider-soft {
  height: 2px; border: 0; margin: 0;
  background: linear-gradient(90deg, transparent, var(--line-soft) 18%, var(--line-soft) 82%, transparent);
}
.divider-leaf {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-3); color: var(--sage); padding-block: var(--sp-6);
}
.divider-leaf::before, .divider-leaf::after {
  content: ""; height: 2px; flex: 1; max-width: 120px;
  background: linear-gradient(90deg, transparent, var(--sage-soft));
}
.divider-leaf::after { background: linear-gradient(90deg, var(--sage-soft), transparent); }

/* ---------------------------------------------------------------------
   4. EYEBROW + SECTION HEADINGS
   --------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peach-deep);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px; border-radius: var(--r-pill);
  background: var(--peach);
}
.eyebrow--center { justify-content: center; }
.eyebrow--sage { color: var(--sage-deep); }
.eyebrow--sage::before { background: var(--sage); }
.section--blue .eyebrow { color: var(--peach-soft); }
.section--blue .eyebrow::before { background: var(--peach-soft); }

.section-head { max-width: 60ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: var(--sp-4); }
.section-head h2 { margin-bottom: var(--sp-4); }
.section-head p {
  font-size: var(--fs-body-lg);
  color: var(--charcoal-soft);
  line-height: var(--lh-loose);
}
.section--blue .section-head p { color: rgba(251, 246, 239, 0.85); }

.lead {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-loose);
  color: var(--charcoal-soft);
}

/* ---------------------------------------------------------------------
   5. BUTTONS + LINKS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1;
  padding: 0.95rem 1.7rem;
  border: 0;
  border-radius: var(--r-pill);
  cursor: pointer;
  text-align: center;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-med) var(--ease),
              background-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary — trust-blue: reserved for commitment */
.btn--primary {
  background: var(--trust-blue);
  color: var(--cream);
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover { background: var(--blue-soft); color: var(--cream); box-shadow: 0 16px 36px rgba(45,74,107,0.28); }
.btn--primary:active { background: var(--blue-deep); }

/* Secondary — soft peach-bordered pill on cream */
.btn--secondary {
  background: var(--cream-card);
  color: var(--trust-blue);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover { background: var(--peach-tint); color: var(--trust-blue); box-shadow: var(--shadow-md); }

/* Peach — warm, friendly secondary action */
.btn--peach {
  background: var(--peach);
  color: #fff;
  box-shadow: var(--shadow-peach);
}
.btn--peach:hover { background: var(--peach-deep); color: #fff; }

/* On dark sections */
.btn--on-blue { background: var(--cream); color: var(--trust-blue); }
.btn--on-blue:hover { background: #fff; color: var(--trust-blue); }
.btn--ghost-blue {
  background: transparent; color: var(--cream);
  box-shadow: inset 0 0 0 2px rgba(251,246,239,0.4);
}
.btn--ghost-blue:hover { background: rgba(251,246,239,0.12); color: #fff; box-shadow: inset 0 0 0 2px rgba(251,246,239,0.7); }

.btn--block { width: 100%; }
.btn--sm { padding: 0.7rem 1.25rem; font-size: var(--fs-small); }

/* Text link with arrow */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--trust-blue);
}
.text-link .arrow { transition: transform var(--t-fast) var(--ease); }
.text-link:hover .arrow { transform: translateX(4px); }
.section--blue .text-link { color: var(--peach-soft); }

/* ---------------------------------------------------------------------
   6. HEADER + NAV
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 239, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(234, 223, 210, 0.7);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  height: var(--header-h);
}

/* Logo lockup */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--charcoal); }
.logo__mark { width: 30px; height: 30px; flex: 0 0 auto; }
.logo__word { line-height: 1; }

/* Primary nav */
.nav { display: flex; align-items: center; gap: var(--sp-2); }
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__link {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
}
.nav__link:hover { background: var(--peach-tint); color: var(--charcoal); }
.nav__link[aria-current="page"] {
  color: var(--trust-blue);
  background: var(--blue-tint);
}
.nav__cta { margin-left: var(--sp-3); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0;
  background: var(--cream-card);
  border: 0;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin-inline: auto;
  background: var(--charcoal);
  border-radius: var(--r-pill);
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-4);
    background: var(--cream);
    padding: var(--sp-6) var(--sp-5) var(--sp-7);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--line-soft);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__list { flex-direction: column; align-items: stretch; gap: var(--sp-1); }
  .nav__link { padding: 0.85rem 1rem; font-size: 1.125rem; }
  .nav__cta { margin-left: 0; margin-top: var(--sp-2); }
  .nav__cta .btn { width: 100%; }
}

/* ---------------------------------------------------------------------
   7. HERO
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: var(--sp-9) var(--sp-8);
  background:
    radial-gradient(60% 80% at 88% 8%, var(--peach-tint), transparent 60%),
    radial-gradient(50% 70% at 4% 96%, var(--sage-tint), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-8);
  align-items: center;
}
.hero__content { max-width: 36rem; }
.hero h1 { margin-block: var(--sp-4); }
.hero__sub {
  font-size: var(--fs-body-lg);
  color: var(--charcoal-soft);
  line-height: var(--lh-loose);
  max-width: 34rem;
}
.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}

.hero__media { position: relative; }
.hero__image {
  width: 100%;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.hero__caption {
  position: absolute;
  left: var(--sp-5); right: var(--sp-6); bottom: var(--sp-5);
  background: rgba(251, 246, 239, 0.92);
  backdrop-filter: blur(6px);
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.4;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .hero__content { max-width: none; }
  .hero__image { aspect-ratio: 4 / 3; }
}

/* ---------------------------------------------------------------------
   8. CARDS (generic)
   --------------------------------------------------------------------- */
.card {
  background: var(--cream-card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: var(--sp-6);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__title { margin-bottom: var(--sp-3); }
.card__body { color: var(--charcoal-soft); }

/* ---------------------------------------------------------------------
   9. CAT CARD
   --------------------------------------------------------------------- */
.cat-card {
  display: flex;
  flex-direction: column;
  background: var(--cream-card);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cat-card__media {
  position: relative;
  margin: var(--sp-4) var(--sp-4) 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream-deep);
}
.cat-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform var(--t-med) var(--ease);
}
.cat-card:hover .cat-card__img { transform: scale(1.04); }
.cat-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-5);
  flex: 1;
}
.cat-card__name {
  font-size: 1.6rem;
  font-weight: 500;
}
.cat-card__hook {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--peach-deep);
  line-height: 1.4;
}
.cat-card__blurb {
  font-size: var(--fs-body);
  color: var(--charcoal-soft);
  line-height: var(--lh-body);
}
.cat-card__meta {
  margin-top: auto;
  padding-top: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.cat-card__care {
  font-size: var(--fs-small);
  color: var(--charcoal-soft);
  line-height: 1.4;
}
.cat-card__care strong { color: var(--charcoal); font-weight: 700; }
.cat-card__cta { align-self: flex-start; }

/* ---------------------------------------------------------------------
   10. TAG CHIPS
   --------------------------------------------------------------------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-small);
  font-weight: 700;
  line-height: 1;
  padding: 0.45rem 0.85rem;
  border-radius: var(--r-pill);
  background: var(--sage-tint);
  color: var(--sage-deep);
  align-self: flex-start;
  white-space: nowrap;
}
.chip::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sage);
}
.chip--peach { background: var(--peach-tint); color: var(--peach-deep); }
.chip--peach::before { background: var(--peach); }
.chip--blue { background: var(--blue-tint); color: var(--trust-blue); }
.chip--blue::before { background: var(--trust-blue); }
.chip--plain::before { display: none; }

/* ---------------------------------------------------------------------
   11. HOW IT WORKS (3-step)
   --------------------------------------------------------------------- */
.steps { counter-reset: step; }
.step {
  position: relative;
  background: var(--cream-card);
  border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-6) var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--peach-tint);
  color: var(--peach-deep);
  margin-bottom: var(--sp-4);
}
.step__title { margin-bottom: var(--sp-3); }
.step__body { color: var(--charcoal-soft); }

/* ---------------------------------------------------------------------
   12. PURRPETUAL TIER CARDS (teaser) + PRICING TABLE
   --------------------------------------------------------------------- */
/* Teaser tier cards */
.tier {
  position: relative;
  background: var(--cream-card);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier__name { font-size: 1.5rem; font-weight: 500; }
.tier__lead {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--peach-deep);
  font-size: 1.0625rem;
}
.tier__desc { color: var(--charcoal-soft); }

/* Full pricing table */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  align-items: stretch;
}
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream-card);
  border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-6) var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--featured {
  background: var(--cream-card);
  box-shadow: var(--shadow-lg);
  outline: 2px solid var(--peach);
  outline-offset: -2px;
}
.price-card__badge {
  position: absolute;
  top: calc(-1 * var(--sp-3));
  left: 50%;
  transform: translateX(-50%);
  background: var(--peach);
  color: #fff;
  font-size: var(--fs-small);
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-peach);
  white-space: nowrap;
}
.price-card__name { font-size: 1.6rem; font-weight: 500; margin-bottom: var(--sp-1); }
.price-card__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--peach-deep);
  margin-bottom: var(--sp-4);
}
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: var(--sp-1);
}
.price-card__amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
}
.price-card__period { font-size: var(--fs-small); color: var(--charcoal-soft); }
.price-card__note { font-size: var(--fs-small); color: var(--charcoal-soft); min-height: 1.4em; margin-bottom: var(--sp-5); }
.price-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}
.price-card__features li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--charcoal-soft);
  font-size: var(--fs-body);
  line-height: 1.45;
}
.price-card__features li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.15em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sage-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237E9C7D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Billing toggle */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-4);
  background: var(--cream-card);
  padding: var(--sp-2);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.billing-toggle__option {
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-small);
  color: var(--charcoal-soft);
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.billing-toggle__option.is-active {
  background: var(--trust-blue);
  color: var(--cream);
}
.billing-note {
  font-size: var(--fs-small);
  color: var(--sage-deep);
  font-weight: 700;
  min-height: 1.4em;
}

/* ---------------------------------------------------------------------
   13. TESTIMONIALS
   --------------------------------------------------------------------- */
.testimonial {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  background: var(--cream-card);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--charcoal);
  position: relative;
  padding-top: 2.4rem;
}
.testimonial__quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 3.25rem;
  color: var(--peach-soft);
  line-height: 1;
  position: absolute;
  left: -0.02em; top: -0.05em;
}
.testimonial__attr {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.testimonial__name { font-weight: 800; color: var(--charcoal); }
.testimonial__detail { font-size: var(--fs-small); color: var(--charcoal-soft); }

/* ---------------------------------------------------------------------
   14. PRESS / QUOTE STRIP + PULL-QUOTES
   --------------------------------------------------------------------- */
.press-head {
  text-align: center;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-faint);
  margin-bottom: var(--sp-6);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-5);
}
.press-quote {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-5);
  background: var(--cream-card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.press-quote__text {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--charcoal);
}
.press-quote__outlet {
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--peach-deep);
  text-transform: uppercase;
}

/* Pull-quote (standalone, large) */
.pull-quote {
  max-width: 48ch;
  margin-inline: auto;
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.35;
  color: var(--charcoal);
  font-style: italic;
}
.pull-quote cite {
  display: block;
  margin-top: var(--sp-5);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--peach-deep);
}

/* ---------------------------------------------------------------------
   15. FAQ ACCORDION
   --------------------------------------------------------------------- */
.faq { max-width: var(--container-narrow); margin-inline: auto; }
.faq-item {
  background: var(--cream-card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item + .faq-item { margin-top: var(--sp-4); }
.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: var(--sp-5) var(--sp-6);
  font-family: var(--font-display);
  font-size: var(--fs-h6);
  font-weight: 500;
  color: var(--charcoal);
}
.faq-item__icon {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  position: relative;
  border-radius: 50%;
  background: var(--peach-tint);
  transition: background var(--t-fast) var(--ease);
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 2px;
  background: var(--peach-deep);
  border-radius: var(--r-pill);
  transform: translate(-50%, -50%);
  transition: transform var(--t-fast) var(--ease);
}
.faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item__trigger[aria-expanded="true"] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med) var(--ease);
}
.faq-item__panel-inner {
  padding: 0 var(--sp-6) var(--sp-6);
  color: var(--charcoal-soft);
  line-height: var(--lh-loose);
}

/* ---------------------------------------------------------------------
   16. TEAM / FOUNDER GRID
   --------------------------------------------------------------------- */
.team-card {
  text-align: center;
  background: var(--cream-card);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
}
.team-card__photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--sp-4);
  box-shadow: var(--shadow-sm);
  background: var(--cream-deep);
}
.team-card__name { font-size: 1.375rem; margin-bottom: 0.1rem; }
.team-card__role {
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--peach-deep);
  margin-bottom: var(--sp-3);
}
.team-card__bio { color: var(--charcoal-soft); font-size: var(--fs-body); line-height: var(--lh-body); }

/* ---------------------------------------------------------------------
   17. INVESTOR METRIC CARDS + DATA TABLE
   --------------------------------------------------------------------- */
.metric {
  background: var(--cream-card);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.metric__figure {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.8rem + 2.4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--trust-blue);
  margin-bottom: var(--sp-3);
}
.metric__label {
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--sp-2);
}
.metric__sub { font-size: var(--fs-small); color: var(--charcoal-soft); line-height: 1.5; }

.data-table-wrap {
  overflow-x: auto;
  background: var(--cream-card);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-2);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-body);
}
.data-table th, .data-table td {
  text-align: left;
  padding: var(--sp-4) var(--sp-5);
}
.data-table thead th {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.data-table tbody tr + tr td { border-top: 1px solid var(--line-soft); }
.data-table tbody td:first-child { font-weight: 700; color: var(--charcoal); }
.data-table td.num { font-variant-numeric: tabular-nums; color: var(--trust-blue); font-weight: 700; }

/* ---------------------------------------------------------------------
   18. FORMS + INPUTS
   --------------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field label {
  font-weight: 700;
  font-size: var(--fs-small);
  color: var(--charcoal);
}
.input, .textarea, .select {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--charcoal);
  background: var(--cream-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 0.85rem 1.1rem;
  width: 100%;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.textarea { min-height: 130px; resize: vertical; line-height: var(--lh-body); }
.input::placeholder, .textarea::placeholder { color: var(--charcoal-faint); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px var(--sage-tint);
}
.form-row { display: grid; gap: var(--sp-5); }
@media (min-width: 620px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }

.form-card {
  background: var(--cream-card);
  border-radius: var(--r-xl);
  padding: var(--sp-7);
  box-shadow: var(--shadow-md);
}

/* Form feedback states */
.form-feedback {
  display: none;
  margin-top: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  font-weight: 600;
  line-height: var(--lh-body);
}
.form-feedback.is-visible { display: block; }
.form-feedback--success { background: var(--sage-tint); color: var(--sage-deep); }
.form-feedback--error { background: var(--peach-tint); color: var(--peach-deep); }

/* When a form succeeds, hide its inputs and show the warm success state */
.form.is-submitted .form-fields { display: none; }
.form .form-success { display: none; }
.form.is-submitted .form-success {
  display: block;
  text-align: center;
  padding: var(--sp-5);
}
.form .form-success__heart { color: var(--peach); font-size: 2rem; line-height: 1; margin-bottom: var(--sp-3); }
.form .form-success p { font-size: var(--fs-body-lg); color: var(--charcoal); }

/* ---------------------------------------------------------------------
   19. NEWSLETTER BAND
   --------------------------------------------------------------------- */
.newsletter {
  background:
    radial-gradient(70% 120% at 100% 0%, var(--peach-soft), transparent 55%),
    var(--sage);
  color: var(--charcoal);
}
.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
}
.newsletter h2 { color: var(--charcoal); }
.newsletter__sub { color: var(--charcoal); opacity: 0.85; font-size: var(--fs-body-lg); line-height: var(--lh-loose); }
.newsletter__form { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.newsletter__form .input { flex: 1; min-width: 220px; background: rgba(255,255,255,0.95); border-color: transparent; }
.newsletter .form-success p { color: var(--charcoal); }
@media (max-width: 820px) { .newsletter__inner { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   20. FINAL CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(60% 100% at 0% 0%, rgba(232,146,124,0.22), transparent 60%),
    radial-gradient(60% 100% at 100% 100%, rgba(155,184,154,0.20), transparent 60%),
    var(--cream-deep);
  text-align: center;
}
.cta-band__inner { max-width: 46rem; margin-inline: auto; }
.cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}

/* ---------------------------------------------------------------------
   21. FOOTER
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(251, 246, 239, 0.82);
  padding-block: var(--sp-8) var(--sp-6);
}
.site-footer a { color: rgba(251, 246, 239, 0.82); }
.site-footer a:hover { color: var(--peach-soft); }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: var(--sp-7);
}
.footer-brand { max-width: 28ch; }
.footer-brand .logo { color: var(--cream); margin-bottom: var(--sp-4); }
.footer-brand .logo:hover { color: var(--cream); }
.footer-brand__tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--peach-soft);
  margin-bottom: var(--sp-3);
}
.footer-brand__about { font-size: var(--fs-small); line-height: var(--lh-body); color: rgba(251,246,239,0.65); }

.footer-col h3 {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: var(--sp-4);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a { font-size: var(--fs-small); }

.footer-bottom {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(251,246,239,0.12);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.footer-bottom__tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--peach-soft);
  font-size: var(--fs-body);
}
.footer-legal { font-size: 0.78125rem; line-height: 1.7; color: rgba(251,246,239,0.5); }
.footer-legal p + p { margin-top: var(--sp-3); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------
   22. COOKIE BANNER
   --------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: var(--sp-5); right: var(--sp-5); bottom: var(--sp-5);
  z-index: 150;
  max-width: 560px;
  margin-inline: auto;
  background: var(--cream-card);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  transform: translateY(150%);
  opacity: 0;
  transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner.is-dismissed { display: none; }
.cookie-banner__text { flex: 1; min-width: 220px; font-size: var(--fs-small); color: var(--charcoal-soft); line-height: 1.5; }
.cookie-banner__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
@media (max-width: 480px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; }
}

/* ---------------------------------------------------------------------
   23. SMALL HELPERS
   --------------------------------------------------------------------- */
.muted { color: var(--charcoal-soft); }
.tabular { font-variant-numeric: tabular-nums; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mb-4 { margin-bottom: var(--sp-4); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4 { gap: var(--sp-4); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
