/* =====================================================================
   ACCESS FOOD VERIFICATION & AUDITING LIMITED
   Redesigned to match client preferred style:
   - White header with logo + contact details
   - Navy green navigation bar
   - Clean white content areas
   - Professional food industry look
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #1a3a6b;
  --navy-deep: #122850;
  --navy-light: #eef2f8;
  --green: #3d7a2e;
  --green-bright: #4a9435;
  --green-light: #eaf4e6;
  --green-nav: #2d6a20;

  --bg: #f5f7f5;
  --surface: #ffffff;
  --surface-alt: #f8faf7;

  --ink: #1a2030;
  --ink-muted: #4a5568;
  --ink-faint: #718096;

  --line: #e2e8e0;
  --line-strong: #c8d4c5;

  --caution: #b5651d;
  --caution-bg: #fdf5ec;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 5rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-card: 0 2px 8px rgba(26,58,107,0.08), 0 1px 3px rgba(26,58,107,0.05);
  --shadow-lift: 0 8px 24px rgba(26,58,107,0.15);

  --max-width: 1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
ul, ol { padding-left: 1.25rem; }
button { font-family: inherit; }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---- Typography ---- */
h1, h2, h3, h4 { color: var(--navy-deep); margin: 0 0 0.75rem; line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
p { margin: 0 0 1rem; }
.lede { font-size: 1.1rem; color: var(--ink-muted); line-height: 1.7; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 0.75rem;
}
.eyebrow::before { content: ""; width: 20px; height: 2px; background: var(--green); }

/* ---- Layout ---- */
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-3); }
.section { padding: var(--space-5) 0; }
.section-tight { padding: var(--space-4) 0; }
.section--alt { background: var(--surface); }
.section--green { background: var(--green-light); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.9rem; border: 2px solid transparent;
  cursor: pointer; transition: all 0.15s ease; line-height: 1; text-decoration: none;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-nav); box-shadow: var(--shadow-lift); transform: translateY(-1px); }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-deep); box-shadow: var(--shadow-lift); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--navy); }
.btn-outline-green { background: transparent; border-color: var(--green); color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: #fff; }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.82rem; }

/* =====================================================================
   HEADER — White with logo + contact info above, green nav bar below
   ===================================================================== */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 0.4rem 0;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.topbar a { color: rgba(255,255,255,0.9); }
.topbar-left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 1.5rem; align-items: center; }
.topbar-right a { font-weight: 700; color: #fff; }

/* White header with logo + contact */
.site-header-top {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand img { height: 68px; width: auto; }
.brand-text { line-height: 1.2; }
.brand-text .name { display: block; font-size: 1.25rem; font-weight: 800; color: var(--navy-deep); line-height: 1.15; }
.brand-text .tagline { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); font-weight: 700; margin-top: 0.2rem; }

.header-contacts { display: flex; gap: 2rem; align-items: center; }
.header-contact-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--ink-muted); }
.header-contact-item a { color: var(--navy); font-weight: 600; }
.header-contact-item .icon { width: 32px; height: 32px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; }

.header-cta-area { display: flex; align-items: center; gap: 1rem; }

/* Green navigation bar */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.main-nav { display: flex; align-items: stretch; list-style: none; margin: 0; padding: 0; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: flex; align-items: center; gap: 0.3rem;
  color: rgba(255,255,255,0.92); font-weight: 600; font-size: 0.88rem;
  padding: 0.9rem 1rem; white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.main-nav > li > a:hover,
.main-nav > li > a.active { background: var(--green-nav); color: #fff; }
.main-nav > li > a.has-dropdown::after { content: " ▾"; font-size: 0.7rem; opacity: 0.75; }

.dropdown {
  position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--green);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lift); min-width: 280px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  list-style: none; margin: 0; padding: 0.5rem;
}
.main-nav > li:hover .dropdown,
.main-nav > li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm); color: var(--ink); font-size: 0.875rem; font-weight: 500;
}
.dropdown li a:hover { background: var(--green-light); color: var(--navy-deep); }

.nav-book-btn { padding: 0.6rem 1.2rem; background: var(--green); color: #fff !important; border-radius: var(--radius-sm); font-weight: 700 !important; margin-left: 0.5rem; }
.nav-book-btn:hover { background: var(--green-nav) !important; }

.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; padding: 0.5rem 1rem; }
.mobile-nav-open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; }

@media (max-width: 1000px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .main-nav.mobile-open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--navy);
    box-shadow: var(--shadow-lift); z-index: 200;
  }
  .main-nav.mobile-open .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-left: 3px solid var(--green); border-radius: 0;
    background: rgba(0,0,0,0.2);
  }
  .main-nav.mobile-open .dropdown li a { color: rgba(255,255,255,0.85); }
  .header-contacts { display: none; }
}
@media (max-width: 600px) {
  .brand img { height: 50px; }
  .brand-text .name { font-size: 0.95rem; }
}

/* =====================================================================
   HERO — image background with overlay, clean white text
   ===================================================================== */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/images/hero-food-safety.jpg');
  background-size: cover; background-position: center;
  opacity: 0.25;
}
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.hero-content .eyebrow { color: var(--green); }
.hero-content .eyebrow::before { background: var(--green); }
.hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.hero .lede { color: rgba(255,255,255,0.88); max-width: 54ch; margin-bottom: 1.5rem; font-size: 1.1rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1rem; }
.hero-trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: rgba(255,255,255,0.8); }
.hero-trust-item::before { content: "✓"; color: var(--green); font-weight: 900; }

.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
}
.hero-card-logo { margin-bottom: 1rem; }
.hero-card h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.hero-card-contact-line { display: flex; gap: 0.6rem; align-items: center; margin-bottom: 0.6rem; font-size: 0.88rem; color: rgba(255,255,255,0.85); }
.hero-card-contact-line .label { color: rgba(255,255,255,0.6); min-width: 55px; }
.hero-card-contact-line a { color: #fff; }
.hero-tagline { display: flex; gap: 0.8rem; margin-top: 1.25rem; flex-wrap: wrap; }
.hero-tagline span {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,0.65);
  padding-left: 0.75rem; border-left: 2px solid var(--green);
}
@media (max-width: 900px) { .hero .wrap { grid-template-columns: 1fr; } .hero-card { display: none; } }

/* =====================================================================
   SERVICE CATEGORY CARDS
   ===================================================================== */
.category-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: var(--shadow-card);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.category-card .card-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.4rem; }
.category-card h3 { color: var(--navy-deep); margin-bottom: 0.5rem; font-size: 1.05rem; }
.category-card p { color: var(--ink-muted); font-size: 0.9rem; flex-grow: 1; margin-bottom: 1rem; }
.category-card .card-link { color: var(--green); font-weight: 700; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 0.3rem; margin-top: auto; }
.category-card .card-link::after { content: "→"; }
.category-card:hover .card-link { color: var(--green-nav); }

/* =====================================================================
   CHECKLIST, PROCESS STEPS
   ===================================================================== */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 0.5rem 0; border-bottom: 1px dashed var(--line); font-size: 0.95rem;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: ""; flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px;
  border-radius: 50%; background: var(--green); flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpath d='M3 8.5l3 3 7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}

.process-steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.process-step { display: grid; grid-template-columns: 52px 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.process-step:last-child { border-bottom: none; }
.step-num {
  counter-increment: step; width: 44px; height: 44px;
  border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.step-num::before { content: counter(step); }
.process-step h4 { margin-bottom: 0.2rem; color: var(--navy-deep); }
.process-step p { color: var(--ink-muted); margin: 0; font-size: 0.92rem; }

/* =====================================================================
   PAGE LAYOUT — content + sidebar
   ===================================================================== */
.page-layout { display: grid; grid-template-columns: 1fr 320px; gap: var(--space-5); align-items: start; }
.sidebar { position: sticky; top: 70px; }
.sidebar-card {
  background: var(--surface); border: 1px solid var(--line);
  border-top: 4px solid var(--green); border-radius: var(--radius-md);
  padding: var(--space-3); box-shadow: var(--shadow-card);
}
.sidebar-card h3 { font-size: 1.05rem; color: var(--navy-deep); margin-bottom: 0.6rem; }
.sidebar-card p { font-size: 0.88rem; color: var(--ink-muted); }
.sidebar-contact { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: 0.85rem; }
.sidebar-contact div { margin-bottom: 0.4rem; color: var(--ink-muted); }
.sidebar-contact strong { color: var(--navy-deep); }
.sidebar-contact a { color: var(--navy); font-weight: 600; }
@media (max-width: 980px) { .page-layout { grid-template-columns: 1fr; } .sidebar { position: static; } }

/* =====================================================================
   PAGE HERO (service/content pages) — navy with readable text
   ===================================================================== */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 2.5rem 0 2rem;
  position: relative;
}
.page-hero::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--green);
}
.page-hero .breadcrumb { font-size: 0.8rem; margin-bottom: 0.75rem; color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero .lede { color: rgba(255,255,255,0.88); max-width: 68ch; font-size: 1rem; }

/* =====================================================================
   PAGE CONTENT — fix: ensure body text is always dark on white
   ===================================================================== */
.page-content { background: var(--surface); }
.page-content h2 { color: var(--navy-deep); margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.4rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--green-light); }
.page-content h3 { color: var(--navy-deep); margin-top: 1.5rem; margin-bottom: 0.5rem; font-size: 1.1rem; }
.page-content p { color: var(--ink); line-height: 1.75; }
.page-content ul:not(.checklist) { padding-left: 1.2rem; }
.page-content ul:not(.checklist) li { margin-bottom: 0.4rem; color: var(--ink); }

/* =====================================================================
   FAQ ACCORDION
   ===================================================================== */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.1rem 0; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; font-weight: 700; font-size: 0.97rem;
  color: var(--navy-deep); cursor: pointer;
}
.faq-q .plus { font-size: 1.4rem; color: var(--green); flex-shrink: 0; line-height: 1; transition: transform 0.2s; }
.faq-item[open] .faq-q .plus { transform: rotate(45deg); }
.faq-a { padding: 0 0 1.1rem; color: var(--ink-muted); font-size: 0.93rem; line-height: 1.75; }
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }

/* =====================================================================
   RELATED SERVICES BLOCK
   ===================================================================== */
.related-services {
  background: var(--navy-light); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: var(--space-3); margin-top: 1.5rem;
}
.related-services h3 { font-size: 1rem; color: var(--navy-deep); margin-bottom: 0.75rem; }
.related-services ul { list-style: none; padding: 0; margin: 0; }
.related-services li { margin-bottom: 0.45rem; }
.related-services a { font-weight: 600; font-size: 0.9rem; color: var(--navy); display: inline-flex; align-items: center; gap: 0.3rem; }
.related-services a::before { content: "›"; color: var(--green); font-size: 1.1rem; font-weight: 900; }
.related-services a:hover { color: var(--green-nav); }

/* =====================================================================
   CALLOUT / CAUTION
   ===================================================================== */
.callout-caution {
  background: var(--caution-bg); border-left: 4px solid var(--caution);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  font-size: 0.9rem; color: #6b3d12; margin: 1.25rem 0;
}

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band {
  background: var(--navy); color: #fff;
  border-radius: var(--radius-md); padding: var(--space-4);
  text-align: center; margin-top: var(--space-5);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 58ch; margin: 0 auto 1.5rem; }
.btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =====================================================================
   INDUSTRIES SECTION
   ===================================================================== */
.industry-pill {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 4px solid var(--green); border-radius: var(--radius-sm);
  padding: 0.75rem 1rem; font-size: 0.88rem; font-weight: 600;
  color: var(--navy-deep); display: flex; align-items: center; gap: 0.6rem;
}

/* =====================================================================
   BREADCRUMB
   ===================================================================== */
.breadcrumb { font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 1rem; }
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--ink-muted); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding-top: var(--space-5); }
.footer-top { padding-bottom: var(--space-4); border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--space-4); }
.footer-grid h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.footer-grid a:hover { color: #fff; }
.footer-brand img { height: 50px; margin-bottom: 0.75rem; filter: brightness(10); opacity: 0.9; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.6); max-width: 30ch; }
.footer-bottom {
  padding: 1.1rem 0; display: flex; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* =====================================================================
   WHATSAPP FLOAT BUTTON
   ===================================================================== */
.float-whatsapp {
  position: fixed; bottom: 24px; right: 24px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25); z-index: 200;
  transition: transform 0.15s ease;
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp svg { width: 30px; height: 30px; fill: #fff; }

/* =====================================================================
   FORMS
   ===================================================================== */
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.35rem; color: var(--navy-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.93rem; background: #fff; color: var(--ink);
  transition: border-color 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green); outline: none;
  box-shadow: 0 0 0 3px rgba(61,122,46,0.15);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

/* =====================================================================
   UTILITY
   ===================================================================== */
.text-center { text-align: center; }
.muted { color: var(--ink-muted); }
.mt-0 { margin-top: 0; }
.badge {
  display: inline-block; background: var(--green-light); color: var(--green-nav);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 20px;
}
.badge-navy { background: var(--navy-light); color: var(--navy); }
.divider { border: none; border-top: 1px solid var(--line); margin: var(--space-3) 0; }
.pill { display: inline-block; padding: 0.2rem 0.65rem; border-radius: 20px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; }
.pill-published, .pill-approved, .pill-replied { background: #eaf4e6; color: var(--green-nav); }
.pill-draft, .pill-pending { background: #fdf5ec; color: var(--caution); }
.pill-new { background: var(--navy-light); color: var(--navy); }
.pill-archived, .pill-hidden { background: #ececec; color: #777; }

/* Ensure content sections always have white background */
.section-content-area {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}