@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ── Variables ── */
:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --navy-900: #0A192F;
  --navy-800: #112240;
  --navy-700: #1A365D;
  --navy-100: #CCD6E5;

  --accent:      #8B2332;
  --accent-dark: #6E1C28;
  --accent-light:#FDF2F3;

  --bg:          #FCFBF9;
  --warm-100:    #F5F5F0;
  --warm-200:    #EBEBE6;
  --warm-300:    #D4D4CF;

  --text:        #4A4A45;
  --text-light:  #6B6B66;
  --border:      #EBEBE6;

  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 16px;

  --shadow-sm: 0 1px 3px rgba(10,25,47,0.04);
  --shadow-md: 0 4px 16px rgba(10,25,47,0.06);
  --shadow-lg: 0 12px 40px rgba(10,25,47,0.08);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-family: var(--font-sans);
  font-size: 16px;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { min-height: 100vh; }

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, h5 { font-family: var(--font-serif); color: var(--navy-900); line-height: 1.2; }

/* ── Layout helpers ── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section {
  padding: 96px 24px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-xs);
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy-900);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-xs);
  border: 1.5px solid var(--warm-300);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--navy-900); }

/* ── Utility strip ── */
.util-strip {
  background: var(--navy-900);
  color: var(--navy-100);
  font-size: 13px;
  padding: 7px 24px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
}
.util-strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.util-strip a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy-100);
  transition: color 0.2s;
}
.util-strip a:hover { color: white; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 34px; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(252,251,249,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.navbar.scrolled { background: rgba(252,251,249,0.97); }
.navbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.navbar-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--navy-900);
}
.navbar-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--navy-900); }

.nav-cta { font-size: 13px; padding: 9px 18px; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
}

/* page offset for fixed nav */
.nav-spacer { height: 98px; }

/* ── Mobile menu ── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,25,47,0.15);
  backdrop-filter: blur(4px);
  z-index: 1002;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 88%;
  max-width: 360px;
  background: white;
  z-index: 1003;
  padding: 80px 24px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0,0,0,0.06);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-overlay.open { display: block; }

.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--navy-900);
}
.mobile-nav-links { flex: 1; display: flex; flex-direction: column; }
.mobile-nav-links a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-900);
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px;
  margin-top: 20px;
}
.mobile-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  justify-content: center;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 24px 100px;
  background: var(--bg);
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
}
.hero h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-900);
}
.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  max-width: 480px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary { font-size: 16px; padding: 16px 32px; }

.hero-image-desktop { display: block; }
.hero-image-mobile  { display: none; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden; }

.hero-photo-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── Stats strip ── */
.stats-strip {
  background: var(--navy-900);
  padding: 56px 24px;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 600;
  color: white;
  line-height: 1.1;
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px;
  color: var(--navy-100);
  line-height: 1.4;
}

/* ── Leadership card ── */
.leadership-card {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 40px 44px;
  background: var(--warm-100);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.leadership-photo {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.leadership-photo img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.leadership-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.leadership-title { font-size: 15px; color: var(--text-light); margin-bottom: 14px; }
.leadership-bio { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 16px; max-width: 560px; }
.leadership-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

/* ── Health Library cards ── */
.hl-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.hl-header h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 600; margin-bottom: 16px; }
.hl-header p { font-size: 17px; color: var(--text); line-height: 1.75; }
.hl-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-top: 8px;
  white-space: nowrap;
}
.hl-view-all:hover { color: var(--navy-900); }

.hl-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 48px;
  background: var(--border);
}
.hl-card {
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  background: white;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.hl-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(10,25,47,0.08); }
.hl-card.dark { background: var(--navy-900); }
.hl-card.dark:hover { transform: none; box-shadow: none; }

.hl-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 4px;
  background: var(--warm-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.hl-card.dark .hl-card-icon { background: rgba(255,255,255,0.1); }

.hl-card h3 { font-size: 20px; font-weight: 600; color: var(--navy-900); margin-bottom: 14px; line-height: 1.3; }
.hl-card.dark h3 { color: white; }

.hl-card p { font-size: 15px; color: var(--text); line-height: 1.7; flex: 1; margin-bottom: 28px; }
.hl-card.dark p { color: rgba(255,255,255,0.7); }

.hl-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent);
}
.hl-card.dark .hl-card-cta { color: rgba(255,255,255,0.5); }

.hl-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--border);
}
.hl-card-wide {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 28px;
  background: white;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.hl-card-wide:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(10,25,47,0.06); }
.hl-card-wide-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: var(--warm-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.hl-card-wide h3 { font-size: 19px; font-weight: 600; color: var(--navy-900); margin-bottom: 8px; }
.hl-card-wide p { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 16px; }

/* ── Patient Stories ── */
.stories-banner {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.stories-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.stories-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,47,0.94) 0%, rgba(10,25,47,0.5) 60%, rgba(10,25,47,0.25) 100%);
}
.stories-content {
  position: relative;
  z-index: 1;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: end;
  width: 100%;
}
.stories-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 20px;
}
.stories-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 500;
  font-style: italic;
  color: white;
  line-height: 1.45;
}
.stories-desc { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 28px; }
.stories-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── Contact CTA ── */
.contact-cta { text-align: center; max-width: 540px; margin: 0 auto; }
.contact-cta h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 600; margin-bottom: 20px; }
.contact-cta p { font-size: 18px; color: var(--text); line-height: 1.75; margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-buttons .btn-primary,
.cta-buttons .btn-secondary { font-size: 16px; padding: 16px 32px; }
.contact-note { font-size: 15px; color: var(--text-light); }
.contact-note a { font-weight: 600; color: var(--navy-900); }

/* ── Footer ── */
footer { background: var(--navy-900); color: var(--navy-100); }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 64px 24px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: white; display: block; margin-bottom: 16px; }
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact-item:hover { color: white; }
.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-socials { display: flex; gap: 10px; margin-bottom: 24px; }
.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.footer-social-btn:hover { border-color: rgba(255,255,255,0.4); color: white; }
.footer-apt-btn {
  display: block;
  padding: 10px 20px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-xs);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s;
}
.footer-apt-btn:hover { background: var(--accent-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── Health Library Hub ── */
.hl-hub-hero { background: var(--navy-900); padding: 80px 24px 96px; text-align: center; }
.hl-hub-hero .eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.hl-hub-hero h1 { font-size: clamp(30px, 5vw, 48px); font-weight: 600; color: white; margin-bottom: 20px; max-width: 640px; margin-left: auto; margin-right: auto; }
.hl-hub-hero p { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto; line-height: 1.7; }

.hl-filter-bar {
  position: sticky;
  top: 98px;
  z-index: 30;
  background: rgba(252,251,249,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.hl-filter-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.hl-filter-inner::-webkit-scrollbar { display: none; }
.hl-filter-btn {
  flex-shrink: 0;
  padding: 7px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  background: var(--warm-100);
  color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
}
.hl-filter-btn:hover { background: var(--warm-200); }
.hl-filter-btn.active { background: var(--accent); color: white; border-color: var(--accent); }

.hl-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
}
.article-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.25s;
}
.article-card:hover { border-color: rgba(139,35,50,0.3); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.article-card h3 { font-size: 18px; font-weight: 600; color: var(--navy-900); margin-bottom: 10px; line-height: 1.3; }
.article-card h3:hover { color: var(--accent); }
.article-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.article-meta { display: flex; justify-content: space-between; align-items: center; }
.article-read-time { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.article-read-more { font-size: 12px; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 4px; }

/* ── Article page ── */
.article-hero { background: var(--navy-900); padding: 60px 24px 80px; }
.article-breadcrumb { max-width: 740px; margin: 0 auto 24px; display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.4); }
.article-breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.article-breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.article-hero-inner { max-width: 740px; margin: 0 auto; }
.article-hero h1 { font-size: clamp(26px, 4vw, 40px); font-weight: 600; color: white; margin-bottom: 16px; }
.article-hero-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.4); }

.article-body { max-width: 740px; margin: 0 auto; padding: 64px 24px; }
.article-intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  padding-left: 20px;
  border-left: 3px solid var(--accent);
  margin-bottom: 56px;
  color: var(--text-light);
}
.article-section { margin-bottom: 44px; }
.article-section h2 { font-size: 22px; font-weight: 600; color: var(--navy-900); margin-bottom: 14px; }
.article-section p { font-size: 16px; color: var(--text); line-height: 1.8; white-space: pre-line; }

.article-cta-box {
  background: var(--navy-900);
  border-radius: var(--radius-md);
  padding: 48px;
  text-align: center;
  margin-top: 64px;
}
.article-cta-box h3 { font-size: 22px; font-weight: 600; color: white; margin-bottom: 10px; }
.article-cta-box p { font-size: 15px; color: rgba(255,255,255,0.55); margin-bottom: 28px; }
.article-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.article-cta-btns .btn-secondary { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); }
.article-cta-btns .btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: white; }

.article-nav { display: flex; gap: 16px; margin-top: 56px; }
.article-nav-btn {
  flex: 1;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.article-nav-btn:hover { border-color: rgba(139,35,50,0.35); }
.article-nav-btn.right { text-align: right; }
.article-nav-label { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; display: flex; align-items: center; gap: 4px; }
.article-nav-btn.right .article-nav-label { justify-content: flex-end; }
.article-nav-title { font-family: var(--font-serif); font-size: 15px; font-weight: 600; color: var(--navy-900); line-height: 1.3; }

.back-to-library { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--accent); margin-top: 32px; }
.back-to-library:hover { text-decoration: underline; }

/* ── Bento grid (homepage health library) ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 260px;
  gap: 12px;
}
.bento-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  cursor: pointer;
}
.bento-card.span2 { grid-column: span 2; }

.bento-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.bento-card:hover .bento-img { transform: scale(1.04); }

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,47,0.88) 0%, rgba(10,25,47,0.3) 60%, transparent 100%);
  transition: background 0.4s;
}
.bento-card:hover .bento-overlay {
  background: linear-gradient(to top, rgba(10,25,47,0.93) 0%, rgba(10,25,47,0.45) 70%, transparent 100%);
}

.bento-content {
  position: relative;
  z-index: 1;
  padding: 28px;
  width: 100%;
}
.bento-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 8px;
}
.bento-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  margin-bottom: 8px;
}
.bento-card.span2 .bento-title { font-size: 28px; }
.bento-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 480px;
}
.bento-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: white;
  background: var(--accent);
  padding: 8px 16px;
  border-radius: var(--radius-xs);
  transition: background 0.2s;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.bento-card:hover .bento-cta { opacity: 1; transform: translateY(0); }
.bento-cta:hover { background: var(--accent-dark); }

/* ── Article page -- redesigned ── */
.article-stat-section {
  background: var(--warm-100);
  border-bottom: 1px solid var(--border);
  padding: 56px 24px;
}
.article-stat-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.article-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.article-stat-headline {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 600;
  color: var(--navy-900);
  max-width: 640px;
  line-height: 1.3;
  margin-bottom: 32px;
}
.article-stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.article-stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
}
.article-stat-number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.article-stat-card p { font-size: 14px; color: var(--text-light); line-height: 1.5; }
.article-stat-card a.source {
  font-size: 11px;
  color: var(--warm-300);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  transition: color 0.2s;
}
.article-stat-card a.source:hover { color: var(--text-light); }

/* stat-card aliases used by custom article pages */
.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
}
.stat-card-number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card-label {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 8px;
}
.stat-card-source { margin-top: 8px; }
.stat-card-source a {
  font-size: 11px;
  color: var(--warm-300);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
  text-decoration: none;
}
.stat-card-source a:hover { color: var(--text-light); }

.article-explainer { padding: 72px 24px; background: var(--bg); }
.article-explainer-inner { max-width: 1100px; margin: 0 auto; }
.article-explainer h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 16px; }
.article-explainer .lead { font-size: 18px; color: var(--text-light); line-height: 1.75; max-width: 640px; margin-bottom: 48px; }

.stage-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 56px;
}
.stage-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.stage-item { text-align: center; position: relative; z-index: 1; }
.stage-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--border);
  background: white;
  color: var(--text-light);
  transition: all 0.2s;
}
.stage-item.active .stage-dot { background: var(--accent); color: white; border-color: var(--accent); }
.stage-item.warning .stage-dot { background: var(--navy-900); color: white; border-color: var(--navy-900); }
.stage-name { font-size: 13px; font-weight: 600; color: var(--navy-900); margin-bottom: 6px; }
.stage-desc { font-size: 12px; color: var(--text-light); line-height: 1.4; max-width: 130px; margin: 0 auto; }
.stage-step { text-align: center; position: relative; z-index: 1; }
.stage-label { font-size: 13px; font-weight: 600; color: var(--navy-900); margin-bottom: 6px; margin-top: 14px; }

.symptoms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.symptoms-col h3 { font-size: 16px; font-weight: 600; color: var(--navy-900); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.symptoms-col.warning h3 { border-color: var(--accent); }
.symptom-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--warm-100);
}
.symptom-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--warm-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.symptoms-col.warning .symptom-icon { background: var(--accent-light); }
.symptom-text { font-size: 14px; color: var(--text); line-height: 1.5; }

.treatment-plan { padding: 72px 24px; background: var(--warm-100); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.treatment-plan-inner { max-width: 1100px; margin: 0 auto; }
.treatment-stages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.treatment-stage {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}
.treatment-stage.featured { background: var(--navy-900); border-color: var(--navy-900); }
.treatment-stage-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.treatment-stage.featured .treatment-stage-num { color: rgba(255,255,255,0.4); }
.treatment-stage h3 { font-size: 20px; font-weight: 600; color: var(--navy-900); margin-bottom: 6px; }
.treatment-stage.featured h3 { color: white; }
.treatment-stage-sub { font-size: 13px; color: var(--text-light); margin-bottom: 20px; }
.treatment-stage.featured .treatment-stage-sub { color: rgba(255,255,255,0.5); }
.treatment-items { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.treatment-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.treatment-stage.featured .treatment-items li { color: rgba(255,255,255,0.75); }
.treatment-items li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}
.treatment-stage.featured .treatment-items li::before { background: rgba(255,255,255,0.4); }
.treatment-disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  padding: 12px 16px;
  background: var(--warm-100);
  border-radius: var(--radius-xs);
  border-left: 3px solid var(--border);
}

.brand-confidence { padding: 72px 24px; background: var(--navy-900); }
.brand-confidence-inner { max-width: 1100px; margin: 0 auto; }
.brand-confidence .eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.brand-confidence h2 { font-family: var(--font-serif); font-size: clamp(24px,3.5vw,36px); font-weight: 600; color: white; margin-bottom: 40px; max-width: 560px; }
.confidence-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.confidence-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); padding: 28px 24px; }
.confidence-num { font-family: var(--font-serif); font-size: 40px; font-weight: 600; color: white; line-height: 1; margin-bottom: 8px; }
.confidence-label { font-size: 14px; color: var(--navy-100); line-height: 1.4; }

/* brand-confidence-grid aliases used by custom article pages */
.brand-confidence-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bc-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); padding: 28px 24px; }
.bc-number { font-family: var(--font-serif); font-size: 40px; font-weight: 600; color: white; line-height: 1; margin-bottom: 8px; }
.bc-label { font-size: 14px; color: var(--navy-100); line-height: 1.4; }

.testimonial-section { padding: 72px 24px; background: var(--bg); }
.testimonial-section-inner { max-width: 1100px; margin: 0 auto; }

.article-cta-final { padding: 80px 24px; background: var(--bg); }
.article-cta-final-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.article-cta-final h2 { font-size: clamp(24px,3.5vw,36px); margin-bottom: 16px; }
.article-cta-final p { font-size: 17px; color: var(--text-light); line-height: 1.75; margin-bottom: 36px; }
.cta-options { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-options .btn-primary, .cta-options .btn-secondary { font-size: 15px; padding: 14px 28px; }
.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 20px;
}
.cta-whatsapp a { font-weight: 600; color: var(--navy-900); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 900px) {
  .hl-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hl-grid-4 .hl-card:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hl-articles-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px 220px; }
  .bento-card.span2 { grid-column: span 2; }
  .article-stat-cards { grid-template-columns: 1fr 1fr; }
  .stage-track { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .stage-track::before { display: none; }
  .treatment-stages { grid-template-columns: 1fr; }
  .confidence-grid { grid-template-columns: repeat(2,1fr); }
  .brand-confidence-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .hero { padding: 120px 24px 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-image-desktop { display: none; }
  .hero-image-mobile { display: block; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .stories-content { grid-template-columns: 1fr; gap: 28px; padding: 36px 24px; }
  .leadership-card { flex-direction: column; text-align: center; padding: 32px 24px; }
  .leadership-photo { margin: 0 auto; }
}
@media (max-width: 768px) {
  .two-col-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .hl-articles-grid { grid-template-columns: 1fr; }
  .hl-grid-4 { grid-template-columns: 1fr; }
  .hl-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .article-cta-box { padding: 32px 24px; }
  .article-nav { flex-direction: column; }
  .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento-card { min-height: 240px; }
  .bento-card.span2 { grid-column: span 1; }
  .article-stat-cards { grid-template-columns: 1fr; }
  .symptoms-grid { grid-template-columns: 1fr; }
  .confidence-grid { grid-template-columns: 1fr 1fr; }
  .brand-confidence-grid { grid-template-columns: 1fr 1fr; }
  .bento-cta { opacity: 1; transform: none; }
}
