/* ==========================================================================
   African Nursing Activists — shared site styles
   Used by: home (/), about, programs, events listing, get-involved,
   resources, contact (and any future coming-soon page).
   The webinar landing page at /events/ana-ind-2026-webinar has its
   own inline CSS — its footer markup mirrors this one's class names.
   ========================================================================== */

:root {
  --ana-red: #EF233C;
  --ana-crimson: #C41E2C;
  --ana-emerald: #059669;
  --ana-deep-green: #064E3B;
  --ana-gold: #FFB400;
  --ana-deep-gold: #D89500;
  --ana-ink: #0A0A0A;
  --ana-charcoal: #2D2D2D;
  --ana-cream: #FFF8E7;
  --ana-off-white: #FAFAFA;
  --ana-white: #FFFFFF;
  --ana-grey: #6C6C6C;
  --ana-border: #D9D9D9;

  --font-display: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --shadow-sm: 0 2px 6px rgba(10, 10, 10, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 10, 10, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 10, 10, 0.18);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 92px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ana-ink);
  background: var(--ana-off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga", "ss01";
}
img { max-width: 100%; display: block; }
a { color: var(--ana-red); text-decoration: none; transition: color 200ms var(--ease); }
a:hover { color: var(--ana-crimson); }
::selection { background: rgba(239, 35, 60, 0.2); color: var(--ana-ink); }
:focus-visible {
  outline: 2px solid var(--ana-emerald);
  outline-offset: 2px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible {
  outline-offset: 3px;
}

/* ===== Header (sticky, dark) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-header-inner {
  max-width: 1280px;
  height: var(--header-height);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ana-white);
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
  text-decoration: none;
  letter-spacing: -0.005em;
}
.brand-lockup:hover, .brand-lockup:focus { color: var(--ana-white); }
.brand-lockup img { height: 48px; width: auto; display: block; }
.brand-lockup-text {
  display: inline-block;
  font-size: 15px;
  line-height: 1.15;
  color: var(--ana-white);
}
.nav-drawer-head .brand-lockup img { height: 40px; }
.nav-drawer-head .brand-lockup-text { font-size: 14px; }
.footer-brand-block .brand-lockup img { height: 44px; }
.footer-brand-block .brand-lockup-text { font-size: 14px; }
@media (max-width: 480px) {
  .site-header-inner .brand-lockup img { height: 28px; }
  .site-header-inner .brand-lockup-text { font-size: 12px; }
}
/* Desktop primary nav */
.header-nav {
  display: none;
  gap: 2px;
  margin-left: auto;
  margin-right: 24px;
  align-items: center;
  padding: 0;
}
@media (min-width: 980px) {
  .header-nav { display: flex; }
}
.header-nav > li { list-style: none; position: relative; }
.header-nav > li > a, .header-nav > li > button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}
.header-nav > li > a:hover,
.header-nav > li > button:hover,
.header-nav > li > a[aria-current="page"] {
  color: var(--ana-white);
  background: rgba(255, 255, 255, 0.06);
}
.header-nav > li > button {
  font-family: var(--font-display);
}
.header-nav > li > button .caret {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 3px;
  transition: transform 200ms var(--ease), margin 200ms var(--ease);
}
.header-nav > li[aria-expanded="true"] > button .caret {
  transform: rotate(-135deg);
  margin-bottom: 0;
  margin-top: 3px;
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 240px;
  background: var(--ana-white);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms;
  z-index: 60;
}
.header-nav > li[aria-expanded="true"] .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--ana-charcoal);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 160ms var(--ease), color 160ms var(--ease);
}
.nav-dropdown a small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--ana-grey);
  margin-top: 2px;
}
.nav-dropdown a:hover {
  background: var(--ana-cream);
  color: var(--ana-ink);
}
.nav-dropdown a:hover small { color: var(--ana-charcoal); }

/* Header action buttons cluster (desktop only) */
.header-actions {
  display: none;
  align-items: center;
  gap: 10px;
}
@media (min-width: 980px) {
  .header-actions { display: inline-flex; }
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ana-red);
  color: var(--ana-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(239, 35, 60, 0.32);
  text-decoration: none;
  transition: background 200ms var(--ease), transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.header-cta:hover {
  background: var(--ana-crimson);
  color: var(--ana-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(239, 35, 60, 0.42);
}
.header-cta svg { width: 12px; height: 12px; }

.header-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--ana-white);
  background: transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: border-color 180ms var(--ease), color 180ms var(--ease), background 180ms var(--ease);
}
.header-cta-ghost:hover {
  border-color: var(--ana-gold);
  color: var(--ana-gold);
  background: rgba(255, 180, 0, 0.06);
}

/* Hamburger button — only on narrow viewports */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--ana-white);
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
@media (min-width: 980px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile slide-in nav drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
}
.nav-drawer.is-open { visibility: visible; pointer-events: auto; }
.nav-drawer-scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 260ms var(--ease);
}
.nav-drawer.is-open .nav-drawer-scrim { opacity: 1; }
.nav-drawer-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 86vw);
  height: 100%;
  background: var(--ana-ink);
  color: var(--ana-white);
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform 320ms var(--ease);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
}
.nav-drawer.is-open .nav-drawer-panel { transform: translateX(0); }
.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-drawer-close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--ana-white);
  cursor: pointer;
}
.nav-drawer-close svg { width: 22px; height: 22px; }
.nav-drawer-body {
  padding: 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1 1 auto;
  overflow-y: auto;
}
.nav-drawer-body a {
  display: block;
  padding: 12px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: 0.01em;
  transition: color 180ms var(--ease);
}
.nav-drawer-body a:last-child { border-bottom: none; }
.nav-drawer-body a:hover, .nav-drawer-body a[aria-current="page"] { color: var(--ana-gold); }
.nav-drawer-foot {
  margin-top: auto;
  padding: 16px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-drawer-foot .header-cta,
.nav-drawer-foot .header-cta-ghost {
  width: 100%;
  justify-content: center;
}
body.no-scroll { overflow: hidden; }

/* ===== Coming-soon hero ===== */
.coming-soon {
  min-height: calc(100vh - var(--header-height) - 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 24px 80px;
  text-align: center;
}
.coming-soon-inner { max-width: 620px; width: 100%; }
.coming-soon-illu {
  width: 180px;
  height: auto;
  display: block;
  margin: 0 auto 28px;
  filter: drop-shadow(0 12px 24px rgba(10, 10, 10, 0.06));
}
.coming-soon-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ana-red);
  background: rgba(239, 35, 60, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.coming-soon h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1.12;
  color: var(--ana-charcoal);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.coming-soon-lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ana-grey);
  margin: 0 0 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== 35% site-progress block ===== */
.progress-block {
  max-width: 340px;
  margin: 0 auto 36px;
  text-align: left;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--ana-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.progress-label .pct {
  font-size: 14px;
  color: var(--ana-red);
  letter-spacing: 0;
}
.progress-track {
  width: 100%;
  height: 6px;
  background: rgba(10, 10, 10, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--ana-red), var(--ana-crimson));
  border-radius: 999px;
  animation: progress-fill 900ms var(--ease) 250ms forwards;
}
@keyframes progress-fill {
  to { width: 35%; }
}

/* ===== Coming-soon CTA (link to the webinar) ===== */
.coming-soon-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ana-red);
  color: var(--ana-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(239, 35, 60, 0.28);
  transition: transform 200ms var(--ease), background 200ms var(--ease), box-shadow 200ms var(--ease);
}
.coming-soon-cta:hover {
  background: var(--ana-crimson);
  color: var(--ana-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(239, 35, 60, 0.35);
}
.coming-soon-cta svg { width: 14px; height: 14px; transition: transform 200ms var(--ease); }
.coming-soon-cta:hover svg { transform: translateX(3px); }

/* ===== Homepage hero (slightly different from coming-soon) ===== */
.home-hero {
  position: relative;
  padding: 96px 24px 80px;
  background: linear-gradient(180deg, var(--ana-off-white), var(--ana-cream) 100%);
  text-align: center;
  overflow: hidden;
}
.home-hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.home-hero .coming-soon-eyebrow { background: rgba(5, 150, 105, 0.10); color: var(--ana-emerald); }
.home-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.08;
  margin: 0 0 18px;
  color: var(--ana-charcoal);
  letter-spacing: -0.02em;
}
.home-hero h1 .accent { color: var(--ana-red); }
.home-hero-lead {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--ana-charcoal);
  max-width: 620px;
  margin: 0 auto 28px;
}
.hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 4px;
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  background: transparent;
  border: 1.5px solid rgba(10, 10, 10, 0.18);
  color: var(--ana-charcoal);
  transition: background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease), transform 180ms var(--ease);
}
.btn-outline-dark:hover {
  background: var(--ana-ink);
  border-color: var(--ana-ink);
  color: var(--ana-white);
  transform: translateY(-2px);
}

/* Featured event card on homepage + events page */
.featured-event {
  padding: 64px 24px 96px;
  background: var(--ana-off-white);
}
.featured-event-inner { max-width: 920px; margin: 0 auto; }
.featured-event-eyebrow {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ana-red);
  margin: 0 0 28px;
}
.event-card {
  background: var(--ana-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border: 1px solid rgba(10, 10, 10, 0.06);
}
@media (max-width: 760px) {
  .event-card { grid-template-columns: 1fr; }
}
.event-card-media {
  background: var(--ana-ink) url('/public/images/hero/hero-bg.webp') center/cover no-repeat;
  min-height: 240px;
  position: relative;
}
.event-card-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.2), rgba(10,10,10,0.55));
}
.event-card-media .badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(5, 150, 105, 0.95);
  color: var(--ana-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  z-index: 1;
}
.event-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.event-card-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0;
  color: var(--ana-charcoal);
}
.event-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
  color: var(--ana-grey);
  margin: 4px 0 8px;
}
.event-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.event-card-meta svg {
  width: 14px;
  height: 14px;
  color: var(--ana-red);
}
.event-card-body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ana-charcoal);
  margin: 0;
}
.event-card-tagline {
  font-family: var(--font-body);
  font-size: 16.5px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ana-grey);
  margin: 2px 0 4px;
}
.event-card-cta {
  align-self: flex-start;
  margin-top: 8px;
}

/* ===== Vision + Mission (two-card split) ===== */
.vm-section {
  padding: 96px 24px 88px;
  background: var(--ana-white);
}
.vm-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 720px) {
  .vm-inner { grid-template-columns: 1fr; gap: 20px; }
  .vm-section { padding: 72px 24px 64px; }
}
.vm-card {
  position: relative;
  padding: 44px 36px 40px;
  border-radius: var(--radius-lg);
  background: var(--ana-white);
  border: 1px solid rgba(10, 10, 10, 0.06);
  overflow: hidden;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}
.vm-card:hover {
  border-color: rgba(10, 10, 10, 0.12);
  box-shadow: 0 12px 32px rgba(10, 10, 10, 0.06);
}
.vm-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 56px; height: 4px;
  background: var(--ana-emerald);
}
.vm-card.is-mission::before { background: var(--ana-red); }
.vm-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ana-emerald);
  margin: 0 0 14px;
}
.vm-card.is-mission .vm-eyebrow { color: var(--ana-red); }
.vm-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.15;
  color: var(--ana-charcoal);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.vm-card p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ana-charcoal);
  margin: 0;
}

/* ===== Membership CTA (image-led editorial split) ===== */
.membership-cta {
  padding: 96px 24px;
  background: var(--ana-cream);
}
.membership-cta-inner { max-width: 1200px; margin: 0 auto; }
.mc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ana-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(10, 10, 10, 0.08), 0 2px 8px rgba(10, 10, 10, 0.04);
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.05);
  min-height: 620px;
}
@media (max-width: 900px) {
  .mc-card { grid-template-columns: 1fr; min-height: 0; }
}
.mc-content {
  padding: 64px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 600px) { .mc-content { padding: 40px 28px 36px; } }
.mc-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ana-emerald);
  margin: 0 0 14px;
}
.membership-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.625rem, 3.2vw, 2.25rem);
  line-height: 1.15;
  color: var(--ana-charcoal);
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.mc-lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ana-grey);
  margin: 0 0 28px;
}
.mc-perks {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mc-perks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.mc-perk-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(5, 150, 105, 0.10);
  color: var(--ana-emerald);
}
.mc-perk-icon svg { width: 18px; height: 18px; }
.mc-perks li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 4px;
}
.mc-perks li strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ana-charcoal);
}
.mc-perks li span {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ana-grey);
}
.mc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.mc-actions .wa-icon { width: 18px; height: 18px; }
.mc-actions .mc-secondary {
  background: transparent;
  border: 1.5px solid rgba(10, 10, 10, 0.18);
  color: var(--ana-charcoal);
}
.mc-actions .mc-secondary:hover {
  border-color: var(--ana-charcoal);
  color: var(--ana-ink);
  background: rgba(10, 10, 10, 0.04);
}

/* Photo panel — full-height image with editorial caption block */
.mc-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--ana-deep-green);
  align-self: stretch;
}
.mc-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.mc-photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0) 0%,
    rgba(4, 78, 59, 0.35) 50%,
    rgba(4, 78, 59, 0.95) 100%
  );
  pointer-events: none;
}
.mc-photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 36px 32px;
  z-index: 1;
  color: var(--ana-white);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mc-photo-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ana-gold);
}
.mc-photo-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  color: var(--ana-white);
  letter-spacing: -0.005em;
  max-width: 340px;
}
.mc-photo-byline {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 900px) {
  .mc-photo { aspect-ratio: 4 / 3; min-height: 320px; }
  .mc-photo-caption { padding: 24px 24px 22px; }
  .mc-photo-line { font-size: 16px; max-width: 100%; }
  .mc-photo-byline { margin-top: 10px; }
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease), transform 180ms var(--ease), box-shadow 200ms var(--ease);
}
.btn-primary {
  background: var(--ana-red);
  color: var(--ana-white);
  box-shadow: 0 8px 24px rgba(239, 35, 60, 0.36);
}
.btn-primary:hover {
  background: var(--ana-crimson);
  color: var(--ana-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(239, 35, 60, 0.45);
}
.btn-emerald {
  background: var(--ana-emerald);
  color: var(--ana-white);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.32);
}
.btn-emerald:hover {
  background: var(--ana-deep-green);
  color: var(--ana-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(5, 150, 105, 0.4);
}
.btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: var(--ana-white);
}
.btn-secondary:hover {
  border-color: var(--ana-gold);
  color: var(--ana-gold);
  background: rgba(255, 180, 0, 0.06);
}
.btn-primary svg, .btn-secondary svg { width: 14px; height: 14px; }

/* ===== What We Do tiles (homepage) ===== */
.pillars {
  padding: 88px 24px;
  background: var(--ana-off-white);
}
.pillars-inner { max-width: 1100px; margin: 0 auto; }
.pillars-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.pillars-header .eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ana-red);
  margin: 0 0 12px;
}
.pillars-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  line-height: 1.15;
  color: var(--ana-charcoal);
  margin: 0;
  letter-spacing: -0.01em;
}
.pillars-lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ana-grey);
  margin: 18px auto 0;
  max-width: 580px;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar-card {
  background: var(--ana-white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 10, 10, 0.06);
  transition: border-color 260ms var(--ease), transform 260ms var(--ease), box-shadow 260ms var(--ease);
}
.pillar-card:hover {
  border-color: rgba(239, 35, 60, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pillar-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ana-red);
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pillar-tag .soon {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ana-grey);
  background: rgba(10, 10, 10, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
}
.pillar-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1875rem;
  line-height: 1.25;
  color: var(--ana-charcoal);
  margin: 0 0 10px;
}
.pillar-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ana-grey);
  margin: 0 0 16px;
}
.pillar-card a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ana-red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
}
.pillar-card a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 200ms var(--ease);
}
.pillar-card a:hover svg { transform: translateX(3px); }

/* ===== Construction strip (just above footer) ===== */
.construction-strip {
  background: var(--ana-cream);
  border-top: 1px solid rgba(255, 180, 0, 0.32);
  border-bottom: 1px solid rgba(255, 180, 0, 0.32);
  padding: 18px 24px;
}
.construction-strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--ana-charcoal);
}
.construction-strip .pulse {
  width: 10px;
  height: 10px;
  background: var(--ana-deep-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 180, 0, 0.6);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(255, 180, 0, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 180, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 180, 0, 0); }
}
.construction-strip strong { font-weight: 700; color: var(--ana-ink); }
.construction-strip .mini-track {
  flex: 1;
  min-width: 120px;
  max-width: 220px;
  height: 4px;
  background: rgba(10, 10, 10, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.construction-strip .mini-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--ana-deep-gold), var(--ana-red));
  border-radius: 999px;
  animation: mini-fill 1200ms var(--ease) 300ms forwards;
}
@keyframes mini-fill { to { width: 35%; } }
.construction-strip a {
  margin-left: auto;
  font-weight: 600;
  font-size: 13px;
  color: var(--ana-red);
}
.construction-strip a:hover { color: var(--ana-crimson); }

/* ===== Mission strip (homepage) ===== */
.mission-strip {
  padding: 72px 24px;
  background: var(--ana-ink);
  color: var(--ana-white);
  text-align: center;
}
.mission-strip-inner { max-width: 760px; margin: 0 auto; }
.mission-strip .eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ana-gold);
  margin: 0 0 14px;
}
.mission-strip h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--ana-white);
}
.mission-strip p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* ===== Footer (normal multi-column website footer) ===== */
.site-footer {
  background: var(--ana-ink);
  color: rgba(255, 255, 255, 0.7);
}
.site-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 44px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand-block { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand-block { grid-column: auto; }
}
.footer-brand-block .brand-lockup img { height: 40px; }
.footer-brand-block .brand-lockup-text { font-size: 14px; }
.footer-tagline {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ana-gold);
}
.footer-mission {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 200ms var(--ease);
  word-break: break-word;
}
.footer-col a:hover { color: var(--ana-gold); }
.footer-col .soon {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
}
/* Footer social ICONS (circular outlined → gold on hover) */
.footer-social-icons {
  display: inline-flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  transition: color 200ms var(--ease), border-color 200ms var(--ease), background 200ms var(--ease), transform 200ms var(--ease);
}
.footer-social-icons a:hover {
  color: var(--ana-gold);
  border-color: var(--ana-gold);
  background: rgba(255, 180, 0, 0.08);
  transform: translateY(-2px);
}
.footer-social-icons svg { width: 16px; height: 16px; }

/* "Support our work" mini-card in the footer Connect column */
.footer-support {
  margin-top: 18px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(239, 35, 60, 0.16), rgba(255, 180, 0, 0.06));
  border: 1px solid rgba(239, 35, 60, 0.32);
  border-radius: var(--radius-md);
}
.footer-support .label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ana-gold);
  margin: 0 0 6px;
}
.footer-support h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ana-white);
  margin: 0 0 10px;
  line-height: 1.3;
}
.footer-support a.donate-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ana-red);
  background: var(--ana-white);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: background 200ms var(--ease), transform 180ms var(--ease);
}
.footer-support a.donate-link:hover {
  background: var(--ana-gold);
  color: var(--ana-ink);
  transform: translateY(-1px);
}
.footer-support a.donate-link svg { width: 12px; height: 12px; flex-shrink: 0; }

/* Top "Building in public" strip inside footer dark area */
.footer-construction {
  background: rgba(255, 180, 0, 0.08);
  border-bottom: 1px solid rgba(255, 180, 0, 0.18);
  padding: 14px 24px;
}
.footer-construction-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 12.5px;
  color: rgba(255, 240, 200, 0.92);
  flex-wrap: wrap;
}
.footer-construction .icon {
  width: 18px;
  height: 18px;
  color: var(--ana-gold);
  flex-shrink: 0;
}
.footer-construction strong { color: var(--ana-gold); font-weight: 700; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom-right { display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 200ms var(--ease);
}
.footer-bottom a:hover { color: var(--ana-gold); }
.footer-bottom a strong { font-weight: 700; }
.footer-bottom .ext-link-icon {
  width: 11px;
  height: 11px;
  margin-left: 4px;
  vertical-align: -1px;
  opacity: 0.7;
}

/* ===== Page sections shared by Contact / Report Quackery ===== */
.page-hero {
  background: var(--ana-off-white);
  padding: 88px 24px 56px;
  text-align: center;
}
.page-hero-inner { max-width: 720px; margin: 0 auto; }
.page-hero .eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ana-red);
  background: rgba(239, 35, 60, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1.1;
  color: var(--ana-charcoal);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.page-hero p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ana-grey);
  margin: 0 auto;
  max-width: 580px;
}

.page-section {
  padding: 56px 24px 88px;
  background: var(--ana-off-white);
}
.page-section-inner { max-width: 920px; margin: 0 auto; }

/* Intent tile grid (Contact page) */
.intent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 720px) { .intent-grid { grid-template-columns: 1fr; } }
.intent-tile {
  background: var(--ana-white);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--radius-lg);
  padding: 26px 26px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 240ms var(--ease), transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.intent-tile:hover {
  border-color: rgba(239, 35, 60, 0.32);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.intent-tile .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ana-red);
}
.intent-tile h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1875rem;
  color: var(--ana-charcoal);
  margin: 0;
  line-height: 1.25;
}
.intent-tile p {
  font-size: 15.5px;
  color: var(--ana-grey);
  margin: 4px 0 0;
  line-height: 1.55;
}
.intent-tile .arrow {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ana-red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  white-space: nowrap;
}
.intent-tile .arrow svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 200ms var(--ease);
}
.intent-tile:hover .arrow svg { transform: translateX(3px); }

/* Contact details strip */
.contact-strip {
  background: var(--ana-cream);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  border: 1px solid rgba(255, 180, 0, 0.18);
}
@media (max-width: 720px) { .contact-strip { grid-template-columns: 1fr; } }
.contact-strip .col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ana-red);
  margin: 0 0 10px;
}
.contact-strip .col a, .contact-strip .col p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ana-charcoal);
  display: block;
  margin: 0;
}

/* Report Quackery — slightly more serious feel */
.rq-hero { background: linear-gradient(180deg, var(--ana-off-white), rgba(239, 35, 60, 0.04)); }
.rq-hero .eyebrow { background: rgba(239, 35, 60, 0.12); color: var(--ana-crimson); }
.rq-points {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 760px) { .rq-points { grid-template-columns: 1fr; } }
.rq-point {
  background: var(--ana-white);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-left: 4px solid var(--ana-red);
  border-radius: var(--radius-md);
  padding: 22px 22px 20px;
}
.rq-point .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.875rem;
  color: var(--ana-red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.rq-point h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ana-charcoal);
  margin: 12px 0 8px;
  line-height: 1.3;
}
.rq-point p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ana-grey);
  margin: 0;
}
.rq-callout {
  background: var(--ana-ink);
  color: var(--ana-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.rq-callout h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ana-white);
  margin: 0 0 10px;
}
.rq-callout p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.74);
  margin: 0 auto 22px;
  max-width: 480px;
  line-height: 1.65;
}
.rq-callout-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ===== Contact page: form + aside ===== */
.contact-page .page-section-inner { max-width: 1140px; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

.contact-form {
  background: var(--ana-white);
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 560px) { .contact-form { padding: 24px 20px 24px; } }

.form-row { margin-bottom: 20px; }
.form-row.two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) { .form-row.two-up { grid-template-columns: 1fr; } }
.form-row.honey { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.form-row label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ana-charcoal);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.form-row label span {
  color: var(--ana-red);
  margin-left: 2px;
}
.form-row label small {
  font-weight: 400;
  color: var(--ana-grey);
  font-size: 11.5px;
  margin-left: 4px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ana-ink);
  background: var(--ana-white);
  border: 1px solid rgba(10, 10, 10, 0.14);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-row textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-body);
}
.form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%236C6C6C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4,6 8,10 12,6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 14px;
  padding-right: 40px;
  cursor: pointer;
}
.form-row input:hover,
.form-row select:hover,
.form-row textarea:hover { border-color: rgba(10, 10, 10, 0.28); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--ana-emerald);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.12);
}
.form-row input[data-touched]:invalid,
.form-row textarea[data-touched]:invalid,
.form-row select[data-touched]:invalid {
  border-color: rgba(239, 35, 60, 0.4);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 10, 10, 0.06);
}
.form-actions .btn-primary {
  background: var(--ana-emerald);
  color: var(--ana-white);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.30);
}
.form-actions .btn-primary:hover:not(:disabled) {
  background: var(--ana-deep-green);
  color: var(--ana-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(5, 150, 105, 0.40);
}
.form-actions .btn-primary:disabled {
  opacity: 0.7;
  cursor: progress;
  transform: none;
}
.form-meta {
  margin: 0;
  font-size: 14px;
  color: var(--ana-grey);
  font-family: var(--font-body);
}

.form-feedback {
  margin-top: 16px;
  padding: 0;
  font-size: 14px;
  font-family: var(--font-body);
  line-height: 1.5;
  display: none;
}
.form-feedback.is-ok,
.form-feedback.is-error {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  margin-top: 20px;
}
.form-feedback.is-ok {
  background: rgba(5, 150, 105, 0.08);
  color: var(--ana-deep-green);
  border: 1px solid rgba(5, 150, 105, 0.20);
}
.form-feedback.is-error {
  background: rgba(239, 35, 60, 0.06);
  color: var(--ana-crimson);
  border: 1px solid rgba(239, 35, 60, 0.20);
}

/* Aside card */
.contact-aside { position: sticky; top: calc(var(--header-height) + 24px); }
@media (max-width: 880px) { .contact-aside { position: static; } }

.contact-card {
  background: var(--ana-ink);
  color: var(--ana-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(5, 150, 105, 0.18), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(255, 180, 0, 0.10), transparent 55%);
  pointer-events: none;
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ana-gold);
  margin: 0 0 10px;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ana-white);
  margin: 0 0 24px;
}
.contact-card-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-card-list .contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ana-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-card-list .contact-icon svg { width: 16px; height: 16px; }
.contact-card-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.contact-card-list strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.contact-card-list a,
.contact-card-list span {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ana-white);
  line-height: 1.4;
  word-break: break-word;
}
.contact-card-list a:hover { color: var(--ana-gold); }
.contact-card-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ana-gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.link-arrow svg {
  width: 14px;
  height: 14px;
  transition: transform 200ms var(--ease);
}
.link-arrow:hover { color: var(--ana-gold); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .progress-fill { width: 35% !important; }
  html { scroll-behavior: auto; }
}
