:root {
  --bg: #f4f2ee;
  --bg-soft: #ebe7df;
  --paper: #fffdf8;
  --text: #5e5a55;
  --text-dark: #403c38;
  --muted: #8d8780;
  --line: rgba(64, 60, 56, 0.14);
  --shadow: 0 18px 45px rgba(35, 30, 24, 0.10);
  --accent: #47aac0;
  --accent-dark: #267d92;
  --serif: "Sorts Mill Goudy", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --max: 1120px;
  --narrow: 760px;

  --project-bg: #f7f2eb;
  --project-paper: #fffaf3;
  --project-ink: #54514e;
  --project-muted: #6f655d;
  --project-line: rgba(33, 29, 26, 0.14);
  --project-line-strong: rgba(33, 29, 26, 0.24);
  --project-navy: #102f4c;
  --project-orange: #ce3a08;
  --project-gold: #c99b44;
  --project-teal: #2b9aa0;
  --project-rose: #c7445a;
  --project-shadow: 0 24px 80px rgba(33, 29, 26, 0.10);
  --project-radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--text-dark);
  color: #fff;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.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;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(244, 242, 238, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, background 180ms ease;
}

.interior-page .site-header {
  background: rgba(247, 242, 235, 0.84);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(244, 242, 238, 0.96);
}

.interior-page .site-header.is-scrolled {
  border-bottom-color: var(--project-line);
  background: rgba(247, 242, 235, 0.96);
}

.site-header__inner {
  min-height: 68px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.4rem;
  display: flex;
  align-items: center;
  position: relative;
}

.site-header--home .site-header__inner {
  justify-content: center;
}

.site-header--interior .site-header__inner {
  justify-content: space-between;
  gap: 2rem;
  padding-left: 0;
  padding-right: 0;
}

.site-brand {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1;
  color: #837b70;
  text-decoration: none;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.73rem;
  font-weight: 600;
  color: #74706b;
}

.site-nav a {
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-dark);
}

.linkedin-link {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #8a8580;
  color: var(--bg) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-size: 0.68rem !important;
  line-height: 1;
  font-weight: 700;
}

.linkedin-link:hover,
.linkedin-link:focus-visible {
  background: var(--text-dark);
  color: var(--bg) !important;
}

.menu-toggle {
  display: none;
}

/* Reusable gradient name/logo effect */

.gradient-name {
  transition: color 0.8s ease, filter 0.8s ease;
}

.gradient-name:hover,
.gradient-name:focus-visible {
  color: transparent;
  background-image: linear-gradient(
    115deg,
    #1b8f91 0%,
    #43c6c8 22%,
    #d7b46a 44%,
    #c24f65 62%,
    #e07a3f 76%,
    #37b7b2 100%
  );
  background-size: 260% 260%;
  background-position: 0% 50%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: nameGradientDrift 7s ease-in-out forwards;
  filter: saturate(1.12);
}

@keyframes nameGradientDrift {
  0% { background-position: 0% 50%; }
  55% { background-position: 85% 50%; }
  100% { background-position: 100% 50%; }
}

/* Shared layout */

.section {
  padding: clamp(4rem, 9vw, 8rem) 1.4rem;
}

.section--tight {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.inner {
  max-width: var(--max);
  margin: 0 auto;
}

.narrow {
  max-width: var(--narrow);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.05;
  font-weight: 400;
}

h1,
h2 {
  font-family: var(--serif);
}

h3 {
  font-family: var(--sans);
  font-weight: 600;
}

p {
  margin: 0;
}

p + p {
  margin-top: 1.2rem;
}

/* Homepage hero */

.home-hero {
  min-height: 86vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6rem 1.4rem 3rem;
}

.home-hero__name {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 13vw, 9rem);
  color: #837b70;
  letter-spacing: -0.045em;
  line-height: 1;
  cursor: default;
}

.home-hero__title {
  margin-top: 1.4rem;
  color: #b8b3ad;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  line-height: 1.35;
}

.home-hero__hint {
  margin: 5rem auto 0;
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, transparent, rgba(64, 60, 56, 0.25), transparent);
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
}

.portrait-wrap {
  display: flex;
  justify-content: center;
}

.portrait {
  width: clamp(190px, 26vw, 292px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(33, 25, 16, 0.10);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 2rem;
  color: #7c766f;
}

.about-copy {
  max-width: 670px;
}

.skills-row {
  margin-top: clamp(4rem, 8vw, 6.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
}

.skill h3 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa39c;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.skill p {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.55;
}

/* Selected work */

.section-heading-centered {
  text-align: center;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #7c766f;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.work-grid-home {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.project-card {
  background: #fff;
  border: 1px solid rgba(64, 60, 56, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(35, 30, 24, 0.10);
  text-decoration: none;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(35, 30, 24, 0.14);
  border-color: rgba(71, 170, 192, 0.35);
}

.project-card.is-disabled {
  pointer-events: none;
  opacity: 0.82;
}

.project-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
  overflow: hidden;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__media-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: #918a82;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0)), var(--bg-soft);
}

.project-card__body {
  padding: 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.project-card h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
}

.project-card p {
  font-size: 0.9rem;
  color: #746f69;
  line-height: 1.6;
}

.tag-row,
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(71, 170, 192, 0.12);
  color: #2a7e91;
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag--neutral {
  background: rgba(64, 60, 56, 0.08);
  color: #706a63;
}

.tag--role {
  background: rgba(214, 184, 106, 0.18);
  /*border: 1px solid rgba(214, 184, 106, 0.38);*/
  color: #80602a;
  white-space: nowrap;
}

.text-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}

/* Contact */

.contact-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}

.contact-panel h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #7c766f;
  margin-bottom: 1rem;
}

.contact-panel p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: #706a63;
}

.button-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.35);
}

.button--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Footer */

.site-footer {
  padding: 2rem 1.4rem;
  text-align: center;
  color: #8d8780;
  font-size: 0.85rem;
}

/* AAUW / Project case study page. This intentionally follows the attached visual mockup structure. */

.interior-page {
  background: radial-gradient(circle at top left, rgba(43, 154, 160, 0.11), transparent 32rem), var(--project-bg);
  color: var(--project-ink);
}

.case-study-page .section {
  padding: clamp(56px, 8vw, 104px) 24px;
}

.case-study-page .inner {
  max-width: 1160px;
}

.case-study-page .narrow {
  max-width: 780px;
}

.case-study-page .eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--project-orange);
}

.case-study-page h1,
.case-study-page h2,
.case-study-page h3 {
  color: var(--project-ink);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.045em;
}

.case-study-page h1,
.case-study-page h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.case-study-page h1 {
  font-weight: 500;
  font-size: clamp(2.75rem, 5.8vw, 5.25rem);
  max-width: 900px;
}

.case-study-page h2 {
  font-size: clamp(2.1rem, 4.6vw, 4.5rem);
  font-weight: 420;
}

.case-study-page h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 720;
}

.case-study-page p {
  margin: 0 0 1.1rem;
  color: var(--project-muted);
  font-size: 1.04rem;
}

.case-study-page p + p {
  margin-top: 0;
}

.case-study-page .lead {
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  max-width: 820px;
  color: #403933;
}

.case-study-page .hero {
  padding-top: clamp(96px, 12vw, 142px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.82fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.case-study-page .tags {
  gap: 10px;
  margin-top: 28px;
}

.case-study-page .tag {
  border: 1px solid var(--project-line-strong);
  background: rgba(255, 250, 243, 0.62);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: #4a433d;
}

.meta-card {
  background: rgba(255, 250, 243, 0.74);
  border: 1px solid var(--project-line);
  border-radius: var(--project-radius);
  padding: 28px;
  box-shadow: var(--project-shadow);
}

.meta-row {
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--project-line);
}

.meta-row:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.meta-label {
  display: block;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--project-muted);
  font-weight: 800;
  margin-bottom: 5px;
}

.meta-value {
  display: block;
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--project-ink);
  line-height: 1.35;
}

.hero-image {
  margin-top: 56px;
}

.mock-browser {
  border: 1px solid var(--project-line);
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--project-shadow);
}

.browser-top {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid var(--project-line);
  background: #f3eee7;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4c8bd;
}

.mock-browser img {
  width: 100%;
  height: auto;
}

.placeholder-hero {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 52px;
  background: linear-gradient(135deg, rgba(9, 46, 84, 0.94), rgba(31, 112, 184, 0.8)), repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 14px);
  color: white;
  text-align: center;
}

.placeholder-hero strong {
  display: block;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.placeholder-hero span {
  display: block;
  margin-top: 12px;
  max-width: 680px;
  opacity: 0.84;
}

.caption {
  font-size: 0.86rem;
  color: var(--project-muted);
  margin-top: 12px;
}

.split {
  display: grid;
  grid-template-columns: minmax(170px, 0.65fr) minmax(0, 1.6fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.section-kicker {
  position: sticky;
  top: 98px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--project-muted);
  font-weight: 850;
  padding-top: 8px;
}

.prose h2 {
  margin-bottom: 28px;
}

.prose p {
  max-width: 760px;
}

.goal-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.goal-list li {
  position: relative;
  padding-left: 28px;
  color: #403933;
  font-weight: 540;
}

.goal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--project-teal), var(--project-gold));
}

.tinted {
  background: rgba(255, 250, 243, 0.58);
  border-block: 1px solid var(--project-line);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.card {
  background: var(--project-paper);
  border: 1px solid var(--project-line);
  border-radius: 22px;
  padding: 26px;
  min-height: 180px;
}

.card .num {
  color: var(--project-orange);
  font-weight: 900;
  margin-bottom: 42px;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
}

.card p {
  font-size: 0.96rem;
  margin-bottom: 0;
}

.work-item {
  border-top: 1px solid var(--project-line);
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.work-copy {
  max-width: 620px;
}

.work-copy h2 {
  margin: 8px 0 22px;
  font-size: clamp(2rem, 4vw, 3.65rem);
}

.work-copy h3 {
  margin: 30px 0 12px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.work-num {
  color: var(--project-orange);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.media-stack {
  display: grid;
  gap: 18px;
}

.shot {
  background: #fff;
  border: 1px solid var(--project-line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(33, 29, 26, 0.08);
  margin: 0;
}

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

.shot-caption {
  padding: 12px 16px 16px;
  font-size: 0.84rem;
  color: var(--project-muted);
}

.insert-shot {
  min-height: 280px;
  border: 1px dashed rgba(33, 29, 26, 0.35);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(255, 250, 243, 0.52)), repeating-linear-gradient(45deg, rgba(33, 29, 26, 0.045) 0 1px, transparent 1px 13px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  color: var(--project-muted);
}

.insert-shot strong {
  display: block;
  color: var(--project-ink);
  font-size: 1rem;
  margin-bottom: 4px;
}

.two-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.impact {
  background: var(--project-navy);
  color: white;
}

.impact p,
.impact .caption {
  color: rgba(255, 255, 255, 0.72);
}

.impact h2,
.impact h3 {
  color: white;
}

.impact .eyebrow {
  color: #f47a3d;
}

.impact .card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  color: white;
}

.impact .card h3 {
  color: white;
}

.impact .card p {
  color: rgba(255, 255, 255, 0.72);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.skill-card {
  background: var(--project-paper);
  border: 1px solid var(--project-line);
  border-radius: 22px;
  padding: 28px;
}

.skill-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--project-muted);
}

.skill-card li {
  margin-bottom: 7px;
}

.reflection {
  border-top: 1px solid var(--project-line);
}

/* Responsive */

@media (max-width: 1160px) {
  .site-header--interior .site-header__inner {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    justify-content: space-between;
  }

  .site-header--home .site-header__inner {
    justify-content: flex-end;
  }

  .site-header--interior .site-header__inner {
    justify-content: space-between;
  }

  .site-brand {
    font-size: 1.6rem;
  }

  .menu-toggle {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .menu-toggle__line,
  .menu-toggle__line::before,
  .menu-toggle__line::after {
    display: block;
    width: 1rem;
    height: 1px;
    background: var(--text-dark);
    content: "";
    position: relative;
  }

  .menu-toggle__line::before {
    position: absolute;
    top: -5px;
  }

  .menu-toggle__line::after {
    position: absolute;
    top: 5px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1.4rem;
    left: 1.4rem;
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 1.1rem;
    align-items: flex-start;
  }

  .site-nav.is-open {
    display: flex;
  }

  .about-grid,
  .hero-grid,
  .split,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .section-kicker {
    position: static;
  }

  .skills-row,
  .cards,
  .skills-grid,
  .work-grid-home {
    grid-template-columns: 1fr;
  }

  .two-shots {
    grid-template-columns: 1fr;
  }

  .placeholder-hero {
    min-height: 300px;
    padding: 34px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header__inner {
    min-height: 64px;
    padding: 0 1.1rem;
  }

  .site-brand {
    font-size: 1.45rem;
  }

  .home-hero {
    min-height: 78vh;
  }

  .home-hero__name {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .about-grid {
    gap: 2.5rem;
  }

  .about-copy {
    text-align: left;
  }

  .case-study-page .section {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .case-study-page .hero {
    padding-top: 7rem;
  }

  .case-study-page h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .case-study-page .lead {
    font-size: 1.06rem;
  }

  .mock-browser,
  .meta-card {
    border-radius: 20px;
  }
}

/* Fix lead text color inside dark impact sections */
.case-study-page .impact .lead {
  color: rgba(255, 255, 255, 0.72);
}

.case-study-page .impact .eyebrow {
  color: #f47a3d;
}

.case-study-page .impact h2 {
  color: #fffaf3;
}

.case-study-page .impact .lead,
.case-study-page .impact p {
  color: rgba(255, 255, 255, 0.82);
}

/* Align interior page logo/header with case study content */
@media (min-width: 901px) {
  .site-header--interior .site-header__inner {
    max-width: var(--max);
    padding-left: 0;
    padding-right: 0;
  }
}

/* Refine work section column width and heading wraps */
@media (min-width: 901px) {
  .case-study-page .work-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    gap: clamp(2.5rem, 4.5vw, 4.25rem);
  }

  .case-study-page .work-copy {
    max-width: 700px;
  }

  .case-study-page .work-copy h2 {
    text-wrap: balance;
  }
}