:root {
  /* Brand palette */
  --purple: #55145f;
  --purple-2: #6f1e78;
  --purple-3: #3a063f;
  --green: #3f6f14; /* darkened for AA on white */
  --green-bright: #69a629;
  --teal: #0d809b;
  --teal-ink: #0a6a82; /* darkened for AA on tints */
  --accent-gold: #c8922e;

  /* Ink + surfaces */
  --text: #21072a;
  --muted: #4d3b54;
  --surface: #ffffff;
  --surface-tint: #faf9fb;
  --hairline: rgba(33, 7, 42, 0.08);

  /* Brand tints (cool, 135deg corner washes) */
  --purple-50: #f6f0fa;
  --green-50: #eef6e7;
  --teal-50: #eef7fb;

  /* Radii */
  --radius: 14px;
  --radius-sm: 9px;

  /* Layered shadow system (cool ink) */
  --shadow-sm: 0 1px 2px rgba(33, 7, 42, 0.06), 0 2px 6px rgba(33, 7, 42, 0.05);
  --shadow-md: 0 1px 2px rgba(33, 7, 42, 0.06), 0 8px 20px -6px rgba(33, 7, 42, 0.12);
  --shadow-lg: 0 2px 4px rgba(33, 7, 42, 0.07), 0 18px 40px -12px rgba(33, 7, 42, 0.2);
  --shadow-btn: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 4px 12px -3px rgba(33, 7, 42, 0.28);
  --shadow-btn-hover: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 12px 22px -6px rgba(33, 7, 42, 0.32);

  /* Type */
  --headline: "Anton", "Arial Narrow", Impact, sans-serif;
  --body: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fs-h1: clamp(2.9rem, 6.4vw, 4.75rem);
  --fs-section: clamp(1.85rem, 3.4vw, 2.65rem);
  --fs-h2: clamp(1.4rem, 1.9vw, 1.6rem);
  --fs-h3: 0.95rem;
  --fs-body: 1rem;
  --fs-dense: 0.875rem;
  --fs-small: 0.78rem;
  --fs-label: 0.75rem;
  --fs-eyebrow: 0.75rem;
  --fs-micro: 0.6875rem;

  /* Spacing scale (8pt) */
  --s1: 4px;
  --s2: 8px;
  --s3: 16px;
  --s4: 24px;
  --s5: 32px;
  --s6: 48px;
  --s7: 64px;
  --s8: 80px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-rise: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 140ms;
  --dur-med: 240ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding-left: 18px;
}

li {
  margin: 0 0 6px;
  font-size: var(--fs-dense);
  font-weight: 400;
  color: #2a2230;
}

li::marker {
  color: var(--green-bright);
}

.eyebrow,
.hero-eyebrow {
  margin: 0 0 var(--s2);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Scroll reveal (only active with JS) ---------- */
.has-js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-rise), transform 0.6s var(--ease-rise);
  will-change: opacity, transform;
}

.has-js .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Hero entrance */
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.has-js .hero-content > * {
  opacity: 0;
  animation: heroIn 0.7s var(--ease-rise) forwards;
}
.has-js .hero-eyebrow {
  animation-delay: 0.05s;
}
.has-js .hero h1 {
  animation-delay: 0.13s;
}
.has-js .hero-services {
  animation-delay: 0.21s;
}
.has-js .hero-copy {
  animation-delay: 0.29s;
}
.has-js .hero-actions {
  animation-delay: 0.37s;
}

.container {
  width: min(1120px, calc(100% - 96px));
  margin: 0 auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 84px;
  padding: 0 var(--s6);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: min-height var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out),
    background-color var(--dur-med) var(--ease-out);
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 22px rgba(33, 7, 42, 0.1);
}

.brand img {
  width: 168px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.1vw, 28px);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--purple-3);
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
  transition: color var(--dur-fast) var(--ease-out);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--green-bright);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--green);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--purple);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 999px;
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  --hero-max: 1120px;
  --hero-gutter: max(48px, calc((100vw - var(--hero-max)) / 2));
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 55%, #fff 100%);
  z-index: 2;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 max(0px, calc(var(--hero-gutter) - 150px));
  z-index: 2;
  width: min(66vw, 760px);
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 38%,
    rgba(255, 255, 255, 0.92) 56%,
    rgba(255, 255, 255, 0.55) 74%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0 var(--hero-gutter) 0 auto;
  width: min(56vw, 680px);
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(560px, calc(100% - 96px));
  margin-left: var(--hero-gutter);
  padding: var(--s7) 0 var(--s6);
}

.hero h1 {
  max-width: 12ch;
  margin: 0 0 var(--s3);
  color: var(--purple);
  font-family: var(--headline);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.hero-services {
  margin: 0 0 var(--s3);
  color: var(--green);
  font-size: clamp(1.25rem, 2.3vw, 1.6rem);
  font-weight: 800;
  line-height: 1.12;
}

.hero-copy {
  max-width: 42ch;
  margin: 0 0 var(--s5);
  color: var(--muted);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s3);
}

/* ---------- Shared button-ish surfaces ---------- */
.action-card,
.footer-action,
.small-button {
  transition: transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}

.action-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
  box-shadow: var(--shadow-btn);
}

.action-card.purple {
  background: #5a1764;
}
.action-card.green {
  background: var(--green);
}
.action-card.teal {
  background: var(--teal);
}

.action-card:hover,
.footer-action:hover,
.small-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}

.action-card:active,
.footer-action:active,
.small-button:active {
  transform: translateY(0);
  box-shadow: var(--shadow-btn);
  transition-duration: 80ms;
}

.action-icon,
.market-icon,
.brand-mark,
.mini-icon,
.why-icon,
.tiny-icon {
  display: inline-block;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.action-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

/* ---------- Market strip ---------- */
.market-strip {
  padding: var(--s5) 0;
  background: var(--surface-tint);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.market-grid {
  display: grid;
  grid-template-columns: minmax(190px, 250px) repeat(auto-fit, minmax(78px, 1fr));
  align-items: center;
  gap: var(--s3);
}

.market-grid h2,
.section-title,
.panel h2,
.contact-band h2 {
  margin: 0;
  color: var(--purple);
  font-family: var(--headline);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.market-grid h2 {
  font-size: var(--fs-section);
}

.market-item {
  display: grid;
  justify-items: center;
  gap: var(--s2);
  min-width: 0;
  color: var(--purple);
  font-size: var(--fs-label);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

.market-icon {
  width: 40px;
  height: 40px;
  stroke-width: 2;
  color: var(--teal);
}

/* ---------- Sections + panels ---------- */
.section {
  padding: clamp(40px, 6vw, 64px) 0;
  background: #fff;
}

.section + .section {
  padding-top: 0;
}

.section-title {
  margin: 0 0 var(--s4);
  font-size: var(--fs-section);
}

.two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}

.panel,
.program-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.panel h2 {
  font-size: var(--fs-h2);
}

.panel h3,
.program-card h3,
.footer-grid h3 {
  margin: 0;
  color: var(--purple);
  font-family: var(--body);
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-panel {
  padding: var(--s4);
  background: linear-gradient(135deg, #fff 0%, #fff 55%, var(--purple-50) 100%);
}

.product-lists {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  margin-top: var(--s4);
}

.product-lists h3,
.program-card h3 {
  margin-bottom: var(--s2);
  color: var(--green);
}

.product-media {
  position: absolute;
  right: var(--s3);
  bottom: 0;
  width: 56%;
  max-height: 188px;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 10px 16px rgba(33, 7, 42, 0.18));
}

.distribution-panel {
  padding: var(--s4);
  background: linear-gradient(135deg, #f8fcff 0%, #f1f9fd 60%, #fff 100%);
}

.distribution-copy {
  position: relative;
  z-index: 2;
  max-width: 40ch;
  margin: 0 auto;
  text-align: center;
}

.distribution-copy p {
  margin: var(--s2) 0 0;
  font-size: var(--fs-dense);
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

.distribution-body {
  display: grid;
  grid-template-columns: 1fr 150px;
  align-items: center;
  gap: var(--s4);
  margin-top: var(--s4);
}

.distribution-body > * {
  min-width: 0;
}

.map-media {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.coverage-list {
  display: grid;
  gap: var(--s3);
}

.coverage-list div {
  display: grid;
  grid-template-columns: 26px 1fr;
  column-gap: var(--s2);
  align-items: start;
}

.coverage-list strong {
  display: block;
  color: var(--teal-ink);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.coverage-list p {
  grid-column: 2;
  margin: 2px 0 0;
  font-size: var(--fs-small);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.3;
}

.mini-icon {
  grid-row: span 2;
  width: 24px;
  height: 24px;
  color: var(--purple-2);
  stroke-width: 2;
}

/* ---------- Leadership ---------- */
.leadership-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr 1.2fr;
  gap: var(--s4);
}

.leadership-card,
.supporter-card {
  padding: var(--s4);
}

.leadership-card {
  overflow: visible;
}

.leadership-card h3 {
  margin-top: var(--s3);
  color: var(--muted);
  letter-spacing: 0.04em;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s3);
  margin-top: var(--s4);
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 6px 4px;
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.05;
}

.brand-mark {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  stroke-width: 2.4;
}

.brand-word {
  display: inline-block;
  white-space: nowrap;
}

.brand-word em {
  color: #c5362f;
  font-style: normal;
}

.smoothie-bowls {
  color: #6a2a86;
}

.smoothie-tv {
  color: var(--teal);
}

.supporter-logo {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: var(--s3);
  margin: var(--s3) 0 var(--s2);
}

.assoc-mark {
  display: block;
  width: 46px;
  height: 46px;
}

.assoc-mark svg {
  width: 100%;
  height: 100%;
}

.assoc-mark use {
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.supporter-logo strong {
  color: var(--green);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.supporter-card p {
  margin: 0;
  font-size: var(--fs-dense);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.4;
}

.image-banner {
  min-height: 150px;
  background: var(--purple);
}

.image-banner img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.image-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 8, 30, 0.55) 0%, rgba(24, 8, 30, 0.15) 55%, rgba(24, 8, 30, 0.05) 100%);
}

.image-banner-caption {
  position: absolute;
  left: var(--s4);
  bottom: var(--s4);
  z-index: 2;
  color: #fff;
  font-family: var(--headline);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

/* ---------- Programs ---------- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}

.program-card {
  min-height: 178px;
  padding: var(--s4);
  background: linear-gradient(135deg, #fff 0%, #fff 48%, var(--green-50) 100%);
}

.program-card.blue {
  background: linear-gradient(135deg, #f8fdff 0%, #f8fdff 48%, var(--teal-50) 100%);
}

.program-card.purple-tint {
  background: linear-gradient(135deg, #fff 0%, #fff 48%, var(--purple-50) 100%);
}

.program-card.blue h3 {
  color: var(--teal-ink);
}

.program-card.purple-tint h3 {
  color: var(--purple);
}

.program-copy {
  position: relative;
  z-index: 2;
  width: 46%;
}

.program-copy h3 {
  margin-bottom: var(--s2);
}

.program-card img {
  position: absolute;
  right: var(--s2);
  bottom: var(--s2);
  width: 52%;
  height: auto;
  max-height: 78%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 10px 14px rgba(33, 7, 42, 0.16));
}

/* ---------- Value grid ---------- */
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--s4);
}

.private-label-panel,
.why-panel,
.insights-panel {
  padding: var(--s4);
}

.private-label-panel h2,
.why-panel h2,
.insights-panel h2 {
  font-size: var(--fs-h2);
}

.private-label-panel p {
  margin: var(--s2) 0 var(--s3);
  font-size: var(--fs-dense);
  font-weight: 400;
  color: var(--muted);
}

.label-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--s2);
  margin: var(--s3) 0;
}

.label-icons span {
  display: grid;
  justify-items: center;
  gap: var(--s1);
  color: var(--purple);
  font-size: var(--fs-micro);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

.tiny-icon {
  width: 26px;
  height: 26px;
  color: var(--teal);
  stroke-width: 2;
}

.small {
  margin: var(--s3) 0;
  font-size: var(--fs-small);
  color: var(--muted);
  text-align: center;
}

.small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 40px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--green);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-btn);
}

.private-label-panel {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.private-label-panel .small-button {
  align-self: center;
  margin-top: auto;
}

.why-panel {
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s4) var(--s3);
  margin-top: var(--s4);
}

.why-grid div {
  display: grid;
  justify-items: center;
  gap: var(--s2);
}

.why-grid div:nth-child(even) {
  border-left: 1px solid var(--hairline);
  padding-left: var(--s3);
}

.why-grid strong {
  color: var(--purple);
  font-size: var(--fs-small);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.why-grid p {
  margin: 0;
  font-size: var(--fs-small);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.35;
}

.why-icon {
  width: 30px;
  height: 30px;
  color: var(--teal);
  stroke-width: 2;
}

.insights-panel {
  display: grid;
  grid-template-columns: 1fr 132px;
  gap: var(--s3);
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, #fff 60%, var(--purple-50) 100%);
}

.insights-panel ul {
  margin: var(--s3) 0;
}

.insights-panel li {
  font-size: var(--fs-dense);
}

.insights-panel img {
  align-self: end;
  justify-self: end;
  width: 150px;
  max-width: none;
  margin-right: calc(-1 * var(--s4));
  margin-bottom: calc(-1 * var(--s4));
  filter: drop-shadow(0 10px 16px rgba(33, 7, 42, 0.18));
}

/* ---------- Contact band ---------- */
.contact-band {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 5vw, 56px) 0;
  color: #fff;
  background: radial-gradient(120% 140% at 15% 0%, #6f1c78 0%, #4a1153 55%, #380c40 100%);
}

.contact-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.08), transparent 42%);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--s5);
}

.contact-band h2 {
  color: #fff;
  font-size: var(--fs-section);
  line-height: 1.05;
}

.contact-band p {
  max-width: 56ch;
  margin: var(--s3) 0 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s3);
}

.footer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: var(--shadow-btn);
}

.footer-action.green {
  border-color: transparent;
  background: var(--green);
}

.footer-action.teal {
  border-color: transparent;
  background: var(--teal);
}

.footer-action.outline {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.footer-action.outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* ---------- Footer ---------- */
.site-footer {
  color: #fff;
  background: linear-gradient(180deg, #380c40 0%, #2c0a33 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--s7) 0 var(--s4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 190px repeat(5, 1fr);
  gap: var(--s5) var(--s4);
}

.footer-logo {
  display: inline-block;
  padding: 12px 16px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.footer-logo img {
  width: 150px;
  height: auto;
}

.social-row {
  display: flex;
  gap: var(--s2);
  margin-top: var(--s4);
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  transition: background-color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.social-row a:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.social-icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-grid h3 {
  margin: 0 0 var(--s3);
  color: #fff;
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
}

.footer-grid a,
.footer-grid address {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--fs-small);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}

.footer-grid a {
  padding: 3px 0;
  transition: color var(--dur-fast) var(--ease-out);
}

.footer-grid a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-grid address a {
  display: inline-block;
}

.copyright {
  margin: var(--s6) 0 0;
  padding-top: var(--s4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-small);
  font-weight: 500;
  text-align: center;
}

/* ---------- Focus + tap targets ---------- */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.contact-band a:focus-visible,
.site-footer a:focus-visible {
  outline-color: #fff;
}

/* Anchor offset for sticky header */
section[id],
#top {
  scroll-margin-top: 96px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 0 var(--s4);
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: var(--s3) var(--s4) var(--s4);
    background: #fff;
    border-bottom: 1px solid var(--hairline);
    box-shadow: var(--shadow-lg);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out),
      visibility 0s 200ms;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }

  .primary-nav a {
    padding: 12px 4px;
  }

  .hero-content {
    width: min(520px, calc(100% - 48px));
    margin-left: var(--s4);
  }

  .two-up,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 188px;
  }

  .program-copy {
    width: 50%;
  }

  .leadership-grid {
    grid-template-columns: 1fr 1fr;
  }

  .leadership-grid .image-banner {
    grid-column: 1 / -1;
  }

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

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 148px auto;
    min-height: 72px;
  }

  .brand img {
    width: 140px;
  }

  .primary-nav {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background: linear-gradient(180deg, #fff 0%, #fff 52%, var(--surface-tint) 100%);
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: 300px;
    margin-top: var(--s4);
    order: 2;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    width: calc(100% - 48px);
    margin: 0 auto;
    padding: var(--s6) 0 0;
  }

  .hero-media {
    width: calc(100% - 48px);
    margin: var(--s5) auto 0;
    border-radius: var(--radius);
    overflow: hidden;
  }

  .hero-actions {
    margin-bottom: var(--s2);
  }

  .market-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s4) var(--s3);
  }

  .market-grid h2 {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: var(--s2);
  }

  .product-lists {
    grid-template-columns: 1fr 1fr;
    gap: var(--s3) var(--s4);
  }

  .product-media {
    position: static;
    width: 100%;
    max-height: none;
    margin-top: var(--s3);
  }

  .distribution-body {
    grid-template-columns: 1fr;
  }

  .map-media {
    max-width: 320px;
    margin: 0 auto;
  }

  .coverage-list {
    grid-template-columns: 1fr 1fr;
  }

  .leadership-grid,
  .value-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .program-copy {
    width: 54%;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-action {
    width: 100%;
  }

  .footer-grid {
    gap: var(--s5);
  }
}

@media (max-width: 460px) {
  .container {
    width: calc(100% - 36px);
  }

  .site-header {
    padding: 0 18px;
  }

  .hero-content {
    width: calc(100% - 36px);
  }

  .hero-media {
    width: calc(100% - 36px);
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .product-lists,
  .coverage-list,
  .why-grid,
  .label-icons {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid div:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .program-card {
    min-height: 220px;
  }

  .program-copy {
    width: 64%;
  }

  .program-card img {
    width: 50%;
  }

  .insights-panel {
    grid-template-columns: 1fr;
  }

  .insights-panel img {
    justify-self: center;
    margin: var(--s3) 0 calc(-1 * var(--s4));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .has-js .reveal,
  .has-js .hero-content > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
