:root {
  --rouge: #6d0813;
  --rouge-deep: #260407;
  --rouge-bright: #8f0e1b;
  --rose: #f2b9b6;
  --paper: #fff3e5;
  --cream: #f8dfc7;
  --ink: #190d0b;
  --brass: #d8a54b;
  --smoke: #3a2b28;
  --shadow: 0 30px 80px rgba(43, 5, 8, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--rouge-deep);
  color: var(--paper);
  font-family: "Montserrat", sans-serif;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 18%, rgba(109, 8, 19, 0.38), transparent 28rem),
    linear-gradient(180deg, var(--rouge-deep) 0%, #4b0710 52%, var(--paper) 52%, var(--paper) 100%);
}

a {
  color: inherit;
}

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

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(18px, 3vw, 34px);
}

.hero-media,
.hero-media img,
.hero-wash {
  position: absolute;
  inset: 0;
}

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

.hero-wash {
  background:
    linear-gradient(90deg, rgba(43, 5, 8, 0.94) 0%, rgba(43, 5, 8, 0.78) 38%, rgba(43, 5, 8, 0.28) 100%),
    linear-gradient(180deg, rgba(25, 13, 11, 0.08) 0%, rgba(43, 5, 8, 0.82) 100%);
}

.nav,
.hero-content {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.wordmark {
  width: clamp(126px, 18vw, 210px);
  color: var(--paper);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.nav-cta,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 19px;
  border: 1px solid color-mix(in srgb, var(--brass) 82%, white);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 88%, var(--brass));
  color: var(--rouge-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.nav-cta:hover,
.primary-link:hover {
  transform: translateY(-2px);
  background: var(--brass);
  border-color: var(--paper);
}

.hero-content {
  align-self: end;
  max-width: min(820px, 94vw);
  padding: clamp(70px, 10vw, 150px) 0 clamp(56px, 8vw, 92px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: clamp(0.72rem, 0.6vw + 0.62rem, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(5.2rem, 18vw, 15rem);
  text-wrap: balance;
}

.lede {
  max-width: 700px;
  margin: clamp(22px, 3vw, 34px) 0 28px;
  color: color-mix(in srgb, var(--paper) 88%, var(--rose));
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.1vw, 2.35rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.18;
}

.intro {
  background: var(--paper);
  color: var(--rouge-deep);
  padding: clamp(54px, 9vw, 112px) clamp(20px, 6vw, 96px);
}

.intro p {
  max-width: 1060px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 5.8rem);
  font-weight: 600;
  line-height: 0.96;
  text-wrap: balance;
}

.brand-notes {
  background: var(--paper);
  color: var(--ink);
  padding: 0 clamp(20px, 5vw, 72px) clamp(68px, 8vw, 104px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1320px;
  margin: 0 auto;
}

.brand-notes article {
  min-height: 245px;
  padding: clamp(24px, 3vw, 38px);
  background: #f6d7c8;
  display: grid;
  align-content: space-between;
  gap: 24px;
}

.brand-notes article:nth-child(2) {
  background: var(--rouge);
  color: var(--paper);
}

.brand-notes article:nth-child(3) {
  background: var(--ink);
  color: var(--paper);
}

.brand-notes span {
  color: var(--rouge-bright);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.brand-notes article:nth-child(2) span,
.brand-notes article:nth-child(3) span {
  color: var(--brass);
}

.brand-notes h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.brand-notes p {
  margin: 0;
  max-width: 31ch;
  font-size: 0.94rem;
  line-height: 1.55;
}

.values {
  background: var(--rouge-deep);
  color: var(--paper);
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.values-heading {
  max-width: 1120px;
  margin: 0 auto clamp(28px, 4vw, 48px);
  display: block;
  text-align: left;
}

.values-heading .eyebrow {
  color: var(--rose);
}

.values h2 {
  color: var(--paper);
}

.founding-note {
  max-width: 1120px;
  margin: 0 auto clamp(28px, 4vw, 52px);
  color: color-mix(in srgb, var(--paper) 82%, var(--rose));
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.28rem, 1.85vw, 2.05rem);
  font-style: italic;
  line-height: 1.18;
  text-align: left;
}

.people-grid {
  max-width: 1120px;
  margin: 0 auto clamp(46px, 6vw, 78px);
  display: grid;
  gap: clamp(14px, 2vw, 24px);
}

.people-grid.founders {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.people-grid.leads {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 0;
}

.people-grid article {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.people-grid img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06);
}

.people-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(38, 4, 7, 0.86) 100%);
}

.people-grid h3 {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  margin: 0;
  color: var(--paper);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 1.55vw, 1.85rem);
  line-height: 1;
}

.founder-moment {
  max-width: 760px;
  margin: clamp(-22px, -2vw, -12px) auto clamp(46px, 6vw, 78px);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.founder-moment img {
  display: block;
  width: 100%;
  aspect-ratio: 539 / 700;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.values-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid color-mix(in srgb, var(--brass) 44%, transparent);
  border-left: 1px solid color-mix(in srgb, var(--brass) 44%, transparent);
}

.values-grid article {
  min-height: 270px;
  padding: clamp(22px, 2.4vw, 32px);
  border-right: 1px solid color-mix(in srgb, var(--brass) 44%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--brass) 44%, transparent);
  display: grid;
  align-content: start;
  gap: 18px;
}

.values-grid span {
  color: var(--brass);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.values-grid h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 2.6vw, 2.7rem);
  line-height: 0.94;
}

.values-grid p {
  margin: 0;
  color: color-mix(in srgb, var(--paper) 78%, var(--rose));
  font-size: 0.9rem;
  line-height: 1.58;
}

.leads-section {
  max-width: 1120px;
  margin: clamp(52px, 7vw, 90px) auto 0;
}

.leads-section .eyebrow {
  color: var(--rose);
}

.leads-section h2 {
  max-width: 840px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.gallery-section {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px) clamp(72px, 9vw, 120px);
}

.gallery-heading {
  max-width: 1020px;
  margin: 0 auto clamp(26px, 4vw, 48px);
  display: block;
}

.gallery-heading .eyebrow {
  color: var(--rouge-bright);
}

h2 {
  margin: 0;
  color: var(--rouge);
  font-size: clamp(2.05rem, 4.2vw, 4.85rem);
  text-wrap: balance;
}

.gallery {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: clamp(12px, 2vw, 22px);
  align-items: start;
}

figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--rouge-deep);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  grid-column: span 4;
}

figure img,
figure video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figure video {
  display: block;
  background: var(--rouge-deep);
}

.landscape-media {
  grid-column: span 6;
  aspect-ratio: 16 / 9;
}

.portrait-media {
  grid-column: span 3;
  aspect-ratio: 9 / 16;
}

.feature-photo {
  grid-column: span 6;
  aspect-ratio: 1 / 1;
}

.media-number,
.media-duration {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  padding: 0 10px;
  background: color-mix(in srgb, var(--rouge-deep) 88%, black);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-number {
  right: 10px;
  bottom: 10px;
}

.media-duration {
  left: 10px;
  top: 10px;
  background: color-mix(in srgb, var(--brass) 78%, var(--paper));
  color: var(--rouge-deep);
}

.play-button {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.play-button::before {
  content: "";
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--rouge-deep) 78%, black);
  border: 1px solid color-mix(in srgb, var(--brass) 82%, white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
}

.play-button span {
  position: absolute;
  margin-left: 5px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid var(--paper);
}

.playable.is-playing .play-button {
  display: none;
}

.closing {
  min-height: 48svh;
  display: grid;
  place-items: center;
  gap: 28px;
  padding: clamp(58px, 10vw, 120px) 20px;
  background:
    linear-gradient(135deg, rgba(216, 165, 75, 0.15), transparent 42%),
    var(--rouge-deep);
  color: var(--paper);
  text-align: center;
}

.closing-copy {
  max-width: 880px;
}

.closing-kicker {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 5.8rem);
  font-style: italic;
  font-weight: 600;
  line-height: 0.93;
  text-wrap: balance;
}

.closing-copy p:not(.closing-kicker) {
  max-width: 680px;
  margin: clamp(18px, 3vw, 28px) auto 0;
  color: color-mix(in srgb, var(--paper) 82%, var(--rose));
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2.2vw, 2.2rem);
  font-style: italic;
  line-height: 1.16;
}

.primary-link.dark {
  background: var(--rouge);
  border-color: var(--rose);
  color: var(--paper);
}

.primary-link.dark:hover {
  background: var(--paper);
  color: var(--rouge-deep);
}

/* ===== 2026 deck rebuild ===== */

.display-title,
.display-heading {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.95;
}

h1.display-title {
  font-size: clamp(3.4rem, 11vw, 9.5rem);
}

.display-heading {
  margin: 0 0 clamp(26px, 3.4vw, 44px);
  color: var(--ink);
  font-size: clamp(2.4rem, 5.4vw, 5rem);
  text-wrap: balance;
}

.display-heading.light {
  color: var(--paper);
}

.display-heading.centered {
  text-align: center;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.about,
.simple-sexy,
.dues,
.power,
.commitments,
.core-leads,
.leadership {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.muse-definition {
  margin-bottom: clamp(26px, 3vw, 40px);
}

.muse-definition p {
  margin: 0;
}

.def-word {
  font-size: 1.15rem;
  font-weight: 700;
}

.def-phonetic {
  margin: 2px 0 10px;
  color: var(--smoke);
  font-size: 1rem;
}

.def-meaning {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 700;
}

.about-copy p,
.split-copy p,
.split-copy li,
.dues-note,
.leadership-list li {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.66;
}

.about-copy p {
  max-width: 62rem;
  margin: 0 0 1.4em;
}

.location-note {
  max-width: 36rem;
  margin-top: 2.1rem;
  padding-left: 1.1rem;
  border-left: 2px solid var(--brass);
  color: var(--smoke);
}

.location-note p {
  margin: 0;
}

.location-note .location-label {
  margin-bottom: 0.35rem;
  color: var(--rouge);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.photo-duo {
  background: #fff;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(14px, 2.5vw, 30px);
  padding: clamp(40px, 6vw, 80px) clamp(20px, 6vw, 96px);
  align-items: stretch;
}

.photo-duo figure,
.collage figure,
.split-photo,
.split-photos figure {
  margin: 0;
  overflow: hidden;
  background: var(--rouge-deep);
  box-shadow: var(--shadow);
  grid-column: auto;
  aspect-ratio: auto;
}

.duo-portrait {
  aspect-ratio: 3 / 4;
}

.collage-a {
  aspect-ratio: 889 / 589;
}

.collage-b {
  aspect-ratio: 1600 / 748;
}

.photo-duo img,
.collage img,
.split-photo img,
.split-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-overlay {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 130px) clamp(20px, 5vw, 72px);
  color: var(--paper);
}

.values-media,
.values-media img,
.values-wash {
  position: absolute;
  inset: 0;
}

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

.values-wash {
  background:
    linear-gradient(180deg, rgba(25, 4, 8, 0.82) 0%, rgba(25, 4, 8, 0.72) 45%, rgba(25, 4, 8, 0.88) 100%);
}

.values-content {
  position: relative;
  z-index: 1;
  max-width: 1020px;
  margin: 0 auto;
}

.values-intro {
  max-width: 52rem;
  margin: 0 0 clamp(30px, 4vw, 48px);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.6;
}

.values-list {
  margin: 0;
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.values-list dt {
  margin-bottom: 8px;
  font-family: "Italiana", serif;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 86%, var(--brass));
}

.dt-note {
  font-size: 0.68em;
  letter-spacing: 0.04em;
}

.values-list dd {
  margin: 0;
  max-width: 60rem;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.64;
  color: color-mix(in srgb, var(--paper) 92%, var(--rose));
}

.section-inner.split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.split-copy p {
  margin: 0 0 1.3em;
}

.split-copy ul {
  margin: 0 0 1.3em;
  padding-left: 1.2em;
}

.split-copy li {
  margin-bottom: 0.7em;
}

.location-callout {
  font-weight: 700;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
}

.primary-link.rouge {
  background: var(--rouge);
  border-color: var(--rouge-bright);
  color: var(--paper);
}

.primary-link.rouge:hover {
  background: var(--rouge-bright);
  border-color: var(--brass);
}

.split-photo img {
  border-radius: 18px;
}

.photo-band {
  background: #fff;
  line-height: 0;
}

.photo-band img {
  width: 100%;
  max-height: 88svh;
  object-fit: cover;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  max-width: 880px;
  margin: 0 auto clamp(30px, 4vw, 48px);
}

.price-card {
  padding: clamp(26px, 3vw, 38px) clamp(20px, 2.4vw, 30px);
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--rouge) 18%, transparent);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(43, 5, 8, 0.1);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(43, 5, 8, 0.16);
}

.price-card.featured {
  background: var(--rouge-deep);
  border-color: var(--brass);
  color: var(--paper);
}

.price-card.featured .price-tier {
  color: var(--brass);
}

.price-card.featured .price-note {
  color: color-mix(in srgb, var(--paper) 78%, var(--rose));
}

.price-card p {
  margin: 0;
}

.price-tier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rouge);
}

.price-amount {
  margin: 10px 0 6px !important;
  font-family: "Italiana", serif;
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  line-height: 1;
}

.price-note {
  font-size: 0.85rem;
  color: var(--smoke);
}

.price-cards.stacked {
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0 0 clamp(20px, 2.6vw, 32px);
}

.price-card.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  text-align: left;
}

.price-card.row .price-amount {
  margin: 0 !important;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  white-space: nowrap;
}

.price-card.row .price-note {
  margin-top: 4px;
  font-size: 0.76rem;
  font-style: italic;
}

.dues-note {
  max-width: 62rem;
  margin: 0 auto;
}

.dues-overlay {
  position: relative;
  overflow: hidden;
}

.dues-media,
.dues-media img,
.dues-wash {
  position: absolute;
  inset: 0;
}

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

.dues-wash {
  background: linear-gradient(180deg, rgba(25, 4, 8, 0.78) 0%, rgba(25, 4, 8, 0.62) 50%, rgba(25, 4, 8, 0.82) 100%);
}

.dues-content {
  position: relative;
  z-index: 1;
}

.dues-overlay .dues-note {
  color: color-mix(in srgb, var(--paper) 92%, var(--rose));
  text-align: center;
}

.price-cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 640px;
}

.dues-overlay .price-card {
  background: color-mix(in srgb, var(--paper) 96%, white);
  border-color: transparent;
}

.dues-overlay .price-card.featured {
  background: var(--rouge-deep);
  border-color: var(--brass);
}

.power-bang {
  font-weight: 700;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
}

.split-copy a {
  color: var(--rouge);
  font-weight: 600;
}

.questions-box {
  padding: clamp(20px, 2.6vw, 30px);
  background: #f6dfd8;
  text-align: center;
}

.questions-box p {
  margin: 0;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.6;
}

.questions-title {
  margin-bottom: 6px !important;
  font-weight: 700;
}

.questions-box a {
  color: var(--rouge);
  font-weight: 600;
}

.collage {
  background: #fff;
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr;
  grid-template-rows: auto auto;
  gap: clamp(14px, 2vw, 24px);
  padding: clamp(40px, 6vw, 80px) clamp(20px, 6vw, 96px);
}

.collage-a {
  grid-column: 1;
  grid-row: 1;
}

.collage-b {
  grid-column: 1;
  grid-row: 2;
}

.collage-c {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.collage-d {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.split-photos {
  display: grid;
  gap: clamp(16px, 2.4vw, 26px);
}

.split-photos figure {
  border-radius: 18px;
}

.core-leads {
  background: #fff;
}

.leads-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px) clamp(14px, 2vw, 26px);
  max-width: 1020px;
  margin: 0 auto;
}

.leads-grid figure {
  margin: 0;
  text-align: center;
  grid-column: auto;
  aspect-ratio: auto;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.leads-grid figure:nth-child(n + 6) {
  transform: translateX(50%);
}

.leads-grid img {
  width: 100%;
  max-width: 172px;
  height: auto;
  margin: 0 auto 12px;
  border-radius: 999px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.leads-grid figcaption {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 500;
}

.leadership-list {
  max-width: 60rem;
  margin: 0;
  padding-left: 1.2em;
}

.leadership-list li {
  margin-bottom: 0.9em;
}

@media (max-width: 860px) {
  .section-inner.split {
    grid-template-columns: 1fr;
  }

  .leads-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .leads-grid figure:nth-child(n + 6) {
    transform: none;
  }
}

@media (max-width: 720px) {
  .photo-duo {
    grid-template-columns: 1fr;
  }

  .collage {
    grid-template-columns: 1fr 1fr;
  }

  .collage-a {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .collage-b {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .collage-c,
  .collage-d {
    grid-column: auto;
    grid-row: auto;
  }

  .leads-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .leads-grid figure:nth-child(9) {
    grid-column: 1 / -1;
  }

  .leads-grid figure:nth-child(9) img {
    max-width: 150px;
  }

  .price-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 88svh;
  }

  .hero-wash {
    background:
      linear-gradient(180deg, rgba(43, 5, 8, 0.78) 0%, rgba(43, 5, 8, 0.64) 38%, rgba(43, 5, 8, 0.94) 100%);
  }

  .hero-media img {
    object-position: 55% 50%;
  }

  .nav-cta,
  .primary-link {
    min-height: 42px;
    padding: 12px 15px;
    font-size: 0.7rem;
  }

  .hero-content {
    max-width: 100%;
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(4.6rem, 23vw, 7rem);
  }

  .lede {
    font-size: clamp(1.28rem, 6vw, 1.7rem);
  }

  .brand-notes {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .people-grid.founders,
  .people-grid.leads {
    grid-template-columns: 1fr;
  }

  .people-grid article,
  .people-grid img {
    min-height: 360px;
  }

  .values-grid article {
    min-height: auto;
  }

  .brand-notes article {
    min-height: 205px;
  }

  .gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .media-card,
  .landscape-media {
    grid-column: span 6;
  }

  .portrait-media {
    grid-column: span 3;
  }

  .feature-photo {
    grid-column: span 6;
  }
}
