/* ============================================================
   00 GLOBAL & BASE STYLES
   ============================================================ */

:root {
  /* CANONICAL gotomedia palette */
  --gm-safety-yellow: #f5d600;
  --gm-electric-blue: #39e7f1;
  --gm-dark-electric: #00707c;
  --gm-black: #000000;
  --gm-slate: #46525e;
  --gm-ash: #dee5e8;
  --gm-smoke: #f1f7f9;
  --gm-pomegranate: #ff286a;

  /* go2a accent */
  --go2a-accent: #39e7f1;
  --go2a-accent-pale: #d5f7fa;
  --go2a-accent-deep: #00707c;

  /* Semantic aliases */
  --navy: var(--gm-black);
  --blue: var(--gm-dark-electric);
  --paper: var(--gm-smoke);
  --paper-2: var(--gm-ash);
  --ink: var(--gm-black);
  --gray: var(--gm-slate);
  --yellow: var(--gm-safety-yellow);
  --char: var(--gm-black);

  --rule: rgba(0, 0, 0, 0.1);
  --rule-strong: rgba(0, 0, 0, 0.22);

  --max: 1240px;
  --gut: 56px;
  --gut-m: 28px;
  --pad: 120px;
  --pad-m: 72px;

  /* Spacing system */
  --space-xs: 8px;
  --space-s: 10px;
  --space-m: 12px;
  --space-l: 14px;
  --space-xl: 18px;
  --space-2xl: 24px;
  --space-3xl: 28px;
  --space-4xl: 32px;
  --space-5xl: 40px;
  --space-6xl: 56px;

  /* Layout constraints */
  --text-width-std: 56ch;

  /* Type system */
  --wordmark: "Lexend", sans-serif;
  --display: "Montserrat", "Sofia Sans", system-ui, sans-serif;
  --body: "Sofia Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--navy);
  color: var(--paper);
}

.s-navy ::selection {
  background: var(--paper);
  color: var(--navy);
}

/* Skip link */
.skip {
  position: absolute;
  left: -9999px;
  top: -9999px;
  background: var(--navy);
  color: var(--paper);
  padding: 14px 20px;
  z-index: 1000;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  text-decoration: none;
}

.skip:focus {
  left: 16px;
  top: 16px;
  outline: 2px solid var(--paper);
  outline-offset: 2px;
}

/* Containers & Sections */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
}

@media (max-width: 720px) {
  .wrap {
    padding: 0 var(--gut-m);
  }
}

section {
  padding: var(--pad) 0;
}

section.tight {
  padding: 88px 0;
}

@media (max-width: 720px) {
  section {
    padding: var(--pad-m) 0;
  }
}

.s-paper {
  background: var(--paper);
}

.s-navy {
  background: var(--navy);
  color: var(--paper);
}

.s-paper2 {
  background: var(--paper-2);
  color: var(--ink);
}

.s-yellow {
  background: var(--yellow);
  color: var(--char);
}

/* Typography Primitives */
.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 28px;
}

.s-navy .eyebrow {
  color: rgba(241, 247, 249, 0.6);
}

.s-yellow .eyebrow {
  color: rgba(42, 42, 46, 0.75);
}

.eyebrow-mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: var(--space-xs);
}

.eyebrow-mono-dark {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  margin-top: var(--space-xs);
  opacity: 0.78;
}

.display {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin: 0;
  padding-bottom: 0.06em;
}

h1.display {
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 1.05;
  padding-bottom: 0.04em;
}

h2.display {
  font-size: clamp(44px, 6.5vw, 88px);
  margin-bottom: 28px;
}

h3.display {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  margin: 0 0 12px;
}

.clamp-heading {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 24px;
}

.section-heading {
  font-size: clamp(28px, 3.4vw, 44px);
  margin-bottom: var(--space-2xl);
}

.hy {
  display: block;
}

.hy::after {
  content: "\2010";
}

.hero h1 .hy::after,
.s-navy .hy::after {
  color: var(--yellow);
}

p {
  margin: 0 0 1em;
  max-width: 62ch;
}

.lede {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.4;
  max-width: 42ch;
}

.lead {
  margin-top: 36px;
  color: var(--ink);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.5;
  max-width: 56ch;
}

.body-text-std {
  font-size: 17px;
  max-width: var(--text-width-std);
}

.body-text-std-mt {
  font-size: 17px;
  max-width: var(--text-width-std);
  margin-top: var(--space-l);
}

.body-text-wide {
  font-size: 17px;
  max-width: 60ch;
}

.text-accent {
  color: var(--go2a-accent);
}

.text-accent-deep {
  color: var(--go2a-accent-deep);
}

/* Buttons & Links */
.ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 14px 26px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 150ms ease,
    color 150ms ease;
}

.btn:hover {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}

.btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.btn.solid {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}

.btn.solid:hover {
  background: transparent;
  color: var(--navy);
}

.s-navy .btn {
  color: var(--paper);
  border-color: var(--paper);
}

.s-navy .btn:hover {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--paper);
}

.s-navy .btn.solid {
  background: var(--go2a-accent);
  color: var(--ink);
  border-color: var(--go2a-accent);
}

.s-navy .btn.solid:hover {
  background: var(--go2a-accent-pale);
  color: var(--ink);
  border-color: var(--go2a-accent-pale);
}

.btn .arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  line-height: 1;
  transition: transform 200ms ease;
}

.btn:hover .arrow {
  transform: translateX(2px);
}

.arrow-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-decoration: none;
}

.arrow-cta .circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--paper);
  display: inline-grid;
  place-items: center;
  font-size: 16px;
  transition: transform 220ms ease;
}

.arrow-cta:hover {
  color: var(--blue);
}

.arrow-cta:hover .circle {
  transform: translateX(4px);
  background: var(--blue);
}

.arrow-cta:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

/* Cards, Tiles & Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 880px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.card {
  padding: 36px 32px;
  border: 1px solid var(--rule);
  background: var(--paper);
  position: relative;
}

.s-paper2 .card {
  background: #fff;
}

.card .ix {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: block;
}

.card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-transform: lowercase;
  margin: 0 0 14px;
}

.card p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  max-width: none;
  margin: 0;
}

.tile {
  padding: 32px 28px 28px;
  background: #fff;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 180ms ease,
    transform 200ms ease;
  min-height: 240px;
}

.tile:hover {
  border-color: var(--blue);
}

.tile:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.tile .ix {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gray);
  text-transform: uppercase;
}

.tile h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.012em;
  text-transform: lowercase;
  margin: 0;
}

.tile p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  max-width: none;
  margin: 0;
}

.tile .tile-cta {
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}

.tile .tile-cta .arrow-i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  transition:
    transform 200ms ease,
    background 200ms ease,
    color 200ms ease;
}

.tile:hover .tile-cta .arrow-i {
  transform: translateX(3px);
  background: var(--navy);
  color: var(--paper);
}

/* Site Header & Navigation */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(8px);
}

header.site .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  color: var(--ink);
  font-family: var(--wordmark);
  font-weight: 500;
  font-size: 18px;
  text-transform: lowercase;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.lockup .gmark {
  width: 28px;
  height: 28px;
  display: inline-block;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("../logos/goto-g-mark.svg") no-repeat center / contain;
  mask: url("../logos/goto-g-mark.svg") no-repeat center / contain;
}

.lockup .practice {
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  opacity: 0.7;
  letter-spacing: 0.04em;
  text-transform: none;
  border-left: 1px solid var(--rule-strong);
  padding-left: 12px;
  margin-left: 2px;
}

nav.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav.nav-menu a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 0 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

nav.nav-menu a:hover {
  color: var(--blue);
}

nav.nav-menu a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--go2a-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

nav.nav-menu .nav-cta {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  padding: 0 18px;
  min-height: 44px;
  color: var(--navy);
  white-space: nowrap;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin: 0;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 300ms ease,
    opacity 300ms ease;
}

/* Mobile Nav Breakpoint */
@media (max-width: 720px) {
  .hamburger {
    display: flex;
    position: relative;
    z-index: 101;
  }

  .hamburger span {
    width: 22px;
    position: absolute;
  }

  .hamburger span:nth-child(1) {
    transform: translateY(-6px);
  }
  .hamburger span:nth-child(2) {
    opacity: 1;
  }
  .hamburger span:nth-child(3) {
    transform: translateY(6px);
  }

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

  nav.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    padding: 8px 0 24px;
    gap: 0;
    z-index: 50;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  }

  .hamburger[aria-expanded="true"] ~ nav.nav-menu {
    display: flex !important;
  }

  nav.nav-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 0 var(--gut-m);
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--rule);
  }

  nav.nav-menu a[aria-current="page"] {
    color: var(--ink);
    font-weight: 600;
  }

  nav.nav-menu a.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    height: 44px;
    padding: 0 24px;
    margin: 20px var(--gut-m) 0;
    width: calc(100% - (var(--gut-m) * 2));
    border: 1.5px solid var(--navy);
    border-radius: 999px;
    background: transparent;
    color: var(--navy);
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
  }

  nav.nav-menu a.nav-cta:hover {
    background: var(--navy);
    color: var(--paper);
  }
}

@media (max-width: 560px) {
  header.site .row {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  header.site .row .lockup {
    flex: 0 0 auto;
  }

  .practice {
    display: none;
  }
}

/* Site Footer */
footer.site {
  background: var(--ink);
  color: var(--paper);
  padding: 88px 0 56px;
}

footer.site .tag {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.05;
  text-transform: lowercase;
  letter-spacing: -0.018em;
  max-width: 18ch;
  margin: 0 0 64px;
}

footer.site .row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-top: 32px;
  border-top: 1px solid rgba(241, 247, 249, 0.18);
}

@media (max-width: 720px) {
  footer.site .row {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

footer.site .row strong {
  display: block;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 247, 249, 0.55);
  margin-bottom: 14px;
}

footer.site .row a {
  display: flex;
  align-items: center;
  color: var(--paper);
  text-decoration: none;
  font-size: 14px;
  min-height: 44px;
  padding: 0;
}

footer.site .row a:hover {
  color: var(--go2a-accent);
}

footer.site .row .brand-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer.site .row .brand-block .lockup {
  color: var(--paper);
}

footer.site .row .brand-block .lockup .practice {
  border-left-color: rgba(241, 247, 249, 0.32);
  color: rgba(241, 247, 249, 0.7);
}

footer.site .brand-meta {
  font-size: 13px;
  color: rgba(241, 247, 249, 0.6);
  margin-top: 6px;
  max-width: 36ch;
}

footer.site .legal {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(241, 247, 249, 0.55);
  letter-spacing: 0.06em;
}

/* Global Utilities */
.hero {
  padding-top: 96px;
  padding-bottom: 132px;
}

@media (max-width: 720px) {
  .hero {
    padding-top: 64px;
    padding-bottom: 80px;
  }
}

.hero .lead {
  margin-top: 36px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-20 {
  margin-top: 20px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-28 {
  margin-top: 28px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-56 {
  margin-top: 56px;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-s {
  margin-bottom: var(--space-s);
}
.mb-18 {
  margin-bottom: 18px;
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   01 PAGE: HOME (index.html)
   ============================================================ */

/* Hero section footnote on index */
.hero-footnote {
  display: block;
  margin-top: 14px;
  max-width: 56ch;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(241, 247, 249, 0.6);
}

.hero-footnote a {
  color: rgba(241, 247, 249, 0.75);
  text-decoration: underline;
}

.s-navy.hero .lead {
  color: var(--paper);
}

/* Yellow Bridge Band */
.bridge {
  padding: 96px 0;
}

@media (max-width: 720px) {
  .bridge {
    padding: 72px 0;
  }
}

.bridge p {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
  color: var(--char);
  max-width: 62ch;
}

/* Methodology Section */
.method .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 880px) {
  .method .row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.method .pillars {
  display: grid;
  gap: 18px;
}

.method .pillar {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}

.method .pillar .num {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.05em;
}

.method .pillar h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  text-transform: lowercase;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  line-height: 1.1;
}

.method .pillar p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray);
  margin: 0;
  max-width: none;
}

/* Trust Bar / Stat Block */
.trust {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.trust .intro {
  text-align: center;
  margin-bottom: 56px;
}

.trust .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

@media (max-width: 880px) {
  .trust .row {
    grid-template-columns: 1fr;
  }
}

.stat {
  padding: 28px 28px 36px;
  border-right: 1px solid var(--rule);
}

.stat:last-child {
  border-right: 0;
}

@media (max-width: 880px) {
  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .stat:last-child {
    border-bottom: 0;
  }
}

.stat .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  padding-bottom: 0.04em;
  color: var(--navy);
  margin-bottom: 12px;
  display: block;
}

.stat .num .unit {
  font-size: 0.5em;
  letter-spacing: -0.02em;
}

.stat p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 32ch;
  margin: 0;
}

.stat .meta-sub {
  display: block;
  margin-top: 4px;
  opacity: 0.7;
  font-size: 13px;
}

/* ============================================================
   02 PAGE: SERVICES (services.html)
   ============================================================ */

.engagement-shape {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.es-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.es-k {
  color: var(--gray);
  text-transform: uppercase;
}

.es-v {
  color: var(--ink);
  font-weight: 600;
}

.card-yellow {
  border-left: 4px solid var(--yellow);
}

.card-healthcare {
  border-left: 4px solid var(--go2a-accent);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
  display: flex;
  flex-direction: column;
}

.card-healthcare:hover {
  border-color: var(--go2a-accent-deep);
  transform: translateY(-2px);
}

.card-healthcare .engagement-shape {
  border-top-color: rgba(0, 126, 140, 0.2);
}

/* ============================================================
   03 PAGE: HEALTHCARE (healthcare.html)
   ============================================================ */

.responsive-two-col-slim {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 880px) {
  .responsive-two-col-slim {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.card.finding {
  background: #ffffff;
  border: 1px solid var(--rule);
  padding: 32px;
}

.card.finding .ix {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
  display: block;
}

.card.finding h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  margin: 0;
  color: var(--ink);
}

.card.finding p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

.hc-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 56px;
}

.hc-phase {
  background: #ffffff;
  border: 1px solid var(--rule);
  padding: 28px 32px;
  position: relative;
}

.hc-phase[data-emphasis] {
  border-left: 4px solid var(--go2a-accent);
}

.hc-phase-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--go2a-accent-deep);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.hc-flag {
  background: var(--go2a-accent-pale);
  color: #005963;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.hc-phase h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: lowercase;
  margin: 0 0 10px;
}

.hc-phase p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  max-width: none;
}

/* ============================================================
   04 PAGE: ABOUT (about.html)
   ============================================================ */

.ul-style {
  font-size: 16px;
  max-width: 56ch;
  margin-top: 14px;
  padding-left: 22px;
}

.li-style {
  margin-bottom: var(--space-s);
}

.para-mb-40 {
  margin-bottom: 40px;
}

.bios-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card.bio h3 {
  margin-bottom: 4px;
}

.bio-role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-bottom: 16px;
}

.card.bio p + p {
  margin-top: 12px;
}

.section-grid,
.section-grid-navy {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
}

@media (max-width: 880px) {
  .section-grid,
  .section-grid-navy {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.navy-section-para-1 {
  color: rgba(241, 247, 249, 0.85);
  font-size: 18px;
  line-height: 1.5;
  max-width: 56ch;
}

.navy-section-para-2 {
  color: rgba(241, 247, 249, 0.85);
  font-size: 18px;
  line-height: 1.5;
  max-width: 56ch;
  margin-top: 18px;
}

.accent-italic {
  color: var(--go2a-accent);
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
  max-width: 56ch;
  margin-top: 28px;
  font-family: var(--display);
  font-weight: 600;
}

/* ============================================================
   05 PAGE: ACCESSIBILITY STATEMENT (vpat.html)
   ============================================================ */

.summary-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.card-span-3 {
  grid-column: span 3;
}

.card-span-2 {
  grid-column: span 2;
}

@media (max-width: 980px) {
  .card-span-2 {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .summary-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-span-3,
  .card-span-2 {
    grid-column: span 1;
  }
}

.card-accent-accent {
  border-left: 4px solid var(--go2a-accent);
}

.card-accent-yellow {
  border-left: 4px solid var(--yellow);
}

.tile-head-sm {
  font-size: 20px !important;
}

.grid-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.note-box {
  background: var(--paper-2);
  border-radius: 4px;
  padding: 24px 28px;
}

.note-box .note-text {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  max-width: 68ch;
}

.responsive-three-col-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: start;
}

.display-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
  color: var(--ink);
}

.principle-head {
  font-size: 24px !important;
  margin: 0 0 4px !important;
}

.principle-sub {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 12px;
}

.ul-style-sm {
  margin-top: 12px;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.ul-style-sm li {
  margin-bottom: 6px;
}

.badge-pill {
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  display: inline-block;
  white-space: nowrap;
  align-self: start;
  text-align: center;
}

.badge-pill-accent {
  background: var(--go2a-accent-pale);
  color: #005963;
}

.badge-pill-yellow {
  background: rgba(245, 214, 0, 0.22);
  color: var(--ink);
}

@media (max-width: 768px) {
  .responsive-three-col-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.responsive-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 880px) {
  .responsive-two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.mono-lead-row {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(241, 247, 249, 0.85);
}

.link-underline {
  text-decoration: underline;
}
