/* ============================================================
   FONTS — Self-hosted EB Garamond + Inter
   ============================================================ */

@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/eb-garamond/eb-garamond-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/eb-garamond/eb-garamond-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/eb-garamond/eb-garamond-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/eb-garamond/eb-garamond-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */

:root {
  --bg:         #EAE4D6;
  --bg-alt:     #E2DBCC;
  --ink:        #1A1A18;
  --ink-2:      #5C5C54;
  --ink-3:      #9A9A8C;
  --rule:       #D8D0C0;
  --accent:     #7A2226;
  --accent-h:   #5E1A1D;
  --warm:       #1B2D4F;
  --warm-h:     #142340;
  --white:      #FFFFFF;

  --ff-serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --ff-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max-w:    1180px;
  --prose:    640px;

  --ease: 150ms ease;
}

/* ============================================================
   RESET
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-skip-ink: auto; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   BASE TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 7.5vw, 5.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); line-height: 1.15; }
h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: 0; }
p  { line-height: 1.7; }
strong { font-weight: 600; }

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.prose { max-width: var(--prose); }

/* ============================================================
   SITE HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(234, 228, 214, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: background-color 200ms ease;
}
.site-header.scrolled {
  background-color: rgba(234, 228, 214, 0.70);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-width: 0;
}

.header-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
  opacity: 0;
  padding-top: 3px;
  transition: opacity 250ms ease;
  pointer-events: none;
}
.site-header.scrolled .header-eyebrow {
  opacity: 1;
}

.site-name {
  font-family: var(--ff-serif);
  font-size: 1.125rem;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.01em;
  color: var(--ink);
  white-space: nowrap;
  transition: color var(--ease);
}
.site-name:hover { color: var(--accent); }

.site-header .btn-outline {
  color: var(--accent);
  border-color: var(--accent);
}
.site-header .btn-outline:hover {
  color: var(--accent-h);
  border-color: var(--accent-h);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.625rem 1.25rem;
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-h); border-color: var(--accent-h); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn-outline:hover { border-color: var(--ink-2); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  border-bottom: 1px solid var(--rule);
}


.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  grid-template-areas:
    "header photo"
    "intro  quote";
  column-gap: clamp(2rem, 5vw, 5rem);
  row-gap: 0;
}
.hero-header    { grid-area: header; }
.hero-photo-wrap {
  grid-area: photo;
  grid-row: 1 / 3;
  align-self: start;
  width: clamp(200px, 22vw, 300px);
}
.hero-intro     { grid-area: intro; }
.hero-grid > .pull-quote {
  grid-area: quote;
  align-self: start;
  padding-top: 1.75rem;
}

.hero-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hero h1 { margin-bottom: 1.25rem; }

.hero-rule {
  width: 2.5rem;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-strapline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  color: var(--warm);
  line-height: 1.4;
  margin-bottom: 1.75rem;
}

.hero-intro p {
  color: var(--ink-2);
  font-size: 1.0625rem;
  line-height: 1.75;
}
.hero-intro p + p { margin-top: 1rem; }

.hero-bullets {
  list-style: none;
  margin-block: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-left: 0.125rem;
}
.hero-bullets li {
  position: relative;
  padding-left: 1.125rem;
  color: var(--ink-2);
  font-size: 1.0625rem;
  line-height: 1.65;
}
.hero-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--warm);
  font-size: 0.875rem;
}


.hero-photo-wrap {
  flex-shrink: 0;
  width: clamp(200px, 22vw, 300px);
}
.hero-photo {
  width: 100%;
  mix-blend-mode: multiply;
}

/* ============================================================
   LOGO STRIP
   ============================================================ */

.logo-strip {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: center;
}
.logo-strip-img {
  max-width: min(620px, 100%);
  height: auto;
  mix-blend-mode: multiply;
  opacity: 0.65;
}

/* ============================================================
   CONTACT CTA
   ============================================================ */

.contact-cta {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--rule);
  scroll-margin-top: 4rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.cta-question {
  font-family: var(--ff-serif);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: var(--ink);
  font-weight: 400;
}

.cta-statement {
  font-size: 1rem;
  color: var(--ink-2);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 54ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-image a { display: block; }
.cta-image img {
  width: 100%;
  max-width: 220px;
}

/* ============================================================
   PROBLEMS
   ============================================================ */

.problems {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  border-bottom: 1px solid var(--rule);
}
.problems h2 { margin-bottom: clamp(2rem, 4vw, 3rem); }

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem clamp(2rem, 4vw, 4rem);
}

.problem-icon {
  color: var(--warm);
  margin-bottom: 1rem;
}
.problem-item h3 {
  font-family: var(--ff-serif);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: var(--ink);
}
.problem-item p { color: var(--ink-2); line-height: 1.7; }

/* ============================================================
   VALUE
   ============================================================ */

.value {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  border-bottom: 1px solid var(--rule);
}
.value h2 { margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }

.value-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.value .prose p { color: var(--ink-2); font-size: 1.0625rem; line-height: 1.8; }
.value .prose p + p { margin-top: 1.25rem; }

.pull-quote {
  flex-shrink: 0;
  max-width: 260px;
  border-left: 2px solid var(--warm);
  padding-left: 1.5rem;
}
.pull-quote p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.125rem, 1.75vw, 1.375rem);
  color: var(--warm);
  line-height: 1.45;
}

/* ============================================================
   CAREER TIMELINE
   ============================================================ */

.career {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  border-bottom: 1px solid var(--rule);
}
.career h2 { margin-bottom: clamp(2rem, 4vw, 3rem); }

/* Track — horizontal scrollable row of nodes */
.timeline-track {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}
.timeline-track::-webkit-scrollbar { display: none; }

/* Each employer node is a tab button */
.timeline-node {
  flex: 1 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-3);
  transition: color var(--ease);
  text-align: center;
  min-width: 100px;
}
.timeline-node:hover { color: var(--ink-2); }
.timeline-node.is-active { color: var(--warm); }

.node-company {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 0.625rem;
  height: 3.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* The dot row — flexbox with pseudo-element lines forming the timeline */
.node-dot-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  height: 20px;
}
.node-dot-wrap::before,
.node-dot-wrap::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.timeline-node:first-child .node-dot-wrap::before { background: transparent; }
.timeline-node:last-child .node-dot-wrap::after { background: transparent; }

.node-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rule);
  flex-shrink: 0;
  transition: background var(--ease), transform var(--ease);
}
.timeline-node.is-active .node-dot {
  background: var(--warm);
  transform: scale(1.3);
}
.timeline-node:focus-visible .node-dot {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.node-dates {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding-top: 0.625rem;
  color: inherit;
}

/* Animated connector line from active dot down to panel */
.timeline-connector {
  position: relative;
  height: 2rem;
}
.connector-line {
  position: absolute;
  top: 0;
  height: 100%;
  left: var(--connector-x, 50%);
  transform: translateX(-50%);
  width: 0;
  border-left: 2px dashed var(--warm);
  clip-path: inset(0 0 100% 0);
  opacity: 0.7;
}
.connector-line.animate {
  clip-path: inset(0 0 0% 0);
  transition: clip-path 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Detail panels */
.timeline-panels {
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
}
.timeline-panel { display: none; }
.timeline-panel.is-active { display: block; }

.panel-header {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.panel-header h3 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}
.panel-dates {
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}

.panel-role {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 64ch;
  margin-bottom: 1.25rem;
}

.timeline-panel ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-width: 72ch;
}
.timeline-panel li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink-2);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.timeline-panel li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--warm);
  font-size: 0.875rem;
}

/* ============================================================
   PATHWAYS
   ============================================================ */

.pathways {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--rule);
}
.pathways h2 { margin-bottom: clamp(2rem, 4vw, 3rem); }

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem clamp(1.5rem, 3vw, 2.5rem);
}

.pathway-tile {
  display: flex;
  flex-direction: column;
  padding-top: 0.25rem;
  position: relative;
  cursor: pointer;
}

.pathway-icon {
  color: var(--warm);
  margin-bottom: 1.125rem;
}
.pathway-icon svg { display: block; }

.pathway-tile h3 {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.625rem;
}
.pathway-tile p {
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}
.pathway-link {
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--ease);
}
.pathway-link::before {
  content: '';
  position: absolute;
  inset: 0;
}
.pathway-tile:hover .pathway-link { color: var(--accent-h); }
.pathway-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  padding-block: 2.5rem;
  border-top: 1px solid var(--rule);
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.125rem;
}
.footer-links a {
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  color: var(--ink-2);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--ink); }
.footer-links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.footer-sep { color: var(--rule); font-size: 0.75rem; padding-inline: 0.125rem; }

.footer-copy {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  color: var(--ink-3);
}
.footer-copy a { color: var(--ink-2); text-decoration: none; }
.footer-copy a:hover { color: var(--ink); }

/* ============================================================
   /INMARKETING PAGE
   ============================================================ */

.page-hero {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--rule);
}
.page-hero .breadcrumb {
  font-family: var(--ff-sans);
  font-size: 0.8125rem;
  color: var(--ink-3);
  margin-bottom: 1.5rem;
}
.page-hero .breadcrumb a { color: var(--ink-2); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--ink); }
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); margin-bottom: 1.25rem; }
.page-hero .page-intro { max-width: 58ch; font-size: 1.0625rem; color: var(--ink-2); line-height: 1.75; }

.page-section {
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--rule);
}
.page-section h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1.5rem; }
.page-section p { color: var(--ink-2); font-size: 1.0625rem; line-height: 1.8; max-width: 62ch; }
.page-section p + p { margin-top: 1.25rem; }
.page-section ul { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; max-width: 56ch; }
.page-section li { position: relative; padding-left: 1.25rem; color: var(--ink-2); font-size: 1rem; line-height: 1.65; }
.page-section li::before { content: '—'; position: absolute; left: 0; color: var(--warm); }

.page-cta { padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.page-cta h2 { font-family: var(--ff-serif); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1.25rem; }
.page-cta p { color: var(--ink-2); font-size: 1rem; line-height: 1.7; max-width: 54ch; margin-bottom: 2rem; }
.page-cta .cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ============================================================
   FOCUS / ACCESSIBILITY
   ============================================================ */

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }

/* ============================================================
   NEWSLETTER TICKER
   ============================================================ */


.ticker-section {
  padding: 1.25rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  overflow: hidden;
}

.ticker-outer {
  display: flex;
  align-items: baseline;
  position: relative;
}

.ticker-label {
  flex-shrink: 0;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 1.5rem 0 2rem;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.ticker-viewport {
  flex: 1;
  overflow: hidden;
  cursor: grab;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  /* animation applied by JS after content loads */
}


@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  padding: 0 1rem;
  transition: color var(--ease);
}

.ticker-item:hover {
  color: var(--accent);
}

.ticker-sep {
  color: var(--ink-3);
  flex-shrink: 0;
  padding: 0 0.25rem;
  font-size: 1rem;
  user-select: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .pathways-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .problems-grid { grid-template-columns: 1fr; gap: 2rem; }
  .value-layout { grid-template-columns: 1fr; }
  .pull-quote { max-width: 100%; border-left: none; border-top: 2px solid var(--warm); padding-left: 0; padding-top: 1.25rem; }
  .header-eyebrow { display: none; }
}

@media (max-width: 720px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "intro"
      "photo"
      "quote";
  }
  .hero-photo-wrap { grid-row: auto; width: 160px; }
  .hero-grid > .pull-quote { border-left: none; border-top: 2px solid var(--warm); padding-left: 0; padding-top: 1rem; max-width: 100%; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-image { display: none; }
  .site-footer .container { flex-direction: column; align-items: flex-start; }
  .timeline-node { min-width: 90px; flex: 0 0 90px; }
}

@media (max-width: 500px) {
  .hero-photo-wrap { display: none; }
  .hero-grid > .pull-quote { display: none; }
  .pathways-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
}

/* ============================================================
   PRINT
   ============================================================ */

@media print {
  .site-header, .pathways, .site-footer { display: none; }
  body { background: white; color: black; }
}
