:root {
  --ink: #090b0d;
  --cream: #f3efe6;
  --gold: #d8a646;
  --gold-light: #f3d28b;
  --muted: #a9a69e;
}

/* Compact network and verified media ribbons — v2.6 */
.network-ribbon {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: #0b0d0e;
}

.network-ribbon-label {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 18px 13px 0;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.network-ribbon-label>span {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 20px;
}

.network-ribbon-label p,
.network-ribbon-label small,
.network-ribbon-label strong {
  display: block;
  margin: 0;
}

.network-ribbon-label small {
  margin-bottom: 3px;
  color: #77746e;
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.network-ribbon-label strong {
  color: #c4b99f;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 400;
}

.network-ribbon .logo-marquee {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 9px 0;
}

.network-ribbon .logo-track {
  gap: 20px;
  padding-inline: 20px;
  animation-duration: 42s;
}

.network-ribbon .logo-tile {
  display: grid;
  flex: 0 0 148px;
  place-items: center;
  width: 148px;
  height: 54px;
  margin: 0;
  padding: 7px 12px;
  overflow: hidden;
  border: 0;
  background: #fff;
  transform: none;
}

.network-ribbon .logo-tile:hover {
  border-color: transparent;
  transform: none;
}

.network-ribbon .logo-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.media-association-row {
  grid-template-columns: 235px minmax(0, 1fr);
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.media-association-row>small {
  max-width: 205px;
  color: #77746e;
  font-size: 10px;
  line-height: 1.75;
}

.media-association-row>small b {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.media-logo-marquee {
  position: relative;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.media-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 14px;
  padding-inline: 14px;
  animation: media-logo-rail 25s linear infinite;
  will-change: transform;
}

.media-logo-marquee:hover .media-logo-track,
.media-logo-marquee:focus-within .media-logo-track {
  animation-play-state: paused;
}

.media-logo-tile {
  display: grid;
  flex: 0 0 188px;
  place-items: center;
  width: 188px;
  height: 62px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #f3f2ee;
  transition: border-color .2s ease, background-color .2s ease;
}

.media-logo-tile:hover,
.media-logo-tile:focus-visible {
  border-color: rgba(216, 166, 70, .72);
  background: #fff;
}

.media-logo-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.media-proof-note {
  grid-column: 2;
  margin: 8px 0 0;
  color: #5f5d58;
  font-size: 8px;
  line-height: 1.5;
}

@keyframes media-logo-rail {
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@media (max-width: 760px) {
  .network-ribbon {
    grid-template-columns: 1fr;
  }

  .network-ribbon-label {
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .media-association-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .media-association-row>small {
    max-width: 280px;
  }

  .media-proof-note {
    grid-column: 1;
  }
}

@media (max-width: 560px) {
  .network-ribbon .logo-track {
    gap: 12px;
    padding-inline: 12px;
    animation-duration: 34s;
  }

  .network-ribbon .logo-tile {
    flex-basis: 126px;
    width: 126px;
    height: 48px;
    padding: 6px 10px;
  }

  .media-logo-track {
    gap: 10px;
    padding-inline: 10px;
    animation-duration: 22s;
  }

  .media-logo-tile {
    flex-basis: 154px;
    width: 154px;
    height: 54px;
    padding: 9px 14px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
}

button {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 999;
  background: var(--gold);
  color: #111;
  padding: 12px 18px;
  font-weight: 700;
  transition: top .2s;
}

.skip-link:focus {
  top: 12px;
}

.nav-shell {
  width: min(1280px, calc(100% - 64px));
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 188px;
  padding: 5px 9px;
  border-radius: 4px;
  background: #f4f0e7;
  box-shadow: 0 0 0 1px rgba(216, 166, 70, .28);
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 14px;
}

.brand-name {
  font-family: Georgia, serif;
  font-size: 19px;
  letter-spacing: .02em;
}

.nav-links {
  display: flex;
  gap: 34px;
  color: #c7c4bc;
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a.active {
  color: var(--gold-light);
}

.nav-cta {
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold);
  padding: 10px 0;
  font-size: 13px;
  letter-spacing: .04em;
}

.nav-cta span {
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(216, 166, 70, .45);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform .2s ease;
}

.menu-backdrop {
  display: none;
}

.hero {
  min-height: 710px;
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -110px;
  top: 60px;
  border-radius: 50%;
  background: rgba(202, 145, 44, .13);
  filter: blur(90px);
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding: 80px 0 90px;
}

.eyebrow {
  text-transform: uppercase;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: .2em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(56px, 6.6vw, 98px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .93;
  margin: 30px 0 28px;
}

h1 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-lede {
  color: #bbb8b0;
  font-size: 17px;
  line-height: 1.75;
  max-width: 585px;
  margin: 0;
}

.hero-lede strong {
  color: var(--cream);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 11px;
  font-weight: 700;
}

.button-primary {
  background: var(--gold);
  color: #16120a;
}

.button-primary:hover {
  background: #edc46e;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, .22);
}

.button-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.micro-proof {
  margin-top: 45px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.micro-proof p {
  color: #76746f;
  font-size: 11px;
  line-height: 1.45;
  margin: 0;
}

.micro-proof b {
  color: #c8c4bb;
  font-weight: 600;
}

.avatar-stack {
  display: flex;
}

.avatar-stack i {
  width: 28px;
  height: 28px;
  margin-left: -6px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: linear-gradient(145deg, #b88936, #3d2d16);
}

.avatar-stack i:first-child {
  margin-left: 0;
  background: linear-gradient(145deg, #e0d0ae, #5a4634);
}

.avatar-stack i:last-child {
  background: linear-gradient(145deg, #a8aeb4, #30353a);
}

.hero-visual {
  height: 650px;
  align-self: end;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-visual img {
  width: min(100%, 520px);
  height: 620px;
  object-fit: contain;
  object-position: center bottom;
  position: relative;
  z-index: 3;
  filter: contrast(1.06);
}

.gold-disc {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  bottom: 72px;
  background: radial-gradient(circle at 38% 30%, #ebca83 0, #a66f1d 48%, #31200c 75%);
  opacity: .92;
}

.portrait-ring {
  position: absolute;
  border: 1px solid rgba(216, 166, 70, .32);
  border-radius: 50%;
}

.ring-one {
  width: 530px;
  height: 530px;
  bottom: 30px;
}

.ring-two {
  width: 590px;
  height: 590px;
  bottom: 0;
  border-color: rgba(216, 166, 70, .1);
}

.signature-card,
.experience-card {
  position: absolute;
  z-index: 5;
  background: rgba(12, 13, 14, .92);
  border: 1px solid rgba(216, 166, 70, .35);
  backdrop-filter: blur(10px);
}

.signature-card {
  left: 10px;
  bottom: 65px;
  padding: 16px 22px;
}

.signature-card span {
  display: block;
  color: #8f8b83;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 6px;
}

.signature-card strong {
  font-family: Georgia, serif;
  color: var(--gold-light);
  font-size: 17px;
}

.experience-card {
  right: 5px;
  top: 115px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.experience-card strong {
  font-family: Georgia, serif;
  color: var(--gold);
  font-size: 28px;
}

.experience-card span {
  color: #aaa69d;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 8px;
  line-height: 1.4;
}

.proof-strip {
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.proof-strip div {
  padding: 34px 38px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  font-family: Georgia, serif;
  color: var(--gold-light);
  font-size: 32px;
  font-weight: 400;
}

.proof-strip span {
  color: #77746e;
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: .13em;
}

.intro {
  padding: 120px 32px 145px;
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 10px;
}

.intro h2 {
  font-family: Georgia, serif;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -.035em;
  margin: 22px 0;
}

.intro h2 span {
  color: var(--gold);
  font-style: italic;
}

.intro>p:last-child {
  max-width: 650px;
  margin: auto;
  color: #95918a;
  line-height: 1.7;
}

@media (max-width: 900px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav-shell {
    width: min(100% - 36px, 1280px);
    height: 76px;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 22;
    margin-left: auto;
    margin-right: 18px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav-links {
    display: flex;
    position: fixed;
    z-index: 19;
    inset: 76px 0 0 auto;
    width: min(82vw, 370px);
    height: calc(100dvh - 76px);
    padding: 38px 38px 46px;
    background: #0c0e10;
    border-left: 1px solid rgba(216, 166, 70, .32);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    visibility: hidden;
    transform: translateX(100%);
    box-shadow: -24px 0 65px rgba(0, 0, 0, .48);
    overflow-y: auto;
    transition: transform .28s ease, visibility .28s ease;
  }

  .nav-links::before {
    content: "Navigation";
    padding-bottom: 18px;
    color: var(--gold);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
  }

  .nav-links a {
    padding: 21px 0;
    color: #d2cec4;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-family: Georgia, serif;
    font-size: 22px;
    transform: translateX(18px);
    transition: color .2s ease, transform .35s ease;
  }

  .nav-links a.active {
    color: var(--gold-light);
  }

  .nav-links a.active::after {
    content: "  ↗";
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 12px;
  }

  .nav-links.is-open {
    visibility: visible;
    transform: translateX(0);
  }

  .nav-links.is-open a {
    transform: translateX(0);
  }

  .nav-links.is-open a:nth-of-type(2) {
    transition-delay: .03s;
  }

  .nav-links.is-open a:nth-of-type(3) {
    transition-delay: .06s;
  }

  .nav-links.is-open a:nth-of-type(4) {
    transition-delay: .09s;
  }

  .nav-links.is-open a:nth-of-type(5) {
    transition-delay: .12s;
  }

  .menu-backdrop {
    display: block;
    position: fixed;
    z-index: 17;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, .66);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    cursor: default;
    transition: opacity .28s ease, visibility .28s ease;
  }

  body.menu-open .menu-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .hero {
    width: min(100% - 36px, 1280px);
    min-height: auto;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    padding: 62px 0 20px;
  }

  .eyebrow {
    justify-content: center;
    font-size: 9px;
  }

  .hero-lede {
    margin-inline: auto;
    font-size: 15px;
  }

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

  .micro-proof {
    justify-content: center;
    text-align: left;
  }

  .hero-visual {
    height: 540px;
  }

  .hero-visual img {
    height: 520px;
  }

  .gold-disc {
    width: 370px;
    height: 370px;
  }

  .ring-one {
    width: 430px;
    height: 430px;
  }

  .ring-two {
    width: 490px;
    height: 490px;
  }

  .experience-card {
    right: 2%;
    top: 175px;
  }

  .proof-strip {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 150px;
    padding: 4px 7px;
  }

  .brand-name {
    font-size: 16px;
  }

  .nav-cta {
    font-size: 0;
  }

  .nav-cta::before {
    content: "Let’s talk";
    font-size: 11px;
  }

  .nav-cta span {
    font-size: 11px;
  }

  .hero-copy {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .hero-lede {
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual {
    height: 470px;
    margin-top: 10px;
  }

  .hero-visual img {
    height: 460px;
    max-width: 380px;
  }

  .gold-disc {
    width: 310px;
    height: 310px;
    bottom: 40px;
  }

  .ring-one {
    width: 350px;
    height: 350px;
    bottom: 20px;
  }

  .ring-two {
    display: none;
  }

  .signature-card {
    left: 0;
    bottom: 30px;
  }

  .experience-card {
    right: 0;
    top: 175px;
  }

  .proof-strip div {
    padding: 24px 18px;
    display: block;
  }

  .proof-strip strong,
  .proof-strip span {
    display: block;
  }

  .proof-strip strong {
    font-size: 29px;
    margin-bottom: 6px;
  }

  .intro {
    padding: 85px 22px 100px;
  }
}

/* Homepage image system and editorial cards — v2.4 */
.hero-visual img {
  width: min(100%, 560px);
  height: 640px;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
}

.public-moments,
.credentials {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.moments-carousel {
  position: relative;
  outline: none;
}

.moments-carousel:focus-visible {
  box-shadow: 0 0 0 2px var(--gold);
}

.moments-viewport {
  overflow: hidden;
  background: #121519;
}

.moments-track {
  display: flex;
  transition: transform .65s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.moment-slide {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.moment-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 9, .83), transparent 62%), linear-gradient(0deg, rgba(5, 7, 9, .65), transparent 48%);
}

.moment-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(.88) contrast(1.04);
}

.moment-slide figcaption {
  position: absolute;
  z-index: 2;
  left: 42px;
  right: 42px;
  bottom: 34px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.moment-slide figcaption>span {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 44px;
  line-height: 1;
}

.moment-slide figcaption small,
.moment-slide figcaption strong {
  display: block;
}

.moment-slide figcaption small {
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.moment-slide figcaption strong {
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 400;
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 0;
}

.carousel-controls p {
  margin: 0;
  color: #74716b;
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: .12em;
}

.carousel-controls p span {
  color: var(--gold-light);
}

.carousel-controls>div {
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(216, 166, 70, .45);
  color: var(--gold-light);
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  transition: color .2s ease, background .2s ease;
}

.carousel-controls button:hover,
.carousel-controls button:focus-visible {
  color: #15120d;
  background: var(--gold);
}

.story {
  grid-template-columns: 1fr 1fr;
  gap: 75px;
}

.story-photo {
  min-height: 560px;
}

.story .photo-frame {
  inset: 12px 28px 28px 24px;
}

.story .photo-frame img {
  object-fit: cover;
  object-position: 50% center;
}

.team-story {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: stretch;
  gap: 0;
}

.team-photo {
  min-height: 520px;
  overflow: hidden;
  background: #15181c;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(.82) contrast(1.04);
}

.team-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px 48px;
  color: #17130c;
  background: var(--gold);
}

.team-copy .section-kicker {
  color: #634617;
}

.team-copy h2 {
  margin: 20px 0 24px;
  font-family: Georgia, serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.04em;
}

.team-copy h2 em {
  color: #fff2d0;
  font-weight: 400;
}

.team-copy>p:not(.section-kicker) {
  margin: 0;
  color: rgba(23, 19, 12, .7);
  font-size: 15px;
  line-height: 1.75;
}

.team-proof {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 18px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(23, 19, 12, .25);
}

.team-proof strong {
  font-family: Georgia, serif;
  font-size: 41px;
  font-weight: 400;
}

.team-proof span {
  color: rgba(23, 19, 12, .64);
  font-size: 11px;
  line-height: 1.55;
}

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

.credential-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #0d0f11;
}

.credential-image {
  display: grid;
  place-items: center;
  height: 270px;
  padding: 24px;
  overflow: hidden;
  background: #ece9df;
}

.credential-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.credential-card>div:last-child {
  padding: 26px 28px 30px;
}

.credential-card h3 {
  margin: 0 0 10px;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.credential-card p {
  margin: 0;
  color: #85817a;
  font-size: 13px;
  line-height: 1.7;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.blog-card,
.blog-card-featured {
  display: flex;
  height: 610px;
  grid-column: auto;
  grid-template-columns: none;
  flex-direction: column;
}

.blog-card-image,
.blog-card-featured .blog-card-image,
.home-insight-image {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.blog-card-image img,
.home-insight-image img,
.article-hero-image img {
  object-position: center;
}

.blog-card-body,
.blog-card-featured .blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 27px 31px;
}

.blog-card h3,
.blog-card-featured h3 {
  min-height: 90px;
  margin: 19px 0 14px;
  font-size: 26px;
  line-height: 1.2;
}

.blog-card-body>p {
  flex: 1;
}

.blog-card .article-link {
  align-self: flex-start;
}

.home-insight-card {
  display: flex;
  flex-direction: column;
}

.home-insight-card .article-link {
  align-self: flex-start;
  margin-top: auto;
}

.article-hero-image {
  width: min(1180px, calc(100% - 64px));
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

@media (max-width: 1020px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-story {
    grid-template-columns: 1fr;
  }

  .team-photo {
    min-height: 0;
    aspect-ratio: 16 / 8;
  }
}

@media (max-width: 900px) {
  .story {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-photo {
    min-height: 520px;
  }

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

  .credential-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .hero-visual img {
    width: min(100%, 370px);
    height: 465px;
  }

  .moment-slide {
    aspect-ratio: 4 / 5;
  }

  .moment-slide img {
    object-position: center;
  }

  .moment-slide figcaption {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  .moment-slide figcaption>span {
    font-size: 34px;
  }

  .moment-slide figcaption strong {
    font-size: 19px;
  }

  .carousel-controls button {
    width: 44px;
    height: 44px;
  }

  .story-photo {
    min-height: 470px;
  }

  .story .photo-frame {
    inset: 8px 0 28px;
  }

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

  .team-copy {
    padding: 42px 25px;
  }

  .team-proof {
    grid-template-columns: 1fr;
  }

  .credential-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .credential-card:last-child {
    grid-column: auto;
  }

  .credential-image {
    height: 245px;
  }

  .blog-card h3,
  .blog-card-featured h3 {
    min-height: 0;
  }

  .blog-card,
  .blog-card-featured {
    height: auto;
  }

  .article-hero-image {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

/* Real people proof avatars — v2.8 */
.avatar-stack i,
.avatar-stack i:first-child,
.avatar-stack i:last-child {
  background-color: #282a2c;
  background-repeat: no-repeat;
  background-size: 330% auto;
  box-shadow: 0 0 0 1px rgba(216, 166, 70, .18);
  filter: grayscale(.12) saturate(.78) contrast(1.04);
}

.avatar-stack i:first-child {
  background-image: url('/assets/images/moments/with-public-figure-03.jpg');
  background-position: 28% 27%;
}

.avatar-stack i:nth-child(2) {
  background-image: url('/assets/images/moments/recognition-moment.jpg');
  background-position: 72% 22%;
}

.avatar-stack i:last-child {
  background-image: url('/assets/images/moments/with-public-figure-02.jpg');
  background-position: 58% 22%;
}

/* Keep the compact proof layout above legacy section rules. */
.media-association-row {
  grid-template-columns: 235px minmax(0, 1fr);
  margin-top: 30px;
}

.media-association-row>.media-logo-marquee {
  display: block;
  flex-wrap: nowrap;
  gap: 0;
}

@media (max-width: 760px) {
  .media-association-row {
    grid-template-columns: 1fr;
  }
}

/* Static featured-media proof and restored monochrome hero — v2.7 */
.hero-visual img.hero-portrait-black {
  width: min(100%, 490px);
  height: 610px;
  object-fit: contain;
  object-position: center bottom;
  filter: contrast(1.06);
}

.featured-media {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.featured-media-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.featured-media-heading>span {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 18px;
}

.featured-media-heading small {
  display: block;
  margin-bottom: 5px;
  color: #aaa69e;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.featured-media-heading p {
  margin: 0;
  color: #65635e;
  font-size: 10px;
  line-height: 1.5;
}

.featured-media-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 170px));
  align-items: center;
  justify-content: start;
  gap: clamp(22px, 4vw, 54px);
}

.featured-media-logos a {
  display: grid;
  place-items: center;
  min-width: 0;
  height: 46px;
  padding: 0;
  background: transparent;
}

.featured-media-logos a:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .08);
  padding-right: clamp(18px, 3vw, 42px);
}

.featured-media-logos img {
  display: block;
  width: 100%;
  max-width: 145px;
  height: 38px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .48;
  transition: opacity .2s ease;
}

.featured-media-logos a:hover img,
.featured-media-logos a:focus-visible img {
  opacity: .88;
}

.featured-media-note {
  grid-column: 2;
  margin: -6px 0 0;
  color: #56544f;
  font-size: 9px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .featured-media {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .featured-media-note {
    grid-column: 1;
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .hero-visual img.hero-portrait-black {
    width: min(100%, 350px);
    height: 455px;
  }

  .featured-media-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .featured-media-logos a {
    height: 38px;
  }

  .featured-media-logos a:not(:last-child) {
    padding-right: 12px;
  }

  .featured-media-logos img {
    max-width: 105px;
    height: 30px;
  }
}

/* Network and media logo rails — v2.5 */
.logo-rail-block {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  background: #0d0f11;
}

.logo-rail-media {
  margin-top: 18px;
}

.logo-rail-head {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 19px 23px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.logo-rail-head>span {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 24px;
}

.logo-rail-head small,
.logo-rail-head strong {
  display: block;
}

.logo-rail-head small {
  margin-bottom: 4px;
  color: #77746e;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.logo-rail-head strong {
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding-inline: 14px;
  animation: logo-rail 38s linear infinite;
  will-change: transform;
}

.logo-track-reverse {
  animation-direction: reverse;
  animation-duration: 30s;
}

.logo-marquee:hover .logo-track,
.logo-marquee:focus-within .logo-track {
  animation-play-state: paused;
}

.logo-tile {
  display: grid;
  flex: 0 0 220px;
  place-items: center;
  width: 220px;
  height: 112px;
  margin: 0;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(216, 166, 70, .18);
  background: #f4f3ee;
  transition: border-color .25s ease, transform .25s ease;
}

.logo-tile:hover {
  border-color: rgba(216, 166, 70, .75);
  transform: translateY(-2px);
}

.logo-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes logo-rail {
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@media (max-width: 560px) {
  .logo-rail-head {
    padding: 17px 18px;
  }

  .logo-rail-head strong {
    font-size: 16px;
  }

  .logo-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  }

  .logo-track {
    animation-duration: 29s;
  }

  .logo-track-reverse {
    animation-duration: 24s;
  }

  .logo-tile {
    flex-basis: 174px;
    width: 174px;
    height: 92px;
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .logo-track {
    animation: none;
  }

  .logo-tile[aria-hidden="true"] {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .moments-track {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.section-pad {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 85px 0;
}

.section-kicker {
  margin: 0;
}

.story {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 105px;
}

.story-photo {
  position: relative;
  min-height: 650px;
}

.photo-frame {
  position: absolute;
  inset: 10px 40px 30px 30px;
  overflow: hidden;
  background: #101319;
  border: 1px solid rgba(216, 166, 70, .35);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -100px 90px rgba(4, 5, 6, .75);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.vertical-note {
  position: absolute;
  left: -94px;
  top: 260px;
  rotate: -90deg;
  color: #77746e;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 9px;
}

.quote-chip {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  padding: 21px 24px;
  background: var(--gold);
  color: #17130d;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
}

.story-copy h2,
.section-heading h2,
.books-title h2,
.media-copy h2 {
  font-family: Georgia, serif;
  font-size: clamp(42px, 4.7vw, 68px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.045em;
  margin: 20px 0 30px;
}

.story-copy h2 em,
.section-heading h2 em,
.books-title h2 em,
.media-copy h2 em {
  color: var(--gold);
  font-weight: 400;
}

.story-copy>p:not(.section-kicker) {
  color: #8e8b84;
  line-height: 1.8;
  font-size: 15px;
  max-width: 650px;
}

.story-copy .lead {
  color: #c2beb5 !important;
  font-family: Georgia, serif;
  font-size: 20px !important;
  line-height: 1.65 !important;
}

.role-grid {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 38px;
}

.role-grid div {
  display: grid;
  grid-template-columns: 48px 125px 1fr;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.role-grid span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .15em;
}

.role-grid b {
  font-family: Georgia, serif;
  font-weight: 400;
}

.role-grid small {
  color: #7f7c75;
  font-size: 11px;
}

.expertise {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 70px;
}

.section-heading>p {
  color: #8e8b84;
  line-height: 1.75;
  margin: 0 0 11px;
}

.section-heading.compact {
  margin-bottom: 52px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.expertise-card {
  min-height: 410px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .12);
  position: relative;
  margin-right: -1px;
  transition: background .25s ease, transform .25s ease;
}

.expertise-card:hover {
  background: #111316;
  transform: translateY(-6px);
  z-index: 2;
  border-color: rgba(216, 166, 70, .55);
}

.card-number {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .16em;
}

.card-arrow {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  color: var(--gold);
}

.expertise-card h3 {
  font-family: Georgia, serif;
  font-size: 33px;
  font-weight: 400;
  margin: 105px 0 18px;
}

.expertise-card p {
  color: #88857f;
  line-height: 1.75;
  font-size: 14px;
}

.card-tag {
  position: absolute;
  bottom: 32px;
  left: 34px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 9px;
}

.scale-banner {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #d09a35;
  color: #15120c;
}

.banner-word {
  position: absolute;
  inset: auto 0;
  text-align: center;
  font-family: Georgia, serif;
  font-size: clamp(170px, 26vw, 430px);
  letter-spacing: -.08em;
  line-height: .7;
  color: rgba(24, 19, 11, .08);
  font-weight: 700;
}

.scale-copy {
  position: relative;
  z-index: 2;
  width: min(1050px, calc(100% - 64px));
  text-align: center;
}

.scale-copy .section-kicker {
  color: #4e3915;
}

.scale-copy h2 {
  font-family: Georgia, serif;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.05em;
  margin: 22px 0 65px;
}

.scale-copy h2 em {
  font-weight: 400;
  color: #f9edcf;
}

.scale-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: left;
  border-top: 1px solid rgba(25, 19, 10, .25);
}

.scale-points p {
  margin: 0;
  padding: 28px 32px;
  border-right: 1px solid rgba(25, 19, 10, .25);
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 7px 15px;
}

.scale-points p:last-child {
  border-right: 0;
}

.scale-points span {
  grid-row: 1 / 3;
  color: rgba(21, 18, 12, .55);
  font-size: 10px;
}

.scale-points b {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

.scale-points small {
  line-height: 1.55;
  color: rgba(21, 18, 12, .65);
}

.recognition {
  padding-bottom: 160px;
}

.award-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 330px 330px;
  gap: 18px;
}

.award-card {
  position: relative;
  overflow: hidden;
  background: #121417;
}

.award-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 8, 9, .98), rgba(7, 8, 9, .08) 70%);
}

.award-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.award-card:hover img {
  transform: scale(1.035);
}

.award-card>div {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 25px;
  bottom: 25px;
}

.award-card span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 9px;
}

.award-card h3 {
  font-family: Georgia, serif;
  font-size: 25px;
  margin: 8px 0 4px;
  font-weight: 400;
}

.award-card p {
  color: #aaa69e;
  font-size: 11px;
  margin: 0;
  max-width: 420px;
  line-height: 1.5;
}

.award-tall {
  grid-row: 1 / 3;
}

.award-tall img {
  object-position: center 20%;
}

.award-tall h3 {
  font-size: 34px;
}

.certificate-card img {
  object-fit: contain;
  object-position: right center;
  filter: brightness(.72);
}

.books {
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 90px;
}

.books-title {
  position: sticky;
  top: 80px;
  align-self: start;
}

.books-title>p:last-child {
  color: #85827b;
  line-height: 1.7;
  max-width: 370px;
}

.book-list {
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.book-row {
  min-height: 150px;
  display: grid;
  grid-template-columns: 35px 80px 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  transition: background .2s ease;
}

.book-row:hover {
  background: rgba(255, 255, 255, .025);
}

.book-row>span {
  color: var(--gold);
  font-size: 9px;
}

.book-row img {
  width: 62px;
  height: 86px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

.book-row h3 {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 7px;
}

.book-row p {
  color: #74716b;
  font-size: 11px;
  margin: 0;
}

.book-row b {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 9px;
  font-weight: 500;
}

.book-row b span {
  margin-left: 8px;
}

.vision {
  min-height: 730px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  overflow: hidden;
  background: #e8dfcd;
  color: #16130e;
}

.vision-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  background: linear-gradient(145deg, #17191b, #090b0d);
  overflow: hidden;
}

.vision-image::before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  border: 1px solid rgba(216, 166, 70, .3);
  bottom: 60px;
}

.vision-image img {
  position: relative;
  z-index: 2;
  height: 90%;
  max-width: 80%;
  object-fit: contain;
  object-position: bottom;
}

.vision-copy {
  padding: 115px clamp(50px, 8vw, 140px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vision-copy .section-kicker {
  color: #956716;
}

.vision-copy h2 {
  font-family: Georgia, serif;
  font-size: clamp(55px, 6.5vw, 98px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .95;
  margin: 25px 0;
}

.vision-copy>p {
  color: #716858;
  line-height: 1.7;
  max-width: 510px;
}

.vision-goals {
  margin-top: 55px;
  border-top: 1px solid rgba(28, 23, 13, .22);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.vision-goals div {
  padding: 28px 25px 10px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(28, 23, 13, .22);
}

.vision-goals div:last-child {
  padding-left: 28px;
  border-right: 0;
}

.vision-goals strong {
  color: #9d6a16;
  font-family: Georgia, serif;
  font-size: 50px;
  font-weight: 400;
}

.vision-goals span {
  text-transform: uppercase;
  letter-spacing: .11em;
  line-height: 1.5;
  font-size: 9px;
  color: #5d5548;
}

.impact-programs {
  padding-bottom: 155px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.program-grid article {
  padding: 38px 36px 42px;
  border-right: 1px solid rgba(255, 255, 255, .13);
}

.program-grid article:last-child {
  border-right: 0;
}

.program-grid span {
  color: var(--gold);
  font-size: 9px;
}

.program-grid h3 {
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 400;
  margin: 35px 0 11px;
}

.program-grid p {
  color: #77746e;
  line-height: 1.6;
  font-size: 13px;
  margin: 0;
}

.media {
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
  align-items: center;
}

.media-copy>p:not(.section-kicker) {
  color: #838079;
  line-height: 1.7;
}

.media-links {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.media-links a {
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 12px 16px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #b9b5ad;
}

.media-links a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.media-collage {
  height: 580px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 12px;
}

.media-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8);
}

.media-collage img:last-child {
  object-position: 35% center;
}

.contact {
  padding: 125px 32px;
  text-align: center;
  background: var(--gold);
  color: #17120b;
}

.contact-kicker {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 10px;
}

.contact h2 {
  font-family: Georgia, serif;
  font-size: clamp(48px, 6.8vw, 94px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 400;
  margin: 27px 0;
}

.contact h2 em {
  color: #fff4d9;
  font-weight: 400;
}

.contact>p {
  color: rgba(23, 18, 11, .65);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 38px;
}

.button-dark {
  background: #101214;
  color: var(--gold-light);
}

.button-dark:hover {
  background: #1c1f21;
}

.text-link {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-bottom: 1px solid rgba(23, 18, 11, .5);
  padding-bottom: 6px;
}

footer {
  width: min(1280px, calc(100% - 64px));
  min-height: 125px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #77746e;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

footer .brand {
  text-transform: none;
  letter-spacing: normal;
  color: var(--cream);
}

footer p {
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 19px;
}

.footer-links a:hover {
  color: var(--gold-light);
}

/* Trust, video and partner proof */
.ecosystem {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.ecosystem-head {
  display: grid;
  grid-template-columns: 1fr 1.35fr .8fr;
  gap: 45px;
  align-items: start;
  margin-bottom: 55px;
}

.ecosystem-head h2 {
  font-family: Georgia, serif;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.03;
  letter-spacing: -.045em;
  font-weight: 400;
  margin: -9px 0 0;
}

.ecosystem-head h2 em {
  color: var(--gold);
  font-weight: 400;
}

.ecosystem-head>p:last-child {
  color: #7d7a73;
  font-size: 12px;
  line-height: 1.7;
}

.brand-cloud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .13);
  border-left: 1px solid rgba(255, 255, 255, .13);
}

.brand-cloud span {
  min-height: 100px;
  display: grid;
  place-items: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  font-family: Georgia, serif;
  font-size: 17px;
  text-align: center;
  color: #c4b99f;
}

.association-row {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  align-items: center;
}

.association-row small {
  color: #77746e;
  text-transform: uppercase;
  letter-spacing: .12em;
  line-height: 1.6;
}

.association-row>div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.association-row span {
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 10px 13px;
  color: #96928a;
  font-size: 10px;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 33px;
}

.inline-links a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(216, 166, 70, .45);
  padding-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 9px;
}

.inline-links a span {
  margin-left: 7px;
}

.video-feature {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  min-height: 550px;
}

.video-card,
.channel-feature {
  position: relative;
  overflow: hidden;
  display: block;
  background: #111316;
}

.video-card::after,
.channel-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 6, 7, .96), rgba(5, 6, 7, .05) 72%);
}

.video-card img,
.channel-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.25) brightness(.78);
  transition: transform .5s ease, filter .5s ease;
}

.video-card:hover img,
.channel-feature:hover img {
  transform: scale(1.025);
  filter: grayscale(0) brightness(.9);
}

.video-card>div,
.channel-feature>div {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 28px;
}

.video-card small,
.channel-feature small {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .15em;
}

.video-card h3,
.channel-feature h3 {
  font-family: Georgia, serif;
  font-size: clamp(24px, 3vw, 38px);
  margin: 8px 0;
  font-weight: 400;
}

.video-card p,
.channel-feature p {
  color: #aaa69e;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.play-button {
  position: absolute;
  z-index: 3;
  top: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #16120c;
  background: var(--gold);
  font-size: 17px;
  padding-left: 3px;
}

.testimonials {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  margin: 0 -1px 0 0;
  min-height: 360px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-direction: column;
}

.quote-mark {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 70px;
  height: 72px;
}

.testimonial-card blockquote {
  margin: 25px 0 40px;
  color: #c4c0b7;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
}

.testimonial-card figcaption {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-card figcaption b {
  color: var(--gold-light);
  font-size: 12px;
}

.testimonial-card figcaption span {
  color: #706d67;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 8px;
}

.center-link {
  text-align: center;
  margin-top: 45px;
}

/* Inner pages */
.page-hero {
  width: min(1280px, calc(100% - 64px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.page-hero-copy {
  align-self: center;
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.page-hero h1,
.contact-page-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(58px, 7vw, 105px);
  line-height: .92;
  letter-spacing: -.06em;
  font-weight: 400;
  margin: 28px 0;
}

.page-hero h1 em,
.contact-page-hero h1 em {
  color: var(--gold);
  font-weight: 400;
}

.page-hero-copy>p:last-child,
.contact-page-hero>p:last-child {
  color: #aaa69e;
  line-height: 1.75;
  max-width: 590px;
}

.page-hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
}

.page-hero-image img {
  position: relative;
  z-index: 2;
  height: 88%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
}

.page-hero-image .gold-disc {
  bottom: 80px;
}

.about-hero-portrait {
  align-items: center;
  padding: 46px 0 30px;
}

.about-hero-portrait img {
  width: min(82%, 430px);
  height: 100%;
  max-height: 625px;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(216, 166, 70, .3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .38);
}

.service-hero,
.sales-hero,
.media-hero-page {
  align-items: center;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 72px 72px;
}

.service-hero-stat {
  align-self: center;
  justify-self: center;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(216, 166, 70, .4);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px;
  background: radial-gradient(circle, rgba(216, 166, 70, .12), transparent 67%);
}

.service-hero-stat span {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 9px;
}

.service-hero-stat strong {
  font-family: Georgia, serif;
  color: var(--gold);
  font-weight: 400;
  font-size: 74px;
  line-height: 1;
  margin: 15px 0;
}

.service-hero-stat p {
  color: #827f78;
  font-size: 11px;
  line-height: 1.5;
  max-width: 190px;
}

.problem-strip {
  background: var(--gold);
  color: #16120b;
  padding: 38px max(32px, calc((100vw - 1180px)/2));
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.problem-strip p {
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 10px;
}

.problem-strip strong {
  font-family: Georgia, serif;
  font-size: clamp(22px, 2.5vw, 35px);
  font-weight: 400;
}

.editorial-story {
  display: grid;
  grid-template-columns: .35fr 1.65fr;
  gap: 50px;
}

.editorial-index {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 9px;
}

.editorial-index span {
  font-family: Georgia, serif;
  font-size: 52px;
  font-weight: 400;
}

.editorial-copy {
  max-width: 830px;
}

.editorial-copy h2 {
  font-family: Georgia, serif;
  font-size: clamp(40px, 5.4vw, 75px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.05;
  margin: 0 0 35px;
}

.editorial-copy h2 em {
  color: var(--gold);
  font-weight: 400;
}

.editorial-copy p {
  color: #918e86;
  line-height: 1.85;
}

.editorial-copy .large-copy {
  font-family: Georgia, serif;
  font-size: 21px;
  color: #c7c3b9;
}

.timeline-section,
.leadership-section {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.timeline article {
  display: grid;
  grid-template-columns: 190px 1fr;
  padding: 35px 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.timeline strong {
  font-family: Georgia, serif;
  color: var(--gold);
  font-size: 42px;
  font-weight: 400;
}

.timeline h3 {
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  margin: 0 0 8px;
}

.timeline p {
  color: #77746e;
  line-height: 1.6;
  max-width: 650px;
  margin: 0;
}

.role-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.role-cards article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  margin-right: -1px;
}

.role-cards span {
  color: var(--gold);
  font-size: 9px;
}

.role-cards h3 {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  margin: 80px 0 8px;
}

.role-cards p {
  color: #77746e;
  font-size: 11px;
  line-height: 1.5;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.framework-grid article {
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  margin-right: -1px;
}

.framework-grid span,
.sales-pillars>article>span {
  color: var(--gold);
  font-size: 9px;
}

.framework-grid h3 {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  margin: 90px 0 12px;
}

.framework-grid p {
  color: #77746e;
  font-size: 12px;
  line-height: 1.65;
}

.dark-panel {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto 40px;
  padding: 90px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  background: #121416;
  border: 1px solid rgba(216, 166, 70, .2);
}

.dark-panel-copy h2 {
  font-family: Georgia, serif;
  font-size: clamp(42px, 4.5vw, 67px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.dark-panel-copy h2 em {
  color: var(--gold);
  font-weight: 400;
}

.dark-panel-copy>p:last-child {
  color: #817e76;
  line-height: 1.7;
}

.outcome-list {
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.outcome-list>div {
  display: grid;
  grid-template-columns: 40px 1fr;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.outcome-list span {
  color: var(--gold);
  font-size: 9px;
}

.outcome-list p {
  margin: 0;
  color: #77746e;
  font-size: 12px;
  line-height: 1.5;
}

.outcome-list b {
  display: block;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 6px;
}

.sales-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.sales-pillars article {
  padding: 42px;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, .12);
  margin: 0 -1px -1px 0;
}

.sales-pillars h3 {
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  margin: 60px 0 13px;
}

.sales-pillars p {
  color: #85827b;
  line-height: 1.7;
}

.sales-pillars ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.sales-pillars li {
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 8px 10px;
  color: #9b978f;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.compact-banner {
  min-height: 620px;
}

.faq-section {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.faq-list {
  max-width: 900px;
  margin-left: auto;
}

.faq-list details {
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-family: Georgia, serif;
  font-size: 20px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--gold);
  font-family: Arial, sans-serif;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  color: #85827b;
  line-height: 1.75;
  max-width: 750px;
  padding: 0 35px 27px 0;
  margin: 0;
}

.channel-feature {
  min-height: 600px;
}

.press-section {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.press-card {
  min-height: 310px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, .13);
  margin: 0 -1px -1px 0;
  display: flex;
  flex-direction: column;
}

.press-card>span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 9px;
}

.press-card h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 400;
  max-width: 450px;
}

.press-card b {
  margin-top: auto;
  color: #8d8981;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 9px;
}

.visual-press {
  position: relative;
  grid-column: 1 / 3;
  padding: 0;
  min-height: 500px;
  overflow: hidden;
}

.visual-press::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 5, 6, .96), transparent 70%);
}

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

.visual-press>div {
  position: absolute;
  z-index: 2;
  left: 35px;
  bottom: 30px;
}

.visual-press h3 {
  margin: 8px 0;
}

.contact-page-hero {
  width: min(1180px, calc(100% - 64px));
  padding: 120px 0 90px;
}

.contact-page-hero>p:last-child {
  max-width: 650px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.contact-details h2 {
  font-family: Georgia, serif;
  font-size: clamp(42px, 4.7vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.045em;
  margin: 20px 0;
}

.contact-details h2 em {
  color: var(--gold);
  font-weight: 400;
}

.contact-details>p:not(.section-kicker) {
  color: #85827b;
  line-height: 1.7;
}

.contact-info {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.contact-info>* {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-info span {
  color: #77746e;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 8px;
}

.contact-info b {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-form {
  padding: 45px;
  background: #121416;
  border: 1px solid rgba(216, 166, 70, .2);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #aaa69e;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 23px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 0;
  background: #090b0d;
  color: var(--cream);
  padding: 14px 15px;
  font: 14px Arial, sans-serif;
  text-transform: none;
  letter-spacing: normal;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-status {
  padding: 15px;
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 1.5;
}

.form-status.success {
  background: rgba(82, 160, 87, .16);
  border: 1px solid rgba(82, 160, 87, .45);
}

.form-status.error {
  background: rgba(196, 73, 60, .14);
  border: 1px solid rgba(196, 73, 60, .45);
}

.form-status ul {
  margin-bottom: 0;
}

.form-note {
  color: #66635d;
  font-size: 9px;
  margin-top: 15px;
}

.inner-contact {
  margin-top: 70px;
}

@media (max-width: 900px) {
  .section-pad {
    width: min(100% - 36px, 1180px);
    padding: 65px 0;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .story-photo {
    min-height: 600px;
    max-width: 520px;
    width: 100%;
    margin: auto;
  }

  .vertical-note {
    left: -88px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-bottom: 48px;
  }

  .section-heading>p {
    max-width: 600px;
  }

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

  .expertise-card {
    min-height: 315px;
    margin: 0 0 -1px;
  }

  .expertise-card h3 {
    margin-top: 70px;
  }

  .scale-points {
    grid-template-columns: 1fr;
  }

  .scale-points p {
    border-right: 0;
    border-bottom: 1px solid rgba(25, 19, 10, .25);
  }

  .scale-points p:last-child {
    border-bottom: 0;
  }

  .scale-banner {
    padding: 100px 0;
  }

  .award-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 500px 360px;
  }

  .award-tall {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .books {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .books-title {
    position: static;
  }

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

  .vision-image {
    min-height: 560px;
  }

  .media {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .media-collage {
    height: 520px;
  }

  .ecosystem-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .brand-cloud {
    grid-template-columns: repeat(2, 1fr);
  }

  .association-row {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .video-card {
    min-height: 480px;
  }

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

  .testimonial-card {
    min-height: 280px;
    margin: 0 0 -1px;
  }

  .page-hero {
    width: min(100% - 36px, 1280px);
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .page-hero-copy {
    padding: 80px 0 35px;
    text-align: center;
  }

  .page-hero-copy .eyebrow {
    justify-content: center;
  }

  .page-hero-copy>p:last-child {
    margin-inline: auto;
  }

  .page-hero-image {
    min-height: 520px;
  }

  .service-hero-stat {
    width: 310px;
    height: 310px;
    margin: 30px auto 80px;
  }

  .problem-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .editorial-story {
    grid-template-columns: 1fr;
  }

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

  .dark-panel {
    width: min(100% - 36px, 1280px);
    padding: 55px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .role-cards {
    grid-template-columns: 1fr 1fr;
  }

  .sales-pillars {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-page-hero {
    width: min(100% - 36px, 1180px);
  }
}

@media (max-width: 560px) {
  .section-pad {
    padding: 42px 0;
  }

  .story-photo {
    min-height: 495px;
  }

  .photo-frame {
    inset: 0 20px 25px 20px;
  }

  .vertical-note {
    display: none;
  }

  .quote-chip {
    font-size: 12px;
    right: 0;
    padding: 16px 18px;
  }

  .story-copy h2,
  .section-heading h2,
  .books-title h2,
  .media-copy h2 {
    font-size: 43px;
  }

  .story-copy .lead {
    font-size: 17px !important;
  }

  .role-grid div {
    grid-template-columns: 30px 100px 1fr;
    gap: 8px;
  }

  .role-grid small {
    font-size: 9px;
  }

  .expertise-card {
    padding: 28px;
    min-height: 330px;
  }

  .card-tag {
    left: 28px;
  }

  .scale-copy {
    width: calc(100% - 36px);
  }

  .scale-copy h2 {
    font-size: 48px;
    margin-bottom: 42px;
  }

  .scale-points p {
    padding: 25px 12px;
  }

  .award-grid {
    display: flex;
    flex-direction: column;
  }

  .award-card {
    min-height: 390px;
  }

  .award-card:nth-child(2) {
    min-height: 300px;
  }

  .certificate-card img {
    object-position: center;
  }

  .book-row {
    grid-template-columns: 24px 65px 1fr;
    gap: 15px;
    min-height: 130px;
  }

  .book-row img {
    width: 52px;
    height: 74px;
  }

  .book-row h3 {
    font-size: 18px;
  }

  .book-row>b {
    display: none;
  }

  .vision-image {
    min-height: 490px;
  }

  .vision-copy {
    padding: 80px 22px;
  }

  .vision-copy h2 {
    font-size: 57px;
  }

  .vision-goals {
    grid-template-columns: 1fr;
  }

  .vision-goals div,
  .vision-goals div:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(28, 23, 13, .22);
    padding: 20px 0;
  }

  .vision-goals div:last-child {
    border-bottom: 0;
  }

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

  .program-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    padding-inline: 18px;
  }

  .media-collage {
    height: 430px;
    grid-template-columns: 1fr 1fr;
  }

  .contact {
    padding: 90px 20px;
  }

  .contact h2 {
    font-size: 50px;
  }

  .contact-actions {
    flex-direction: column;
  }

  footer {
    width: calc(100% - 36px);
    padding: 40px 0;
    flex-direction: column;
    text-align: center;
  }

  .brand-cloud span {
    min-height: 76px;
    padding: 14px;
    font-size: 14px;
  }

  .association-row span {
    font-size: 8px;
  }

  .video-card {
    min-height: 390px;
  }

  .video-main {
    min-height: 470px;
  }

  .play-button {
    width: 52px;
    height: 52px;
    top: 20px;
    right: 20px;
  }

  .page-hero h1,
  .contact-page-hero h1 {
    font-size: 54px;
  }

  .page-hero-image {
    min-height: 450px;
  }

  .service-hero-stat {
    width: 270px;
    height: 270px;
    margin-bottom: 60px;
  }

  .editorial-index {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .timeline article {
    grid-template-columns: 85px 1fr;
    gap: 15px;
  }

  .timeline strong {
    font-size: 28px;
  }

  .role-cards {
    grid-template-columns: 1fr;
  }

  .role-cards article {
    min-height: 210px;
    margin-bottom: -1px;
  }

  .role-cards h3 {
    margin-top: 55px;
  }

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

  .framework-grid article {
    min-height: 240px;
    margin: 0 0 -1px;
  }

  .framework-grid h3 {
    margin-top: 55px;
  }

  .dark-panel {
    padding: 38px 25px;
  }

  .sales-pillars article {
    padding: 30px 25px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .channel-feature {
    min-height: 430px;
  }

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

  .visual-press {
    grid-column: auto;
    min-height: 370px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .expertise-card,
  .award-card img {
    transition: none;
  }
}

/* Insights and long-form editorial pages */
.blog-hero {
  width: min(1280px, calc(100% - 64px));
  min-height: 560px;
  margin: 0 auto;
  padding: 110px 0 90px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background-image: radial-gradient(circle at 73% 40%, rgba(216, 166, 70, .12), transparent 31%);
}

.blog-hero h1 {
  margin-bottom: 0;
}

.blog-hero>p {
  max-width: 440px;
  margin: 0 0 12px;
  color: #a8a49c;
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.65;
}

.blog-index {
  padding-top: 120px;
}

.blog-index-head {
  margin-bottom: 52px;
}

.blog-index-head h2,
.editorial-promise h2,
.related-insights h2 {
  margin: 18px 0 0;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.blog-index-head h2 em {
  color: var(--gold);
  font-weight: 400;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .13);
  background: #0d0f11;
}

.blog-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
}

.blog-card-image {
  display: block;
  min-height: 315px;
  overflow: hidden;
  background: #16191d;
}

.blog-card-featured .blog-card-image {
  min-height: 470px;
}

.blog-card-image img,
.home-insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(.78) contrast(1.05);
  transition: transform .55s ease, filter .55s ease;
}

.blog-card:hover .blog-card-image img,
.home-insight-card:hover .home-insight-image img {
  transform: scale(1.03);
  filter: saturate(.95) contrast(1.04);
}

.blog-card-body {
  padding: 34px 36px 38px;
}

.blog-card-featured .blog-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #7f7c75;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.article-meta span {
  color: var(--gold);
}

.article-meta time,
.article-meta small {
  position: relative;
  font-size: inherit;
}

.article-meta time::before,
.article-meta small::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #5f5c56;
}

.blog-card h3,
.home-insight-card h3,
.related-grid h3 {
  font-family: Georgia, serif;
  font-weight: 400;
}

.blog-card h3 {
  margin: 22px 0 16px;
  font-size: 31px;
  line-height: 1.18;
}

.blog-card-featured h3 {
  font-size: clamp(34px, 4vw, 51px);
}

.blog-card h3 a:hover,
.home-insight-card h3 a:hover,
.related-grid h3 a:hover {
  color: var(--gold-light);
}

.blog-card-body>p {
  color: #8d8a83;
  font-size: 14px;
  line-height: 1.75;
}

.article-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 18px;
  padding-bottom: 7px;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(216, 166, 70, .5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.editorial-promise {
  margin-block: 70px 120px;
  padding: 80px;
  color: #16120b;
  background: var(--gold);
}

.editorial-promise .section-kicker {
  color: #5d4217;
}

.editorial-promise h2 {
  color: #16120b;
}

.editorial-promise>p:last-child {
  max-width: 700px;
  margin: 25px 0 0;
  color: rgba(22, 18, 11, .68);
  font-size: 16px;
  line-height: 1.8;
}

.home-insights {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.home-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-insight-card {
  min-width: 0;
}

.home-insight-image {
  display: block;
  height: 265px;
  margin-bottom: 24px;
  overflow: hidden;
  background: #15181c;
}

.home-insight-card h3 {
  min-height: 90px;
  margin: 18px 0 0;
  font-size: 27px;
  line-height: 1.2;
}

.home-insights .center-link {
  margin-top: 52px;
}

.article-shell {
  padding-bottom: 80px;
}

.article-header {
  width: min(980px, calc(100% - 64px));
  margin: 0 auto;
  padding: 75px 0 58px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 58px;
  color: #74716b;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--gold-light);
}

.article-header h1 {
  max-width: 950px;
  margin: 28px 0 25px;
  font-size: clamp(50px, 6.2vw, 86px);
  line-height: 1;
}

.article-deck {
  max-width: 780px;
  color: #aaa69e;
  font-family: Georgia, serif;
  font-size: 21px;
  line-height: 1.6;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.byline-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 12px;
}

.article-byline b,
.article-byline small {
  display: block;
}

.article-byline b {
  margin-bottom: 5px;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 400;
}

.article-byline small {
  color: #77746e;
  font-size: 10px;
}

.article-byline a {
  color: var(--gold-light);
}

.article-hero-image {
  width: min(1180px, calc(100% - 64px));
  height: min(62vw, 690px);
  min-height: 430px;
  margin: 0 auto;
  overflow: hidden;
  background: #121519;
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(.76) contrast(1.04);
}

.article-layout {
  width: min(1000px, calc(100% - 64px));
  margin: 0 auto;
  padding-top: 80px;
  display: grid;
  grid-template-columns: 190px minmax(0, 690px);
  justify-content: space-between;
  gap: 70px;
}

.article-aside {
  position: sticky;
  top: 40px;
  align-self: start;
  padding: 22px 0;
  border-top: 1px solid rgba(216, 166, 70, .65);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.article-aside span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.article-aside p {
  color: #8f8b84;
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.45;
}

.article-aside a {
  color: var(--gold-light);
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.article-content {
  min-width: 0;
  color: #b0aca4;
  font-size: 17px;
  line-height: 1.85;
}

.article-content .article-intro {
  color: #d2cec5;
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.7;
}

.article-content section {
  margin-top: 56px;
}

.article-content h2 {
  margin: 0 0 19px;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.article-content p {
  margin: 0 0 20px;
}

.article-content ul,
.article-content ol {
  margin: 24px 0;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 13px;
  padding-left: 8px;
}

.article-content li::marker {
  color: var(--gold);
}

.article-content blockquote {
  margin: 30px 0 0;
  padding: 22px 26px;
  color: #1a150c;
  background: var(--gold);
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.55;
}

.article-inline-image {
  margin: 52px 0 18px;
}

.article-inline-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid rgba(216, 166, 70, .32);
  filter: saturate(.88) contrast(1.03);
}

.article-inline-image figcaption {
  margin-top: 13px;
  padding-left: 14px;
  color: #85817a;
  border-left: 2px solid var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
  line-height: 1.55;
}

.key-takeaways {
  padding: 38px;
  border: 1px solid rgba(216, 166, 70, .4);
  background: rgba(216, 166, 70, .06);
}

.key-takeaways h2 {
  margin-top: 10px;
}

.article-disclaimer {
  margin-top: 48px !important;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #716e68;
  font-size: 11px;
  line-height: 1.6;
}

.related-insights {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

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

.related-grid article {
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  margin-right: -1px;
}

.related-grid article>span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.related-grid h3 {
  margin: 58px 0 0;
  font-size: 25px;
  line-height: 1.25;
}

.not-found {
  width: min(900px, calc(100% - 44px));
  min-height: 660px;
  margin: 0 auto;
  padding: 110px 0;
  text-align: center;
}

.not-found p:not(.section-kicker) {
  margin-bottom: 35px;
  color: #96928a;
}

@media (max-width: 900px) {
  .blog-hero {
    width: min(100% - 36px, 1280px);
    min-height: 480px;
    padding: 80px 0 70px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-hero>p {
    max-width: 650px;
  }

  .blog-card-featured {
    grid-template-columns: 1fr;
  }

  .blog-card-featured .blog-card-image {
    min-height: 390px;
  }

  .home-insights-grid,
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-insight-card:last-child,
  .related-grid article:last-child {
    grid-column: 1 / -1;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .blog-hero {
    width: calc(100% - 36px);
    min-height: 430px;
    padding: 70px 0 58px;
  }

  .blog-hero h1 {
    font-size: 49px;
  }

  .blog-hero>p {
    font-size: 17px;
  }

  .blog-index {
    padding-top: 82px;
  }

  .blog-grid,
  .home-insights-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-featured,
  .home-insight-card:last-child,
  .related-grid article:last-child {
    grid-column: auto;
  }

  .blog-card-image,
  .blog-card-featured .blog-card-image {
    min-height: 275px;
  }

  .blog-card-body,
  .blog-card-featured .blog-card-body {
    padding: 27px 23px 31px;
  }

  .blog-card h3,
  .blog-card-featured h3 {
    font-size: 28px;
  }

  .editorial-promise {
    margin-block: 35px 85px;
    padding: 50px 24px;
  }

  .home-insight-image {
    height: 250px;
  }

  .home-insight-card {
    margin-bottom: 22px;
  }

  .home-insight-card h3 {
    min-height: 0;
  }

  .article-header {
    width: calc(100% - 36px);
    padding: 50px 0 42px;
  }

  .breadcrumbs {
    margin-bottom: 42px;
  }

  .article-header h1 {
    font-size: 45px;
  }

  .article-deck {
    font-size: 18px;
  }

  .article-hero-image {
    width: 100%;
    min-height: 330px;
    height: 78vw;
  }

  .article-layout {
    width: calc(100% - 36px);
    padding-top: 52px;
  }

  .article-content {
    font-size: 16px;
    line-height: 1.78;
  }

  .article-content .article-intro {
    font-size: 19px;
  }

  .article-content h2 {
    font-size: 29px;
  }

  .article-content section {
    margin-top: 44px;
  }

  .article-inline-image {
    margin: 42px -18px 12px;
  }

  .article-inline-image figcaption {
    margin-inline: 18px;
  }

  .key-takeaways {
    padding: 28px 23px;
  }

  .related-grid article {
    min-height: 230px;
    margin: 0 0 -1px;
  }
}

/* Final precedence for the unified responsive image system. */
.hero-visual img {
  width: min(100%, 560px);
  height: 640px;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
}

.story {
  grid-template-columns: 1fr 1fr;
  gap: 75px;
}

.story-photo {
  min-height: 560px;
}

.story .photo-frame {
  inset: 12px 28px 28px 24px;
}

.story .photo-frame img {
  object-fit: cover;
  object-position: 50% center;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.blog-card,
.blog-card-featured {
  display: flex;
  height: 610px;
  grid-column: auto;
  grid-template-columns: none;
  flex-direction: column;
}

.blog-card-image,
.blog-card-featured .blog-card-image,
.home-insight-image {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.blog-card-image img,
.home-insight-image img,
.article-hero-image img {
  object-position: center;
}

.blog-card-body,
.blog-card-featured .blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 27px 31px;
}

.blog-card h3,
.blog-card-featured h3 {
  min-height: 90px;
  margin: 19px 0 14px;
  font-size: 26px;
  line-height: 1.2;
}

.blog-card-body>p {
  flex: 1;
}

.blog-card .article-link {
  align-self: flex-start;
}

.home-insight-card {
  display: flex;
  flex-direction: column;
}

.home-insight-card .article-link {
  align-self: flex-start;
  margin-top: auto;
}

.article-hero-image {
  width: min(1180px, calc(100% - 64px));
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

@media (max-width: 1020px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .story {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-photo {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .about-hero-portrait {
    padding: 12px 0 42px;
  }

  .about-hero-portrait img {
    width: min(88%, 360px);
    height: auto;
    max-height: 500px;
  }

  .hero-visual img {
    width: min(100%, 370px);
    height: 465px;
  }

  .story-photo {
    min-height: 470px;
  }

  .story .photo-frame {
    inset: 8px 0 28px;
  }

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

  .blog-card h3,
  .blog-card-featured h3 {
    min-height: 0;
  }

  .blog-card,
  .blog-card-featured {
    height: auto;
  }

  .article-hero-image {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}
