/* shared.css — common styles for all Deshika.xyz website pages.
 * 2026-05-27: design tokens previously consumed from ../app/globals.css
 * are now inlined here so the website is self-contained under /public/
 * and doesn't need to reach into the Next app source tree.
 */

/* === Inlined design tokens (extracted from app/globals.css) === */

:root {
  --font-sans:    var(--font-dm-sans, 'DM Sans', system-ui, sans-serif);
  --font-heading: var(--font-fraunces, 'Fraunces', Georgia, serif);
  --font-mono:    var(--font-jetbrains-mono, 'JetBrains Mono', monospace);
}

:root {
  /* Surfaces */
  --background:         #FFF8E8;
  --foreground:         #1F1B16;
  --card:               #FFFEFA;
  --card-foreground:    #1F1B16;
  --popover:            #FFFEFA;
  --popover-foreground: #1F1B16;
  --muted:              #FBEFD6;
  --muted-foreground:   #6B5C46;
  --secondary:          #FBEFD6;
  --secondary-foreground: #1F1B16;
  --border:             #EFDFC0;
  --input:              #FCEFCC;
  /* Brand + accents */
  --primary:            #C73A2C;
  --primary-foreground: #FFF8E8;
  --accent:             #FBEFD6;
  --accent-foreground:  #1F1B16;
  --accent-mint:        #5B7A47;
  --accent-mint-deep:   #3A5230;
  --accent-lavender:    #B6A8FB;
  --accent-butter:      #E89A2C;
  --destructive:        #A8211A;
  --ring:               #C73A2C;
  --radius: 0.625rem;
}

.dark {
  --background:         #161116;
  --foreground:         #F1E9DE;
  --card:               #1F1820;
  --card-foreground:    #F1E9DE;
  --popover:            #1F1820;
  --popover-foreground: #F1E9DE;
  --muted:              #2D232E;
  --muted-foreground:   #948070;
  --secondary:          #2D232E;
  --secondary-foreground: #F1E9DE;
  --border:             #2D232E;
  --input:              #221A22;
  --primary:            #FF7847;
  --primary-foreground: #161116;
  --accent:             #2D232E;
  --accent-foreground:  #F1E9DE;
  --accent-mint:        #86E6B4;
  --accent-mint-deep:   #4FB47C;
  --accent-lavender:    #B6A8FB;
  --accent-butter:      #FFB763;
  --destructive:        #FB7185;
  --ring:               #FF7847;
  --radius: 0.5rem;
}

/* === Website-specific tokens + styles === */

:root {
  --peach: var(--primary);
  --peach-50: color-mix(in srgb, var(--primary) 50%, transparent);
  --peach-20: color-mix(in srgb, var(--primary) 20%, transparent);
  --peach-10: color-mix(in srgb, var(--primary) 10%, transparent);
  --cream: var(--background);
  --charcoal: var(--foreground);
  --apricot: var(--muted);
  --apricot-deep: var(--border);
  --tap-min: 48px;
  --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --font-deva: 'Tiro Devanagari Hindi', serif;
  --font-code: 'JetBrains Mono', ui-monospace, monospace;
}
.dark {
  /* Keep Fraunces + DM Sans in dark mode too. The Phase-10 spec called for
   * Instrument Serif / Sora in dark but it reads cramped vs the light Fraunces.
   * Per user decision D1 (2026-05-26): same typography across themes. */
  /* SaaS dark tokens fail WCAG AA for body text + make borders invisible.
   * Override here so muted-foreground body copy + border outlines stay
   * legible on the #161116 stage. shared.css loads AFTER globals.css so this wins. */
  --muted-foreground: #C5B5A3;   /* warm light grey, ~7.4:1 on #161116 */
  --border: #3F3338;             /* visible warm dark-grey border, ~2.6:1 */
  --muted: #221A21;              /* slightly lifted from background for chips */
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--background); color: var(--foreground);
  font-family: var(--font-body);
  font-size: clamp(15px, 4vw, 17px); line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
a { color: var(--primary); text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--primary) 40%, transparent); text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
a:hover, a:focus-visible { text-decoration-color: var(--primary); text-decoration-thickness: 2px; }
a:visited { color: color-mix(in srgb, var(--primary) 80%, var(--foreground)); }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; min-height: var(--tap-min); font-family: var(--font-body); }
button:focus-visible, a:focus-visible, label:focus-within, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--ring); outline-offset: 3px; border-radius: 8px;
}
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--primary); color: var(--primary-foreground); padding: 12px 20px; border-radius: 8px; font-weight: 600; }
.skip-link:focus { left: 16px; top: 16px; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; line-height: 1.15; }
h1 { font-size: clamp(34px, 7vw, 64px); letter-spacing: -0.025em; }
h2 { font-size: clamp(26px, 5vw, 40px); letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 4vw, 26px); }
.font-deva { font-family: var(--font-deva); }
.mono { font-family: var(--font-code); font-feature-settings: 'tnum'; }

/* Nav */
.site-nav {
  padding: 16px 20px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--background) 92%, transparent);
  backdrop-filter: saturate(180%) blur(8px);
  gap: 12px;
}
.wordmark { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--foreground); text-decoration: none; letter-spacing: -0.02em; }
.wordmark a, .wordmark a:visited { color: var(--foreground); text-decoration: none; }
.wordmark .accent { color: var(--primary); }
.nav-center { display: none; gap: 24px; align-items: center; }
.nav-center a { color: var(--foreground); text-decoration: none; font-size: 15px; font-weight: 500; padding: 8px 4px; border-bottom: 2px solid transparent; }
.nav-center a:hover, .nav-center a:focus-visible, .nav-center a[aria-current="page"] { border-bottom-color: var(--accent-butter); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta { background: var(--primary); color: var(--primary-foreground); padding: 8px 16px; border-radius: 999px; font-weight: 600; font-size: 14px; text-decoration: none; transition: transform var(--transition), box-shadow var(--transition); min-height: auto; }
.nav-cta:visited { color: var(--primary-foreground); }
.nav-cta:hover, .nav-cta:focus-visible { transform: translateY(-1px); box-shadow: 0 4px 12px color-mix(in srgb, var(--primary) 35%, transparent); }
.theme-toggle { background: var(--muted); color: var(--foreground); border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px; font-size: 12px; font-weight: 600; cursor: pointer; min-height: 32px; }
.hamburger { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 999px; background: var(--muted); border: 1px solid var(--border); padding: 0; }
@media (min-width: 900px) { .nav-center { display: flex; } .hamburger { display: none; } }
/* "Sign in" link in nav-right — quieter than the orange nav-cta. */
.nav-login {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted-foreground);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-login:hover, .nav-login:focus-visible {
  color: var(--foreground);
  background: color-mix(in srgb, var(--foreground) 6%, transparent);
}
.nav-overlay { display: none; position: fixed; inset: 0; z-index: 60; background: var(--background); flex-direction: column; padding: 80px 24px 32px; }
.nav-overlay.open { display: flex; }
.nav-overlay-close { position: absolute; top: 16px; right: 20px; width: 44px; height: 44px; border-radius: 999px; background: var(--muted); border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; }
.nav-overlay a { display: block; padding: 18px 8px; color: var(--foreground); text-decoration: none; font-family: var(--font-display); font-size: 28px; font-weight: 500; border-bottom: 1px solid var(--border); }
.nav-overlay-tag { margin-top: auto; padding-top: 24px; color: var(--muted-foreground); font-size: 14px; }

/* Layout */
main { flex: 1; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 20px; }
section { padding: 64px 0; }
@media (min-width: 768px) { section { padding: 96px 0; } }

/* Page hero */
.page-hero { padding-top: 64px; padding-bottom: 32px; }
.page-hero-eyebrow { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--muted); color: var(--foreground); font-size: 13px; font-weight: 600; margin-bottom: 20px; font-family: var(--font-body); }
.page-hero h1 { margin-bottom: 20px; }
.page-hero-sub { font-size: clamp(17px, 3.2vw, 21px); line-height: 1.5; color: var(--muted-foreground); margin-bottom: 28px; max-width: 60ch; }
.page-hero-ctas { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
@media (min-width: 600px) { .page-hero-ctas { flex-direction: row; align-items: center; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 24px; border-radius: 10px; font-weight: 600; font-size: 16px; text-decoration: none; transition: transform var(--transition), background var(--transition), box-shadow var(--transition); min-height: var(--tap-min); font-family: var(--font-body); border: 0; cursor: pointer; }
.btn-primary { background: var(--primary); color: var(--primary-foreground); box-shadow: 0 2px 8px color-mix(in srgb, var(--primary) 30%, transparent); }
.btn-primary:visited { color: var(--primary-foreground); }
.btn-primary:hover, .btn-primary:focus-visible { transform: translateY(-1px); box-shadow: 0 6px 16px color-mix(in srgb, var(--primary) 40%, transparent); }
.btn-primary:disabled { background: var(--muted); color: var(--muted-foreground); cursor: not-allowed; transform: none; box-shadow: none; }
.btn-secondary { background: transparent; color: var(--foreground); border: 2px solid var(--foreground); }
.btn-secondary:visited { color: var(--foreground); }
.btn-secondary:hover, .btn-secondary:focus-visible { background: var(--muted); border-color: var(--primary); color: var(--primary); }
.dark .btn-secondary { border-color: var(--foreground); }
.btn-ghost { background: transparent; color: var(--muted-foreground); padding: 10px 14px; }
.btn-ghost:visited { color: var(--muted-foreground); }
.btn-ghost:hover, .btn-ghost:focus-visible { color: var(--foreground); }

/* Sections - reused patterns */
.section-band { background: color-mix(in srgb, var(--muted) 60%, transparent); }

.feature-row {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  padding: 48px 0; border-top: 1px solid var(--border);
}
.feature-row:first-of-type { border-top: 0; }
@media (min-width: 800px) {
  .feature-row { grid-template-columns: 1fr 2fr; gap: 48px; padding: 64px 0; }
}
.feature-row-meta h2 { margin-bottom: 8px; }
.feature-row-meta .anchor-num { font-family: var(--font-display); font-size: 36px; color: var(--primary); display: block; margin-bottom: 8px; }
.feature-row-body p { color: var(--muted-foreground); font-size: 17px; margin-bottom: 16px; }
.feature-row-body .price-strip { display: inline-block; padding: 8px 14px; border-radius: 999px; background: var(--muted); font-family: var(--font-code); font-size: 14px; color: var(--foreground); margin-top: 8px; }
.feature-row-body .x-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }

.narrative-band { background: color-mix(in srgb, var(--muted) 60%, transparent); padding: 80px 0; }
.narrative-h2 { margin-bottom: 16px; max-width: 24ch; }
.narrative-lede { color: var(--muted-foreground); font-size: clamp(16px, 2.5vw, 19px); max-width: 60ch; margin-bottom: 48px; }
.narrative-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .narrative-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.narrative-card { background: var(--card); padding: 32px 28px; border-radius: 16px; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.narrative-num { font-family: var(--font-display); font-size: 36px; font-weight: 600; color: var(--primary); line-height: 1; }
.narrative-card h3 { font-size: 22px; margin-bottom: 4px; }
.narrative-card p { color: var(--muted-foreground); font-size: 16px; line-height: 1.55; }
.narrative-card .pill { margin-top: auto; display: inline-block; align-self: flex-start; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; background: var(--muted); color: var(--foreground); }
.narrative-card.mint .pill { background: color-mix(in srgb, var(--accent-mint) 18%, var(--card)); color: var(--accent-mint); }
.narrative-card.butter .pill { background: color-mix(in srgb, var(--accent-butter) 22%, var(--card)); color: var(--accent-mint-deep); }
.narrative-card.peach .pill { background: var(--peach-20); color: var(--primary); }

/* Timeline strip */
.timeline-strip { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
@media (min-width: 700px) { .timeline-strip { grid-template-columns: repeat(3, 1fr); } }
.timeline-mile { padding: 20px; border-radius: 12px; background: var(--card); border: 1px solid var(--border); border-top: 4px solid var(--primary); }
.timeline-mile .when { font-family: var(--font-code); font-size: 13px; color: var(--muted-foreground); margin-bottom: 8px; }
.timeline-mile .what { font-family: var(--font-display); font-size: 18px; font-weight: 600; }
.timeline-mile.butter { border-top-color: var(--accent-butter); }
.timeline-mile.mint { border-top-color: var(--accent-mint); }

/* Pricing card */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 800px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card { padding: 28px; border-radius: 16px; border: 1px solid var(--border); background: var(--card); display: flex; flex-direction: column; gap: 16px; }
.pricing-card.featured { border-color: var(--primary); border-width: 2px; box-shadow: 0 8px 24px color-mix(in srgb, var(--primary) 12%, transparent); }
.pricing-card .year { font-family: var(--font-code); font-size: 13px; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.06em; }
.pricing-card h3 { font-size: 24px; }
.pricing-card .price { font-family: var(--font-display); font-size: 30px; color: var(--primary); font-weight: 600; }
.pricing-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; color: var(--muted-foreground); font-size: 15px; }
.pricing-card ul li::before { content: "✓ "; color: var(--accent-mint); font-weight: 700; }

/* Quote */
.quote-block { background: var(--muted); border-left: 3px solid var(--primary); padding: 24px 28px; border-radius: 8px; font-family: var(--font-display); font-style: italic; font-size: 19px; line-height: 1.5; color: var(--foreground); margin: 32px 0; }
.quote-block .attribution { display: block; margin-top: 12px; font-family: var(--font-body); font-style: normal; font-size: 14px; color: var(--muted-foreground); }

/* Resource card */
.resource-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 700px) { .resource-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .resource-grid { grid-template-columns: repeat(3, 1fr); } }
.resource-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: var(--foreground); transition: transform var(--transition), border-color var(--transition); }
.resource-card:visited { color: var(--foreground); }
.resource-card:hover, .resource-card:focus-visible { transform: translateY(-2px); border-color: var(--primary); }
.resource-card .tag { display: inline-block; align-self: flex-start; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; background: color-mix(in srgb, var(--accent-butter) 22%, var(--card)); color: var(--accent-mint-deep); }
.resource-card h3 { font-size: 19px; }
.resource-card p { color: var(--muted-foreground); font-size: 14px; }
.resource-card.coming { background: color-mix(in srgb, var(--accent-butter) 8%, var(--card)); }
.resource-card.coming .tag { background: color-mix(in srgb, var(--accent-mint) 22%, var(--card)); color: var(--accent-mint); }

/* Featured essay */
.featured-essay { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 40px; margin-bottom: 48px; display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 800px) { .featured-essay { padding: 56px; } }
.featured-essay .tag { display: inline-block; align-self: flex-start; padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; background: var(--peach-20); color: var(--primary); text-transform: uppercase; letter-spacing: 0.06em; }
.featured-essay h3 { font-size: clamp(24px, 4vw, 34px); max-width: 26ch; }
.featured-essay p { color: var(--muted-foreground); font-size: 17px; max-width: 60ch; }
.featured-essay .featured-meta { font-family: var(--font-code); font-size: 13px; color: var(--muted-foreground); }

/* Form */
.form-block { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 14px; font-weight: 600; color: var(--foreground); }
.form-row label .req { color: var(--primary); margin-left: 4px; }
.form-row input, .form-row select, .form-row textarea {
  padding: 14px 16px; background: var(--input); border: 2px solid var(--border); border-radius: 10px;
  font-family: var(--font-body); font-size: 16px; color: var(--foreground); min-height: var(--tap-min);
  transition: border-color var(--transition);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--primary); outline: none; }
.form-row.error input, .form-row.error select, .form-row.error textarea { border-color: var(--destructive); }
.form-row .err-msg { font-size: 13px; color: var(--destructive); display: none; }
.form-row.error .err-msg { display: block; }
.form-disclosure { font-size: 12px; color: var(--muted-foreground); line-height: 1.5; padding: 8px 0; }
.form-success { background: color-mix(in srgb, var(--accent-mint) 14%, var(--card)); border: 1px solid var(--accent-mint); border-radius: 12px; padding: 32px; text-align: center; }
.form-success h3 { color: var(--accent-mint-deep); margin-bottom: 8px; }

/* CTA band */
.cta-band { background: var(--primary); color: var(--primary-foreground); padding: 64px 0; }
.cta-band h2 { color: var(--primary-foreground); margin-bottom: 16px; max-width: 26ch; }
.cta-band p { color: color-mix(in srgb, var(--primary-foreground) 88%, transparent); font-size: 18px; margin-bottom: 24px; max-width: 56ch; }
/* CTA button on orange band: dark walnut bg + cream text — high contrast against orange */
.cta-band .btn-primary { background: var(--foreground); color: var(--background); box-shadow: 0 4px 16px rgba(0,0,0,0.25); }
.cta-band .btn-primary:visited { color: var(--background); }
.cta-band .btn-primary:hover, .cta-band .btn-primary:focus-visible { background: var(--background); color: var(--foreground); }

/* Proof band */
.proof-band { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 48px 0; }
.proof-band p { color: var(--muted-foreground); font-size: 14px; max-width: 70ch; margin-bottom: 16px; }
.proof-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.proof-chips > span { padding: 6px 12px; border-radius: 999px; background: var(--muted); font-size: 13px; color: var(--foreground); font-weight: 500; }

/* Footer */
footer.site-footer { background: var(--card); padding: 64px 0 32px; border-top: 1px solid var(--border); margin-top: auto; }
.footer-cols { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
@media (min-width: 640px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-cols { grid-template-columns: repeat(4, 1fr); } }
.footer-col h4 { font-family: var(--font-body); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-foreground); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--foreground); text-decoration: none; font-size: 15px; }
.footer-col a:visited { color: var(--foreground); }
.footer-col a:hover, .footer-col a:focus-visible { color: var(--primary); }
.footer-bottom { padding-top: 32px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 16px; font-size: 13px; color: var(--muted-foreground); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-tagline { font-family: var(--font-display); font-size: 16px; color: var(--foreground); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 999px; background: var(--muted); display: inline-flex; align-items: center; justify-content: center; color: var(--foreground); text-decoration: none; }
.footer-socials a:visited { color: var(--foreground); }
.footer-socials a:hover, .footer-socials a:focus-visible { background: var(--primary); color: var(--primary-foreground); }
.footer-fine { font-size: 12px; line-height: 1.5; max-width: 80ch; }

/* Breadcrumb */
.breadcrumb { padding: 16px 0; font-size: 14px; color: var(--muted-foreground); }
.breadcrumb a { color: var(--muted-foreground); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { padding: 0 8px; }
.breadcrumb .current { color: var(--foreground); font-weight: 500; }

/* TOC sidebar */
.layout-with-toc { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1000px) { .layout-with-toc { grid-template-columns: 220px 1fr; gap: 64px; align-items: start; } }
.toc-sidebar { font-size: 14px; }
@media (min-width: 1000px) { .toc-sidebar { position: sticky; top: 88px; } }
.toc-sidebar h4 { font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-foreground); margin-bottom: 12px; }
.toc-sidebar ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.toc-sidebar a { color: var(--foreground); text-decoration: none; display: block; padding: 4px 0; }
.toc-sidebar a:hover { color: var(--primary); }

/* Utility */
.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; }
.icon { width: 18px; height: 18px; flex-shrink: 0; }
.icon-lg { width: 22px; height: 22px; }
.icon-mint { color: var(--accent-mint); }
.icon-butter { color: var(--accent-butter); }
.icon-peach { color: var(--primary); }

/* Print stylesheet (for /safety/dpdp-one-pager and /resources/parent-faq) */
@media print {
  .site-nav, .site-footer, .theme-toggle, .hamburger, .nav-overlay, .cta-band, .skip-link { display: none !important; }
  body { background: white; color: black; font-family: 'Fraunces', Georgia, serif; }
  main { max-width: 720px; margin: 0 auto; padding: 20px; }
  a { color: black; text-decoration: underline; }
  h1, h2, h3 { color: black; }
  .breadcrumb { display: none; }
}

