/* ============================================================
   CELOGEN LANKA — Main Stylesheet
   Built from Claude-designed mockup
   Includes: base, navigation, all pages, slideshow, forms, plugins
   ============================================================ */

/* ============== CSS VARIABLES ============== */
:root {
  --primary-dark: #1F5F3D;
  --primary: #56A042;
  --primary-light: #6BBE52;
  --lime: #C5E337;

  --mint: #EEF7E5;
  --mint-light: #F4FAEC;
  --white: #FFFFFF;
  --cream: #FAFBFA;

  --heading: #1A2E1F;
  --body: #4A5859;
  --muted: #6B7472;

  --border: #D4E4D8;
  --success: #56A042;
  --shadow: 0 8px 24px rgba(31, 95, 61, 0.08);
  --shadow-lg: 0 20px 48px rgba(31, 95, 61, 0.12);

  --display: 'Manrope', system-ui, sans-serif;
  --serif: 'Manrope', system-ui, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;

  --container: 1320px;
}

/* ============== RESET & BASE ============== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--cream);
  color: var(--body);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body { overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--primary); color: var(--white); }

/* ============== TOPBAR ============== */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  padding: 10px 36px;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: inherit; }
.topbar a:hover { color: #fff; }
.topbar .left, .topbar .right { display: flex; gap: 26px; align-items: center; }
.topbar .item { display: inline-flex; align-items: center; gap: 8px; }
.topbar .live {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(76,175,111,0.25);
}

/* ============== NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 18px 36px;
  gap: 40px;
}
/* Push nav down when WordPress admin bar is showing */
body.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .nav { top: 46px; }
}

.nav-logo { display: flex; align-items: center; gap: 12px; color: var(--heading); }
.nav-logo img { max-height: 48px; width: auto; }
.logo-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary-dark);
  position: relative;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark::before {
  content: ''; position: absolute; inset: 9px;
  border: 2px solid var(--white);
  border-radius: 50%;
  border-right-color: transparent;
  transform: rotate(-30deg);
}
.logo-mark::after {
  content: ''; position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--white); top: 13px; right: 13px;
}
.nav-logo .lt {
  font-family: var(--display); font-weight: 800;
  font-size: 20px; line-height: 1;
  letter-spacing: -0.02em; color: var(--heading);
}
.nav-logo .lt em { font-style: normal; color: var(--primary); font-weight: 800; }
.nav-logo .sub {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 4px; display: block;
}
.nav-logo .stack { display: flex; flex-direction: column; }

.nav-links {
  display: flex; gap: 36px; justify-self: center;
  font-size: 14px; font-weight: 500;
  list-style: none;
}
.nav-links li { display: inline-block; }
.nav-links a {
  color: var(--heading); padding: 6px 2px; position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links li.current-menu-item > a,
.nav-links a.active {
  color: var(--primary-dark);
}
.nav-links li.current-menu-item > a::after,
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -22px;
  height: 2px; background: var(--primary-dark);
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-dark); color: var(--white);
  padding: 12px 22px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  transition: background 0.2s;
}
.nav-cta::after { content: '→'; }
.nav-cta:hover { background: var(--primary); color: var(--white); }

/* Mobile menu toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 44px; height: 44px;
  cursor: pointer;
  color: var(--heading);
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: currentColor; position: relative;
  transition: all 0.2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 2px;
  background: currentColor; transition: all 0.2s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: rotate(45deg); top: 0; }
.nav-toggle.open span::after { transform: rotate(-45deg); top: 0; }

/* ============== REUSABLE BLOCKS ============== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 36px; }
.section { padding: 110px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary-dark); font-weight: 600;
  margin-bottom: 24px;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--primary-dark); }

.section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.08; letter-spacing: -0.02em;
  color: var(--heading);
}
.section-title em { font-style: normal; color: var(--primary); font-weight: 800; }

.section-lede {
  font-size: 17px; line-height: 1.7; color: var(--body);
  max-width: 64ch; margin-top: 22px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--sans);
}
.btn-primary { background: var(--primary-dark); color: var(--white); }
.btn-primary:hover { background: var(--primary); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary::after { content: '→'; }
.btn-ghost { background: transparent; color: var(--heading); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary-dark); color: var(--primary-dark); }
.btn-ghost::after { content: '→'; }

/* Breadcrumb */
.breadcrumb {
  background: var(--mint-light);
  border-bottom: 1px solid var(--border);
  padding: 22px 36px;
}
.breadcrumb-inner {
  max-width: var(--container); margin: 0 auto;
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb-inner a { color: var(--muted); }
.breadcrumb-inner a:hover { color: var(--primary-dark); }
.breadcrumb-inner .sep { opacity: 0.4; }
.breadcrumb-inner .current { color: var(--primary-dark); font-weight: 600; }

/* Inner page hero */
.page-hero {
  background: var(--mint);
  padding: 80px 36px 90px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 60px; align-items: end;
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(52px, 6.4vw, 82px);
  line-height: 1.02; letter-spacing: -0.02em;
  color: var(--heading);
}
.page-hero h1 em { font-style: normal; color: var(--primary); font-weight: 800; }
.page-hero p { font-size: 17px; line-height: 1.7; color: var(--body); max-width: 48ch; }
.page-hero .pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime); color: var(--primary-dark);
  padding: 7px 14px; border-radius: 999px;
  font-family: var(--display); font-weight: 700; font-size: 12px;
  letter-spacing: -0.005em; margin-bottom: 18px;
}
.page-hero .sub-col { display: flex; flex-direction: column; gap: 20px; padding-bottom: 14px; }

/* Side card */
.side-card {
  display: grid; grid-template-columns: 200px 1fr;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 220px;
}
.side-card .side {
  background: var(--primary-dark);
  color: var(--white);
  padding: 28px 26px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.side-card .side .num {
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.7;
}
.side-card .side h3 {
  font-family: var(--display); font-weight: 800;
  font-size: 24px; line-height: 1.18; letter-spacing: -0.02em;
}
.side-card .side h3 em { font-style: normal; color: #cfe6d8; font-weight: 800; }
.side-card .body { padding: 28px 30px; }
.side-card .body p { font-size: 14.5px; line-height: 1.7; color: var(--body); }
.side-card .body ul { list-style: none; margin-top: 12px; }
.side-card .body li {
  position: relative; padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px; line-height: 1.5; color: var(--body);
}
.side-card .body li::before {
  content: '✓'; position: absolute; left: 0; top: 1px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--success); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px;
}

/* ============== HOMEPAGE — HERO SLIDESHOW ============== */
.hero-slider {
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero-slide {
  display: none;
  padding: 80px 0 100px;
}
.hero-slide.active { display: block; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 80px; align-items: center;
}
.lime-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime);
  color: #1A2E1F;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}
.lime-badge .check {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--primary-dark); color: var(--lime);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary-dark); font-weight: 700;
  margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--primary-dark); }
.hero-slide h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.04; letter-spacing: -0.02em;
  color: var(--heading);
  max-width: 14ch;
}
.hero-slide h1 .accent { color: var(--primary); font-weight: 800; }
.hero-slide p.lede {
  margin-top: 26px;
  font-size: 18px; line-height: 1.6; color: var(--body);
  max-width: 46ch;
}
.hero-slide .actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

.hero-visual { position: relative; height: 560px; }
.hero-visual .img {
  position: absolute; inset: 0;
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual .img img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .float {
  position: absolute; left: -32px; bottom: 56px;
  background: var(--primary-dark); color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  min-width: 260px;
}
.hero-visual .float .big {
  font-family: var(--display); font-weight: 800;
  font-size: 36px; line-height: 1; letter-spacing: -0.02em;
  color: var(--lime);
}
.hero-visual .float .lab {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  margin-top: 8px; opacity: 0.9;
}
.hero-visual .float .desc {
  font-size: 13px; margin-top: 4px; opacity: 0.85;
}
.hero-visual .corner {
  position: absolute; top: -16px; right: -16px;
  background: var(--lime); color: var(--primary-dark);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--display); font-weight: 800; font-size: 12px;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow);
  z-index: 2;
}

/* Slideshow controls */
.hero-slider-controls {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.hero-slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(31, 95, 61, 0.25);
  border: none; cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}
.hero-slider-dot.active {
  background: var(--primary-dark);
  width: 30px; border-radius: 5px;
}
.hero-slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  color: var(--primary-dark);
  cursor: pointer; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}
.hero-slider-arrow:hover { background: var(--primary-dark); color: var(--white); }
.hero-slider-arrow.prev { left: 20px; }
.hero-slider-arrow.next { right: 20px; }

/* ============== TRUST BAR ============== */
.trust {
  background: var(--primary-dark);
  color: #fff;
  padding: 28px 36px;
}
.trust-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 240px 1fr;
  gap: 40px; align-items: center;
}
.trust .label {
  color: #fff;
  font-family: var(--display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; line-height: 1.5;
}
.trust .label::before {
  content: ''; display: inline-block; width: 24px; height: 1px;
  background: var(--lime); vertical-align: middle; margin-right: 12px;
}
.trust-badges { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.trust-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  transition: all 0.2s;
}
.trust-badge:hover { background: rgba(255,255,255,0.10); border-color: var(--lime); }
.trust-badge .nm {
  font-family: var(--display); font-weight: 700; font-size: 14px;
  color: #fff; letter-spacing: -0.005em;
}
.trust-badge .ds {
  font-size: 10px; color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: 3px;
}

/* ============== STATS + ABOUT ============== */
.stats-about { background: var(--mint); padding: 110px 0; }
.sa-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 26px;
  min-height: 180px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: all 0.2s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
.stat-card .ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--mint);
  color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800; font-size: 14px;
}
.stat-card .num {
  font-family: var(--display); font-weight: 800;
  font-size: 44px; line-height: 1; letter-spacing: -0.02em;
  color: var(--primary-dark);
  margin-top: 24px;
}
.stat-card .num .pls { color: var(--primary); }
.stat-card .lab {
  font-size: 13px; color: var(--muted);
  margin-top: 8px; font-weight: 500;
}
.stats-about .about-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary-dark); font-weight: 700;
  margin-bottom: 22px;
}
.stats-about .about-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--primary-dark);
}
.stats-about h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.06; letter-spacing: -0.02em;
  color: var(--heading);
  max-width: 14ch;
}
.stats-about h2 .accent { color: var(--primary); }
.stats-about p {
  margin-top: 18px;
  font-size: 16px; line-height: 1.7; color: var(--body);
  max-width: 50ch;
}
.stats-about .actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ============== WHY CELOGEN ============== */
.why { background: var(--white); padding: 110px 0; }
.why-head { max-width: 60ch; margin-bottom: 56px; }
.why-head .eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary-dark); font-weight: 700;
  margin-bottom: 22px;
}
.why-head .eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--primary-dark); }
.why-head h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.06; letter-spacing: -0.02em;
  color: var(--heading);
}
.why-head h2 .accent { color: var(--primary); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-card {
  display: grid; grid-template-columns: 200px 1fr;
  background: var(--white);
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  min-height: 220px;
  transition: all 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-card .side {
  background: var(--primary-dark); color: #fff;
  padding: 28px 26px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
}
.why-card .side .icn {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,0.10);
  color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800; font-size: 22px;
  letter-spacing: -0.02em;
}
.why-card .side .nm {
  font-family: var(--display); font-weight: 800;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime);
  margin-top: auto; margin-bottom: 6px;
}
.why-card .side h3 {
  font-family: var(--display); font-weight: 800;
  font-size: 22px; line-height: 1.18; letter-spacing: -0.02em;
  color: #fff;
}
.why-card .body { padding: 28px 30px; display: flex; flex-direction: column; }
.why-card .body p {
  font-size: 14.5px; line-height: 1.65; color: var(--body);
  flex: 1;
}
.why-card .body .meta {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-family: var(--display); font-weight: 700; font-size: 12px;
  color: var(--primary-dark); letter-spacing: -0.005em;
  display: flex; align-items: center; gap: 8px;
}
.why-card .body .meta .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }

/* ============== CTA SECTION ============== */
.cta {
  background: var(--mint);
  padding: 110px 0;
  border-top: 1px solid var(--border);
}
.cta-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: end; }
.cta h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.02; letter-spacing: -0.025em;
  color: var(--heading);
  max-width: 14ch;
}
.cta h2 .accent { color: var(--primary); }
.cta p {
  font-size: 17px; line-height: 1.6; color: var(--body);
  max-width: 44ch; margin-bottom: 28px;
}
.cta .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta .right { display: flex; flex-direction: column; }
.cta-lime-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime); color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--display); font-weight: 700; font-size: 12px;
  letter-spacing: -0.005em;
  margin-bottom: 18px;
  align-self: flex-start;
}

/* ============== ABOUT PAGE ============== */
.about-intro { background: var(--white); padding: 110px 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-intro h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 4.4vw, 56px);
  line-height: 1.08; letter-spacing: -0.02em;
  color: var(--heading);
}
.about-intro h2 em { font-style: normal; color: var(--primary); }
.about-intro p {
  margin-top: 22px; font-size: 16px; line-height: 1.75; color: var(--body);
  max-width: 56ch;
}
.about-intro p + p { margin-top: 18px; }
.about-image {
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.milestones { background: var(--mint); padding: 110px 0; }
.milestone-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.milestone {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
}
.milestone .year {
  font-family: var(--display); font-weight: 800;
  font-size: 36px; color: var(--primary-dark);
  letter-spacing: -0.02em; line-height: 1;
}
.milestone h4 {
  margin-top: 14px;
  font-family: var(--display); font-weight: 700; font-size: 16px;
  color: var(--heading); line-height: 1.3;
}
.milestone p { margin-top: 8px; font-size: 13.5px; line-height: 1.6; color: var(--body); }

.leadership { background: var(--white); padding: 110px 0; }
.leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.leader {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s;
}
.leader:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.leader .photo { aspect-ratio: 4/5; overflow: hidden; background: var(--mint); }
.leader .photo img { width: 100%; height: 100%; object-fit: cover; }
.leader .info { padding: 22px 24px 26px; }
.leader .name {
  font-family: var(--display); font-weight: 800; font-size: 19px;
  color: var(--heading); line-height: 1.2;
}
.leader .role {
  font-size: 13px; color: var(--primary-dark);
  font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; margin-top: 6px;
}
.leader .bio { margin-top: 14px; font-size: 14px; line-height: 1.6; color: var(--body); }

/* ============== PRODUCTION PAGE ============== */
.prod-overview { background: var(--white); padding: 110px 0; }
.prod-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.prod-overview h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 4.4vw, 56px);
  line-height: 1.08; letter-spacing: -0.02em;
  color: var(--heading);
}
.prod-overview h2 em { font-style: normal; color: var(--primary); }
.prod-overview p { margin-top: 22px; font-size: 16px; line-height: 1.75; color: var(--body); max-width: 56ch; }
.prod-image { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/4; }
.prod-image img { width: 100%; height: 100%; object-fit: cover; }

.capabilities { background: var(--mint); padding: 110px 0; }
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.cap-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.2s;
}
.cap-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.cap-card .ic {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--mint);
  color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800; font-size: 22px;
  margin-bottom: 22px;
}
.cap-card h3 {
  font-family: var(--display); font-weight: 800;
  font-size: 20px; color: var(--heading);
  line-height: 1.25; margin-bottom: 12px;
}
.cap-card p { font-size: 14.5px; line-height: 1.7; color: var(--body); }

.dosage-forms { background: var(--white); padding: 110px 0; }
.dosage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.dosage {
  background: var(--mint-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 22px;
  text-align: center;
  transition: all 0.2s;
}
.dosage:hover { background: var(--white); border-color: var(--primary); box-shadow: var(--shadow); }
.dosage .ic {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--lime);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800; font-size: 18px;
  margin-bottom: 14px;
}
.dosage h4 { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--heading); }
.dosage p { margin-top: 6px; font-size: 12.5px; color: var(--muted); }

/* ============== CAREERS PAGE ============== */
.careers-intro { background: var(--white); padding: 110px 0; }
.careers-intro-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.careers-intro h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 4.4vw, 56px);
  line-height: 1.08; letter-spacing: -0.02em;
  color: var(--heading);
}
.careers-intro h2 em { font-style: normal; color: var(--primary); }
.careers-intro p { margin-top: 22px; font-size: 16px; line-height: 1.75; color: var(--body); max-width: 56ch; }
.careers-intro .actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.careers-image { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.careers-image img { width: 100%; height: 100%; object-fit: cover; }

.openings { background: var(--mint); padding: 110px 0; }
.openings-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.openings-head h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(36px, 4.2vw, 52px);
  color: var(--heading); line-height: 1.1;
}
.openings-head h2 em { font-style: normal; color: var(--primary); }
.openings-head .meta { font-size: 14px; color: var(--muted); }

/* Job listing cards (styled to override WP Job Manager defaults) */
.job_listings ul.job_listings {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px;
  padding: 0 !important;
  margin: 0 !important;
}
.job_listings li.job_listing,
ul.job_listings li.job_listing {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  margin: 0;
  transition: all 0.2s;
  list-style: none;
}
.job_listings li.job_listing:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.job_listings li.job_listing a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px; align-items: center;
  padding: 28px 32px;
  color: inherit;
}
.job_listings .position { display: flex; flex-direction: column; gap: 6px; }
.job_listings .position h3 {
  font-family: var(--display); font-weight: 800;
  font-size: 19px; color: var(--heading);
  line-height: 1.3;
}
.job_listings .company,
.job_listings .meta {
  font-size: 13px; color: var(--muted);
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.job_listings .meta .job-type {
  background: var(--mint);
  color: var(--primary-dark);
  padding: 4px 10px; border-radius: 999px;
  font-weight: 600; font-size: 12px;
}
.job_listings .meta .location {
  display: inline-flex; align-items: center; gap: 6px;
}
.job_listings .meta .date {
  font-size: 12px; color: var(--muted);
}

/* Apply button on job card */
.job_listings .apply-cta,
.application_button {
  display: inline-flex !important;
  align-items: center; gap: 8px;
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  padding: 12px 22px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.2s;
}
.job_listings .apply-cta:hover,
.application_button:hover { background: var(--primary) !important; }

/* Single job listing page */
.single-job_listing .job_listing {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 44px;
  box-shadow: var(--shadow);
}
.single-job_listing .job_listing h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.1; color: var(--heading);
  margin-bottom: 16px;
}
.single-job_listing .job_listing .meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 14px; color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.single-job_listing .job_description {
  font-size: 15.5px; line-height: 1.75; color: var(--body);
}
.single-job_listing .job_description h2,
.single-job_listing .job_description h3 {
  font-family: var(--display); font-weight: 800; color: var(--heading);
  margin: 28px 0 12px;
}
.single-job_listing .job_description h2 { font-size: 22px; }
.single-job_listing .job_description h3 { font-size: 18px; }
.single-job_listing .job_description ul,
.single-job_listing .job_description ol {
  padding-left: 22px; margin: 12px 0;
}
.single-job_listing .job_description li { margin: 6px 0; }

/* ============== CONTACT PAGE ============== */
.contact-section { background: var(--white); padding: 110px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info-card {
  background: var(--primary-dark);
  color: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
}
.contact-info-card h2 {
  font-family: var(--display); font-weight: 800;
  font-size: 28px; line-height: 1.2; margin-bottom: 24px;
  color: var(--white);
}
.contact-info-card h2 em { font-style: normal; color: var(--lime); }
.contact-info-card p { font-size: 14.5px; line-height: 1.65; opacity: 0.9; margin-bottom: 32px; }
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.contact-info-item { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.contact-info-item .icn {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(197,227,55,0.12);
  color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800; font-size: 16px;
}
.contact-info-item .label {
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--lime);
  font-weight: 700; margin-bottom: 4px;
}
.contact-info-item .val { font-size: 15px; line-height: 1.5; color: var(--white); }
.contact-info-item a { color: var(--white); }
.contact-info-item a:hover { color: var(--lime); }
.contact-info-socials { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.14); display: flex; gap: 8px; }
.contact-info-socials a {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.20);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 13px;
  transition: all 0.2s;
}
.contact-info-socials a:hover { background: var(--lime); border-color: var(--lime); color: var(--primary-dark); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 40px 44px;
}
.contact-form-card h3 {
  font-family: var(--display); font-weight: 800;
  font-size: 22px; line-height: 1.2; color: var(--heading);
  margin-bottom: 8px;
}
.contact-form-card .sub {
  font-size: 14.5px; color: var(--muted); margin-bottom: 28px;
}

.contact-map { margin-top: 80px; }
.contact-map iframe {
  width: 100%; height: 480px;
  border: 0; border-radius: 16px;
  box-shadow: var(--shadow);
  display: block;
}

/* ============== APPLY PAGE ============== */
.apply-section { background: var(--white); padding: 80px 0 110px; }
.apply-wrap {
  max-width: 760px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 48px 56px;
  box-shadow: var(--shadow);
}
.apply-wrap h2 {
  font-family: var(--display); font-weight: 800;
  font-size: 32px; line-height: 1.2;
  color: var(--heading); margin-bottom: 10px;
}
.apply-wrap .sub {
  font-size: 15px; color: var(--muted); margin-bottom: 32px;
}

/* ============== FOOTER ============== */
footer.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.82);
  padding: 80px 36px 28px;
}
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-brand .nav-logo { color: #fff; }
.footer-brand .nav-logo .lt { color: #fff; }
.footer-brand .nav-logo .lt em { color: #cfe6d8; font-weight: 700; }
.footer-brand .nav-logo .sub { color: rgba(255,255,255,0.55); }
.footer-brand p { margin-top: 18px; font-size: 14px; line-height: 1.65; max-width: 38ch; opacity: 0.9; }
.footer-brand .socials { display: flex; gap: 8px; margin-top: 24px; }
.footer-brand .socials a {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 13px;
  transition: all 0.2s;
}
.footer-brand .socials a:hover { background: var(--primary); border-color: var(--primary); }

.footer-col h5 {
  font-family: var(--display); font-weight: 800; font-size: 13px;
  letter-spacing: -0.01em; color: #fff; margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; opacity: 0.85; }
.footer-col a:hover { opacity: 1; color: #cfe6d8; }
.footer-col p { font-size: 14px; line-height: 1.65; opacity: 0.85; }

.footer-bottom {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding-top: 24px;
  font-size: 12px; opacity: 0.55;
}
.footer-bottom .center { text-align: center; }
.footer-bottom .right { text-align: right; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============== FLUENT FORMS STYLING ============== */
.ff-el-group { margin-bottom: 18px; }
.ff-el-input--label label,
.fluentform label {
  font-family: var(--sans); font-weight: 600;
  font-size: 13px; color: var(--heading);
  margin-bottom: 6px; display: block;
  letter-spacing: 0.01em;
}
.fluentform input[type="text"],
.fluentform input[type="email"],
.fluentform input[type="tel"],
.fluentform input[type="url"],
.fluentform input[type="number"],
.fluentform input[type="date"],
.fluentform select,
.fluentform textarea {
  width: 100%;
  padding: 12px 14px !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  font-family: var(--sans) !important;
  font-size: 14.5px !important;
  background: var(--white);
  color: var(--heading);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: none !important;
}
.fluentform input:focus,
.fluentform select:focus,
.fluentform textarea:focus {
  outline: none !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(86,160,66,0.12) !important;
}
.fluentform textarea { min-height: 130px; resize: vertical; }
.fluentform .ff_upload_btn,
.fluentform .ff-upload-preview-area {
  border: 2px dashed var(--border) !important;
  border-radius: 10px !important;
  padding: 22px !important;
  background: var(--mint-light) !important;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.fluentform .ff_upload_btn:hover { border-color: var(--primary) !important; background: var(--mint) !important; }
.fluentform button[type="submit"],
.fluentform .ff-btn-submit,
.fluentform .ff-btn {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  padding: 14px 32px !important;
  border-radius: 999px !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: none !important;
}
.fluentform button[type="submit"]:hover,
.fluentform .ff-btn-submit:hover,
.fluentform .ff-btn:hover {
  background: var(--primary) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow) !important;
}
.fluentform .ff-message-success,
.ff-message-success {
  background: var(--mint) !important;
  border: 1px solid var(--primary) !important;
  color: var(--primary-dark) !important;
  border-radius: 10px;
  padding: 14px 18px !important;
  font-size: 14.5px !important;
}
.fluentform .error,
.fluentform .text-danger,
.ff-el-is-error .text-danger {
  color: #c0392b !important;
  font-size: 12.5px !important;
  margin-top: 4px;
}
.ff-el-is-error input,
.ff-el-is-error select,
.ff-el-is-error textarea {
  border-color: #e74c3c !important;
}

/* ============== RESPONSIVE — TABLET (max-width: 1100px) ============== */
@media (max-width: 1100px) {
  .container { padding: 0 28px; }
  .section { padding: 80px 0; }

  .nav { padding: 16px 28px; gap: 24px; grid-template-columns: auto 1fr auto; }
  .nav-links { gap: 24px; }

  .hero-slide { padding: 60px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { height: 440px; max-width: 600px; margin: 0 auto; width: 100%; }
  .hero-visual .float { left: 0; bottom: 24px; min-width: 220px; }

  .trust-inner { grid-template-columns: 1fr; gap: 22px; }
  .trust-badges { grid-template-columns: repeat(3, 1fr); }

  .sa-grid { grid-template-columns: 1fr; gap: 50px; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; align-items: start; }

  .page-hero { padding: 56px 28px 70px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 30px; }

  .about-intro-grid,
  .prod-grid,
  .careers-intro-grid { grid-template-columns: 1fr; gap: 50px; }

  .milestone-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .dosage-grid { grid-template-columns: repeat(3, 1fr); }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
  .footer-col:last-child { grid-column: span 3; }

  .stat-card { min-height: 160px; padding: 24px 22px; }
  .stat-card .num { font-size: 36px; }
}

/* ============== RESPONSIVE — MOBILE (max-width: 768px) ============== */
@media (max-width: 768px) {
  body { font-size: 14.5px; }

  /* Topbar — show essentials only */
  .topbar { padding: 8px 18px; font-size: 11.5px; flex-wrap: wrap; gap: 8px; }
  .topbar .left { gap: 12px; }
  .topbar .right { gap: 14px; flex-wrap: wrap; }
  .topbar .right .item:last-child { display: none; } /* hide hours on mobile */

  /* NAV — mobile hamburger */
  .nav {
    padding: 14px 18px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-logo .sub { display: none; }
  .nav-logo .lt { font-size: 17px; }
  .logo-mark { width: 36px; height: 36px; }

  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 85%; max-width: 360px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-self: stretch;
    gap: 0;
    padding: 80px 28px 28px;
    transition: right 0.3s ease;
    box-shadow: -12px 0 32px rgba(31,95,61,0.10);
    z-index: 99;
    overflow-y: auto;
  }
  body.admin-bar .nav-links { top: 46px; height: calc(100vh - 46px); }

  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; width: 100%;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li.current-menu-item > a::after,
  .nav-links a.active::after { display: none; }
  .nav-links li.current-menu-item > a,
  .nav-links a.active {
    color: var(--primary-dark); font-weight: 700;
  }

  .nav-backdrop {
    display: none; position: fixed; inset: 0;
    background: rgba(26,46,31,0.4);
    z-index: 98;
  }
  .nav-backdrop.show { display: block; }

  /* Container */
  .container { padding: 0 18px; }
  .section { padding: 60px 0; }

  /* Hero slide */
  .hero-slide { padding: 40px 0 60px; }
  .hero-grid { gap: 36px; }
  .hero-slide h1 { font-size: 36px; max-width: none; }
  .hero-slide p.lede { font-size: 16px; margin-top: 18px; }
  .hero-slide .actions { gap: 10px; margin-top: 26px; }
  .hero-slide .btn { padding: 12px 20px; font-size: 12.5px; }

  .hero-visual { height: 320px; }
  .hero-visual .float {
    left: 12px; bottom: 12px; padding: 14px 18px; min-width: 180px;
  }
  .hero-visual .float .big { font-size: 24px; }
  .hero-visual .corner {
    top: -10px; right: -10px;
    padding: 7px 12px; font-size: 10px;
  }

  /* Slideshow controls */
  .hero-slider-arrow { display: none; } /* hide arrows, dots only on mobile */
  .hero-slider-controls { bottom: 16px; }

  /* Trust bar */
  .trust { padding: 22px 18px; }
  .trust-badges { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .trust-badge { padding: 12px 8px; }
  .trust-badge .nm { font-size: 13px; }
  .trust-badge .ds { font-size: 9.5px; }

  /* Stats */
  .stats-about { padding: 60px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { min-height: 140px; padding: 20px 18px; }
  .stat-card .num { font-size: 30px; margin-top: 16px; }
  .stat-card .lab { font-size: 12px; }
  .stats-about h2 { font-size: 32px; max-width: none; }
  .stats-about p { font-size: 15px; }

  /* Why */
  .why { padding: 60px 0; }
  .why-card { grid-template-columns: 1fr; min-height: 0; }
  .why-card .side { padding: 22px 20px; }
  .why-card .body { padding: 22px 20px; }
  .why-card .side h3 { font-size: 18px; }
  .why-head h2 { font-size: 32px; }

  /* CTA */
  .cta { padding: 60px 0; }
  .cta h2 { font-size: 36px; max-width: none; }
  .cta p { font-size: 15px; }
  .cta .actions { gap: 10px; }

  /* Footer */
  footer.site-footer { padding: 56px 18px 22px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; gap: 8px; padding-top: 22px; }
  .footer-bottom .right { text-align: center; }

  /* Page hero */
  .page-hero { padding: 40px 18px 50px; }
  .page-hero h1 { font-size: 40px; }
  .page-hero p { font-size: 15.5px; }

  /* Breadcrumb */
  .breadcrumb { padding: 16px 18px; }
  .breadcrumb-inner { font-size: 12px; flex-wrap: wrap; }

  /* About / Production / Careers intro */
  .about-intro, .prod-overview, .careers-intro { padding: 60px 0; }
  .about-intro h2, .prod-overview h2, .careers-intro h2 { font-size: 30px; }
  .about-intro p, .prod-overview p, .careers-intro p { font-size: 15px; }
  .about-image, .prod-image, .careers-image { max-width: 480px; margin: 0 auto; }

  /* Milestones */
  .milestones { padding: 60px 0; }
  .milestone-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .milestone { padding: 22px 18px; }
  .milestone .year { font-size: 28px; }
  .milestone h4 { font-size: 15px; }
  .milestone p { font-size: 13px; }

  /* Leadership */
  .leadership { padding: 60px 0; }
  .leadership-grid { grid-template-columns: 1fr; gap: 20px; max-width: 420px; margin-left: auto; margin-right: auto; margin-top: 36px; }

  /* Capabilities */
  .capabilities { padding: 60px 0; }
  .cap-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
  .cap-card { padding: 26px 22px; }

  /* Dosage forms */
  .dosage-forms { padding: 60px 0; }
  .dosage-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Side card */
  .side-card { grid-template-columns: 1fr; min-height: 0; }
  .side-card .side { padding: 22px 20px; }
  .side-card .body { padding: 22px 20px; }

  /* Careers / Jobs */
  .openings { padding: 60px 0; }
  .openings-head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
  .openings-head h2 { font-size: 28px; }
  .job_listings li.job_listing a {
    grid-template-columns: 1fr;
    padding: 22px 22px;
    gap: 14px;
  }
  .job_listings .apply-cta,
  .application_button {
    width: 100%;
    justify-content: center;
  }
  .single-job_listing .job_listing { padding: 28px 22px; }
  .single-job_listing .job_listing h1 { font-size: 26px; }

  /* Contact */
  .contact-section { padding: 60px 0; }
  .contact-info-card { padding: 28px 24px; }
  .contact-info-card h2 { font-size: 24px; }
  .contact-form-card { padding: 28px 24px 32px; }
  .contact-map iframe { height: 360px; }
  .contact-map { margin-top: 50px; }

  /* Apply page */
  .apply-section { padding: 50px 0 70px; }
  .apply-wrap { padding: 28px 22px 36px; }
  .apply-wrap h2 { font-size: 26px; }

  /* General section title responsive */
  .section-title { font-size: 32px; }
}

/* ============== RESPONSIVE — SMALL MOBILE (max-width: 420px) ============== */
@media (max-width: 420px) {
  .nav-logo .lt { font-size: 15px; }
  .topbar .right { gap: 10px; font-size: 11px; }
  .topbar .right .item:nth-last-child(2) { display: none; }
  .hero-slide h1 { font-size: 30px; }
  .stat-card .num { font-size: 26px; }
  .stats-about h2,
  .why-head h2,
  .cta h2 { font-size: 28px; }
  .page-hero h1 { font-size: 32px; }
  .dosage-grid { grid-template-columns: 1fr; }
  .milestone-grid { grid-template-columns: 1fr; }
}

/* ============== UTILITIES & WP-SPECIFIC ============== */
/* Wide-aligned blocks (WP Gutenberg) */
.alignwide { max-width: var(--container); margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100%; }

/* Accessibility — skip link */
.skip-link {
  position: absolute; top: -100px; left: 8px;
  background: var(--primary-dark); color: var(--white);
  padding: 12px 18px; border-radius: 8px;
  font-weight: 600; font-size: 14px;
  z-index: 1000;
}
.skip-link:focus { top: 8px; }

/* Print styles */
@media print {
  .topbar, .nav, footer.site-footer, .hero-slider-controls,
  .hero-slider-arrow, .nav-cta, .nav-toggle { display: none !important; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}
