:root {
  --ink: #111113;
  --charcoal: #242226;
  --soft-black: #171619;
  --crimson: #8f1d2c;
  --crimson-bright: #b32635;
  --rose: #f3dde0;
  --paper: #fffdf8;
  --warm: #f6efe6;
  --stone: #e7dfd5;
  --muted: #64605b;
  --line: rgba(17, 17, 19, 0.12);
  --shadow: 0 20px 55px rgba(17, 17, 19, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(143, 29, 44, 0.08), transparent 32rem),
    linear-gradient(180deg, var(--paper), #fbf7f0 44rem, var(--paper));
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  margin: 0 auto;
  max-width: 1160px;
  padding: 0 28px;
  width: 100%;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(17, 17, 19, 0.08);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition:
    box-shadow 220ms ease,
    background 220ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 17, 19, 0.08);
}

.nav-wrap {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 88px;
}

.brand {
  align-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: inline-flex;
  padding: 0;
  transition:
    transform 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand img,
.footer-logo img {
  height: 38px;
  width: auto;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 26px);
}

.nav-links a {
  color: rgba(17, 17, 19, 0.74);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  position: relative;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links a:not(.nav-cta)::after {
  background: var(--crimson);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--crimson);
  color: #fff !important;
  padding: 12px 24px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover {
  background: var(--crimson-bright);
  transform: translateY(-1px);
}

.hero,
.page-hero {
  background: var(--soft-black);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.hero {
  min-height: 95vh;
}

.page-hero {
  min-height: 500px;
}

.hero img,
.page-hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  width: 100%;
}

.hero img {
  animation: heroZoom 1100ms ease-out both;
}

.join-hero img {
  object-position: center 62%;
}

.about-hero,
.about-hero .page-hero-content {
  min-height: 360px;
}

.about-hero + .members-section {
  padding-top: 42px;
}

.hero::after,
.page-hero::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.16));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-content,
.page-hero-content {
  align-items: center;
  display: flex;
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero-content {
  min-height: 95vh;
  padding-bottom: 70px;
  padding-top: 132px;
}

.page-hero-content {
  min-height: 500px;
  padding-top: 112px;
}

.hero-copy,
.page-hero-copy {
  animation: heroFadeUp 700ms ease-out 120ms both;
  margin: 0 auto;
  max-width: 950px;
}

.kicker,
.mini-kicker {
  color: var(--crimson);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .kicker,
.page-hero .kicker,
.dark-panel .kicker {
  color: rgba(255, 255, 255, 0.82);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(54px, 7.2vw, 104px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 20px;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(21px, 2.35vw, 32px);
  font-weight: 500;
  margin: 0 auto;
  max-width: 840px;
}

.hero-actions,
.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-actions {
  justify-content: center;
}

.button {
  align-items: center;
  background: var(--crimson);
  border: 1px solid var(--crimson);
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  box-shadow: 0 12px 28px rgba(143, 29, 44, 0.2);
  transform: translateY(-2px);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.82);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.23);
}

.button.dark-secondary {
  background: transparent;
  border-color: var(--crimson);
  color: var(--crimson);
}

.button.dark-secondary:hover {
  background: var(--crimson);
  color: #fff;
}

section {
  padding: 86px 0;
}

.section-grid,
.split-feature {
  display: grid;
  gap: clamp(36px, 5vw, 68px);
  grid-template-columns: minmax(260px, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
}
.split-feature {
  align-items: center;
}

.section-copy,
.rich-copy {
  color: var(--muted);
  font-size: 18px;
}

.section-copy p:last-child,
.rich-copy p:last-child {
  margin-bottom: 0;
}

.soft-section {
  background:
    linear-gradient(135deg, rgba(143, 29, 44, 0.06), transparent 45%),
    linear-gradient(180deg, var(--warm), #fffaf3);
  border-bottom: 1px solid rgba(17, 17, 19, 0.06);
  border-top: 1px solid rgba(17, 17, 19, 0.06);
}


.stats-section {
  background: #fff;
  border-bottom: 1px solid rgba(17, 17, 19, 0.08);
  padding-bottom: 76px;
}

.stats-section h2 {
  border-bottom: 4px solid rgba(93, 29, 42, 0.9);
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.02;
  margin-bottom: 0;
  padding-bottom: 32px;
}

.dark-panel {
  background:
    linear-gradient(135deg, rgba(143, 29, 44, 0.32), transparent 34rem),
    var(--soft-black);
  color: #fff;
}

.dark-panel p,
.dark-panel .section-copy {
  color: rgba(255, 255, 255, 0.76);
}

.explore {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
}

.photo-frame {
  align-self: start;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 10px;
}

.photo-frame img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.photo-frame.tall img {
  aspect-ratio: 4 / 5;
}

.photo-frame.photo-contain img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.card-grid,
.service-grid,
.timeline-grid,
.post-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
}

.service-card,
.info-card,
.timeline-card,
.post-card,
.contact-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(17, 17, 19, 0.04);
  min-height: 210px;
  padding: 28px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card:hover,
.info-card:hover,
.timeline-card:hover,
.post-card:hover,
.contact-card:hover {
  border-color: rgba(143, 29, 44, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card p,
.info-card p,
.timeline-card p,
.post-card p,
.contact-card p {
  color: var(--muted);
}

.service-card p:last-child,
.info-card p:last-child,
.timeline-card p:last-child,
.post-card p:last-child,
.contact-card p:last-child {
  margin-bottom: 0;
}

.mini-kicker {
  display: block;
  margin-bottom: 16px;
}

.project-model,
.about-stats {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
}

.project-model {
  grid-template-columns: repeat(4, 1fr);
}

.model-stat,
.about-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 28px;
}

.about-stat {
  background:
    linear-gradient(180deg, rgba(143, 29, 44, 0.055), rgba(143, 29, 44, 0)),
    #fff;
  border-color: rgba(93, 29, 42, 0.16);
}

.model-stat strong,
.about-stat strong {
  display: block;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1;
  margin-bottom: 12px;
}

.about-stat strong {
  color: #5d1d2a;
  letter-spacing: -0.02em;
}

.model-stat span {
  color: rgba(255, 255, 255, 0.74);
}

.about-stat span {
  color: var(--ink);
  display: block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.quote-panel,
.join-panel {
  background:
    linear-gradient(135deg, rgba(143, 29, 44, 0.1), transparent 38rem),
    #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(32px, 5vw, 54px);
}

.join-panel {
  background:
    linear-gradient(135deg, rgba(143, 29, 44, 0.08), transparent 34rem),
    #fff;
  color: var(--ink);
}

.join-panel p {
  color: var(--muted);
  font-size: 18px;
  max-width: 800px;
}

.join-actions .button.secondary {
  background: transparent;
  border-color: var(--crimson);
  color: var(--crimson);
}

.join-actions .button.secondary:hover {
  background: var(--crimson);
  color: #fff;
}

.list-stack {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.list-row {
  border-left: 3px solid var(--crimson);
  padding-left: 18px;
}

.list-row p {
  color: var(--muted);
  margin-bottom: 0;
}

.members-section {
  background: #fff;
}

.member-role-group {
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding-top: 30px;
}

.member-role-group h3 {
  color: var(--crimson);
  font-size: 13px;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.member-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.member-card {
  background: transparent;
  border: 0;
  min-height: 470px;
  outline: none;
  perspective: 1000px;
}

.member-card-inner {
  height: 100%;
  min-height: 470px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 520ms ease;
}

.member-card:hover .member-card-inner,
.member-card:focus .member-card-inner,
.member-card:focus-within .member-card-inner {
  transform: rotateY(180deg);
}

.member-card-face {
  backface-visibility: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(17, 17, 19, 0.07);
  display: flex;
  flex-direction: column;
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.member-card-front img {
  height: 340px;
  object-fit: cover;
  object-position: center 84%;
  width: 100%;
}

.member-card-front.is-missing-headshot::before {
  align-items: center;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(143, 29, 44, 0.12), rgba(17, 17, 19, 0.06)),
    #f7f1f1;
  color: var(--crimson);
  content: attr(data-initials);
  display: flex;
  font-size: 46px;
  font-weight: 800;
  height: 340px;
  justify-content: center;
  letter-spacing: 0;
  width: 100%;
}

.member-card-front div {
  padding: 18px;
}

.member-card-front span {
  color: var(--crimson);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.member-card-front strong,
.member-card-back strong {
  display: block;
  font-size: 20px;
  line-height: 1.15;
}

.member-card-back {
  background:
    linear-gradient(135deg, rgba(143, 29, 44, 0.14), transparent 72%),
    var(--soft-black);
  color: #fff;
  justify-content: center;
  padding: 24px;
  transform: rotateY(180deg);
}

.member-card-back strong {
  margin-bottom: 18px;
}

.member-card-back p {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  margin: 0;
  padding: 9px 0;
}

.member-card-back a {
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
  color: #fff;
  font-weight: 800;
  padding-bottom: 2px;
  text-decoration: none;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

details {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  padding: 22px 24px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

details[open] {
  border-color: rgba(143, 29, 44, 0.26);
  box-shadow: 0 12px 28px rgba(17, 17, 19, 0.06);
}

summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  color: var(--crimson);
  content: "+";
  float: right;
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  color: var(--muted);
  margin: 14px 0 0;
}

.contact-card {
  min-height: auto;
}

.contact-card a {
  color: var(--crimson);
  font-weight: 800;
}

footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 46px 0;
}

.footer-logo {
  background: transparent;
  border: 0;
  box-shadow: none;
  display: inline-flex;
  padding: 0;
}

.footer-grid {
  align-items: end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

footer p {
  color: var(--muted);
  margin: 16px 0 0;
}

.footer-contact {
  text-align: right;
}

.footer-contact a,
.footer-socials a {
  color: var(--crimson);
  font-weight: 800;
  transition: color 160ms ease;
}

.footer-contact a:hover,
.footer-socials a:hover {
  color: var(--crimson-bright);
}

.footer-socials {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.035);
  }

  to {
    transform: scale(1);
  }
}

.placements-section {
  background: #ffffff;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  gap: 36px;
  max-width: 760px;
  margin: 36px auto 0;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 120px;
  padding: 18px;
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-white {
  background: #ffffff;
}

.logo-grid-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px;
  max-width: 760px;
  margin: 36px auto 0;
}

.past-clients-section {
  background: #fff;
}

.story-hero img {
  object-position: center 42%;
}

.about-story-section {
  background: #fff;
}

.about-story-grid {
  display: grid;
  gap: clamp(44px, 7vw, 110px);
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
}

.about-impact-section {
  background: linear-gradient(180deg, #fff 0%, #fff 48%, var(--paper) 48%, var(--paper) 100%);
  padding-top: 0;
}

.impact-layout {
  align-items: end;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1.18fr);
}

.impact-card {
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 17, 19, 0.1);
  margin-bottom: 42px;
  padding: clamp(30px, 4vw, 52px);
  position: relative;
  z-index: 2;
}

.impact-stats {
  display: grid;
  gap: 28px 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.impact-stats strong {
  color: var(--crimson);
  display: block;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.95;
}

.impact-stats span {
  color: var(--muted);
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 8px;
}

.impact-photo {
  margin-left: -36px;
  min-height: 420px;
  overflow: hidden;
}

.impact-photo img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 28%;
  width: 100%;
}

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

.about-pillar {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  padding: 32px;
}

.about-pillar span {
  color: var(--crimson);
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 46px;
}

.about-pillar p {
  color: var(--muted);
  margin-bottom: 0;
}

.about-feature-section {
  background: #fff;
}

.about-feature-grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 82px);
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
}

.about-feature-photo {
  overflow: hidden;
}

.about-feature-photo img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 34%;
  width: 100%;
}

.about-feature-copy {
  background: var(--paper);
  padding: clamp(30px, 5vw, 62px);
}

.about-feature-copy p {
  color: var(--muted);
  font-size: 17px;
  margin: 22px 0 28px;
}

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

.client-logo-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(17, 17, 19, 0.04);
  display: flex;
  height: 150px;
  justify-content: center;
  padding: 28px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.client-logo-card:hover {
  border-color: rgba(143, 29, 44, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.client-logo-card img {
  max-height: 88px;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 920px) {
  .site-header {
    position: relative;
  }

  .nav-wrap {
    align-items: center;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
    padding: 18px 0 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px 22px;
    justify-content: center;
  }

  .section-grid,
  .split-feature,
  .about-story-grid,
  .impact-layout,
  .about-feature-grid,
  .explore {
    grid-template-columns: 1fr;
  }

  .impact-card {
    margin-bottom: 0;
  }

  .impact-photo {
    margin-left: 0;
    min-height: 360px;
  }

  .impact-photo img {
    min-height: 360px;
  }

  .card-grid,
  .service-grid,
  .timeline-grid,
  .post-grid,
  .member-grid,
  .project-model,
  .about-pillars,
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    padding: 0 20px;
  }

  .site-header {
    background: #fff;
    border-bottom: 1px solid rgba(17, 17, 19, 0.08);
    position: relative;
  }

  .nav-wrap {
    gap: 12px;
    padding: 16px 0 14px;
  }

  .brand img,
  .footer-logo img {
    height: 30px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 16px;
    justify-content: center;
    max-width: 360px;
    width: 100%;
  }

  .nav-links a {
    color: rgba(17, 17, 19, 0.78);
    font-size: 10px;
    letter-spacing: 0.06em;
    line-height: 1;
    padding: 0;
    white-space: nowrap;
  }

  .nav-links a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    padding: 7px 12px !important;
  }

  .hero,
  .page-hero {
    min-height: 0;
    overflow: hidden;
    position: relative;
  }

  .hero {
    min-height: 560px;
  }

  .page-hero {
    min-height: 420px;
  }

  .hero img,
  .page-hero img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center 18%;
    position: absolute;
    width: 100%;
  }

  .page-hero img {
    object-position: center 24%;
  }

  .join-hero img {
    object-position: center 58%;
  }

  .about-hero,
  .about-hero .page-hero-content {
    min-height: 300px;
  }

  .about-hero + .members-section {
    padding-top: 32px;
  }

  .hero::after,
  .page-hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.72) 100%);
    display: block;
  }

  .hero-content,
  .page-hero-content {
    align-items: flex-end;
    min-height: 560px;
    padding: 0 0 34px;
    position: relative;
    text-align: left;
    z-index: 2;
  }

  .page-hero-content {
    min-height: 420px;
  }

  .hero-copy,
  .page-hero-copy {
    margin: 0;
    max-width: 100%;
    width: 100%;
  }

  .hero .kicker,
  .page-hero .kicker {
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    margin-bottom: 10px;
  }

  .lead {
    font-size: 16px;
    line-height: 1.35;
  }

  h1 {
    font-size: clamp(34px, 10.5vw, 44px);
    line-height: 1.02;
    margin-bottom: 16px;
  }

  h2 {
    font-size: clamp(28px, 8.5vw, 36px);
    line-height: 1.1;
  }

  h3 {
    font-size: 18px;
  }

  .hero-actions,
  .join-actions {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .button {
    font-size: 12px;
    min-height: 42px;
    padding: 0 16px;
    width: 100%;
  }

  section {
    padding: 56px 0;
  }

  .section-grid,
  .split-feature,
  .about-story-grid,
  .impact-layout,
  .about-feature-grid,
  .explore {
    gap: 28px;
  }

  .section-copy,
  .rich-copy,
  .members-content p,
  .apply p {
    font-size: 16px;
  }

  .card-grid,
  .service-grid,
  .timeline-grid,
  .post-grid,
  .member-grid,
  .project-model,
  .about-pillars,
  .about-stats {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .about-impact-section {
    background: var(--paper);
  }

  .impact-card {
    box-shadow: 0 14px 34px rgba(17, 17, 19, 0.08);
    padding: 28px;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }

  .impact-photo,
  .impact-photo img {
    min-height: 300px;
  }

  .about-pillar {
    padding: 26px;
  }

  .about-pillar span {
    margin-bottom: 28px;
  }

  .about-feature-copy {
    padding: 28px;
  }

  .info-card,
  .service-card,
  .timeline-card,
  .post-card,
  .member-card,
  .contact-card,
  .model-stat,
  .about-stat {
    min-height: 0;
    padding: 22px;
  }

  .member-card {
    padding: 0;
  }

  .member-card,
  .member-card-inner {
    min-height: 470px;
  }

  .member-card-front img {
    height: 340px;
    object-position: center 84%;
  }

  .member-card-front.is-missing-headshot::before {
    height: 340px;
  }

  .member-role-group {
    margin-top: 34px;
    padding-top: 24px;
  }

  .about-stat strong,
  .model-stat strong {
    font-size: 38px;
  }

  .stats-section {
    padding-bottom: 54px;
  }

  .stats-section h2 {
    border-bottom-width: 3px;
    font-size: clamp(30px, 9vw, 42px);
    padding-bottom: 22px;
  }

  .photo-frame {
    padding: 8px;
  }

  .photo-frame img {
    aspect-ratio: 4 / 3;
  }

  .photo-frame.photo-contain img {
    aspect-ratio: auto;
  }

  .logo-grid,
  .logo-grid-center,
  .client-logo-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
    max-width: 100%;
  }

  .logo-card {
    height: 86px;
    padding: 12px;
    width: 100%;
  }

  .client-logo-card {
    height: 118px;
    padding: 18px;
  }

  .client-logo-card img {
    max-height: 72px;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer-socials {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

@media (max-width: 390px) {
  .container {
    padding: 0 16px;
  }

  .nav-links {
    gap: 8px 12px;
  }

  .nav-links a {
    font-size: 9px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    min-height: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.timeline-wrap {
  margin-top: 60px;
  position: relative;
}

.timeline-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  gap: 12px;
}

.timeline-row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  top: calc(100% - 36px);
  z-index: 0;
}

.tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tl-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 14px;
  width: 100%;
  text-align: center;
  flex: 1;
  box-sizing: border-box;
}

.tl-card.tl-crimson {
  background: rgba(153, 0, 0, 0.35);
  border-color: var(--crimson);
}

.tl-card strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.tl-card span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.tl-stem {
  width: 2px;
  height: 30px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.tl-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--crimson);
  border: 3px solid #fff;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}

.tl-week {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .timeline-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .timeline-row::before {
    display: none;
  }

  .tl-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
  }

  .tl-stem {
    width: 2px;
    height: auto;
    align-self: stretch;
  }

  .tl-card {
    flex: 1;
    text-align: left;
  }

  .tl-dot {
    margin-top: 4px;
    flex-shrink: 0;
  }

  .tl-week {
    display: none;
  }
}
