/* =====================================================================
   M Care — master stylesheet
   Forest-green + gold brand system (matches the M Care Exports logo).
   Serif headings, sans body. Mobile-first.

   Legacy token names (`--mcare-navy-*`) retained to avoid rewriting the
   65 inline-style references across 15 HTML files. Values now map to the
   green brand palette. A future pass can rename the tokens cleanly.
   ===================================================================== */

:root {
  /* Palette — green takes over from navy */
  --mcare-navy-900: #0A3F23;   /* deep forest — darkest sections, header */
  --mcare-navy-800: #0F5B2E;   /* primary brand green — CTAs, dark surfaces */
  --mcare-navy-700: #1B7A3C;   /* mid-brand — headings, hovers, borders */
  --mcare-navy-100: #E4F1E8;   /* pale green tint — section backgrounds */
  --mcare-gold-500: #C9A451;
  --mcare-gold-400: #D9B870;
  --mcare-gold-100: #F5EBD2;
  --mcare-lime-400: #B8D347;   /* NEW — lime accent from the logo dots */
  --mcare-ink:      #0F2118;   /* body text — slight green undertone */
  --mcare-mute:     #55675D;   /* muted body — tuned to the green system */
  --mcare-line:     #D4DCD6;   /* rules and borders — green-tinted grey */
  --mcare-paper:    #FBFAF6;
  --mcare-white:    #FFFFFF;

  /* Type */
  --ff-serif: "Cormorant Garamond", "Times New Roman", serif;
  --ff-sans:  "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Radii + shadows */
  --radius-card: 12px;
  --radius-btn: 4px;
  --shadow-sm: 0 1px 2px rgba(10,63,35,0.06);
  --shadow-md: 0 1px 2px rgba(10,63,35,0.06), 0 8px 24px rgba(10,63,35,0.06);
  --shadow-lg: 0 2px 4px rgba(10,63,35,0.08), 0 24px 48px rgba(10,63,35,0.10);
  --focus-ring: 0 0 0 3px rgba(201,164,81,0.35);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--mcare-ink);
  background: var(--mcare-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--mcare-gold-500); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { padding-left: 1.25rem; }
hr { border: 0; border-top: 1px solid var(--mcare-line); margin: 2rem 0; }

:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 2px; }

/* -------- Type -------- */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--mcare-navy-900);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); line-height: 1.1; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.15; }
h3 { font-size: 1.5rem; line-height: 1.25; }
h4 { font-size: 1.125rem; line-height: 1.3; }
p  { margin: 0 0 1rem; }
.eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mcare-gold-500);
  margin-bottom: 0.75rem;
}
.lede {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  line-height: 1.45;
  color: var(--mcare-ink);
}

/* -------- Layout -------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section--dark {
  background: var(--mcare-navy-900);
  color: var(--mcare-white);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--mcare-white); }
.section--dark .eyebrow { color: var(--mcare-gold-400); }
.section--tint {
  background: var(--mcare-navy-100);
}
.section--gold {
  background: var(--mcare-gold-100);
}
.section-head {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-head p { color: var(--mcare-mute); font-size: 1.0625rem; }
.section--dark .section-head p { color: rgba(255,255,255,0.8); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.5rem, 4vw, 3rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 2rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1.25rem, 2.5vw, 2rem); }

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

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-btn);
  transition: all 0.2s var(--ease);
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
  line-height: 1;
}
.btn--primary {
  background: var(--mcare-gold-500);
  color: var(--mcare-navy-900);
}
.btn--primary:hover { background: var(--mcare-gold-400); color: var(--mcare-navy-900); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--dark {
  background: var(--mcare-navy-700);
  color: var(--mcare-white);
}
.btn--dark:hover { background: var(--mcare-navy-800); color: var(--mcare-white); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--mcare-navy-900);
  border-color: var(--mcare-navy-900);
}
.btn--ghost:hover { background: var(--mcare-navy-900); color: var(--mcare-white); }
.section--dark .btn--ghost { color: var(--mcare-white); border-color: rgba(255,255,255,0.3); }
.section--dark .btn--ghost:hover { background: var(--mcare-white); color: var(--mcare-navy-900); }
.btn--sm { padding: 0.625rem 1rem; font-size: 0.875rem; }

.btn .arrow { display: inline-block; transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* -------- Cards -------- */
.card {
  background: var(--mcare-white);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mcare-line);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.card p { color: var(--mcare-mute); font-size: 0.9375rem; margin-bottom: 1rem; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--mcare-gold-500); }
.card .card-icon {
  width: 44px; height: 44px;
  background: var(--mcare-gold-100);
  color: var(--mcare-navy-900);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.card .card-link {
  margin-top: auto;
  color: var(--mcare-navy-700);
  font-weight: 500;
  font-size: 0.9375rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.card .card-link:hover { color: var(--mcare-gold-500); }

/* -------- Header -------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 246, 0.95);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--mcare-line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}
.site-logo {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: var(--ff-serif);
  font-size: 1.5rem; font-weight: 600;
  color: var(--mcare-navy-900);
  letter-spacing: -0.01em;
}
.site-logo__mark {
  width: 36px; height: 36px;
  background: var(--mcare-navy-900);
  color: var(--mcare-gold-500);
  border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--ff-sans);
  letter-spacing: -0.02em;
}
.site-logo__sub { font-family: var(--ff-sans); font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mcare-mute); display: block; line-height: 1; margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--mcare-ink);
  position: relative;
  padding: 0.25rem 0;
}
.main-nav a:hover { color: var(--mcare-navy-900); }
.main-nav a.is-active { color: var(--mcare-navy-900); }
.main-nav a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--mcare-gold-500);
}

.site-header__cta { display: flex; align-items: center; gap: 1rem; }
.hamburger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--mcare-navy-900);
}
.hamburger svg { width: 24px; height: 24px; }

@media (max-width: 960px) {
  .main-nav {
    position: fixed; top: var(--header-h, 84px); left: 0; right: 0; bottom: 0;
    background: var(--mcare-paper);
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.5rem 1.5rem 2.5rem;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    z-index: 90;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); box-shadow: 0 -2px 24px rgba(14, 23, 38, 0.08); }
  .main-nav a { font-size: 1.125rem; padding: 0.85rem 0.25rem; min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid rgba(14, 23, 38, 0.06); }
  .main-nav a:last-child { border-bottom: none; }
  .hamburger { display: inline-flex; }
  .site-header__cta .btn {
    padding: 0.55rem 1rem;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
  }
  .site-header__cta .btn--secondary { display: none; }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 420px) {
  .site-header__cta .btn { padding: 0.5rem 0.75rem; font-size: 0.75rem; }
  .site-header .logo img, .site-header .logo svg { max-height: 38px; }
}

/* -------- Trust bar -------- */
.trust-bar {
  background: var(--mcare-navy-900);
  color: rgba(255,255,255,0.85);
  padding: 0.85rem 0;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
}
.trust-bar__inner {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 0.5rem 2rem;
  text-align: center;
}
.trust-bar__item { display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap; }
.trust-bar__item::before {
  content: ""; width: 6px; height: 6px; background: var(--mcare-gold-500); border-radius: 50%; flex: 0 0 auto;
}
.trust-bar__item:first-child::before { display: none; }
@media (max-width: 640px) {
  .trust-bar { font-size: 0.75rem; }
  .trust-bar__inner { gap: 0.35rem 1.25rem; }
}

/* -------- Footer -------- */
.site-footer {
  background: var(--mcare-paper);
  color: var(--mcare-ink);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  font-size: 0.9375rem;
  border-top: 2px solid var(--mcare-gold-500);
}
.site-footer a { color: var(--mcare-ink); }
.site-footer a:hover { color: var(--mcare-gold-700); }
.site-footer h4 {
  color: var(--mcare-ink);
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: 3rem;
}
.site-footer__brand .site-logo { color: var(--mcare-ink); margin-bottom: 1rem; }
.site-footer__brand p { color: #5A6472; font-size: 0.9375rem; max-width: 340px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.65rem; color: #5A6472; }
.site-footer__bottom {
  border-top: 1px solid rgba(10,23,38,0.08);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8125rem;
  color: #5A6472;
  flex-wrap: wrap; gap: 1rem;
}
.site-footer__bottom a { color: var(--mcare-ink); }
.site-footer__bottom a:hover { color: var(--mcare-gold-700); }
@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* -------- Hero -------- */
.hero {
  position: relative;
  min-height: min(82vh, 780px);
  display: flex; align-items: center;
  color: var(--mcare-white);
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(120deg, var(--mcare-navy-900) 0%, var(--mcare-navy-800) 50%, var(--mcare-navy-700) 100%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(201,164,81,0.28), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(201,164,81,0.10), transparent 50%);
}
.hero h1 { color: var(--mcare-white); max-width: 20ch; margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--mcare-gold-500); font-weight: 500; }
.hero__lede {
  max-width: 56ch;
  font-family: var(--ff-serif);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__meta {
  display: flex; gap: 2.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 620px;
  flex-wrap: wrap;
}
.hero__meta-item strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2rem;
  color: var(--mcare-gold-500);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero__meta-item span {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* -------- Page hero (small) -------- */
.page-hero {
  background: linear-gradient(135deg, var(--mcare-navy-900), var(--mcare-navy-700));
  color: var(--mcare-white);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at 80% 0%, rgba(201,164,81,0.18), transparent 50%);
}
.page-hero h1 { color: var(--mcare-white); margin-bottom: 1rem; max-width: 22ch; }
.page-hero p {
  max-width: 60ch;
  font-family: var(--ff-serif);
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  margin: 0;
}
.breadcrumb {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: var(--mcare-gold-400); }
.breadcrumb a:hover { color: var(--mcare-gold-500); }
.breadcrumb .sep { margin: 0 0.5rem; color: rgba(255,255,255,0.4); }

/* -------- Positioning strip -------- */
.pillars {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  background: var(--mcare-white);
  border-bottom: 1px solid var(--mcare-line);
}
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.pillar {
  display: flex; gap: 1rem; align-items: flex-start;
}
.pillar__mark {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  background: var(--mcare-navy-100);
  color: var(--mcare-navy-900);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif); font-weight: 700; font-size: 1.125rem;
}
.pillar h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.pillar p { color: var(--mcare-mute); font-size: 0.9375rem; margin: 0; }
@media (max-width: 900px) { .pillars__grid { grid-template-columns: 1fr; gap: 1.5rem; } }

/* -------- Split section (image + copy) -------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--flip { grid-template-columns: 1fr 1.05fr; }
.split--flip .split__media { order: 2; }
.split__media {
  aspect-ratio: 4 / 5;
  background: var(--mcare-navy-100);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.split__media--gradient {
  background:
    linear-gradient(160deg, var(--mcare-navy-800), var(--mcare-navy-700)),
    radial-gradient(circle at 70% 20%, rgba(201,164,81,0.3), transparent 60%);
}
.split__media-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--mcare-gold-400);
  font-family: var(--ff-serif); font-size: 4rem;
  opacity: 0.25;
}
.split__media-placeholder::before {
  content: ""; position: absolute; inset: 10%;
  border: 1px solid rgba(201,164,81,0.35);
  border-radius: 8px;
}
.split__media svg { width: 40%; color: var(--mcare-gold-500); opacity: 0.7; }
.split__body h2 { margin-bottom: 1.25rem; }
.split__body p { color: var(--mcare-mute); font-size: 1.0625rem; }
.split__list { list-style: none; padding: 0; margin: 1.5rem 0; }
.split__list li {
  padding: 0.65rem 0 0.65rem 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--mcare-line);
  font-size: 0.9375rem;
}
.split__list li:last-child { border-bottom: 0; }
.split__list li::before {
  content: ""; position: absolute; left: 0; top: 1.25rem;
  width: 10px; height: 10px;
  background: var(--mcare-gold-500);
  border-radius: 2px;
  transform: rotate(45deg);
}
@media (max-width: 900px) {
  .split, .split--flip { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .split__media { aspect-ratio: 16 / 10; }
}

/* -------- Stat band -------- */
.stats {
  background: var(--mcare-navy-900);
  color: var(--mcare-white);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  position: relative;
  isolation: isolate;
}
.stats::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at 50% 150%, rgba(201,164,81,0.15), transparent 60%);
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2rem); text-align: center; }
.stat__num {
  display: block;
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--mcare-gold-500);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
@media (max-width: 760px) { .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }

/* -------- Testimonial -------- */
.testimonial {
  background: var(--mcare-white);
  border: 1px solid var(--mcare-line);
  border-radius: var(--radius-card);
  padding: 2.25rem;
  position: relative;
  height: 100%;
  display: flex; flex-direction: column;
}
.testimonial::before {
  content: "“";
  position: absolute; top: 0.25rem; right: 1.5rem;
  font-family: var(--ff-serif);
  font-size: 5rem; line-height: 1;
  color: var(--mcare-gold-400);
  opacity: 0.35;
}
.testimonial p {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--mcare-ink);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.testimonial__who { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--mcare-line); }
.testimonial__who strong { display: block; font-size: 0.9375rem; color: var(--mcare-navy-900); font-weight: 600; margin-bottom: 0.15rem; }
.testimonial__who span { color: var(--mcare-mute); font-size: 0.8125rem; letter-spacing: 0.04em; }

/* -------- CTA band -------- */
.cta-band {
  background: linear-gradient(120deg, var(--mcare-navy-900) 0%, var(--mcare-navy-700) 100%);
  color: var(--mcare-white);
  padding: clamp(4rem, 7vw, 6rem) 0;
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,164,81,0.22), transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(201,164,81,0.08), transparent 50%);
}
.cta-band h2 { color: var(--mcare-white); max-width: 22ch; margin: 0 auto 1rem; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 1.125rem; max-width: 56ch; margin: 0 auto 2rem; }
.cta-band .btn + .btn { margin-left: 0.75rem; }

/* -------- Molecule list (category pages) -------- */
.mol-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--mcare-white);
  border: 1px solid var(--mcare-line);
  border-radius: var(--radius-card);
  overflow: hidden;
  font-size: 0.9375rem;
}
.mol-table thead th {
  background: var(--mcare-navy-900);
  color: var(--mcare-white);
  text-align: left;
  padding: 1rem 1.25rem;
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mol-table tbody td {
  padding: 0.9rem 1.25rem;
  border-top: 1px solid var(--mcare-line);
  vertical-align: top;
}
.mol-table tbody tr:nth-child(even) { background: rgba(230,234,242,0.35); }
.mol-table tbody tr:hover { background: var(--mcare-gold-100); }
.mol-table .mol-name { font-weight: 600; color: var(--mcare-navy-900); }
.mol-table .mol-brand { color: var(--mcare-mute); font-size: 0.875rem; }
.mol-table .mol-form { color: var(--mcare-mute); }
.mol-table .mol-area { color: var(--mcare-navy-700); }

@media (max-width: 720px) {
  .mol-table thead { display: none; }
  .mol-table tbody td { display: block; border-top: 0; padding: 0.35rem 1.25rem; }
  .mol-table tbody tr { display: block; border-top: 1px solid var(--mcare-line); padding: 1rem 0; }
  .mol-table tbody td.mol-name { padding-top: 1rem; }
}

/* -------- Category grid (products index) -------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 1.75rem); }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } }
.cat-card {
  background: var(--mcare-white);
  border: 1px solid var(--mcare-line);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  display: flex; flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--mcare-gold-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--mcare-gold-500); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card h3 { font-size: 1.375rem; margin-bottom: 0.5rem; }
.cat-card p { color: var(--mcare-mute); font-size: 0.9375rem; margin-bottom: 1.25rem; flex: 1; }
.cat-card .cat-meta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mcare-navy-700);
  margin-bottom: 0.5rem;
}
.cat-card .card-link { color: var(--mcare-navy-700); }
.cat-card .card-link:hover { color: var(--mcare-gold-500); }

/* -------- Country grid (markets index) -------- */
.country-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.country-card {
  background: var(--mcare-white);
  border: 1px solid var(--mcare-line);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  transition: all 0.25s var(--ease);
  display: flex; align-items: center; justify-content: space-between;
}
.country-card:hover { border-color: var(--mcare-gold-500); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.country-card h3 { font-size: 1.0625rem; margin: 0; color: var(--mcare-navy-900); }
.country-card span { color: var(--mcare-gold-500); font-size: 1.2rem; }
@media (max-width: 900px) { .country-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .country-grid { grid-template-columns: 1fr; } }

/* -------- Forms -------- */
.form {
  background: var(--mcare-white);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--mcare-line);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; margin-bottom: 1.25rem; }
.form-field label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mcare-navy-900);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--mcare-line);
  border-radius: var(--radius-btn);
  background: var(--mcare-paper);
  font-size: 0.9375rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--mcare-gold-500);
  background: var(--mcare-white);
}
.form-field textarea { min-height: 140px; resize: vertical; font-family: var(--ff-sans); }

/* -------- Misc -------- */
.prose { max-width: 72ch; }
.prose p { margin-bottom: 1.25rem; }
.prose h2 { margin-top: 2.5rem; }
.prose ul li, .prose ol li { margin-bottom: 0.5rem; }

.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: var(--mcare-gold-100);
  color: var(--mcare-navy-900);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge--dark { background: var(--mcare-navy-800); color: var(--mcare-gold-400); }

.alt-bg { background: var(--mcare-navy-100); }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* =====================================================================
   ELEVATION LAYER — 2026-04-18 redesign pass
   Motion primitives, AA contrast fixes, hero backdrop, marquee,
   world-map footprint, FAQ disclosures, reduced-motion kill.
   ===================================================================== */

:root {
  --mcare-gold-600: #A6832E;
  --mcare-gold-700: #7A5E20;        /* AA-safe gold for text on paper */
  --mcare-dur-sm: 180ms;
  --mcare-dur-md: 320ms;
  --mcare-dur-lg: 600ms;
}

/* AA-safe eyebrow on paper (prev. gold-500 on paper = 2.76:1 — failed AA).
   gold-700 on paper ~5.8:1 — passes AA for bold/small text. */
.eyebrow { color: var(--mcare-gold-700); }
.section--gold .eyebrow { color: var(--mcare-navy-800); }

/* -------- Skip link -------- */
.skip-link {
  position: absolute; top: -100px; left: 0;
  padding: 0.75rem 1rem;
  background: var(--mcare-navy-900); color: var(--mcare-white);
  font-weight: 600; font-size: 0.9375rem;
  z-index: 1000; border-radius: 0 0 6px 0;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; color: var(--mcare-white); outline: 2px solid var(--mcare-gold-500); outline-offset: 2px; }

/* Stronger focus ring across all interactives */
a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--mcare-gold-500);
  outline-offset: 2px;
  box-shadow: none;
  border-radius: 2px;
}

/* -------- Right-to-left underline reveal micro-interaction -------- */
.link-reveal {
  position: relative; display: inline-flex; align-items: center; gap: 0.3rem;
}
.link-reveal::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right center;
  transition: transform 0.35s var(--ease);
}
.link-reveal:hover::after,
.link-reveal:focus-visible::after { transform: scaleX(1); transform-origin: left center; }

/* -------- Scroll-reveal primitives (progressive: content visible w/o JS) -------- */
.js [data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity var(--mcare-dur-lg) var(--ease), transform var(--mcare-dur-lg) var(--ease);
  will-change: opacity, transform;
}
.js [data-reveal="fade"]  { transform: none; }
.js [data-reveal="left"]  { transform: translateX(-24px); }
.js [data-reveal="right"] { transform: translateX(24px); }
.js [data-reveal].is-in   { opacity: 1; transform: none; }

.js [data-reveal-stagger] > * {
  opacity: 0; transform: translateY(16px);
  transition: opacity var(--mcare-dur-lg) var(--ease), transform var(--mcare-dur-lg) var(--ease);
}
.js [data-reveal-stagger].is-in > * { opacity: 1; transform: none; }
.js [data-reveal-stagger].is-in > *:nth-child(1) { transition-delay: 0ms; }
.js [data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: 90ms; }
.js [data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: 180ms; }
.js [data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: 270ms; }
.js [data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: 360ms; }
.js [data-reveal-stagger].is-in > *:nth-child(6) { transition-delay: 450ms; }
.js [data-reveal-stagger].is-in > *:nth-child(7) { transition-delay: 540ms; }
.js [data-reveal-stagger].is-in > *:nth-child(8) { transition-delay: 630ms; }

/* -------- Hero elevation: molecule backdrop + origin chip + breathing gradient -------- */
.hero { min-height: min(92vh, 860px); }

.hero__molecules {
  position: absolute; inset: 0; z-index: -1;
  pointer-events: none; opacity: 0.38;
  animation: mcare-breath 18s ease-in-out infinite alternate;
}
.hero__molecules svg { width: 100%; height: 100%; display: block; }
.hero__molecules .mol-dot  { fill: var(--mcare-gold-500); }
.hero__molecules .mol-line { stroke: var(--mcare-gold-500); stroke-width: 0.9; fill: none; opacity: 0.55; }
.hero__molecules .mol-ring { fill: none; stroke: var(--mcare-gold-400); stroke-width: 1.1; opacity: 0.7; }
@keyframes mcare-breath {
  0%   { transform: scale(1)    translate(0, 0);      opacity: 0.30; }
  100% { transform: scale(1.06) translate(-1.5%, -1%); opacity: 0.46; }
}

.hero__origin {
  display: flex; width: fit-content; align-items: center; gap: 0.6rem;
  padding: 0.45rem 0.9rem;
  background: rgba(201,164,81,0.12);
  border: 1px solid rgba(201,164,81,0.35);
  color: var(--mcare-gold-400);
  border-radius: 999px;
  font-family: var(--ff-sans);
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero__origin-dot {
  width: 6px; height: 6px; background: var(--mcare-gold-500); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201,164,81,0.28);
  animation: mcare-pulse 2.4s ease-in-out infinite;
}
@keyframes mcare-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(201,164,81,0.28); }
  50%      { box-shadow: 0 0 0 9px rgba(201,164,81,0); }
}

.hero__hint {
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,164,81,0.8), transparent);
}

/* -------- Stats: tabular-nums for counter -------- */
.stat__num, .counter, .hero__meta-item strong {
  font-variant-numeric: tabular-nums;
}

/* -------- Therapeutic marquee -------- */
.marquee {
  overflow: hidden;
  padding: 1rem 0;
  background: var(--mcare-white);
  border-block: 1px solid var(--mcare-line);
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex; gap: 2.75rem; width: max-content;
  animation: mcare-marquee 48s linear infinite;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--ff-serif);
  font-size: 1.15rem; font-weight: 500;
  color: var(--mcare-navy-900);
  white-space: nowrap;
}
.marquee__item::before {
  content: ""; width: 6px; height: 6px;
  background: var(--mcare-gold-500); border-radius: 50%; flex: 0 0 auto;
}
.marquee__item a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.marquee__item a:hover,
.marquee__item a:focus-visible {
  border-bottom-color: var(--mcare-gold-500);
  color: var(--mcare-navy-900);
}
@keyframes mcare-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* -------- World-map footprint -------- */
.footprint {
  background: var(--mcare-navy-900);
  color: var(--mcare-white);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative; isolation: isolate; overflow: hidden;
}
.footprint::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 20% 85%, rgba(201,164,81,0.10), transparent 55%),
    radial-gradient(ellipse at 80% 0%,  rgba(201,164,81,0.14), transparent 50%);
}
.footprint h2 { color: var(--mcare-white); }
.footprint .eyebrow { color: var(--mcare-gold-400); }
.footprint .section-head p { color: rgba(255,255,255,0.80); }

.footprint__map {
  position: relative;
  aspect-ratio: 2 / 1;
  max-width: 1000px; margin: 2.5rem auto 0;
}
.footprint__map svg { width: 100%; height: 100%; display: block; overflow: visible; }
.footprint__land   { fill: rgba(255,255,255,0.04); stroke: rgba(255,255,255,0.18); stroke-width: 0.4; }
.footprint__origin { fill: var(--mcare-gold-500); }
.footprint__dest   { fill: var(--mcare-gold-400); }
.footprint__label  { fill: rgba(255,255,255,0.82); font-family: var(--ff-sans); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; }
.footprint__label--origin { fill: var(--mcare-gold-500); font-weight: 700; }

.footprint__arc {
  fill: none;
  stroke: var(--mcare-gold-500);
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  opacity: 0.85;
}
.footprint.is-in .footprint__arc { animation: mcare-arc-draw 3.2s var(--ease) forwards; }
.footprint.is-in .footprint__arc--1  { animation-delay: 0.10s; }
.footprint.is-in .footprint__arc--2  { animation-delay: 0.25s; }
.footprint.is-in .footprint__arc--3  { animation-delay: 0.40s; }
.footprint.is-in .footprint__arc--4  { animation-delay: 0.55s; }
.footprint.is-in .footprint__arc--5  { animation-delay: 0.70s; }
.footprint.is-in .footprint__arc--6  { animation-delay: 0.85s; }
.footprint.is-in .footprint__arc--7  { animation-delay: 1.00s; }
.footprint.is-in .footprint__arc--8  { animation-delay: 1.15s; }
.footprint.is-in .footprint__arc--9  { animation-delay: 1.30s; }
.footprint.is-in .footprint__arc--10 { animation-delay: 1.45s; }
.footprint.is-in .footprint__arc--11 { animation-delay: 1.60s; }
.footprint.is-in .footprint__arc--12 { animation-delay: 1.75s; }
@keyframes mcare-arc-draw { to { stroke-dashoffset: 0; } }

.footprint__pulse {
  transform-origin: center;
  animation: mcare-ping 2.8s ease-out infinite;
}
@keyframes mcare-ping {
  0%   { r: 3; opacity: 0.9; }
  70%  { r: 14; opacity: 0; }
  100% { r: 14; opacity: 0; }
}

.footprint__legend {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem 2rem; margin-top: 1.5rem;
  font-size: 0.8125rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.78); text-transform: uppercase;
}
.footprint__legend span::before {
  content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 0.5rem; border-radius: 50%; vertical-align: middle;
}
.footprint__legend .lg-origin::before { background: var(--mcare-gold-500); box-shadow: 0 0 0 2px rgba(201,164,81,0.3); }
.footprint__legend .lg-dest::before { background: var(--mcare-gold-400); opacity: 0.9; }

/* -------- FAQ disclosures (contact page) -------- */
.faq { display: grid; gap: 0.75rem; max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--mcare-white);
  border: 1px solid var(--mcare-line);
  border-radius: var(--radius-card);
  padding: 1.1rem 1.4rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.faq details[open] { border-color: var(--mcare-gold-500); box-shadow: var(--shadow-sm); }
.faq summary {
  font-family: var(--ff-serif); font-weight: 600; font-size: 1.125rem;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  color: var(--mcare-navy-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--ff-sans); font-weight: 400; font-size: 1.5rem;
  color: var(--mcare-gold-500); transition: transform 0.2s var(--ease);
  flex: 0 0 auto;
}
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 0.75rem 0 0; color: var(--mcare-mute); font-size: 0.9375rem; }

/* -------- Logo image (M Care brand JPG, square aspect) -------- */
.site-logo__img { height: 64px; width: auto; display: block; transition: opacity 0.2s var(--ease); border-radius: 6px; }
.site-logo:hover .site-logo__img { opacity: 0.88; }
.site-footer__brand .site-logo__img { height: 84px; }
.site-footer__brand .site-logo:hover .site-logo__img { opacity: 1; }
@media (max-width: 640px) {
  .site-logo__img { height: 52px; }
  .site-footer__brand .site-logo__img { height: 72px; }
}

/* -------- WhatsApp floating CTA (sitewide, bottom-right) -------- */
.wa-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.15rem 0.75rem 0.85rem;
  background: #25D366;
  color: #ffffff;
  font-family: var(--mcare-font-sans, "DM Sans", system-ui, sans-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(10, 63, 35, 0.22), 0 2px 6px rgba(10, 63, 35, 0.14);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
}
.wa-float:hover,
.wa-float:focus-visible {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(10, 63, 35, 0.28), 0 3px 8px rgba(10, 63, 35, 0.18);
  color: #ffffff;
  text-decoration: none;
}
.wa-float:focus-visible { outline: 3px solid var(--mcare-gold-400, #D9B870); outline-offset: 3px; }
.wa-float__icon {
  width: 22px; height: 22px;
  fill: #ffffff;
  flex: 0 0 auto;
}
.wa-float__label {
  white-space: nowrap;
}
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: waFloatPulse 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
  pointer-events: none;
}
@keyframes waFloatPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 640px) {
  .wa-float { padding: 0.7rem 1rem 0.7rem 0.8rem; font-size: 0.875rem; }
  .wa-float__icon { width: 20px; height: 20px; }
}
body.cookie-visible .wa-float { bottom: clamp(88px, 16vw, 110px); }
@media (max-width: 640px) {
  .hero { min-height: min(70vh, 600px); padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero .lede, .hero .hero__lede { font-size: 1rem; }
  main h1 { font-size: clamp(2rem, 7vw, 2.4rem); line-height: 1.15; }
  main h2 { font-size: clamp(1.5rem, 6vw, 1.85rem); }
  table { font-size: 0.85rem; }
  .mol-table th, .mol-table td { width: auto !important; }
}
@media print {
  .wa-float { display: none; }
}

/* -------- Global reduced-motion kill -------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .js [data-reveal-stagger] > * { opacity: 1; transform: none; }
  .footprint__arc { stroke-dashoffset: 0; animation: none !important; }
  .hero__molecules { animation: none; }
  .marquee__track { animation: none; }
}

/* -------- Cookie banner -------- */
.cookie-banner {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 1.5rem;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 900px;
  background: var(--mcare-paper);
  color: var(--mcare-ink);
  border-top: 2px solid var(--mcare-gold-500);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(10,63,35,0.15);
  padding: 1rem 1.25rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--ff-sans);
  opacity: 1;
  transition: opacity 0.3s var(--ease, ease), transform 0.3s var(--ease, ease);
}
.cookie-banner__text { flex: 1 1 auto; min-width: 0; }
.cookie-banner__heading {
  font-family: var(--ff-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--mcare-ink);
  letter-spacing: 0.01em;
}
.cookie-banner__body {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #5A6472;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex: 0 0 auto;
}
.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  border-radius: var(--radius-btn, 8px);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease, ease), color 0.2s var(--ease, ease), border-color 0.2s var(--ease, ease), transform 0.2s var(--ease, ease);
}
.cookie-banner__btn--primary {
  background: var(--mcare-navy-700);
  color: var(--mcare-white);
}
.cookie-banner__btn--primary:hover,
.cookie-banner__btn--primary:focus-visible {
  background: var(--mcare-navy-900);
  color: var(--mcare-white);
  transform: translateY(-1px);
}
.cookie-banner__btn--ghost {
  background: transparent;
  color: var(--mcare-navy-900);
  border-color: var(--mcare-navy-700);
}
.cookie-banner__btn--ghost:hover,
.cookie-banner__btn--ghost:focus-visible {
  background: var(--mcare-navy-900);
  color: var(--mcare-white);
  border-color: var(--mcare-navy-900);
}
.cookie-banner__btn:focus-visible {
  outline: 2px solid var(--mcare-gold-500);
  outline-offset: 2px;
}
.cookie-banner--hiding {
  opacity: 0;
  transform: translate(-50%, 20px);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    bottom: 0.75rem;
    padding: 0.9rem 1rem;
  }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__btn { flex: 1 1 0; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: none; }
  .cookie-banner--hiding { transform: translateX(-50%); }
}

/* -------- Product search -------- */
.product-search {
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}
.product-search__field {
  position: relative;
  display: flex;
  align-items: center;
}
.product-search__icon {
  position: absolute;
  left: 1.1rem;
  width: 20px;
  height: 20px;
  color: #5A6472;
  pointer-events: none;
  flex: 0 0 auto;
}
.product-search__input {
  width: 100%;
  min-height: 56px;
  padding: 0.75rem 1rem 0.75rem 3rem;
  font-family: var(--ff-sans);
  font-size: 1rem;
  color: var(--mcare-ink);
  background: var(--mcare-white);
  border: 1px solid rgba(10,23,38,0.12);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(10,23,38,0.04);
  transition: border-color 0.2s var(--ease, ease), box-shadow 0.2s var(--ease, ease);
}
.product-search__input::placeholder { color: #8A93A0; }
.product-search__input:focus {
  outline: none;
  border-color: var(--mcare-gold-500);
  box-shadow: 0 0 0 3px rgba(201,164,81,0.25);
}
.product-search__count {
  margin-top: 0.75rem;
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  color: #5A6472;
  letter-spacing: 0.01em;
}
.cat-card--hidden { display: none !important; }
.section--hidden { display: none !important; }

.product-search__results {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(10,23,38,0.1);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(10,23,38,0.06);
}
.product-search__results[hidden] { display: none; }
.product-search__results-heading {
  margin: 0 0 0.5rem;
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5A6472;
}
.product-search__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 420px;
  overflow-y: auto;
}
.product-search__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(10,23,38,0.06);
  font-family: var(--ff-sans);
  font-size: 0.9375rem;
}
.product-search__item:last-child { border-bottom: 0; }
.product-search__item-title {
  flex: 1 1 240px;
  color: var(--mcare-ink);
}
.product-search__item-cat {
  flex: 0 0 auto;
  padding: 0.2rem 0.6rem;
  font-size: 0.8125rem;
  color: var(--mcare-navy);
  background: var(--mcare-paper);
  border: 1px solid rgba(10,23,38,0.1);
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}
.product-search__item-cat:hover { background: #F5EBD2; border-color: #D9B870; }
.product-search__item-wa {
  flex: 0 0 auto;
  font-size: 0.8125rem;
  color: #7A5E20;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  white-space: nowrap;
}
.product-search__item-wa:hover { color: var(--mcare-navy); }
.product-search__results-footer {
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(10,23,38,0.12);
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  color: #5A6472;
}
.product-search__results-footer[hidden] { display: none; }
.product-search__results-footer a { color: #7A5E20; }

.product-search__empty {
  margin-top: 1.5rem;
  padding: 2rem 1.5rem;
  background: var(--mcare-paper);
  border: 1px dashed rgba(10,23,38,0.15);
  border-radius: 12px;
  text-align: center;
}
.product-search__empty[hidden] { display: none; }
.product-search__empty p {
  margin: 0 0 1rem;
  font-family: var(--ff-serif);
  font-size: 1.125rem;
  color: var(--mcare-ink);
}
.product-search__empty .btn { margin-top: 0.25rem; }
@media (max-width: 600px) {
  .product-search__input { min-height: 52px; font-size: 0.9375rem; }
}

/* =====================================================================
   Design elevation (2026-04-19)
   Additive layer — brings the static brochure to life with restrained,
   luxury-confident motion. Nothing here replaces earlier rules; every
   selector either adds a new class/attribute or scopes under .js so the
   no-JS baseline is unaffected. All motion respects prefers-reduced-motion
   via the global kill at the top of the reduced-motion block.
   ===================================================================== */

:root {
  --ease-luxe: cubic-bezier(0.16, 1, 0.3, 1);       /* quart-out — soft landing */
  --ease-counter: cubic-bezier(0.25, 0.1, 0.25, 1); /* ease-in-out — counter curve */
  --header-h: 84px;                                  /* sticky header offset */
  --scroll-y: 0;                                     /* wired by JS */
  --scroll-progress: 0;                              /* 0–1 of page */
}

/* -------- Global scroll offset for anchored links + sticky header -------- */
:target,
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* -------- Header: smarter sticky with hide-on-scroll-down + blur -------- */
.site-header {
  transition:
    transform 0.45s var(--ease-luxe),
    background-color 0.3s var(--ease-luxe),
    box-shadow 0.3s var(--ease-luxe),
    border-color 0.3s var(--ease-luxe),
    backdrop-filter 0.3s var(--ease-luxe);
  will-change: transform;
}
.site-header.is-scrolled {
  background: rgba(251, 250, 246, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: rgba(201, 164, 81, 0.45);
  box-shadow: 0 4px 24px rgba(10, 63, 35, 0.06);
}
.site-header.is-hidden { transform: translateY(-100%); }

/* Active-link sliding underline. We render both the traditional active
   ::after (already shipped) and a JS-moved bar. The bar sits under the
   nav row; when it has a width > 0 it shows and glides between links.
   Desktop-only: on mobile, .main-nav is position:fixed as a drawer. */
@media (min-width: 961px) {
  .main-nav {
    position: relative;
  }
}
.main-nav__indicator {
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--mcare-gold-500);
  border-radius: 2px;
  transform: translateX(0);
  transition:
    transform 0.45s var(--ease-luxe),
    width 0.45s var(--ease-luxe),
    opacity 0.25s var(--ease-luxe);
  opacity: 0;
  pointer-events: none;
}
.main-nav.has-indicator .main-nav__indicator { opacity: 1; }
@media (max-width: 960px) {
  .main-nav__indicator { display: none; }
}
/* Defer to the JS indicator when present — hide the legacy ::after */
.main-nav.has-indicator a.is-active::after { display: none; }

/* -------- Page-fade page transitions -------- */
body {
  opacity: 1;
  transition: opacity 0.24s ease-out;
}
body.is-navigating { opacity: 0; }

/* Top scroll progress bar (2px gold, matches brand) */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--mcare-gold-500), var(--mcare-gold-400));
  transform-origin: left center;
  transform: scaleX(var(--scroll-progress, 0));
  z-index: 1000;
  pointer-events: none;
  opacity: 0.9;
}

/* -------- Hero elevation pass (2026-04-19) -------- */

/* Hero H1: animated gold underline draws in on load */
.hero h1 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.15em;
}
.hero h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--mcare-gold-500), var(--mcare-gold-400));
  border-radius: 2px;
  opacity: 0.85;
  transition: width 1.2s var(--ease-luxe) 0.3s;
}
.js .hero h1::after { width: 5.5rem; }
.js .hero.is-ready h1::after { width: min(320px, 42%); }

/* Hero molecule: gentle drift on top of the existing breath animation */
.hero__molecules {
  animation:
    mcare-breath 18s ease-in-out infinite alternate,
    mcare-drift 12s ease-in-out infinite;
}
@keyframes mcare-drift {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50%      { translate: -0.6% -1.2%; rotate: 0.6deg; }
}

/* Ambient radial that shifts slowly — adds depth to the flat gradient */
.hero::after {
  animation: mcare-ambient 22s ease-in-out infinite alternate;
}
@keyframes mcare-ambient {
  0%   { background-position: 75% 20%, 10% 90%; filter: hue-rotate(0deg); }
  100% { background-position: 60% 35%, 25% 75%; filter: hue-rotate(-4deg); }
}

/* Low-opacity grain overlay — gives the hero tooth */
.hero::before {
  box-shadow: inset 0 -1px 0 rgba(201, 164, 81, 0.22);
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.79  0 0 0 0 0.64  0 0 0 0 0.32  0 0 0 1 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
}

/* Scroll-driven hero dim — JS writes --hero-scroll 0-1 onto the hero, and
   marks .is-ready after DOMContentLoaded so the reveal fade can finish first. */
.hero.is-ready [data-reveal].is-in {
  opacity: calc(1 - var(--hero-scroll, 0) * 0.55);
  transform: translate3d(0, calc(var(--hero-scroll, 0) * -24px), 0);
  transition: opacity 0.2s linear, transform 0.2s linear, filter 900ms var(--ease-luxe);
}

/* Parallax helpers for hero molecules + decorative layers */
[data-parallax] {
  will-change: transform;
  transition: transform 80ms linear;
}

/* -------- Button polish — primary/ghost 2.0 -------- */
.btn {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(10, 63, 35, 0.10);
  transition:
    transform 0.38s var(--ease-luxe),
    box-shadow 0.38s var(--ease-luxe),
    background-color 0.38s var(--ease-luxe),
    color 0.38s var(--ease-luxe),
    border-color 0.38s var(--ease-luxe);
}
.btn > * { position: relative; z-index: 1; }

/* Primary — gold shimmer on hover */
.btn--primary {
  background-image: linear-gradient(100deg, var(--mcare-gold-500) 0%, var(--mcare-gold-500) 40%, var(--mcare-gold-400) 55%, var(--mcare-gold-500) 70%, var(--mcare-gold-500) 100%);
  background-size: 240% 100%;
  background-position: 100% 0;
  transition:
    background-position 0.9s var(--ease-luxe),
    transform 0.38s var(--ease-luxe),
    box-shadow 0.38s var(--ease-luxe);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(10, 63, 35, 0.18);
  background-position: 0 0;
}

/* Ghost — fill wipes in from left */
.btn--ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease-luxe);
  z-index: 0;
  opacity: 0.08;
}
.btn--ghost:hover::before,
.btn--ghost:focus-visible::before { transform: scaleX(1); }

/* Dark button — lift + deepen shadow */
.btn--dark:hover,
.btn--dark:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(10, 63, 35, 0.22);
}

/* Arrow glide */
.btn:hover .arrow,
.btn:focus-visible .arrow { transform: translateX(4px); }

/* -------- Card polish 2.0 -------- */
.card,
.cat-card,
.testimonial,
.country-card {
  transition:
    transform 0.5s var(--ease-luxe),
    box-shadow 0.5s var(--ease-luxe),
    border-color 0.5s var(--ease-luxe);
  box-shadow: 0 4px 20px rgba(10, 63, 35, 0.06);
}
.card::before,
.testimonial::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--mcare-gold-500);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease-luxe);
  border-radius: 2px 2px 0 0;
}
.card { position: relative; overflow: hidden; }
.card:hover,
.card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(10, 63, 35, 0.18);
  border-color: var(--mcare-gold-500);
}
.card:hover::before,
.card:focus-within::before { transform: scaleX(1); }

.testimonial { overflow: hidden; }
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(10, 63, 35, 0.16);
  border-color: var(--mcare-gold-500);
}
.testimonial:hover::after { transform: scaleX(1); }

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(10, 63, 35, 0.18);
}

.country-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(10, 63, 35, 0.12);
}

/* Optional tilt, applied by JS via --tilt-x / --tilt-y */
[data-tilt] {
  transform-style: preserve-3d;
  transform:
    perspective(900px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translateY(var(--tilt-translate, 0));
  transition: transform 0.2s var(--ease-luxe);
}

/* -------- Scroll reveal 2.0 -------- */
.js [data-reveal] {
  transition:
    opacity 900ms var(--ease-luxe),
    transform 900ms var(--ease-luxe),
    filter 900ms var(--ease-luxe);
  transform: translateY(32px);
}
.js [data-reveal-blur] {
  filter: blur(8px);
  opacity: 0;
}
.js [data-reveal-blur].is-in {
  filter: blur(0);
  opacity: 1;
}

/* Stagger refinement — 90ms step, slightly larger distance */
.js [data-reveal-stagger] > * {
  transform: translateY(24px);
  transition:
    opacity 900ms var(--ease-luxe),
    transform 900ms var(--ease-luxe);
}
.js [data-reveal-stagger].is-in > *:nth-child(1)  { transition-delay: 0ms; }
.js [data-reveal-stagger].is-in > *:nth-child(2)  { transition-delay: 90ms; }
.js [data-reveal-stagger].is-in > *:nth-child(3)  { transition-delay: 180ms; }
.js [data-reveal-stagger].is-in > *:nth-child(4)  { transition-delay: 270ms; }
.js [data-reveal-stagger].is-in > *:nth-child(5)  { transition-delay: 360ms; }
.js [data-reveal-stagger].is-in > *:nth-child(6)  { transition-delay: 450ms; }
.js [data-reveal-stagger].is-in > *:nth-child(7)  { transition-delay: 540ms; }
.js [data-reveal-stagger].is-in > *:nth-child(8)  { transition-delay: 630ms; }
.js [data-reveal-stagger].is-in > *:nth-child(9)  { transition-delay: 720ms; }
.js [data-reveal-stagger].is-in > *:nth-child(10) { transition-delay: 810ms; }

/* -------- Section transitions — thin diagonal gold ribbon -------- */
.section--tint {
  background:
    linear-gradient(180deg, var(--mcare-navy-100) 0%, #EEF6F0 100%);
  position: relative;
}
.section--tint::before,
.section--tint::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 81, 0.35), transparent);
  pointer-events: none;
}
.section--tint::before { top: 0; }
.section--tint::after  { bottom: 0; }

.section--dark::after,
.stats::after,
.cta-band::after,
.footprint::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 81, 0.55), transparent);
  z-index: 0;
  pointer-events: none;
}

/* -------- Typography rhythm — lede + section-head pip + drop cap -------- */
.lede {
  color: #2F3947;
  letter-spacing: -0.005em;
  max-width: 64ch;
}
.hero .lede,
.hero .hero__lede { color: rgba(255,255,255,0.88); }

/* H2 gold pip — applies to section-heads that don't already have an eyebrow.
   Eyebrow owners keep their existing branding; loose H2s get this thin rule. */
.section-head > h2:first-child::before,
.prose h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--mcare-gold-500);
  margin: 0 auto 1rem;
  border-radius: 2px;
  opacity: 0.85;
}
.prose h2::before { margin-left: 0; margin-right: 0; }

/* Drop cap on long-form sections — applied via .prose--drop */
.prose--drop > p:first-of-type::first-letter {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 3.6em;
  float: left;
  line-height: 0.92;
  padding: 0.1em 0.12em 0 0;
  color: var(--mcare-navy-900);
  background-image: linear-gradient(180deg, var(--mcare-navy-900), var(--mcare-navy-700));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* -------- Form field polish: floating focus ring + smoother transition -------- */
.form-field input,
.form-field select,
.form-field textarea {
  transition:
    border-color 0.25s var(--ease-luxe),
    box-shadow 0.25s var(--ease-luxe),
    background 0.25s var(--ease-luxe);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  box-shadow: 0 0 0 3px rgba(201, 164, 81, 0.25);
  transform: translateY(-1px);
}

/* -------- Mobile nav drawer refinement (additive) -------- */
@media (max-width: 960px) {
  .main-nav {
    background: rgba(251, 250, 246, 0.96);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    box-shadow: -18px 0 40px rgba(10, 63, 35, 0.10);
    transition: transform 0.42s var(--ease-luxe);
  }
  .main-nav a {
    opacity: 0;
    transform: translateX(20px);
    transition:
      opacity 0.35s var(--ease-luxe),
      transform 0.35s var(--ease-luxe);
  }
  .main-nav.is-open a { opacity: 1; transform: none; }
  .main-nav.is-open a:nth-child(1) { transition-delay: 60ms; }
  .main-nav.is-open a:nth-child(2) { transition-delay: 120ms; }
  .main-nav.is-open a:nth-child(3) { transition-delay: 180ms; }
  .main-nav.is-open a:nth-child(4) { transition-delay: 240ms; }
  .main-nav.is-open a:nth-child(5) { transition-delay: 300ms; }
  .main-nav.is-open a:nth-child(6) { transition-delay: 360ms; }
}

/* -------- WhatsApp float: idle breathe -------- */
.wa-float.is-idle {
  animation: mcare-wa-breathe 4s ease-in-out infinite;
}
@keyframes mcare-wa-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
.wa-float.is-idle:hover { animation-play-state: paused; }

/* -------- Footer — gentle reveal on enter -------- */
.site-footer {
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 81, 0.45), transparent);
}

/* -------- Reduced-motion backstop for the new layer -------- */
@media (prefers-reduced-motion: reduce) {
  .hero h1::after { transition: none; width: 5.5rem !important; }
  .hero__molecules { animation: none !important; }
  .hero::after { animation: none !important; }
  .hero.is-ready [data-reveal].is-in {
    opacity: 1 !important;
    transform: none !important;
  }
  .wa-float.is-idle { animation: none !important; }
  .scroll-progress { display: none; }
  .site-header { transition: none !important; }
  body.is-navigating { opacity: 1 !important; }
  [data-tilt] { transform: none !important; transition: none !important; }
  .js [data-reveal-blur] { filter: none !important; opacity: 1 !important; }
}

/* =====================================================================
   Contrast/legibility overrides (WCAG AA)
   Reason: gold-500 (#C9A451) on paper/white measures 2.26:1 / 2.36:1 and
   fails AA for both body and large text. Everywhere gold-500 is used as
   foreground text on a light surface, switch to gold-700 (#7A5E20,
   ~5.8:1 on paper). Gold-500 as background, border, underline or dot
   indicator is kept — contrast rules apply to readable text only.
   ===================================================================== */

/* Default link hover on light surfaces — was gold-500 (fail). */
a:hover { color: var(--mcare-gold-700); }

/* Card link hovers sit on white/paper card bodies. */
.card .card-link:hover,
.cat-card .card-link:hover,
.country-card .card-link:hover { color: var(--mcare-gold-700); }

/* Country-card arrow "▸" is persistent (non-hover) text on a white card. */
.country-card span { color: var(--mcare-gold-700); }

/* FAQ chevron icon sits on paper. */
.faq details > summary::after,
.faq summary::after { color: var(--mcare-gold-700); }

/* Re-assert dark-surface overrides so the global rule above doesn't
   downgrade links that currently use gold-500 on navy-900 (passes AA). */
.breadcrumb a:hover,
.page-hero a:hover,
.hero a:hover,
.stats a:hover,
.cta-band a:hover,
.site-footer a:hover { color: var(--mcare-gold-400); }

/* =====================================================================
   INSIGHTS / EVENTS / ARTICLE — added 2026-04-20
   Hub, event recaps, blog cards, magazine-style article layout.
   All tokens inherit from :root above; no new font loads.
   ===================================================================== */

/* --- Insights hub: two large tiles --- */
.insights-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 860px) { .insights-grid { grid-template-columns: 1fr; } }

.insights-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: inherit;
  border: 1px solid #E6ECE7;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s;
  box-shadow: 0 1px 2px rgba(10,63,35,0.04);
}
.insights-tile:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(10,63,35,0.14); }
.insights-tile__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.insights-tile__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s ease; }
.insights-tile:hover .insights-tile__media img { transform: scale(1.04); }
.insights-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,63,35,0) 0%, rgba(10,63,35,0.55) 100%);
}
.insights-tile__body { padding: 28px 32px 32px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.insights-tile__body h2 { margin: 0; font-size: 2rem; line-height: 1.2; }
.insights-tile__body p { color: #3A4A41; margin: 0; }
.insights-tile__cta {
  margin-top: auto;
  color: var(--mcare-navy-700);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: .35em;
}
.insights-tile__cta .arrow { transition: transform .25s; }
.insights-tile:hover .insights-tile__cta .arrow { transform: translateX(4px); }

.insights-tile--blog { flex-direction: row; align-items: stretch; }
.insights-tile--blog .insights-tile__body { order: 1; flex: 1.2; }
.insights-tile--blog .insights-tile__decor { order: 2; flex: 1; position: relative; min-height: 100%; background: var(--mcare-navy-900); }
.insights-tile--blog .insights-tile__decor svg { position: absolute; inset: 0; width: 100%; height: 100%; }
@media (max-width: 860px) {
  .insights-tile--blog { flex-direction: column; }
  .insights-tile--blog .insights-tile__decor { min-height: 200px; }
}

/* --- Insight recap card (small) --- */
.insight-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid #E6ECE7;
  box-shadow: 0 1px 2px rgba(10,63,35,0.04);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.insight-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(10,63,35,0.12); }
.insight-card__link { display: flex; flex-direction: column; text-decoration: none; color: inherit; height: 100%; }
.insight-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--mcare-navy-100); }
.insight-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.insight-card__media--pattern {
  display: flex; align-items: center; justify-content: center;
  background-size: cover; color: var(--mcare-gold-400);
}
.insight-card__media--pattern-a {
  background: radial-gradient(circle at 20% 20%, #15303F 0%, #0A3F23 60%, #0A1733 100%);
}
.insight-card__media--pattern-b {
  background: radial-gradient(circle at 80% 20%, #1B7A3C 0%, #0F5B2E 60%, #062016 100%);
}
.insight-card__media--pattern-c {
  background: linear-gradient(135deg, #0A3F23 0%, #0F5B2E 50%, #1B7A3C 100%);
}
.insight-card__glyph {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem; font-weight: 500;
  color: var(--mcare-gold-400); opacity: .55;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.insight-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.insight-card__tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mcare-gold-700);
  background: var(--mcare-gold-100);
  padding: 4px 10px; border-radius: 99px; align-self: flex-start;
}
.insight-card__body h3 { margin: 0; font-size: 1.3rem; line-height: 1.3; color: var(--mcare-navy-900); }
.insight-card__body p { margin: 0; color: #3A4A41; font-size: 0.95rem; }
.insight-card__meta {
  margin-top: auto;
  font-size: 0.82rem; color: var(--mcare-navy-700); font-weight: 500;
}

/* --- Events hub feature card --- */
.event-feature {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid #E6ECE7;
  box-shadow: 0 2px 4px rgba(10,63,35,0.05);
  transition: box-shadow .35s, transform .35s;
}
.event-feature:hover { box-shadow: 0 22px 50px rgba(10,63,35,0.15); transform: translateY(-3px); }
.event-feature__link {
  display: grid; grid-template-columns: 1.1fr 1fr;
  text-decoration: none; color: inherit;
}
@media (max-width: 860px) { .event-feature__link { grid-template-columns: 1fr; } }
.event-feature__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--mcare-navy-900); }
.event-feature__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s ease; }
.event-feature:hover .event-feature__media img { transform: scale(1.03); }
.event-feature__badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--mcare-gold-500); color: var(--mcare-navy-900);
  padding: 6px 14px; border-radius: 99px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.event-feature__body { padding: 36px 40px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.event-feature__body h2 { margin: 0; font-size: 2.1rem; line-height: 1.2; }
.event-feature__meta {
  display: grid; grid-template-columns: repeat(3, auto); gap: 18px 28px;
  margin: 10px 0 4px; padding: 16px 0; border-top: 1px solid #E6ECE7; border-bottom: 1px solid #E6ECE7;
}
.event-feature__meta > div { display: flex; flex-direction: column; gap: 2px; }
.event-feature__meta dt { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--mcare-navy-700); }
.event-feature__meta dd { margin: 0; font-weight: 600; color: var(--mcare-navy-900); }
.event-feature__cta {
  margin-top: 6px;
  color: var(--mcare-gold-700);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: .35em;
}
@media (max-width: 540px) { .event-feature__meta { grid-template-columns: 1fr 1fr; } }

/* --- Event grid (secondary cards) --- */
.event-grid { display: grid; gap: 28px; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 780px) { .event-grid { grid-template-columns: 1fr; } }

.event-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid #E6ECE7;
  box-shadow: 0 1px 2px rgba(10,63,35,0.04);
  transition: transform .3s, box-shadow .3s;
}
.event-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(10,63,35,0.13); }
.event-card__link { display: flex; flex-direction: column; text-decoration: none; color: inherit; height: 100%; }
.event-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--mcare-navy-900); }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s ease; }
.event-card:hover .event-card__media img { transform: scale(1.04); }
.event-card__year {
  position: absolute; bottom: 16px; left: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--mcare-paper);
  background: rgba(10,63,35,0.75);
  padding: 4px 16px; border-radius: 8px;
  letter-spacing: .04em;
}
.event-card__body { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.event-card__body h3 { margin: 0; font-size: 1.45rem; line-height: 1.25; }
.event-card__body p { margin: 0; color: #3A4A41; }
.event-card__cta { margin-top: auto; color: var(--mcare-gold-700); font-weight: 600; display: inline-flex; align-items: center; gap: .35em; }

/* --- Next-show callout --- */
.next-show {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 0; border-radius: 20px; overflow: hidden;
  border: 1px solid #E6ECE7;
  background: #fff;
  box-shadow: 0 2px 6px rgba(10,63,35,0.06);
}
@media (max-width: 780px) { .next-show { grid-template-columns: 1fr; } }
.next-show__body { padding: 40px 44px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.next-show__body h2 { margin: 0; font-size: 2rem; line-height: 1.2; }
.next-show__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.next-show__pane {
  background: linear-gradient(160deg, var(--mcare-navy-900) 0%, var(--mcare-navy-800) 60%, var(--mcare-navy-700) 100%);
  color: #fff; padding: 44px; display: flex; flex-direction: column; gap: 18px; justify-content: center;
  position: relative; overflow: hidden;
}
.next-show__pane::after {
  content: ""; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,184,112,0.16) 0%, transparent 70%); pointer-events: none;
}
.next-show__date { display: flex; align-items: baseline; gap: 16px; }
.next-show__month {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 500;
  color: var(--mcare-gold-400); letter-spacing: .14em;
}
.next-show__day {
  font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 600;
  line-height: 1; color: #fff;
}
.next-show__venue { font-weight: 600; font-size: 1.1rem; }
.next-show__tag {
  font-size: 0.85rem; color: var(--mcare-gold-400);
  padding-top: 12px; border-top: 1px solid rgba(217,184,112,0.25);
}

/* --- Event hero (full-bleed photo, dark overlay) --- */
.event-hero {
  position: relative;
  min-height: 520px;
  padding: 120px 0 60px;
  background-color: var(--mcare-navy-900);
  background-image: linear-gradient(180deg, rgba(10,63,35,0.55) 0%, rgba(10,63,35,0.82) 100%), var(--event-hero-img);
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.event-hero__overlay { display: none; }
.event-hero__inner { position: relative; z-index: 2; max-width: 980px; }
.event-hero__eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mcare-gold-400);
  margin: 20px 0 16px;
}
.event-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.1;
  margin: 0 0 20px;
}
.event-hero__lede { font-size: 1.15rem; line-height: 1.55; color: #E6ECE7; max-width: 740px; }
.event-hero__meta {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 36px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.event-hero__meta > div { display: flex; flex-direction: column; gap: 2px; }
.event-hero__meta dt { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mcare-gold-400); font-weight: 700; }
.event-hero__meta dd { margin: 0; color: #fff; font-weight: 600; font-size: 1rem; }
@media (max-width: 760px) { .event-hero__meta { grid-template-columns: 1fr 1fr; gap: 18px; } .event-hero { min-height: 460px; } }

.breadcrumb--on-dark { color: rgba(255,255,255,0.7); }
.breadcrumb--on-dark a { color: var(--mcare-gold-400); }
.breadcrumb--on-dark .sep { color: rgba(255,255,255,0.35); }

/* --- Event article body (two-column: body + side card) --- */
.event-article { padding: 64px 0; }
.event-article__wrap {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px;
}
@media (max-width: 980px) { .event-article__wrap { grid-template-columns: 1fr; } }
.event-article__body { max-width: 720px; }
.event-article__body h2 {
  font-size: 1.8rem; margin: 40px 0 16px; color: var(--mcare-navy-900);
}
.event-article__body p { font-size: 1.05rem; line-height: 1.7; margin: 0 0 18px; color: #1E2B24; }
.event-article__lede {
  font-size: 1.2rem !important; line-height: 1.6 !important;
  color: var(--mcare-navy-900) !important; font-weight: 500;
  border-left: 3px solid var(--mcare-gold-500); padding-left: 20px;
  margin-bottom: 30px !important;
}
.event-article__list, .event-article__numbered { padding-left: 22px; margin: 0 0 22px; }
.event-article__list li, .event-article__numbered li { margin-bottom: 10px; line-height: 1.65; font-size: 1rem; color: #1E2B24; }
.event-article__numbered li::marker { font-weight: 700; color: var(--mcare-navy-700); }

.event-article__side { display: flex; flex-direction: column; gap: 20px; }
.event-article__side-card {
  background: var(--mcare-navy-900); color: #fff;
  padding: 26px 28px; border-radius: 14px;
  position: sticky; top: 100px;
}
.event-article__side-card h3 {
  color: #fff; margin: 6px 0 10px; font-size: 1.3rem;
}
.event-article__side-card p { color: #E6ECE7; margin: 0 0 16px; font-size: 0.95rem; }
.event-article__side-card .eyebrow { color: var(--mcare-gold-400); }
.event-article__side-card--quiet {
  background: var(--mcare-navy-100); color: var(--mcare-ink); position: static;
}
.event-article__side-card--quiet h3 { color: var(--mcare-navy-900); }
.event-article__side-card--quiet p { color: var(--mcare-ink); }
.event-article__side-card--quiet .eyebrow { color: var(--mcare-navy-700); }

/* --- Photo gallery --- */
.photo-gallery {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.photo-gallery__item {
  margin: 0; background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid #E6ECE7;
  box-shadow: 0 1px 2px rgba(10,63,35,0.04);
  transition: transform .3s, box-shadow .3s;
}
.photo-gallery__item:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(10,63,35,0.12); }
.photo-gallery__item img {
  width: 100%; height: 320px; object-fit: cover; display: block;
  transition: transform .8s ease;
}
.photo-gallery__item:hover img { transform: scale(1.05); }
.photo-gallery__item figcaption {
  padding: 14px 18px 18px;
  font-size: 0.9rem; color: var(--mcare-navy-700); font-weight: 500;
  line-height: 1.5;
}

/* --- Blog feature + cards --- */
.blog-feature {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid #E6ECE7;
  box-shadow: 0 2px 4px rgba(10,63,35,0.05);
  transition: box-shadow .35s, transform .35s;
}
.blog-feature:hover { box-shadow: 0 22px 50px rgba(10,63,35,0.15); transform: translateY(-3px); }
.blog-feature__link { display: grid; grid-template-columns: 1fr 1.2fr; text-decoration: none; color: inherit; }
@media (max-width: 860px) { .blog-feature__link { grid-template-columns: 1fr; } }
.blog-feature__media {
  background: var(--mcare-navy-900); min-height: 340px;
  display: flex; align-items: center; justify-content: center;
}
.blog-feature__pattern {
  width: 100%; height: 100%; min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-feature__pattern--a {
  background: radial-gradient(circle at 30% 30%, #15303F 0%, #0A3F23 60%, #062016 100%);
}
.blog-feature__glyph {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10rem; font-weight: 500;
  color: var(--mcare-gold-400); opacity: .55;
  text-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.blog-feature__body { padding: 40px 44px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.blog-feature__body h2 { margin: 0; font-size: 2rem; line-height: 1.2; }
.blog-feature__lede { font-size: 1.05rem; color: #3A4A41; line-height: 1.6; margin: 0; }
.blog-feature__tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mcare-gold-700);
  background: var(--mcare-gold-100);
  padding: 5px 12px; border-radius: 99px; align-self: flex-start;
}
.blog-feature__meta { font-size: 0.85rem; color: var(--mcare-navy-700); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.blog-feature__meta .dot { color: var(--mcare-gold-700); font-weight: 700; }
.blog-feature__cta { margin-top: 4px; color: var(--mcare-gold-700); font-weight: 600; display: inline-flex; align-items: center; gap: .35em; }

.blog-grid { display: grid; gap: 28px; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 780px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid #E6ECE7;
  box-shadow: 0 1px 2px rgba(10,63,35,0.04);
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(10,63,35,0.13); }
.blog-card__link { display: flex; flex-direction: column; text-decoration: none; color: inherit; height: 100%; }
.blog-card__media { aspect-ratio: 16 / 9; background: var(--mcare-navy-900); }
.blog-card__pattern {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.blog-card__pattern--a { background: radial-gradient(circle at 20% 20%, #15303F 0%, #0A3F23 60%, #062016 100%); }
.blog-card__pattern--b { background: radial-gradient(circle at 80% 20%, #1B7A3C 0%, #0F5B2E 60%, #062016 100%); }
.blog-card__pattern--c { background: linear-gradient(135deg, #0A3F23 0%, #0F5B2E 50%, #1B7A3C 100%); }
.blog-card__glyph {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 500;
  color: var(--mcare-gold-400); opacity: .55;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.blog-card__body { padding: 22px 26px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card__body h3 { margin: 0; font-size: 1.3rem; line-height: 1.3; }
.blog-card__body p { margin: 0; color: #3A4A41; font-size: 0.95rem; }
.blog-card__tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mcare-gold-700);
  background: var(--mcare-gold-100);
  padding: 4px 10px; border-radius: 99px; align-self: flex-start;
}
.blog-card__meta { margin-top: auto; font-size: 0.82rem; color: var(--mcare-navy-700); font-weight: 500; display: flex; gap: 6px; }
.blog-card__meta .dot { color: var(--mcare-gold-700); }

/* --- Article page (magazine-style body) --- */
.article-page { padding-bottom: 40px; }

.article-hero {
  padding: 90px 0 60px;
  color: #fff;
  position: relative;
}
.article-hero--pattern-a { background: radial-gradient(circle at 20% 20%, #15303F 0%, #0A3F23 60%, #062016 100%); }
.article-hero--pattern-b { background: radial-gradient(circle at 80% 30%, #1B7A3C 0%, #0F5B2E 55%, #062016 100%); }
.article-hero--pattern-c { background: linear-gradient(135deg, #062016 0%, #0A3F23 45%, #0F5B2E 100%); }
.article-hero__inner { max-width: 880px; }
.article-hero__eyebrow {
  display: inline-block;
  font-size: .76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mcare-gold-400);
  margin: 18px 0 14px;
}
.article-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
  margin: 0 0 20px;
  font-family: 'Cormorant Garamond', serif;
}
.article-hero__lede { font-size: 1.15rem; line-height: 1.55; color: #E6ECE7; max-width: 720px; margin-bottom: 22px; }
.article-hero__chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.article-hero__chips span {
  background: rgba(217,184,112,0.15);
  color: var(--mcare-gold-400);
  border: 1px solid rgba(217,184,112,0.35);
  padding: 5px 12px; border-radius: 99px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: .04em;
}

.article-wrap {
  display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 64px;
  padding: 56px 0 40px;
}
@media (max-width: 980px) { .article-wrap { grid-template-columns: 1fr; gap: 30px; } }

.article-toc {
  position: sticky; top: 100px; align-self: start;
  padding: 20px 22px;
  background: #fff; border: 1px solid #E6ECE7; border-radius: 12px;
  max-height: calc(100vh - 120px); overflow: auto;
}
.article-toc__label {
  display: block;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--mcare-navy-700); margin-bottom: 12px;
}
.article-toc ol { margin: 0; padding-left: 22px; font-size: 0.92rem; }
.article-toc ol li { margin-bottom: 8px; line-height: 1.4; }
.article-toc a { color: var(--mcare-ink); text-decoration: none; }
.article-toc a:hover { color: var(--mcare-gold-700); }
@media (max-width: 980px) {
  .article-toc { position: static; max-height: none; }
}

.article-body { max-width: 720px; }
.article-body h2 {
  font-size: 1.85rem; margin: 48px 0 16px; color: var(--mcare-navy-900);
  scroll-margin-top: 80px;
}
.article-body h3 { font-size: 1.35rem; margin: 28px 0 12px; color: var(--mcare-navy-900); }
.article-body p { font-size: 1.05rem; line-height: 1.75; margin: 0 0 18px; color: #1E2B24; }
.article-body .article-lede {
  font-size: 1.25rem; line-height: 1.6; font-weight: 500;
  color: var(--mcare-navy-900);
  border-left: 3px solid var(--mcare-gold-500);
  padding-left: 22px; margin-bottom: 32px;
}
.article-body .article-lede::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem; float: left; line-height: 0.9;
  padding: 8px 10px 0 0; color: var(--mcare-navy-700); font-weight: 600;
}
.article-ul, .article-ol { padding-left: 24px; margin: 0 0 24px; }
.article-ul li, .article-ol li { margin-bottom: 10px; line-height: 1.7; font-size: 1rem; color: #1E2B24; }
.article-ol li::marker { font-weight: 700; color: var(--mcare-navy-700); }

.article-faq {
  background: #fff; border: 1px solid #E6ECE7; border-radius: 10px;
  padding: 16px 22px; margin: 10px 0;
}
.article-faq summary {
  cursor: pointer; font-weight: 600; color: var(--mcare-navy-900);
  font-size: 1.02rem;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.article-faq summary::-webkit-details-marker { display: none; }
.article-faq summary::after {
  content: "+"; color: var(--mcare-gold-700);
  font-size: 1.4rem; font-weight: 400;
  transition: transform .25s;
}
.article-faq[open] summary::after { transform: rotate(45deg); }
.article-faq p { margin: 14px 0 4px; color: #1E2B24; font-size: 0.98rem; line-height: 1.65; }

.article-cta {
  margin-top: 48px; padding: 32px 36px;
  background: linear-gradient(140deg, var(--mcare-navy-100) 0%, #F0F7F2 100%);
  border: 1px solid #CDE0D3;
  border-radius: 16px;
}
.article-cta h3 { margin: 8px 0 12px; color: var(--mcare-navy-900); font-size: 1.6rem; }
.article-cta p { margin: 0 0 20px; color: var(--mcare-ink); }
.article-cta__row { display: flex; gap: 12px; flex-wrap: wrap; }

