/* ============================================================
   The Tomorrow Folder — style.css
   Warm minimalist · premium stationery · WCAG AA · mobile-first
   Palette: paper #FBF8F3 · ink #2E3A34 · sage #7C9885 · terracotta #C98B6B · gold #D9C08A · fog #DDE3DE
   ============================================================ */

/* --- Custom Properties ---------------------------------- */
:root {
  --c-paper:        #FBF8F3;
  --c-ink:          #2E3A34;
  --c-sage:         #7C9885;
  --c-sage-h:       #67826F;  /* hover — AA on white large text */
  --c-terracotta:   #C98B6B;
  --c-gold:         #D9C08A;
  --c-fog:          #DDE3DE;
  --c-muted:        #4A5E55;  /* 6.1:1 on paper — AA ✓ */
  --c-subtle:       #8A9E92;  /* borders, meta text */
  --c-white:        #FFFFFF;

  --font-serif: 'Fraunces', 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', 'Public Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Fluid type — clamp(min, preferred, max) */
  --text-xs:   clamp(0.72rem,  1.4vw,  0.8rem);
  --text-sm:   clamp(0.85rem,  1.8vw,  0.9rem);
  --text-base: clamp(0.95rem,  2vw,    1.05rem);
  --text-lg:   clamp(1.1rem,   2.4vw,  1.2rem);
  --text-xl:   clamp(1.2rem,   2.8vw,  1.4rem);
  --text-2xl:  clamp(1.4rem,   3.5vw,  1.875rem);
  --text-3xl:  clamp(1.75rem,  4.5vw,  2.5rem);
  --text-4xl:  clamp(2.1rem,   5.5vw,  3.25rem);

  --section-pad:  clamp(3rem, 8vw, 6rem);
  --gap-pad:      clamp(1rem, 4vw, 2rem);
  --max-w:        1200px;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(46,58,52,.07);
  --shadow-md: 0 4px 16px rgba(46,58,52,.10);
  --shadow-lg: 0 8px 32px rgba(46,58,52,.13);

  --ease:   cubic-bezier(0.16,1,0.3,1);
  --t-fast: 150ms;
  --t-base: 250ms;
}

/* --- Reset ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.65;
  background: var(--c-paper);
  color: var(--c-ink);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }
ul[class], ol[class] { list-style: none; }

a { color: var(--c-sage-h); text-underline-offset: 3px; }
a:hover { color: var(--c-ink); }

/* --- Focus -------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--c-sage);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* --- Utility ------------------------------------------ */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gap-pad); }
.section { padding-block: var(--section-pad); }
.section--alt { background: rgba(221,227,222,.28); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* --- Typography --------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; letter-spacing: -.015em; }
h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

.section__heading { margin-bottom: .4em; }
.section__sub { font-size: var(--text-lg); color: var(--c-muted); max-width: 56ch; line-height: 1.55; margin-bottom: 2.5rem; }

blockquote {
  border-left: 3px solid var(--c-terracotta);
  padding-left: 1.25rem;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--c-muted);
  line-height: 1.5;
}

/* --- Buttons ------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4em;
  padding: .75em 1.75em;
  border-radius: var(--radius-pill);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              color var(--t-base) var(--ease),
              transform var(--t-fast) var(--ease),
              box-shadow var(--t-base) var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

/* Primary — sage bg, white text */
.btn--primary {
  background: var(--c-sage);
  color: var(--c-white);
  border-color: var(--c-sage);
}
.btn--primary:hover {
  background: var(--c-sage-h);
  border-color: var(--c-sage-h);
  color: var(--c-white);
  box-shadow: var(--shadow-md);
}

/* Ghost — transparent, sage border */
.btn--ghost {
  background: transparent;
  color: var(--c-sage-h);
  border-color: var(--c-sage);
}
.btn--ghost:hover {
  background: rgba(124,152,133,.1);
  color: var(--c-ink);
  border-color: var(--c-sage-h);
}

/* Outline — fog border, ink text */
.btn--outline {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-fog);
}
.btn--outline:hover {
  border-color: var(--c-sage);
  color: var(--c-sage-h);
}

/* Disabled state */
.btn:disabled, button:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* --- Navigation --------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,248,243,.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-fog);
  padding-block: .875rem;
  transition: box-shadow var(--t-base) var(--ease);
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav__logo {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--c-ink);
  text-decoration: none;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.nav__logo:hover { color: var(--c-sage-h); }
.nav__links { display: none; align-items: center; gap: 1.5rem; }
.nav__links a {
  color: var(--c-ink);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color var(--t-fast);
}
.nav__links a:hover { color: var(--c-sage-h); }
.nav__right { display: flex; align-items: center; gap: .75rem; }
.nav__cta { font-size: var(--text-sm); padding: .55em 1.2em; }
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  padding: .4rem; background: none; border: none; color: var(--c-ink);
}
.hamburger span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform var(--t-base) var(--ease), opacity var(--t-fast); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none; flex-direction: column; gap: .25rem;
  padding: .75rem var(--gap-pad) 1.25rem;
  border-top: 1px solid var(--c-fog);
}
.nav__mobile a {
  color: var(--c-ink); text-decoration: none; font-weight: 500;
  font-size: var(--text-base); padding: .625rem 0;
  border-bottom: 1px solid var(--c-fog);
  transition: color var(--t-fast);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--c-sage-h); }
.nav__mobile.open { display: flex; }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .hamburger { display: none; }
}

/* --- Hero --------------------------------------------- */
.hero { padding-block: clamp(4rem, 10vw, 7.5rem); text-align: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(217,192,138,.18);
  color: #7A5C1E;
  border: 1px solid rgba(217,192,138,.4);
  border-radius: var(--radius-pill);
  padding: .3em 1em;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 1.5rem;
}
.hero h1 { max-width: 16ch; margin-inline: auto; margin-bottom: .875rem; }
.hero__sub {
  max-width: 50ch; margin-inline: auto;
  font-size: var(--text-lg); color: var(--c-muted);
  line-height: 1.6; margin-bottom: 2.5rem;
}
.hero__cta {
  display: flex; flex-direction: column; align-items: center;
  gap: .875rem; margin-bottom: 3rem;
}
.hero__cta .btn--primary { font-size: var(--text-lg); padding: .9em 2.25em; }

.trust-strip { border-top: 1px solid var(--c-fog); padding-top: 1.75rem; }
.trust-strip__list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .5rem 1.5rem;
  font-size: var(--text-xs); color: var(--c-muted);
}
.trust-item { display: flex; align-items: center; gap: .35rem; }
.trust-item::before { content: '✓'; color: var(--c-sage); font-weight: 700; }

@media (min-width: 540px) { .hero__cta { flex-direction: row; justify-content: center; } }

/* --- Problem / Relief --------------------------------- */
.problem-relief__inner { display: grid; gap: 2.5rem; }
.problem-relief__text h2 { margin-bottom: .75rem; }
.problem-relief__text p { color: var(--c-muted); margin-bottom: .875rem; }
.problem-relief__text p:last-of-type { margin-bottom: 1.5rem; }
@media (min-width: 900px) { .problem-relief__inner { grid-template-columns: 3fr 2fr; align-items: center; gap: 4rem; } }

/* --- Product Tier Cards ------------------------------- */
.section__cta-row { text-align: center; margin-top: 2.5rem; }
.tier-grid { display: grid; gap: 1.25rem; margin-bottom: 3rem; }

.pcard {
  background: var(--c-white);
  border: 1.5px solid var(--c-fog);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.pcard:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pcard--featured { border-color: var(--c-sage); border-width: 2px; box-shadow: var(--shadow-md); }
.pcard--bundle  { border-color: var(--c-gold); border-width: 2px; }

.pcard__badge {
  display: inline-block;
  border-radius: var(--radius-pill);
  padding: .2em .8em;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .875rem;
  width: fit-content;
}
.pcard--free     .pcard__badge { background: var(--c-fog); color: var(--c-muted); }
.pcard--entry    .pcard__badge { background: rgba(124,152,133,.12); color: var(--c-sage-h); }
.pcard--featured .pcard__badge { background: var(--c-sage); color: var(--c-white); }
.pcard--bundle   .pcard__badge { background: rgba(217,192,138,.25); color: #7A5C1E; }

.pcard__savings {
  display: inline-block;
  background: var(--c-gold); color: #5C3D00;
  border-radius: var(--radius-pill); padding: .2em .75em;
  font-size: var(--text-xs); font-weight: 700;
  margin-left: .5rem; vertical-align: middle;
}

.pcard h3 { font-size: var(--text-xl); margin-bottom: .4rem; line-height: 1.3; }
.pcard__price {
  font-family: var(--font-serif);
  font-size: var(--text-2xl); font-weight: 600;
  margin-bottom: .625rem;
}
.pcard__was { font-size: var(--text-sm); font-family: var(--font-sans); font-weight: 400; color: var(--c-subtle); text-decoration: line-through; margin-left: .4rem; }
.pcard__desc { color: var(--c-muted); font-size: var(--text-sm); margin-bottom: 1rem; line-height: 1.55; }
.pcard__list { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1.5rem; flex: 1; }
.pcard__list li { font-size: var(--text-sm); color: var(--c-muted); padding-left: 1.35rem; position: relative; }
.pcard__list li::before { content: '✓'; position: absolute; left: 0; color: var(--c-sage); font-weight: 700; }
.pcard .btn { margin-top: auto; }

@media (min-width: 620px) { .tier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tier-grid { grid-template-columns: repeat(4, 1fr); } }

/* --- Add-ons ------------------------------------------ */
.addons__head { margin-bottom: 1.5rem; }
.addons__head h3 { font-size: var(--text-xl); margin-bottom: .25rem; }
.addons__head p { color: var(--c-muted); font-size: var(--text-sm); }
.addon-grid { display: grid; gap: .875rem; }
.addon-card {
  background: var(--c-white); border: 1px solid var(--c-fog);
  border-radius: var(--radius-md); padding: 1.1rem 1.25rem;
  display: flex; align-items: flex-start; gap: .875rem;
  transition: box-shadow var(--t-base) var(--ease), border-color var(--t-fast);
}
.addon-card:hover { box-shadow: var(--shadow-sm); border-color: rgba(124,152,133,.4); }
.addon-card__icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; margin-top: .1rem; }
.addon-card__body { flex: 1; min-width: 0; }
.addon-card__title { font-family: var(--font-serif); font-size: var(--text-base); font-weight: 400; margin-bottom: .15rem; }
.addon-card__price { font-size: var(--text-sm); font-weight: 600; color: var(--c-sage-h); }
.addon-card__desc { font-size: var(--text-xs); color: var(--c-muted); margin-top: .2rem; }
.addon-card a.btn { font-size: var(--text-xs); padding: .45em 1em; flex-shrink: 0; align-self: center; }
@media (min-width: 600px) { .addon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .addon-grid { grid-template-columns: repeat(3, 1fr); } }

/* --- Segments ----------------------------------------- */
.segment-grid { display: grid; gap: .875rem; }
.seg-card {
  background: var(--c-white); border: 1px solid var(--c-fog);
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none; color: var(--c-ink);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.seg-card:hover { border-color: var(--c-sage); box-shadow: var(--shadow-sm); color: var(--c-ink); }
.seg-card__icon { font-size: 1.75rem; flex-shrink: 0; }
.seg-card h3 { font-family: var(--font-serif); font-size: var(--text-base); font-weight: 400; margin-bottom: .1rem; }
.seg-card p { font-size: var(--text-xs); color: var(--c-muted); }
@media (min-width: 580px) { .segment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .segment-grid { grid-template-columns: repeat(3, 1fr); } }

/* --- How it works ------------------------------------- */
.steps { display: grid; gap: 2rem; }
.step { display: flex; gap: 1.25rem; }
.step__num {
  flex-shrink: 0; width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(124,152,133,.12);
  color: var(--c-sage-h);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: var(--text-lg);
  font-weight: 600;
}
.step h3 { font-size: var(--text-lg); margin-bottom: .25rem; }
.step p { font-size: var(--text-sm); color: var(--c-muted); }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* --- Privacy Promise ---------------------------------- */
.privacy-box {
  background: linear-gradient(135deg, rgba(124,152,133,.07) 0%, transparent 100%);
  border: 1px solid rgba(124,152,133,.22);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.privacy-box h2 { margin-bottom: .625rem; }
.privacy-box p { color: var(--c-muted); max-width: 60ch; }
.privacy-box p + p { margin-top: .625rem; }

/* --- FAQ (details/summary) --------------------------- */
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
details.faq-item {
  border: 1px solid var(--c-fog); border-radius: var(--radius-md); overflow: hidden;
  background: var(--c-white);
}
details.faq-item[open] { box-shadow: var(--shadow-sm); }
details.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 1.125rem 1.5rem;
  font-weight: 500; font-size: var(--text-base);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: background var(--t-fast);
}
details.faq-item summary:hover { background: rgba(124,152,133,.05); }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+'; font-size: 1.25rem; color: var(--c-sage);
  flex-shrink: 0; line-height: 1;
  transition: transform var(--t-base) var(--ease);
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 1.5rem 1.25rem;
  color: var(--c-muted); font-size: var(--text-sm); line-height: 1.7;
  border-top: 1px solid var(--c-fog);
}

/* --- Email Capture ------------------------------------ */
.email-capture { text-align: center; }
.email-capture h2 { margin-bottom: .5rem; }
.email-capture .section__sub { margin-inline: auto; margin-bottom: 1.5rem; }
.email-form {
  display: flex; flex-direction: column;
  gap: .75rem; max-width: 440px; margin-inline: auto;
}
.email-form input[type="email"] {
  flex: 1; padding: .75em 1.25em;
  border: 1.5px solid var(--c-fog); border-radius: var(--radius-pill);
  font-size: var(--text-base); background: var(--c-white); color: var(--c-ink);
  transition: border-color var(--t-fast);
}
.email-form input[type="email"]:focus { outline: none; border-color: var(--c-sage); }
.email-form__note { font-size: var(--text-xs); color: var(--c-subtle); margin-top: .375rem; }
@media (min-width: 480px) { .email-form { flex-direction: row; align-items: stretch; } }
/* opt-in feedback (JS-driven) */
.form-status { max-width: 440px; margin: .6rem auto 0; font-size: var(--text-sm); text-align: center; }
.form-status--err { color: #A5563B; }   /* deep terracotta — AA on paper */
.form-status--ok  { color: var(--c-sage-h); }
.optin-success { max-width: 440px; margin: .25rem auto 0; text-align: center; color: var(--c-muted); font-size: var(--text-base); }

/* --- Footer ------------------------------------------- */
.footer { background: var(--c-ink); color: rgba(251,248,243,.82); padding-block: clamp(3rem, 6vw, 5rem); }
.footer a { color: rgba(251,248,243,.65); text-decoration: none; transition: color var(--t-fast); }
.footer a:hover { color: var(--c-paper); }
.footer__grid { display: grid; gap: 2.5rem; margin-bottom: 2.75rem; }
.footer__brand-name { font-family: var(--font-serif); font-size: var(--text-xl); color: var(--c-paper); display: block; margin-bottom: .5rem; }
.footer__tagline { font-size: var(--text-sm); opacity: .7; max-width: 26ch; line-height: 1.5; }
.footer__col h4 {
  font-size: var(--text-xs); font-weight: 600;
  color: rgba(221,227,222,.8); font-family: var(--font-sans);
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: .875rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .45rem; }
.footer__col li a { font-size: var(--text-sm); }
.footer__disclaimer { border-top: 1px solid rgba(221,227,222,.12); padding-top: 2rem; }
.footer__disclaimer p { font-size: var(--text-xs); color: rgba(251,248,243,.52); max-width: 80ch; line-height: 1.7; }
.footer__disclaimer p + p { margin-top: .625rem; }
.footer__bottom { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.footer__bottom p { font-size: var(--text-xs); color: rgba(251,248,243,.38); }
.pay-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  background: rgba(221,227,222,.08); border: 1px solid rgba(221,227,222,.16);
  border-radius: var(--radius-sm); padding: .2em .55em;
  font-size: var(--text-xs); color: rgba(251,248,243,.55);
}
@media (min-width: 600px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* --- Success page elements ---------------------------- */
.success-hero { text-align: center; padding-block: clamp(4rem, 10vw, 7rem); }
.success-icon { font-size: 3.25rem; margin-bottom: 1.5rem; line-height: 1; }
.success-hero h1 { margin-bottom: .75rem; }
.success-hero p { color: var(--c-muted); max-width: 48ch; margin-inline: auto; }
.download-box {
  background: var(--c-white); border: 1.5px solid var(--c-sage);
  border-radius: var(--radius-lg); padding: 2rem;
  max-width: 560px; margin-inline: auto; margin-top: 2.5rem; text-align: left;
}
.download-box h3 { margin-bottom: 1rem; }
.download-box ol { padding-left: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.download-box li { font-size: var(--text-sm); color: var(--c-muted); }

/* --- Content / legal / info pages --------------------- */
.page-hero {
  text-align: center;
  padding-block: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--c-fog);
}
.page-hero__eyebrow {
  display: inline-block;
  font-size: var(--text-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--c-sage-h); margin-bottom: .875rem;
}
.page-hero h1 { max-width: 20ch; margin-inline: auto; margin-bottom: .75rem; }
.page-hero__sub {
  max-width: 54ch; margin-inline: auto;
  font-size: var(--text-lg); color: var(--c-muted); line-height: 1.6;
}
.page-hero__meta { font-size: var(--text-xs); color: var(--c-subtle); margin-top: 1rem; }

.prose { max-width: 68ch; margin-inline: auto; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 {
  font-size: var(--text-2xl); margin-top: 2.75rem; margin-bottom: .25rem;
  padding-top: .5rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--text-lg); margin-top: 1.75rem; }
.prose p, .prose li { color: var(--c-muted); line-height: 1.75; }
.prose ul, .prose ol { padding-left: 1.4rem; display: flex; flex-direction: column; gap: .5rem; }
.prose ul { list-style: none; padding-left: 1.35rem; }
.prose ul li { position: relative; }
.prose ul li::before { content: '–'; position: absolute; left: -1.1rem; color: var(--c-sage); }
.prose ol { list-style: decimal; }
.prose a { color: var(--c-sage-h); text-decoration: underline; }
.prose a:hover { color: var(--c-ink); }
.prose strong { color: var(--c-ink); font-weight: 600; }
.prose hr { border: none; border-top: 1px solid var(--c-fog); margin-block: 2.25rem; }
.prose__lead { font-size: var(--text-lg); color: var(--c-ink); line-height: 1.6; }

.callout {
  background: linear-gradient(135deg, rgba(124,152,133,.07) 0%, transparent 100%);
  border: 1px solid rgba(124,152,133,.22);
  border-left: 3px solid var(--c-sage);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-block: 1.5rem;
}
.callout p { color: var(--c-muted); font-size: var(--text-sm); line-height: 1.7; }
.callout p + p { margin-top: .5rem; }
.callout--gold {
  background: linear-gradient(135deg, rgba(217,192,138,.14) 0%, transparent 100%);
  border-color: rgba(217,192,138,.4);
  border-left-color: var(--c-gold);
}

/* Contact method cards */
.contact-grid { display: grid; gap: 1rem; max-width: 640px; margin: 2rem auto 0; }
.contact-card {
  background: var(--c-white); border: 1.5px solid var(--c-fog);
  border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; text-align: center;
}
.contact-card h3 { font-size: var(--text-lg); margin-bottom: .35rem; }
.contact-card p { font-size: var(--text-sm); color: var(--c-muted); }
.contact-card a { font-weight: 600; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- Reduced Motion ----------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .btn:hover, .pcard:hover { transform: none; }
}

/* --- Print -------------------------------------------- */
@media print {
  .nav, .hero__cta, .email-capture, .footer { display: none; }
  body { color: #000; }
}
