@font-face {
  font-family: "Literata";
  src: url("assets/fonts/literata-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Literata";
  src: url("assets/fonts/literata-latin-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("assets/fonts/source-sans-3-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("assets/fonts/source-sans-3-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --deep-teal: #1f4e54;
  --sea-glass: #a3ccbc;
  --terracotta: #a35639;
  --desert-poppy: #e07d4c;
  --porcelain: #f6f2ed;
  --warm-stone: #d8cfc6;
  --smoke: #736e69;
  --charcoal: #2f2f2f;
  --font-display: "Literata", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", Arial, Helvetica, sans-serif;
  --container: 1200px;
  --reading: 760px;
  --wide: 920px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--porcelain); color: var(--charcoal); font-family: var(--font-body); font-size: 18px; line-height: 1.67; }
img { display: block; width: 100%; height: auto; }
a { color: var(--deep-teal); }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--sea-glass); outline-offset: 4px; }
.container { width: min(var(--container), calc(100% - 128px)); margin-inline: auto; }
.reading-column { width: min(var(--reading), calc(100% - 48px)); margin-inline: auto; }
.wide-column { width: min(var(--wide), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; transform: translateY(-160%); background: var(--deep-teal); color: var(--porcelain); padding: 10px 16px; }
.skip-link:focus { transform: none; }

.site-header { display: flex; justify-content: space-between; align-items: flex-start; padding-top: 48px; padding-bottom: 32px; }
.wordmark { color: var(--terracotta); font-family: var(--font-display); font-size: 24px; line-height: 1.4; text-decoration: none; }
.primary-nav { display: flex; gap: 36px; }
.primary-nav a { position: relative; min-height: 44px; color: var(--deep-teal); text-decoration: none; line-height: 1.25; }
.primary-nav a:hover { color: var(--terracotta); }
.active-dot { display: none; position: absolute; left: 50%; bottom: 5px; width: 5px; height: 5px; transform: translateX(-50%); border-radius: 50%; background: var(--sea-glass); }
.primary-nav a:hover .active-dot { display: block; background: var(--desert-poppy); }
.primary-nav a[aria-current="page"] .active-dot { display: block; background: var(--sea-glass); }
body[data-current-page="work"] .primary-nav [data-page-link="work"] .active-dot,
body[data-current-page="case-study"] .primary-nav [data-page-link="work"] .active-dot,
body[data-current-page="home"] .primary-nav [data-page-link="home"] .active-dot,
body[data-current-page="about"] .primary-nav [data-page-link="about"] .active-dot,
body[data-current-page="contact"] .primary-nav [data-page-link="contact"] .active-dot { display: block; }
.menu-toggle { display: none; width: 44px; min-height: 44px; align-items: center; justify-content: center; padding: 0; border: 0; background: transparent; color: var(--deep-teal); }
.hamburger-icon { display: grid; width: 25px; gap: 5px; }
.hamburger-icon i { display: block; width: 100%; height: 2px; border-radius: 999px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] .hamburger-icon i:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .hamburger-icon i:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .hamburger-icon i:last-child { transform: translateY(-7px) rotate(-45deg); }

.page { display: none; }
.page--active { display: block; }
.page-intro { padding-top: 72px; text-align: center; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; }
h1,
.page-title { margin-bottom: 28px; color: var(--deep-teal); font-size: clamp(2.5rem, 1.75rem + 3vw, 4rem); line-height: 1.12; }
.intro-statement { max-width: 780px; margin: 36px auto 0; color: var(--terracotta); font-family: var(--font-display); font-size: 24px; line-height: 1.5; }
.dot-row { display: flex; justify-content: center; gap: 9px; }
.dot-row i { width: 4px; height: 4px; border-radius: 50%; background: var(--sea-glass); }

.home-hero { padding-top: 72px; text-align: center; }
.home-hero .dot-row { margin-bottom: 28px; }
.home-hero h1 { margin-bottom: 24px; }
.hero-subhead { max-width: 720px; margin: 0 auto; color: var(--terracotta); font-family: var(--font-display); font-size: 24px; line-height: 1.5; }
.hero-body { margin-top: 68px; text-align: left; }
.button-group { display: flex; justify-content: center; gap: 18px; margin-top: 64px; }
.home-section, .about-section { margin-top: 144px; }
.section-intro { text-align: center; }
.section-intro h2 { margin-bottom: 36px; color: var(--terracotta); font-size: 28px; line-height: 1.4; }
.section-intro > p { max-width: 760px; margin: 36px auto 0; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 64px; }
.pillar-card { padding: 34px; border-radius: 30px 0 30px 0; background: var(--warm-stone); }
.pillar-card h3 { margin-bottom: 16px; color: var(--deep-teal); font-size: 28px; line-height: 1.38; text-align: center; }
.pillar-card > span { display: block; width: 42px; height: 1px; margin: 0 auto 18px; background: var(--terracotta); }
.pillar-card p { margin-bottom: 0; }
.home-testimonial { margin-top: 104px; }
.leadership-examples { margin-top: 64px; }
.leadership-examples article + article { margin-top: 40px; }
.leadership-examples h3 { margin-bottom: 10px; font-size: 28px; line-height: 1.4; }
.leadership-examples h3 a { color: var(--deep-teal); text-decoration: none; }
.leadership-examples h3 a:hover { color: var(--terracotta); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .16em; }
.leadership-examples p { margin-bottom: 0; }
.divided-list { padding: 0; margin-top: 64px; list-style: none; }
.divided-list li { padding: 22px 8px; border-top: 1px solid var(--sea-glass); color: var(--deep-teal); font-family: var(--font-display); font-size: 18px; line-height: 1.45; }
.divided-list li:last-child { border-bottom: 1px solid var(--sea-glass); }

.about-intro { padding-top: 72px; }
.about-intro > h2.page-title { max-width: 820px; margin: 0 auto 36px; font-size: 32px; font-style: normal; font-weight: 400; line-height: 1.44; text-align: center; }
.about-opening { margin-top: 64px; }
.about-opening p, .narrative-copy p { margin-bottom: 20px; }
.about-testimonial { width: 100%; margin-top: 104px; }
.principles-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 64px; margin-top: 64px; }
.principles-grid h3 { margin-bottom: 10px; color: var(--deep-teal); font-size: 28px; line-height: 1.4; }
.principles-grid p { margin-bottom: 0; }
.about-section.narrative { margin-top: 144px; }
.narrative-copy { margin-top: 64px; }
.centered-action { margin-top: 64px; text-align: center; }

.contact-intro { padding-top: 64px; text-align: center; }
.contact-portrait { width: 144px; height: 144px; margin: 0 auto 38px; border-radius: 50%; object-fit: cover; }
.contact-intro .dot-row { margin-bottom: 28px; }
.contact-intro h2.page-title { margin-bottom: 24px; }
.contact-intro .intro-statement { margin-top: 0; }
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 112px; }
.contact-form { display: grid; gap: 28px; }
.contact-link { margin: 0; }
.contact-link a { text-decoration: underline; text-underline-offset: .15em; }
.contact-link a:hover { color: var(--terracotta); }
.form-field { display: grid; gap: 8px; }
.form-field label { color: var(--charcoal); }
.form-field label span { font-size: 16px; }
.form-field input, .form-field textarea { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid var(--warm-stone); border-radius: 6px; background: #fcfcfa; color: var(--charcoal); font: inherit; }
.form-field textarea { min-height: 190px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--deep-teal); outline: 0; }
.contact-form .button { justify-self: start; font-family: var(--font-body); font-size: 18px; cursor: pointer; }
.form-status { min-height: 30px; margin: -12px 0 0; color: var(--deep-teal); }
.technology-note { margin-top: 144px; margin-bottom: 104px; padding-top: 32px; border-top: 1px solid var(--sea-glass); }
.technology-note h2 { margin-bottom: 16px; color: var(--terracotta); font-family: var(--font-body); font-size: 18px; font-weight: 600; }
.technology-note p { margin-bottom: 0; font-size: 16px; line-height: 1.6; }

.work-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 88px 36px; padding-top: 112px; }
.project-card { display: block; text-decoration: none; }
.project-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(320px, .8fr); align-items: center; gap: 64px; padding-bottom: 24px; }
.cover-art { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--warm-stone); }
.cover-art img { width: 100%; height: 100%; object-fit: cover; }
.cover-art::before, .cover-art::after, .cover-art span { content: ""; position: absolute; display: block; }
.cover-art--brand { background: var(--deep-teal); }
.cover-art--brand::before { inset: 12% 9% 18% 47%; background: var(--porcelain); }
.cover-art--brand::after { width: 48%; height: 18%; left: 8%; bottom: 14%; background: var(--terracotta); }
.cover-art--brand span { width: 31%; aspect-ratio: 1; left: 12%; top: 13%; border-radius: 50%; border: 18px solid var(--sea-glass); }
.cover-art--orchestrator { background: var(--warm-stone); }
.cover-art--orchestrator::before { inset: 10%; background: var(--deep-teal); clip-path: polygon(0 12%, 48% 0, 100% 18%, 90% 78%, 42% 100%, 5% 76%); }
.cover-art--orchestrator::after { width: 44%; height: 44%; border: 16px solid var(--sea-glass); border-radius: 50%; top: 23%; left: 28%; }
.cover-art--open { background: var(--terracotta); }
.cover-art--open::before { width: 72%; height: 72%; top: 14%; left: 14%; border: 22px solid var(--porcelain); border-radius: 50%; }
.cover-art--open::after { width: 28%; height: 110%; left: 36%; top: -5%; transform: rotate(38deg); background: var(--deep-teal); }
.cover-art--office { background: var(--porcelain); }
.cover-art--office::before { inset: 10% 8%; background: repeating-linear-gradient(90deg, var(--deep-teal) 0 7%, transparent 7% 13%); }
.cover-art--office::after { width: 55%; height: 27%; right: 6%; bottom: 10%; background: var(--terracotta); }
.cover-art--copper { background: #55362f; }
.cover-art--copper::before { width: 62%; height: 62%; left: 19%; top: 18%; border: 12px solid var(--terracotta); transform: rotate(45deg); }
.cover-art--copper::after { width: 22%; height: 22%; left: 39%; top: 39%; border-radius: 50%; background: var(--porcelain); }
.cover-art--recap { background: var(--sea-glass); }
.cover-art--recap::before { inset: 12% 30% 8% 12%; background: var(--porcelain); }
.cover-art--recap::after { width: 48%; height: 62%; right: 9%; bottom: 9%; background: var(--terracotta); }
.cover-art--program { background: var(--deep-teal); }
.cover-art--program::before { width: 64%; height: 64%; top: 18%; left: 18%; background: repeating-linear-gradient(0deg, var(--sea-glass) 0 11%, transparent 11% 23%); }
.cover-art--program::after { inset: 14% 58% 14% 14%; background: var(--porcelain); }
.cover-art--pathways { background: var(--warm-stone); }
.cover-art--pathways::before { inset: 12%; background: conic-gradient(from 90deg, var(--deep-teal), var(--deep-teal) 25%, var(--terracotta) 25%, var(--terracotta) 50%, var(--sea-glass) 50%, var(--sea-glass) 75%, var(--porcelain) 75%); border-radius: 50%; }
.cover-art--pathways::after { width: 29%; height: 29%; left: 35.5%; top: 35.5%; background: var(--warm-stone); border-radius: 50%; }
.cover-art--capstone { background: var(--porcelain); }
.cover-art--capstone::before { width: 80%; height: 54%; left: 10%; top: 23%; background: var(--deep-teal); transform: skewY(-9deg); }
.cover-art--capstone::after { width: 45%; height: 46%; right: 8%; top: 18%; background: var(--terracotta); transform: skewY(12deg); }
.project-copy { padding-top: 24px; }
.project-copy h2 { margin-bottom: 14px; color: var(--deep-teal); font-size: 28px; line-height: 1.38; }
.project-copy p { margin-bottom: 0; }
.project-card--featured .project-copy p { max-width: 48ch; }
.project-copy > p:not(.project-kicker) { color: var(--charcoal); }
.project-kicker { margin-bottom: 12px !important; color: var(--terracotta); font-size: 16px; letter-spacing: .04em; }
.text-link { display: inline-block; margin-top: 28px; text-decoration: none; }
.project-card:hover h2, .project-card:hover .text-link { color: var(--terracotta); }
.project-card--featured:hover .text-link { text-decoration: none; }
.project-card:not(.project-card--featured):hover h2 { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .16em; }

.case-intro { padding-top: 72px; text-align: center; }
.case-intro h2.page-title { margin-bottom: 24px; }
.case-intro p { max-width: 570px; margin: 0 auto; color: var(--terracotta); font-family: var(--font-display); font-size: 24px; line-height: 1.5; }
.hero-media { margin-top: 64px; }
figure { margin-bottom: 0; }
.image-button { width: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
figcaption, .carousel-caption { margin-top: 12px; color: var(--smoke); font-size: 16px; font-style: italic; line-height: 1.5; text-align: center; }
.project-glance { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 104px; }
.project-glance div { padding: 0 22px 0 22px; border-left: 1px solid var(--sea-glass); }
.project-glance div:last-child { border-right: 1px solid var(--sea-glass); }
dt { color: var(--terracotta); font-size: 16px; }
dd { margin: 8px 0 0; color: var(--deep-teal); font-family: var(--font-display); font-size: 18px; line-height: 1.45; }
.glance-list span { display: block; }
.glance-list span + span { margin-top: 8px; }
.glance-list--timeline span + span { margin-top: 0; }
.narrative { margin-top: 128px; }
.narrative h2, .leadership h2 { margin-bottom: 24px; color: var(--terracotta); font-size: 28px; line-height: 1.4; }
.narrative p { margin-bottom: 20px; }
.media-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 52px; }
.media-pair figcaption { grid-column: 1 / -1; }
.pull-quote,
.testimonial { width: min(760px, calc(100% - 48px)); margin: 128px auto 0; padding: 38px 0; border-top: 1px solid var(--sea-glass); border-bottom: 1px solid var(--sea-glass); color: var(--deep-teal); font-family: var(--font-body); font-size: 30px; font-weight: 600; line-height: 1.5; text-align: center; }
.testimonial blockquote { margin: 0; }
.testimonial cite { display: block; margin-top: 18px; color: var(--charcoal); font-size: 16px; font-style: normal; font-weight: 400; line-height: 1.5; }
.testimonial figcaption { margin-top: 18px; color: var(--charcoal); font-size: 16px; font-style: normal; font-weight: 400; line-height: 1.5; text-align: center; }
.leadership { margin-top: 128px; }
.leadership dl { margin: 36px 0 0; }
.leadership dl div { display: grid; grid-template-columns: 220px 1fr; gap: 28px; padding: 24px 0; border-top: 1px solid var(--sea-glass); }
.leadership dl div:last-child { border-bottom: 1px solid var(--sea-glass); }
.leadership dt { color: var(--deep-teal); font-family: var(--font-display); font-size: 18px; }
.leadership dd { margin: 0; color: var(--charcoal); font-family: var(--font-body); font-size: 18px; line-height: 1.65; }
.proof-section { margin-top: 152px; }
.proof-section .section-intro h2 { font-size: 34px; }
.proof-module { margin-top: 104px; }
.module-copy h3 { margin-bottom: 20px; color: var(--deep-teal); font-size: 28px; line-height: 1.4; }
.project-credit { margin-top: 20px; color: var(--smoke); font-size: 16px; line-height: 1.5; }
.carousel { margin-top: 48px; }
.carousel-image { touch-action: pan-y pinch-zoom; user-select: none; -webkit-user-select: none; }
.carousel-image.is-dragging { cursor: grabbing; }
.carousel-image img { aspect-ratio: 16 / 9; object-fit: contain; background: var(--warm-stone); pointer-events: none; }
.carousel-thumbnails { display: grid; min-width: 0; max-width: 100%; grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: var(--thumbnail-basis); gap: 12px; margin-top: 18px; padding-bottom: 8px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x proximity; scrollbar-width: thin; }
.carousel-thumbnail { position: relative; padding: 0; border: 2px solid transparent; background: transparent; cursor: pointer; }
.carousel-thumbnail { scroll-snap-align: start; }
.carousel-thumbnail img { aspect-ratio: 16 / 9; object-fit: cover; }
.carousel-thumbnail[aria-current="true"] { border-color: var(--deep-teal); }
.carousel-thumbnail[aria-current="true"]::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 2px var(--porcelain); pointer-events: none; }
.carousel-controls { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; margin-top: 20px; }
.carousel-controls button { min-height: 44px; border: 0; background: transparent; color: var(--deep-teal); font: inherit; text-decoration: none; }
.carousel-controls button:hover { color: var(--terracotta); text-decoration: underline; text-underline-offset: .16em; }
.carousel-controls button:first-child { justify-self: start; }
.carousel-controls button:last-child { justify-self: end; }
.carousel-count { color: var(--charcoal); font-size: 16px; }
.project-nav { display: grid; grid-template-columns: 1fr auto 1fr; gap: 48px; align-items: center; margin-top: 136px; padding: 36px 0; border-top: 1px solid var(--sea-glass); border-bottom: 1px solid var(--sea-glass); }
.project-nav a { display: block; text-decoration: none; font-family: var(--font-display); line-height: 1.45; }
.project-nav a:last-child { text-align: right; }
.project-nav a span { display: block; color: var(--terracotta); font-family: var(--font-body); font-size: 15px; }
.project-nav .all-work { font-family: var(--font-body); }
.project-nav .all-work:hover { color: var(--terracotta); text-decoration: underline; text-underline-offset: .16em; }
.closing-cta { padding-top: 136px; padding-bottom: 104px; text-align: center; }
.closing-cta p { max-width: var(--reading); margin: 40px auto 40px; color: var(--terracotta); font-family: var(--font-display); font-size: 24px; line-height: 1.5; }
.button { display: inline-flex; min-height: 46px; align-items: center; padding: 0 30px; border: 1px solid var(--deep-teal); border-radius: 999px; background: var(--deep-teal); color: var(--porcelain); font: inherit; text-decoration: none; }
.button:hover { border-color: var(--deep-teal); background: transparent; color: var(--deep-teal); }
.site-footer { color: var(--smoke); }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; align-items: baseline; padding-top: 56px; padding-bottom: 42px; font-size: 16px; }
.footer-inner p { margin: 0; }
.footer-inner nav { display: flex; gap: 28px; }
.footer-inner a { color: var(--smoke); text-decoration: none; }
.footer-inner a:hover { text-decoration: underline; }
.footer-band { height: 36px; background: var(--warm-stone); }
.lightbox { width: min(92vw, 1500px); max-width: none; padding: 56px 24px 24px; border: 0; background: var(--porcelain); }
.lightbox::backdrop { background: rgba(47, 47, 47, .82); }
.lightbox-close { position: absolute; top: 10px; right: 16px; min-height: 40px; border: 0; background: transparent; color: var(--deep-teal); font: inherit; text-decoration: underline; }

.case-summary { margin-top: 44px; }
.case-summary p { margin-bottom: 20px; }
.hero-frame img { aspect-ratio: 16 / 9; object-fit: contain; background: var(--warm-stone); }
#copper-cock-page .hero-frame img { object-fit: cover; object-position: center center; }
.media-full { margin-top: 52px; }
.media-full--document { width: min(760px, calc(100% - 48px)); }
.media-full img, .media-pair img, .comparison-grid img, .media-grid-three img { object-fit: contain; }
.media-pair > figure { margin: 0; }
.media-pair--inside { width: 100%; }
.narrative--continuation { margin-top: 52px; }
.brand-approach-continuation { margin-top: 35px; }
.project-glance--five, .project-glance--compact { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 88px; border-top: 1px solid var(--sea-glass); border-bottom: 1px solid var(--sea-glass); }
.metric-row div { padding: 30px 26px; text-align: center; }
.metric-row div + div { border-left: 1px solid var(--sea-glass); }
.metric-row strong { display: block; color: var(--deep-teal); font-family: var(--font-display); font-size: 30px; font-weight: 400; line-height: 1.25; }
.metric-row span { display: block; margin-top: 8px; }
.comparison-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 52px; }
.comparison-grid > figure { margin: 0; }
.outcome-proof { margin-top: 88px; }
.linked-media { display: block; max-width: 920px; margin: 44px auto 0; text-decoration: none; }
.linked-media img { background: var(--warm-stone); }
.linked-media > span { display: inline-block; margin-top: 16px; }
.linked-media:hover > span { color: var(--terracotta); text-decoration: underline; text-underline-offset: .16em; }
.validation-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; margin-top: 72px; }
.validation-card { display: block; color: var(--charcoal); text-decoration: none; }
.validation-card h3 { margin: 24px 0 14px; color: var(--deep-teal); font-size: 26px; line-height: 1.4; }
.validation-card p { margin-bottom: 18px; }
.validation-card > span { color: var(--deep-teal); }
.validation-card:hover h3, .validation-card:hover > span { color: var(--terracotta); }
.validation-card:hover > span { text-decoration: underline; text-underline-offset: .16em; }
.media-grid-three { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 52px; }
.media-grid-three figure { margin: 0; }
.supporting-link { margin-top: 36px; text-align: center; }
.supporting-link a { text-underline-offset: .16em; }
.supporting-link a:hover { color: var(--terracotta); }
.nav-spacer { display: block; }

@media (max-width: 1023px) {
  .container { width: min(var(--container), calc(100% - 72px)); }
  .pillar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pillar-card:last-child { grid-column: 1 / -1; width: calc(50% - 12px); justify-self: center; }
  .contact-layout { gap: 28px; }
  .project-card--featured { grid-template-columns: 1.15fr .85fr; gap: 40px; }
  .project-glance { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .project-glance div:nth-child(3) { border-left: 1px solid var(--sea-glass); }
  .project-glance div:nth-child(2) { border-right: 1px solid var(--sea-glass); }
  .media-grid-three { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 767px) {
  body { font-size: 16px; line-height: 1.63; }
  .container, .reading-column, .wide-column { width: calc(100% - 44px); }
  .site-header { position: relative; align-items: center; padding-top: 28px; padding-bottom: 20px; }
  .wordmark { font-size: 20px; }
  .menu-toggle { display: inline-flex; }
  .primary-nav { display: none; position: absolute; z-index: 20; top: 78px; left: 0; right: 0; flex-direction: column; gap: 10px; padding: 22px; background: var(--porcelain); border-top: 1px solid var(--sea-glass); border-bottom: 1px solid var(--sea-glass); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { display: inline-flex; align-items: center; width: max-content; min-height: 44px; padding-left: 16px; }
  .active-dot { left: 0; bottom: auto; transform: none; }
  .page-intro, .case-intro { padding-top: 52px; }
  h1,
  .page-title { font-size: 40px; line-height: 1.2; }
  .intro-statement, .case-intro p { font-size: 20px; line-height: 1.5; }
  .home-hero, .about-intro, .contact-intro { padding-top: 52px; }
  .home-hero .dot-row { margin-bottom: 24px; }
  .hero-subhead { font-size: 20px; line-height: 1.5; }
  .hero-body { margin-top: 48px; }
  .button-group { flex-direction: column; align-items: center; margin-top: 48px; }
  .button-group .button { width: min(100%, 240px); justify-content: center; }
  .home-section, .about-section, .about-section.narrative { margin-top: 104px; }
  .section-intro h2 { font-size: 24px; line-height: 1.42; }
  .section-intro > p, .pillar-grid, .leadership-examples, .divided-list, .principles-grid, .narrative-copy { margin-top: 44px; }
  .pillar-grid { grid-template-columns: 1fr; gap: 24px; }
  .pillar-card:last-child { grid-column: auto; width: auto; }
  .pillar-card { padding: 30px; }
  .pillar-card h3, .leadership-examples h3, .principles-grid h3 { font-size: 24px; }
  .home-testimonial, .about-testimonial { margin-top: 72px; }
  .about-intro > h2.page-title { font-size: 28px; line-height: 1.43; }
  .about-opening { margin-top: 48px; }
  .principles-grid { grid-template-columns: 1fr; gap: 36px; }
  .centered-action { margin-top: 48px; }
  .contact-portrait { width: 120px; height: 120px; margin-bottom: 32px; }
  .contact-layout { gap: 24px; margin-top: 80px; }
  .contact-form { gap: 24px; }
  .contact-form .button { justify-self: stretch; justify-content: center; }
  .technology-note { margin-top: 104px; margin-bottom: 76px; }
  .work-grid { grid-template-columns: 1fr; gap: 72px; padding-top: 80px; }
  .project-card--featured { grid-column: auto; display: block; padding-bottom: 0; }
  .project-copy { padding-top: 20px; }
  .project-copy h2 { font-size: 24px; line-height: 1.4; }
  .hero-media { margin-top: 44px; }
  .case-summary { margin-top: 36px; }
  figcaption, .carousel-caption { font-size: 14px; line-height: 1.55; }
  .project-glance { grid-template-columns: 1fr; row-gap: 0; margin-top: 72px; }
  .project-glance div { padding: 22px 0; border-left: 0; border-top: 1px solid var(--sea-glass); }
  .project-glance div:nth-child(2), .project-glance div:nth-child(3), .project-glance div:last-child { border-left: 0; border-right: 0; }
  .project-glance div:last-child { border-bottom: 1px solid var(--sea-glass); }
  .metric-row { grid-template-columns: 1fr; margin-top: 64px; }
  .metric-row div { padding: 24px 0; text-align: left; }
  .metric-row div + div { border-left: 0; border-top: 1px solid var(--sea-glass); }
  .comparison-grid, .validation-grid { grid-template-columns: 1fr; gap: 32px; }
  .media-full { margin-top: 40px; }
  .media-full--document { width: calc(100% - 44px); }
  .narrative--continuation { margin-top: 40px; }
  .brand-approach-continuation { margin-top: 27px; }
  .outcome-proof { margin-top: 72px; }
  .validation-grid { margin-top: 52px; }
  .narrative, .leadership { margin-top: 88px; }
  .narrative h2, .leadership h2, .module-copy h3 { font-size: 24px; line-height: 1.42; }
  .media-pair { grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
  .media-pair figcaption { grid-column: auto; }
  .pull-quote, .testimonial { width: calc(100% - 44px); margin-top: 88px; padding: 28px 0; font-size: 23px; line-height: 1.5; text-align: left; }
  .home-testimonial, .about-testimonial { width: 100%; margin-top: 72px; text-align: left; }
  .testimonial figcaption { text-align: left; }
  .leadership dl div { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .leadership dd { font-size: 16px; }
  .proof-section { margin-top: 104px; }
  .section-intro h2 { font-size: 28px; }
  .proof-module { margin-top: 76px; }
  .carousel { display: flex; flex-direction: column; margin-top: 36px; }
  .carousel-image { order: 1; }
  .carousel-thumbnails { width: 100%; grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: calc((100% - 20px) / 3); gap: 10px; margin-right: 0; padding: 0 0 8px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x proximity; scrollbar-width: thin; touch-action: pan-x; }
  .carousel-thumbnails { order: 2; }
  .carousel-thumbnail { scroll-snap-align: start; }
  .carousel-controls { order: 3; grid-template-columns: 1fr auto 1fr; gap: 10px; margin-top: 12px; }
  .carousel-prev { grid-column: 1; }
  .carousel-count { grid-column: 2; grid-row: 1; justify-self: center; white-space: nowrap; }
  .carousel-next { grid-column: 3; }
  .carousel-controls button { grid-row: 1; }
  .carousel-caption { order: 4; margin-top: 8px; }
  .project-nav { grid-template-columns: 1fr; gap: 0; margin-top: 96px; padding: 0; }
  .project-nav a { padding: 24px 0; border-bottom: 1px solid var(--sea-glass); }
  .project-nav a:last-child { text-align: left; border-bottom: 0; }
  .project-nav .all-work { text-align: left; }
  .project-nav .nav-spacer { display: none; }
  .closing-cta { padding-top: 96px; padding-bottom: 76px; }
  .closing-cta p { margin: 34px auto; font-size: 21px; }
  .closing-cta br { display: none; }
  .footer-inner { flex-direction: column; align-items: center; gap: 24px; text-align: center; padding-top: 48px; }
  .footer-inner nav { gap: 20px; flex-wrap: wrap; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hamburger-icon i { transition: none; }
}

/* Case-study vertical rhythm: approximately one-third tighter than v23. */
:is(#case-study-page, .case-study-page) .case-summary { margin-top: 30px; }
:is(#case-study-page, .case-study-page) .hero-media { margin-top: 44px; }
:is(#case-study-page, .case-study-page) .project-glance { margin-top: 72px; }
:is(#case-study-page, .case-study-page) .narrative,
:is(#case-study-page, .case-study-page) .leadership { margin-top: 88px; }
:is(#case-study-page, .case-study-page) .media-pair,
:is(#case-study-page, .case-study-page) .media-full,
:is(#case-study-page, .case-study-page) .comparison-grid,
:is(#case-study-page, .case-study-page) .media-grid-three { margin-top: 36px; }
:is(#case-study-page, .case-study-page) .narrative--continuation { margin-top: 36px; }
:is(#case-study-page, .case-study-page) .brand-approach-continuation { margin-top: 24px; }
:is(#case-study-page, .case-study-page) .pull-quote,
:is(#case-study-page, .case-study-page) .testimonial { margin-top: 88px; }
:is(#case-study-page, .case-study-page) .metric-row,
:is(#case-study-page, .case-study-page) .outcome-proof { margin-top: 60px; }
:is(#case-study-page, .case-study-page) .proof-section { margin-top: 104px; }
:is(#case-study-page, .case-study-page) .proof-module { margin-top: 72px; }
:is(#case-study-page, .case-study-page) .validation-grid { margin-top: 48px; }
:is(#case-study-page, .case-study-page) .linked-media { margin-top: 30px; }
:is(#case-study-page, .case-study-page) .project-nav { margin-top: 92px; }
:is(#case-study-page, .case-study-page) .closing-cta {
  padding-top: 92px;
  padding-bottom: 72px;
}

@media (max-width: 767px) {
  :is(#case-study-page, .case-study-page) .case-summary { margin-top: 30px; }
  :is(#case-study-page, .case-study-page) .hero-media { margin-top: 30px; }
  :is(#case-study-page, .case-study-page) .project-glance { margin-top: 48px; }
  :is(#case-study-page, .case-study-page) .narrative,
  :is(#case-study-page, .case-study-page) .leadership { margin-top: 60px; }
  :is(#case-study-page, .case-study-page) .media-pair,
  :is(#case-study-page, .case-study-page) .media-full,
  :is(#case-study-page, .case-study-page) .comparison-grid,
  :is(#case-study-page, .case-study-page) .media-grid-three { margin-top: 28px; }
  :is(#case-study-page, .case-study-page) .narrative--continuation { margin-top: 28px; }
  :is(#case-study-page, .case-study-page) .brand-approach-continuation { margin-top: 18px; }
  :is(#case-study-page, .case-study-page) .pull-quote,
  :is(#case-study-page, .case-study-page) .testimonial { margin-top: 60px; }
  :is(#case-study-page, .case-study-page) .metric-row,
  :is(#case-study-page, .case-study-page) .outcome-proof { margin-top: 48px; }
  :is(#case-study-page, .case-study-page) .proof-section { margin-top: 72px; }
  :is(#case-study-page, .case-study-page) .proof-module { margin-top: 52px; }
  :is(#case-study-page, .case-study-page) .validation-grid { margin-top: 36px; }
  :is(#case-study-page, .case-study-page) .linked-media { margin-top: 30px; }
  :is(#case-study-page, .case-study-page) .project-nav { margin-top: 64px; }
  :is(#case-study-page, .case-study-page) .closing-cta {
    padding-top: 64px;
    padding-bottom: 52px;
  }
}
