/* ============================================================
   Nonna Knows Best — Lucia design system (styles.css)
   Shared by every page of the Lucia site. Load order in <head>:
     1. Google Fonts <link> (Cormorant Garamond + Inter)
     2. this file
   Palette + type per brief §7. No frameworks, no dependencies.
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  /* The 8 brand colors */
  --forest:    #2F4A3B;  /* forest green — primary actions, headings accents */
  --evergreen: #1E3328;  /* deep evergreen — dark sections, footer, hovers */
  --cream:     #F6F0E4;  /* warm cream — page background */
  --parchment: #E8D8BC;  /* parchment — warm tint panels, figure backgrounds */
  --gold:      #B8904F;  /* muted gold — bundle accent, highlights */
  --copper:    #A65A3A;  /* copper — small accents, links, focus */
  --charcoal:  #25231F;  /* charcoal — body text */
  --sage:      #DCE3D4;  /* soft sage — alternate section tint, icon chips */

  /* Derived surfaces */
  --card-bg:   #FCF8EF;
  --line:      rgba(47, 74, 59, .16);
  --line-soft: rgba(47, 74, 59, .09);

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Type scale (fluid) */
  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1.0625rem;
  --fs-md:   1.1875rem;
  --fs-h4:   clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-h3:   clamp(1.55rem, 1.3rem + 1vw, 2rem);
  --fs-h2:   clamp(2rem, 1.6rem + 1.8vw, 2.9rem);
  --fs-h1:   clamp(2.5rem, 1.9rem + 2.8vw, 4rem);

  /* Rhythm */
  --space-section: clamp(4rem, 3rem + 4vw, 7rem);
  --container: 72rem;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-card: 0 1px 2px rgba(37, 35, 31, .05), 0 10px 28px -14px rgba(37, 35, 31, .18);
  --shadow-lift: 0 2px 4px rgba(37, 35, 31, .06), 0 18px 44px -18px rgba(37, 35, 31, .28);
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }

ul[class], ol[class] { padding: 0; list-style: none; }

a { color: var(--forest); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--copper); }

/* ---------- 3. Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--evergreen);
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-weight: 600; color: var(--evergreen); }

.lead { font-size: var(--fs-md); line-height: 1.6; max-width: 38em; }

.eyebrow {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}

.small, .microcopy { font-size: var(--fs-sm); }
.muted { color: rgba(37, 35, 31, .72); }

/* Inline text link (small "See what's inside" style links) */
.text-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.text-link:hover { color: var(--copper); text-decoration-color: var(--copper); }

/* ---------- 4. Layout utilities ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 46rem; }

.section { padding-block: var(--space-section); }
.section--tight { padding-block: calc(var(--space-section) * 0.6); }
.section--sage { background: var(--sage); }
.section--parchment { background: var(--parchment); }
.section--dark { background: var(--evergreen); color: var(--cream); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream); }
.section--dark a { color: var(--sage); }
.section--dark a:hover { color: var(--gold); }
.section--dark .eyebrow { color: var(--gold); }
.section--dark .muted { color: rgba(246, 240, 228, .78); }

/* Centered section header block */
.section-head { max-width: 44rem; margin-inline: auto; text-align: center; }
.section-head > * + * { margin-top: 1rem; }
.section-head + * { margin-top: clamp(2.25rem, 2rem + 2vw, 3.5rem); }

/* Vertical flow helper */
.flow > * + * { margin-top: 1rem; }

/* Subtle paper texture — pure CSS, no image files */
.paper-texture {
  background-color: var(--cream);
  background-image:
    repeating-linear-gradient(0deg,  rgba(166, 90, 58, .022) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(47, 74, 59, .016)  0 1px, transparent 1px 4px),
    radial-gradient(120% 80% at 15% 8%,  rgba(232, 216, 188, .55), transparent 62%),
    radial-gradient(110% 75% at 88% 95%, rgba(232, 216, 188, .42), transparent 58%);
}
.section--parchment.paper-texture {
  background-color: var(--parchment);
  background-image:
    repeating-linear-gradient(0deg,  rgba(166, 90, 58, .03) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(47, 74, 59, .02)  0 1px, transparent 1px 4px),
    radial-gradient(120% 80% at 15% 8%,  rgba(246, 240, 228, .5), transparent 62%);
}

/* Screen-reader only */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -100%;
  z-index: 100;
  padding: .75rem 1.25rem;
  background: var(--evergreen);
  color: var(--cream);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
}
.skip-link:focus { top: 0; color: var(--cream); }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .85rem 1.7rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--forest); color: var(--cream); }
.btn--primary:hover { background: var(--evergreen); color: var(--cream); }

.btn--outline { background: transparent; border-color: var(--forest); color: var(--forest); }
.btn--outline:hover { background: rgba(47, 74, 59, .08); color: var(--evergreen); }

/* Gold accent — reserved for the bundle / featured offer */
.btn--gold { background: var(--gold); color: var(--evergreen); }
.btn--gold:hover { background: #a87f40; color: var(--evergreen); }

.btn--large { min-height: 54px; padding: 1rem 2.1rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }

/* Variants on dark surfaces */
.section--dark .btn--outline,
.tier--featured .btn--outline {
  border-color: var(--cream); color: var(--cream);
}
.section--dark .btn--outline:hover,
.tier--featured .btn--outline:hover { background: rgba(246, 240, 228, .12); color: var(--cream); }

/* ---------- 6. Header / navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--evergreen);
}
.nav-mark { width: 34px; height: 34px; color: var(--forest); flex: none; }
.nav-mark svg { width: 100%; height: 100%; }
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}

.nav-menu { display: flex; align-items: center; gap: 1.75rem; }

.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--forest); border-bottom-color: var(--gold); }
.nav-links a[aria-current="page"] { color: var(--forest); border-bottom-color: var(--forest); }

.nav-cta { white-space: nowrap; }

/* Hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--evergreen);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 899px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding: 1.25rem var(--gutter) 1.75rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lift);
  }
  .nav-open .nav-menu { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: .25rem; }
  .nav-links a {
    display: block;
    padding: .8rem .25rem;
    font-size: var(--fs-base);
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-links a[aria-current="page"] { border-bottom-color: var(--line-soft); }
  .nav-cta { width: 100%; }
}

/* ---------- 7. Hero ---------- */
.hero { overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 2rem + 2vw, 4.5rem);
  align-items: center;
}
.hero-copy > * + * { margin-top: 1.25rem; }
.hero-copy h1 { max-width: 14em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.9rem; }
.hero-support { font-size: var(--fs-sm); color: rgba(37, 35, 31, .72); max-width: 34em; }
.hero-figure { max-width: 460px; justify-self: end; width: 100%; }

@media (max-width: 899px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { justify-self: center; max-width: 400px; }
}

/* ---------- 8. Figures / images ---------- */
/* Fixed aspect ratio so real images drop in with zero layout shift. */
.figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--parchment);
  box-shadow: var(--shadow-card);
}
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure--4x5 { aspect-ratio: 4 / 5; }
.figure--3x4 { aspect-ratio: 3 / 4; }
.figure--1x1 { aspect-ratio: 1 / 1; }
.figure--plain { box-shadow: none; }
figcaption { font-size: var(--fs-xs); color: rgba(37, 35, 31, .6); margin-top: .6rem; }

/* ---------- 9. Cards ---------- */
.card {
  background: var(--card-bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  box-shadow: var(--shadow-card);
}
.card > * + * { margin-top: .75rem; }
.card h3 { font-size: var(--fs-h4); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

/* Problem cards (icon + title + benefit) */
.card-icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest);
  margin-bottom: .5rem;
}
.card-icon svg { width: 32px; height: 32px; }

/* ---------- 10. Offer tiers (3-column pricing) ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
@media (max-width: 899px) { .tier-grid { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; } }

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  background: var(--card-bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  box-shadow: var(--shadow-card);
}
.tier-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--forest);
}
.tier-body { flex: 1; }
.tier-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--evergreen);
  line-height: 1;
}
.tier-price-note { font-size: var(--fs-sm); color: rgba(37, 35, 31, .72); }
.tier .text-link { align-self: center; }

/* Featured tier — forest-green panel, gold details ("Best value") */
.tier--featured {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
  box-shadow: var(--shadow-lift);
}
.tier--featured h3, .tier--featured .tier-price { color: var(--cream); }
.tier--featured .tier-subtitle { color: var(--sage); }
.tier--featured .tier-price-note { color: rgba(246, 240, 228, .8); }
.tier--featured .text-link { color: var(--sage); text-decoration-color: var(--gold); }
.tier--featured .text-link:hover { color: var(--gold); }

.tier-badge {
  position: absolute;
  top: -0.9rem; left: 50%;
  transform: translateX(-50%);
  padding: .35rem 1.1rem;
  background: var(--gold);
  color: var(--evergreen);
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .tier--featured { transform: translateY(-0.75rem); }
}

/* ---------- 11. Split sections (image + copy, e.g. "Meet Nonna Lucia") ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 2rem + 2vw, 4.5rem);
  align-items: center;
}
.split-figure { max-width: 420px; width: 100%; margin-inline: auto; }
.split-copy > * + * { margin-top: 1.1rem; }
@media (max-width: 899px) { .split { grid-template-columns: 1fr; } }

/* ---------- 12. Book blocks ("Inside the Books") ---------- */
.book-block {
  display: grid;
  grid-template-columns: minmax(240px, 4fr) minmax(0, 8fr);
  gap: clamp(2rem, 1.5rem + 2vw, 4rem);
  align-items: start;
}
.book-block + .book-block { margin-top: calc(var(--space-section) * 0.75); }
.book-block--flip .book-media { order: 2; }
@media (max-width: 899px) {
  .book-block { grid-template-columns: 1fr; }
  .book-block--flip .book-media { order: 0; }
  .book-media { max-width: 340px; margin-inline: auto; width: 100%; }
}
.book-media { position: sticky; top: 100px; }
@media (max-width: 899px) { .book-media { position: static; } }
.book-copy > * + * { margin-top: 1.1rem; }

.chapter-list {
  list-style: decimal;
  padding-left: 1.4rem;
  display: grid;
  gap: .6rem;
  font-size: var(--fs-sm);
}
.chapter-list li::marker { color: var(--copper); font-weight: 600; }
.chapter-list strong { color: var(--evergreen); }

.tonight-list { display: grid; gap: .55rem; font-size: var(--fs-sm); }
.tonight-list li { position: relative; padding-left: 1.6rem; }
.tonight-list li::before {
  content: "\2713"; /* check mark */
  position: absolute;
  left: 0; top: 0;
  color: var(--forest);
  font-weight: 700;
}

/* ---------- 13. Method steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  counter-reset: step;
  text-align: center;
}
@media (max-width: 767px) { .steps { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; } }
.step { display: grid; justify-items: center; gap: .75rem; padding: 1rem; }
.step-num {
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--sage);
  border: 2px solid var(--forest);
  color: var(--evergreen);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
}
.step h3 { font-size: var(--fs-h4); }
.step p { font-size: var(--fs-sm); max-width: 28em; }

/* ---------- 14. Email capture ---------- */
.email-capture { text-align: center; }
.email-capture .section-head + .email-form { margin-top: 2rem; }

.email-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  max-width: 34rem;
  margin-inline: auto;
}
.email-form input[type="email"] {
  flex: 1 1 16rem;
  min-height: 54px;
  padding: .85rem 1.4rem;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 1rem;
}
.email-form input[type="email"]::placeholder { color: rgba(37, 35, 31, .55); }
.email-form input[type="email"]:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.form-microcopy { margin-top: .9rem; font-size: var(--fs-sm); color: rgba(246, 240, 228, .75); }

/* ---------- 15. FAQ ---------- */
.faq-list { display: grid; gap: .85rem; max-width: 46rem; margin-inline: auto; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}
.faq-item summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--evergreen);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--copper);
  transition: transform .18s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.4rem 1.25rem; font-size: var(--fs-sm); }
.faq-item .faq-body > * + * { margin-top: .6rem; }

/* ---------- 16. Footer ---------- */
.site-footer {
  background: var(--evergreen);
  color: var(--cream);
  padding-block: clamp(3rem, 2.5rem + 2vw, 4.5rem) 1.75rem;
  font-size: var(--fs-sm);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) repeat(3, minmax(0, 2.3fr));
  gap: 2.5rem 2rem;
}
@media (max-width: 899px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 559px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
}
.footer-logo:hover { color: var(--gold); }
.footer-tagline { margin-top: .75rem; color: rgba(246, 240, 228, .78); max-width: 26em; }

.footer-heading {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.footer-col ul { display: grid; gap: .5rem; }
.footer-col a { color: rgba(246, 240, 228, .88); text-decoration: none; }
.footer-col a:hover { color: var(--gold); text-decoration: underline; }

.footer-bottom {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(246, 240, 228, .16);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem;
  color: rgba(246, 240, 228, .66);
  font-size: var(--fs-xs);
}

/* ---------- 17. Accessibility & motion ---------- */
:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
  border-radius: 2px;
}
.section--dark :focus-visible,
.site-footer :focus-visible,
.tier--featured :focus-visible { outline-color: var(--gold); }

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

/* ---------- 18. Print (printable pages read cleanly) ---------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ===== Start Easy modal (exit-intent / idle) — injected by lucia.js ===== */
.easy-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(30, 51, 40, .55);
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem;
}
.easy-modal {
  background: var(--cream, #F6F0E4);
  border: 1px solid var(--parchment, #E8D8BC);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(30, 51, 40, .35);
  max-width: 26rem; width: 100%;
  padding: 2rem 1.75rem 1.75rem;
  text-align: center; position: relative;
}
.easy-modal h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--evergreen, #1E3328);
  font-size: 1.9rem; margin: 0 0 .6rem;
}
.easy-modal p { color: var(--charcoal, #25231F); font-size: .98rem; line-height: 1.5; margin: 0 0 1.2rem; }
.easy-modal .btn { width: 100%; }
.easy-dismiss {
  display: inline-block; margin-top: .8rem; background: none; border: none;
  color: rgba(37, 35, 31, .6); font-size: .85rem; cursor: pointer; text-decoration: underline;
}
.easy-close {
  position: absolute; top: .5rem; right: .7rem; background: none; border: none;
  font-size: 1.4rem; line-height: 1; color: rgba(37, 35, 31, .55); cursor: pointer; padding: .3rem;
}
.easy-close:hover, .easy-dismiss:hover { color: var(--evergreen, #1E3328); }
@media (prefers-reduced-motion: no-preference) {
  .easy-modal { animation: easyIn .22s ease-out; }
  @keyframes easyIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
}
