/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors — three only, no exceptions */
  --color-navy:  #00274C;
  --color-white: #FFFFFF;
  --color-accent: #00A3D9;

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-body:    'Barlow', 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Font sizes */
  --size-h1:   42px;
  --size-h2:   32px;
  --size-h3:   24px;
  --size-body: 16px;
  --size-card: 20px;

  /* Spacing */
  --section-padding:    80px;
  --container-padding:  40px;
  --content-max-width:  1200px;
  --card-gap:           16px;

  /* Motion — slow, confident */
  --transition: 1.5s ease;
}


/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 24px;
  color: var(--color-navy);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}


/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  color: var(--color-navy);
  line-height: 1.05;
}

h1 {
  font-size: var(--size-h1);
  line-height: 42px;
  margin-bottom: 16px;
}

h2 {
  font-size: var(--size-h2);
  margin-bottom: 16px;
}

h3 {
  font-size: var(--size-h3);
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}


/* ============================================================
   LAYOUT — CONTAINER
   ============================================================ */
.container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}


/* ============================================================
   LAYOUT — SECTIONS
   ============================================================ */
.section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

/* Dark variant — navy background, white text */
.section--dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section--dark a {
  color: var(--color-accent);
}


/* ============================================================
   COMPONENT — CARD
   ============================================================ */
.card {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 16px 32px 16px 16px;
  border-radius: 0;
  box-shadow: none;
  font-family: var(--font-body);
  font-size: var(--size-card);
  font-weight: 300;
  line-height: 24px;
}


/* ============================================================
   COMPONENT — BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--size-body);
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.8;
  text-decoration: none;
}

/* Filled cyan — primary CTA */
.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 12px 28px;
}

/* Outlined pill — matches BRG navy card button */
.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  padding: 11px 28px;
  border-radius: 100px;
}

/* Outlined in navy — for use on white backgrounds */
.btn--outline-navy {
  background: transparent;
  color: var(--color-navy);
  border: 1px solid var(--color-navy);
  padding: 11px 28px;
  border-radius: 100px;
}


/* ============================================================
   COMPONENT — ACCENT ARROW LINK (matches BRG →  pattern)
   ============================================================ */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--size-body);
  font-weight: 500;
  color: var(--color-accent);
  text-decoration: none;
}

.arrow-link::after {
  content: '→';
}

.arrow-link:hover {
  text-decoration: none;
  opacity: 0.8;
}


/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid #e0e6ed;
  height: 64px;
  display: flex;
  align-items: center;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}


/* ============================================================
   UTILITY — SECTION LABEL (reused across all sections)
   ============================================================ */
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}


/* ============================================================
   HEADER / NAV — NAME
   ============================================================ */
.site-header__name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-navy);
}


/* ============================================================
   HEADER / NAV — PAGE NAVIGATION LINKS
   ============================================================ */
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-navy);
  text-decoration: none;
}

.site-nav__link:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.site-nav__link.is-active {
  color: var(--color-accent);
}


/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.section--hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
}

.section--hero .container {
  width: 100%;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero__content {
  flex: 1;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.hero__headline {
  font-size: 56px;
  line-height: 1.0;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero__body {
  font-size: 18px;
  line-height: 30px;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero__image {
  width: 340px;
  flex-shrink: 0;
}

.hero__image img {
  width: 100%;
  height: auto;
}


/* ============================================================
   SECTION 2 — IMPACT WALL
   ============================================================ */
.impact__header {
  margin-bottom: 56px;
}

/* 3-col grid; gap rendered as grid lines via background trick */
.impact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 1px;
}

.impact__stat {
  position: relative;
  padding: 40px 32px;
  background: var(--color-navy);
  overflow: hidden;
  min-height: 200px;
}

/* Surface layer — always visible, fades out on hover */
.impact__surface {
  transition: opacity 0.3s ease;
}

.impact__number {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 14px;
  /* Tighten for longer compound stats like 65%→96% */
  word-break: keep-all;
}

.impact__stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 20px;
  margin-bottom: 8px;
}

.impact__attribution {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Detail layer — hidden by default, fades in on hover */
.impact__detail {
  position: absolute;
  inset: 0;
  padding: 40px 32px;
  background: var(--color-navy);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-left: 2px solid var(--color-accent);
}

.impact__stat:hover .impact__surface {
  opacity: 0;
}

.impact__stat:hover .impact__detail {
  opacity: 1;
}

/* Featured stat — $3M+, full-width, BRG-aligned */
.impact__featured {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 40px 32px;
  background: var(--color-navy);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 2px solid var(--color-accent);
}

.impact__featured-number {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1;
  flex-shrink: 0;
}

.impact__featured-body {
  flex-shrink: 0;
}

.impact__featured-detail {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 48px;
}


/* ============================================================
   SECTION 3 — CASE STUDIES
   ============================================================ */
.section--methodology h2 {
  margin-bottom: 48px;
}

.method__cases {
  border-top: 1px solid rgba(0, 39, 76, 0.15);
}

/* Accordion item */
.case-study {
  border-bottom: 1px solid rgba(0, 39, 76, 0.15);
}

.case-study__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  gap: 24px;
  text-align: left;
}

.case-study__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  color: var(--color-navy);
  line-height: 1.1;
}

.case-study__icon {
  font-size: 28px;
  font-weight: 300;
  color: var(--color-accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
  display: inline-block;
}

.case-study__toggle[aria-expanded="true"] .case-study__icon {
  transform: rotate(45deg);
}

/* Accordion body — animates open via grid-template-rows */
.case-study__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  overflow: hidden;
}

.case-study__body.is-open {
  grid-template-rows: 1fr;
}

/* Inner wrapper is required for the 0fr trick */
.case-study__grid {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 40px;
}

.case-study__segment h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.case-study__segment p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
}

/* Result column gets a cyan left accent */
.case-study__segment--result {
  border-left: 2px solid var(--color-accent);
  padding-left: 20px;
}


/* ============================================================
   SECTION 4 — INNOVATION FIRSTS
   ============================================================ */
.section--firsts h2 {
  margin-bottom: 48px;
}

.firsts__list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Numbered label inside each toggle */
.firsts__num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  flex-shrink: 0;
  min-width: 28px;
}

/* Title fills remaining space between num and icon */
.section--firsts .case-study__title {
  flex: 1;
}

/* Single-paragraph deep read */
.firsts__detail {
  min-height: 0;
  padding-bottom: 32px;
  max-width: 760px;
}

.firsts__detail p {
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 0;
}

/* Dark accordion overrides — borders and title color */
.section--dark .case-study {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.section--dark .case-study__title {
  color: var(--color-white);
}


/* ============================================================
   SECTION 5 — CLIENT ROSTER
   ============================================================ */
.section--clients h2 {
  margin-bottom: 48px;
}

.clients__group {
  border-top: 1px solid rgba(0, 39, 76, 0.12);
  padding: 32px 0;
}

.clients__group--last {
  border-bottom: 1px solid rgba(0, 39, 76, 0.12);
}

.clients__vertical {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.clients__names {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 36px;
}

.client-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 300;
  color: var(--color-navy);
  line-height: 1.3;
  transition: color 0.2s ease;
}

.client-name:hover {
  color: var(--color-accent);
}


/* ============================================================
   SECTION 6 — INDUSTRY DEPTH
   ============================================================ */
.section--depth h2 {
  margin-bottom: 48px;
}

/* 3-col grid; hairline separators via gap + background */
.depth__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.depth__card {
  background: var(--color-navy);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Vertical industry label */
.depth__vertical {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

/* Client name attribution — very subordinated */
.depth__clients {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Surface read — bold single sentence */
.depth__summary {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.35;
  margin-bottom: 20px;
}

/* Deep read — full paragraph, subordinated */
.depth__detail {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}


/* ============================================================
   SECTION 7 — AI LEADERSHIP
   ============================================================ */
.section--ai h2 {
  margin-bottom: 48px;
}

/* Philosophy pull-quote */
.ai__philosophy {
  border-left: 3px solid var(--color-accent);
  padding: 4px 0 4px 32px;
  margin-bottom: 72px;
  max-width: 820px;
}

.ai__philosophy p {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
  color: var(--color-navy);
  margin-bottom: 0;
}

/* AI case studies container */
.ai__cases {
  border-top: 1px solid rgba(0, 39, 76, 0.15);
  padding-top: 40px;
  margin-bottom: 72px;
}

.ai__cases > .section-label {
  margin-bottom: 0;
}

/* 2-col accordion inner — Problem left, What/Result right */
.ai-case__inner {
  min-height: 0;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  padding-bottom: 40px;
}

/* Single-paragraph variant (Adobe Sensei) */
.ai-case__inner--single {
  grid-template-columns: 1fr;
  max-width: 680px;
}

.ai-case__inner--single p {
  font-size: 15px;
  line-height: 26px;
}

.ai-case__left h4,
.ai-case__right h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.ai-case__left p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
}

.ai-case__segment {
  margin-bottom: 28px;
}

.ai-case__segment:last-child {
  margin-bottom: 0;
}

/* Bullet list */
.ai-case__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-case__list li {
  font-size: 15px;
  line-height: 24px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  color: var(--color-navy);
}

.ai-case__list li:last-child {
  margin-bottom: 0;
}

.ai-case__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 400;
}

/* OptiDynamics featured block */
.ai__optidynamics {
  display: flex;
  align-items: center;
  gap: 64px;
  background: var(--color-navy);
  padding: 56px;
  margin-bottom: 64px;
}

.ai__opti-image {
  width: 180px;
  flex-shrink: 0;
}

.ai__opti-image img {
  width: 100%;
  height: auto;
}

.ai__opti-content {
  flex: 1;
}

.ai__opti-title {
  font-size: 36px;
  color: var(--color-white);
  margin-bottom: 4px;
  line-height: 1;
}

.ai__opti-subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.ai__opti-desc {
  font-size: 15px;
  line-height: 26px;
  color: var(--color-white);
  margin-bottom: 16px;
}

/* BRG-alignment callout — cyan left bar */
.ai__opti-brg {
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.65);
  border-left: 2px solid var(--color-accent);
  padding-left: 16px;
  margin-bottom: 32px;
}

/* Technology fluency */
.ai__tech {
  border-top: 1px solid rgba(0, 39, 76, 0.15);
  padding-top: 40px;
}

.ai__tech-heading {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.ai__tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
}

.ai__tech-item {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-navy);
}


/* ============================================================
   SECTION 8 — PM CREDENTIALS
   ============================================================ */
.section--credentials h2 {
  margin-bottom: 48px;
}

/* Credential badge tags */
.creds__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 64px;
}

.cred-badge {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
}

.cred-badge__name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
}

.cred-badge__issuer {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* PMO leadership — 2-col: meta left, detail right */
.creds__pmo {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 48px;
  margin-bottom: 64px;
}

.creds__role-title {
  font-size: var(--size-h3);
  color: var(--color-white);
  margin-bottom: 8px;
}

.creds__role-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3px;
}

.creds__role-dates {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-top: 12px;
  margin-bottom: 0;
}

/* Anchor statement — surface read */
.creds__anchor {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.35;
  margin-bottom: 24px;
}

/* Bullet list — deep read, subordinated */
.creds__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.creds__bullets li {
  font-size: 14px;
  line-height: 24px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.creds__bullets li:last-child {
  margin-bottom: 0;
}

.creds__bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* Delivery philosophy */
.creds__philosophy {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 48px;
}

.creds__quote {
  border-left: 3px solid var(--color-accent);
  padding: 4px 0 4px 32px;
  margin-bottom: 20px;
  max-width: 760px;
}

.creds__quote p {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
  color: var(--color-white);
  margin-bottom: 0;
}

.creds__philosophy-body {
  font-size: 15px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 680px;
  margin-bottom: 0;
}


/* ============================================================
   SECTION 9 — THOUGHT LEADERSHIP
   ============================================================ */
.section--thought-leadership h2 {
  margin-bottom: 48px;
}

/* Summary stat grid — same border pattern as methodology steps */
.tl__stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(0, 39, 76, 0.15);
  border-bottom: 1px solid rgba(0, 39, 76, 0.15);
  margin-bottom: 64px;
}

.tl__stat {
  padding: 40px 24px 40px 0;
  border-right: 1px solid rgba(0, 39, 76, 0.15);
}

.tl__stat:last-child {
  border-right: none;
}

.tl__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 300;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 12px;
}

.tl__stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 18px;
  color: rgba(0, 39, 76, 0.6);
}

/* Inventory — general rule so all accordion inner wrappers animate correctly */
.case-study__body > * {
  min-height: 0;
}

.tl__photos {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
}

.tl__photo {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.tl__photo--featured {
  flex: 2;
}

.tl__photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.tl__photo-caption {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 39, 76, 0.5);
  padding-top: 10px;
}

.tl__inventory {
  border-top: 1px solid rgba(0, 39, 76, 0.15);
}

/* Shared inner wrapper for all tl accordions */
.tl__inner {
  padding-bottom: 32px;
}

/* Speaking engagements table */
.tl__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 14px;
}

.tl__table thead th {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: left;
  padding: 0 16px 16px 0;
  border-bottom: 1px solid rgba(0, 39, 76, 0.15);
}

.tl__table tbody td {
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid rgba(0, 39, 76, 0.08);
  color: var(--color-navy);
  vertical-align: top;
  line-height: 1.5;
}

.tl__table tbody tr:last-child td {
  border-bottom: none;
}

/* Date column — narrow, no wrap */
.tl__table tbody td:nth-child(2) {
  white-space: nowrap;
  color: rgba(0, 39, 76, 0.55);
  font-size: 13px;
}

/* Article list rows */
.tl__article {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(0, 39, 76, 0.08);
}

.tl__article--last {
  border-bottom: none;
}

.tl__article-title {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-navy);
  line-height: 1.4;
}

.tl__article-date {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(0, 39, 76, 0.5);
  flex-shrink: 0;
}


/* ============================================================
   SECTION 10 — THE CLOSE
   ============================================================ */
.section--contact {
  padding-top: 100px;
  padding-bottom: 100px;
}

.close__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.close__left {
  flex: 3;
}

.close__statement {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--color-white);
  margin-bottom: 0;
  max-width: 640px;
}

.close__right {
  flex: 2;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.close__contact-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.close__contact-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.close__contact-value {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.close__contact-value:hover {
  color: var(--color-accent);
  text-decoration: none;
}


/* ============================================================
   SCROLL ANIMATION UTILITY
   JS adds .is-visible via IntersectionObserver
   ============================================================ */
.animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition), transform var(--transition);
}

.animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}
