:root {
  --ink: #0a0a0b;
  --charcoal: #1d1d1d;
  --ivory: #f3efe6;
  --paper: #fffdf8;
  --plum: #4a2778;
  --mauve: #e4ddec;
  --gold: #c28a2e;
  --green: #245f33;
  --copper: #a75f2b;
  --muted: #5f574f;
  --line: rgba(74, 39, 120, 0.28);
  --soft-line: rgba(10, 10, 11, 0.13);
  --display: "Antonio", Impact, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Inter Tight", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ivory);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(181, 130, 52, 0.08) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--ivory);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 100px;
  padding: 18px 44px;
  border-bottom: 1px solid rgba(10, 10, 11, 0.08);
  background: rgba(247, 241, 231, 0.93);
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  width: clamp(142px, 11vw, 172px);
}

.brand img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.site-header .brand {
  width: auto;
}

.site-header .brand img {
  width: auto;
  height: 64px;
  max-width: 214px;
}

.brand__seal {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 26px;
}

.brand__wordmark {
  display: grid;
  gap: 1px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 16px;
  line-height: 0.88;
}

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

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  margin: -18px 0;
}

.site-nav a,
.site-footer a {
  position: relative;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

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

.nav-dropdown {
  position: absolute;
  left: 50%;
  top: 100%;
  display: grid;
  min-width: 236px;
  padding: 10px;
  border: 1px solid rgba(10, 10, 11, 0.14);
  background: rgba(255, 250, 240, 0.98);
  box-shadow: 0 28px 70px rgba(10, 10, 11, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown a {
  padding: 14px 13px;
  border-bottom: 1px solid rgba(10, 10, 11, 0.08);
  white-space: nowrap;
}

.nav-dropdown a:last-child {
  border-bottom: 0;
}

.nav-dropdown a::after {
  display: none;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 1px solid var(--plum);
  padding: 0 24px;
  background: var(--plum);
  color: #fff7ea;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.primary-button:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--soft-line);
  background: transparent;
  place-items: center;
  padding: 12px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 2px 0;
}

.hero {
  position: relative;
  padding: 34px 62px 0;
  background: var(--ivory);
  overflow: hidden;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 64px;
  align-items: end;
}

.hero h1,
.interior-masthead h1,
.contact-page h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(126px, 10.7vw, 154px);
  line-height: 0.92;
}

.hero h1 span {
  display: block;
}

.hero__slogan {
  margin: 10px 0 0;
  color: var(--plum);
  font-family: var(--serif);
  font-size: clamp(38px, 3.55vw, 52px);
  line-height: 1;
}

.hero__rail {
  display: grid;
  align-content: start;
  gap: 21px;
  max-width: 315px;
  padding-bottom: 24px;
}

.hero__rail p {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.18;
}

.hairline {
  width: 72px;
  height: 2px;
  background: var(--gold);
}

.hero__proof {
  font-family: var(--sans) !important;
  text-transform: uppercase;
  font-size: 16px !important;
  font-weight: 800;
  line-height: 1.25 !important;
}

.hero__actions {
  display: grid;
  gap: 16px;
  align-items: start;
  margin-top: 12px;
}

.gold-link,
.pillar-lane__summary a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  padding: 0 0 10px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.hero__image {
  position: relative;
  z-index: 3;
  width: calc(100% + 124px);
  height: clamp(220px, 22vh, 255px);
  margin: 18px -62px 0;
  border-top: 1px solid rgba(10, 10, 11, 0.18);
  overflow: hidden;
}

.hero__image img,
.interior-image-band img,
.lane-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__orbit {
  position: absolute;
  top: 35px;
  right: -275px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(181, 130, 52, 0.52);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 34%, rgba(181, 130, 52, 0.32) 34.1% 34.25%, transparent 34.35% 45%, rgba(181, 130, 52, 0.2) 45.1% 45.25%, transparent 45.35% 57%, rgba(181, 130, 52, 0.16) 57.1% 57.25%, transparent 57.35%),
    linear-gradient(90deg, transparent 0 49.8%, rgba(181, 130, 52, 0.45) 49.9% 50.1%, transparent 50.2%);
}

.process-band {
  display: grid;
  grid-template-columns: 305px 1fr;
  gap: 42px;
  padding: 42px 62px 50px;
  border-top: 1px solid rgba(10, 10, 11, 0.14);
  border-bottom: 1px solid rgba(10, 10, 11, 0.14);
  background: var(--paper);
}

.section-label,
.process-band__intro span {
  display: block;
  margin-bottom: 13px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.process-band__intro {
  padding-right: 42px;
  border-right: 1px solid var(--line);
}

.process-band h2,
.audience-section h2,
.interior-operating__intro h2,
.interior-closing h2 {
  margin: 0;
  font-family: var(--serif);
}

.process-band h2 {
  font-size: 38px;
  line-height: 1.03;
}

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

.process-band article strong {
  display: block;
  padding-bottom: 13px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
}

.process-band article h3 {
  margin: 0 0 6px;
  text-transform: uppercase;
  font-size: 12px;
}

.process-band article p {
  margin: 0;
  color: #443d37;
  font-size: 12px;
  line-height: 1.25;
}

.pillar-lanes {
  border-top: 1px solid rgba(10, 10, 11, 0.18);
  background: var(--paper);
}

.pillar-lane {
  display: grid;
  grid-template-columns: minmax(430px, 0.42fr) minmax(300px, 0.31fr) minmax(430px, 0.55fr);
  min-height: 314px;
  border-bottom: 1px solid rgba(10, 10, 11, 0.2);
  background: var(--mauve);
  color: var(--ink);
  overflow: hidden;
}

.pillar-lane--dark {
  background: var(--charcoal);
  color: var(--paper);
}

.pillar-lane__copy,
.pillar-lane__summary {
  display: grid;
  align-content: center;
  min-width: 0;
}

.pillar-lane__copy {
  padding: 52px 42px 48px 62px;
  border-right: 1px solid rgba(10, 10, 11, 0.16);
}

.pillar-lane--dark .pillar-lane__copy,
.pillar-lane--dark .pillar-lane__summary {
  border-color: rgba(181, 130, 52, 0.25);
}

.pillar-lane h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 5vw, 92px);
  line-height: 1.02;
  font-weight: 700;
  text-transform: uppercase;
}

.pillar-lane__copy span {
  margin-top: 14px;
  color: #7b5a24;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
}

.pillar-lane--dark .pillar-lane__copy span {
  color: var(--gold);
}

.pillar-lane__summary {
  gap: 26px;
  padding: 52px 40px;
  border-right: 1px solid rgba(10, 10, 11, 0.16);
}

.pillar-lane__summary p {
  margin: 0;
  max-width: 360px;
  color: rgba(10, 10, 11, 0.8);
  font-family: var(--serif);
  font-size: clamp(26px, 1.75vw, 34px);
  line-height: 1.02;
}

.pillar-lane--dark .pillar-lane__summary p {
  color: rgba(255, 250, 240, 0.84);
}

.lane-image {
  display: block;
  min-height: 314px;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}

.lane-image img {
  min-height: 314px;
  transition: transform 500ms ease;
}

.pillar-lane:hover .lane-image img {
  transform: scale(1.04);
}

.media-strip {
  display: grid;
  grid-template-columns: minmax(340px, 0.55fr) minmax(0, 1fr);
  gap: 56px;
  padding: 74px 62px;
  border-bottom: 1px solid rgba(10, 10, 11, 0.15);
  background: var(--ivory);
}

.media-strip__intro h2 {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4.2vw, 70px);
  line-height: 1;
}

.media-strip__intro p {
  max-width: 500px;
  color: #403932;
  font-size: 18px;
  line-height: 1.48;
}

.media-strip__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(10, 10, 11, 0.14);
  border: 1px solid rgba(10, 10, 11, 0.14);
}

.media-strip__items article {
  display: grid;
  align-content: space-between;
  min-height: 280px;
  padding: 26px;
  background: var(--paper);
}

.media-strip__items article span {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.media-strip__items h3 {
  margin: 26px 0 30px;
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.04;
}

.media-strip__items a {
  color: var(--plum);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) 1fr;
  gap: 70px;
  padding: 70px 118px 78px;
  background: var(--paper);
}

.audience-section h2 {
  max-width: 470px;
  font-size: 48px;
  line-height: 1.04;
}

.audience-section p {
  max-width: 570px;
  margin: 7px 0 26px;
  font-size: 18px;
  line-height: 1.55;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-list a {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.72);
  padding: 13px 15px;
  font-size: 14px;
  font-weight: 700;
}

.interior-page {
  background: var(--ivory);
}

.interior-masthead {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.44fr);
  gap: clamp(48px, 6vw, 86px);
  align-items: center;
  padding: 54px 62px 46px;
  overflow: hidden;
}

.interior-masthead::after {
  position: absolute;
  right: -220px;
  bottom: -210px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(181, 130, 52, 0.42);
  border-radius: 50%;
  content: "";
}

.interior-masthead__copy,
.interior-masthead__rail {
  position: relative;
  z-index: 1;
}

.interior-masthead h1 {
  max-width: 900px;
  font-size: clamp(82px, 7.4vw, 112px);
  line-height: 0.89;
}

.interior-masthead__copy p,
.contact-page__intro p {
  max-width: 620px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.15;
}

.interior-masthead__rail {
  display: grid;
  gap: 20px;
  max-width: 470px;
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.interior-masthead__rail p {
  margin: 0;
  color: #302a25;
  font-size: 18px;
  line-height: 1.45;
}

.interior-masthead__rail .primary-button {
  justify-self: start;
  min-width: 260px;
}

.interior-image-band {
  height: 330px;
  margin: 0;
  border-top: 1px solid rgba(10, 10, 11, 0.18);
  border-bottom: 1px solid rgba(10, 10, 11, 0.18);
  overflow: hidden;
}

.interior-operating {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: var(--charcoal);
  color: var(--paper);
}

.interior-operating__intro {
  padding: 54px 62px;
  border-right: 1px solid rgba(181, 130, 52, 0.34);
  background: var(--mauve);
  color: var(--ink);
}

.interior-operating__intro h2 {
  font-size: 44px;
  line-height: 1;
}

.interior-lane-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.interior-lane-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  min-height: 142px;
  padding: 30px 34px;
  border-right: 1px solid rgba(181, 130, 52, 0.2);
  border-bottom: 1px solid rgba(181, 130, 52, 0.2);
}

.interior-lane-list span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 46px;
  line-height: 0.9;
}

.interior-lane-list p {
  margin: 0;
  color: rgba(255, 250, 240, 0.86);
  font-size: 18px;
  line-height: 1.35;
}

.interior-closing {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(320px, 0.72fr) auto;
  gap: 50px;
  align-items: center;
  padding: 66px 82px;
  background: var(--paper);
}

.interior-closing h2 {
  font-size: 48px;
  line-height: 1.03;
}

.interior-closing p {
  margin: 0;
  color: #302a25;
  font-size: 18px;
  line-height: 1.5;
}

.about-page,
.work-page {
  background: var(--ivory);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.58fr);
  min-height: 650px;
  border-bottom: 1px solid rgba(10, 10, 11, 0.16);
}

.about-hero__copy {
  display: grid;
  align-content: center;
  padding: 58px 62px;
}

.about-hero h1,
.work-hero h1 {
  margin: 0;
  font-family: var(--display);
  line-height: 0.97;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 820px;
  font-size: clamp(66px, 6.5vw, 104px);
  line-height: 1.02;
}

.work-hero h1 {
  max-width: 1120px;
  font-size: clamp(70px, 7.2vw, 118px);
  line-height: 1;
}

.about-hero__copy p,
.work-hero p {
  max-width: 640px;
  margin: 34px 0 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.5vw, 46px);
  line-height: 1.12;
}

.about-hero__image {
  min-height: 650px;
  margin: 0;
  border-left: 1px solid rgba(10, 10, 11, 0.16);
  overflow: hidden;
}

.about-hero__image img,
.work-pillar figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.identity-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(10, 10, 11, 0.16);
  background: var(--paper);
}

.identity-strip article {
  min-height: 210px;
  padding: 34px 42px;
  border-right: 1px solid rgba(10, 10, 11, 0.13);
}

.identity-strip article:last-child {
  border-right: 0;
}

.identity-strip span,
.work-pillar__copy > span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.identity-strip strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(48px, 4.5vw, 76px);
  line-height: 0.9;
  text-transform: uppercase;
}

.identity-strip p {
  max-width: 330px;
  margin: 18px 0 0;
  color: #413a34;
  font-size: 17px;
  line-height: 1.42;
}

.philosophy-section,
.team-network {
  display: grid;
  grid-template-columns: minmax(360px, 0.66fr) minmax(0, 1fr);
  gap: 70px;
  padding: 82px 62px;
}

.philosophy-section {
  background: var(--mauve);
}

.philosophy-section__intro h2,
.team-network__intro h2,
.about-principles h2,
.about-closing h2,
.work-platform h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4.4vw, 72px);
  line-height: 1;
}

.philosophy-section__intro p,
.team-network__intro p,
.work-platform p {
  max-width: 590px;
  margin: 24px 0 0;
  color: #302a25;
  font-size: 19px;
  line-height: 1.5;
}

.philosophy-grid,
.team-network__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(10, 10, 11, 0.15);
  border: 1px solid rgba(10, 10, 11, 0.15);
}

.philosophy-card,
.team-card {
  min-height: 230px;
  padding: 30px;
  background: var(--ivory);
}

.team-card {
  background: var(--paper);
}

.philosophy-card h3,
.team-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 34px;
  line-height: 0.92;
  text-transform: uppercase;
}

.philosophy-card p,
.team-card p {
  margin: 18px 0 0;
  color: #413a34;
  font-size: 17px;
  line-height: 1.42;
}

.about-principles {
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(360px, 0.9fr);
  gap: 70px;
  padding: 80px 62px;
  background: var(--charcoal);
  color: var(--paper);
}

.about-principles ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(181, 130, 52, 0.34);
}

.about-principles li {
  padding: 22px 0;
  border-bottom: 1px solid rgba(181, 130, 52, 0.34);
  color: rgba(255, 250, 240, 0.84);
  font-size: 22px;
  line-height: 1.24;
}

.about-closing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 40px;
  align-items: center;
  padding: 72px 62px;
  background: var(--paper);
}

.work-hero {
  padding: 62px 62px 70px;
  border-bottom: 1px solid rgba(10, 10, 11, 0.16);
}

.work-hero h1 {
  max-width: 1120px;
}

.work-hero p {
  max-width: 760px;
}

.work-pillar-showcase {
  display: grid;
}

.work-pillar {
  display: grid;
  grid-template-columns: minmax(410px, 0.58fr) minmax(0, 0.88fr);
  min-height: 560px;
  border-bottom: 1px solid rgba(10, 10, 11, 0.18);
  background: var(--paper);
}

.work-pillar:nth-child(2) {
  grid-template-columns: minmax(0, 0.88fr) minmax(410px, 0.58fr);
  background: var(--charcoal);
  color: var(--paper);
}

.work-pillar:nth-child(2) figure {
  order: 2;
}

.work-pillar figure {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
}

.work-pillar__copy {
  display: grid;
  align-content: center;
  padding: 58px 62px;
}

.work-pillar h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 5.3vw, 92px);
  line-height: 1.03;
  text-transform: uppercase;
}

.work-pillar__copy p {
  max-width: 650px;
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: clamp(27px, 2.15vw, 40px);
  line-height: 1.04;
}

.work-pillar:nth-child(2) .work-pillar__copy p {
  color: rgba(255, 250, 240, 0.82);
}

.work-pillar__services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin: 34px 0 26px;
}

.work-pillar__services em {
  border: 1px solid rgba(181, 130, 52, 0.46);
  padding: 10px 12px;
  color: #2f2924;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.work-pillar:nth-child(2) .work-pillar__services em {
  color: rgba(255, 250, 240, 0.9);
}

.work-platform {
  display: grid;
  grid-template-columns: minmax(340px, 0.7fr) minmax(340px, 0.8fr) auto;
  gap: 54px;
  align-items: center;
  padding: 72px 62px;
  background: var(--mauve);
}

.pillar-detail-page,
.insights-page {
  background: var(--ivory);
}

.detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 0.72fr);
  min-height: 690px;
  border-bottom: 1px solid rgba(10, 10, 11, 0.16);
  overflow: hidden;
}

.detail-hero__copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 92px 62px 66px;
}

.detail-hero h1,
.insights-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(70px, 7.4vw, 126px);
  line-height: 1;
  text-transform: uppercase;
}

.detail-hero p,
.insights-hero p {
  max-width: 680px;
  margin: 34px 0 34px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.35vw, 42px);
  line-height: 1.12;
}

.detail-hero__image {
  min-height: 690px;
  margin: 0;
  border-left: 1px solid rgba(10, 10, 11, 0.14);
  overflow: hidden;
}

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

.detail-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.66fr) minmax(360px, 0.82fr);
  gap: 70px;
  padding: 78px 62px;
  background: var(--paper);
}

.detail-intro h2,
.program-row h2,
.capability-band h2,
.insights-feature h2,
.article-index h2 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1;
}

.detail-intro h2,
.capability-band h2,
.insights-feature h2 {
  font-size: clamp(44px, 4.5vw, 76px);
}

.detail-intro p {
  margin: 0;
  color: #332c26;
  font-size: 21px;
  line-height: 1.5;
}

.program-stack {
  display: grid;
}

.program-row {
  display: grid;
  grid-template-columns: minmax(420px, 0.7fr) minmax(0, 0.85fr);
  min-height: 560px;
  border-top: 1px solid rgba(10, 10, 11, 0.16);
  background: var(--ivory);
}

.program-row--reverse {
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.7fr);
  background: var(--charcoal);
  color: var(--paper);
}

.program-row--reverse figure {
  order: 2;
}

.program-row figure {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
}

.program-row figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-row__copy {
  display: grid;
  align-content: center;
  padding: 58px 62px;
}

.program-row__copy > span,
.article-index article > span {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.program-row h2 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(42px, 4.6vw, 76px);
}

.program-row p {
  max-width: 620px;
  margin: 28px 0;
  font-family: var(--serif);
  font-size: clamp(25px, 2vw, 36px);
  line-height: 1.1;
}

.program-row--reverse p {
  color: rgba(255, 250, 240, 0.84);
}

.program-row ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  max-width: 680px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(181, 130, 52, 0.35);
}

.program-row li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(181, 130, 52, 0.35);
  color: #3a332d;
  font-size: 16px;
  line-height: 1.25;
}

.program-row--reverse li {
  color: rgba(255, 250, 240, 0.84);
}

.capability-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.6fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  padding: 70px 62px;
  background: var(--mauve);
}

.capability-band div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.capability-band span {
  border: 1px solid rgba(74, 39, 120, 0.34);
  background: rgba(255, 253, 248, 0.62);
  padding: 14px 15px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.insights-hero {
  padding: 74px 62px 82px;
  border-bottom: 1px solid rgba(10, 10, 11, 0.16);
}

.insights-feature {
  display: grid;
  grid-template-columns: minmax(420px, 0.8fr) minmax(0, 0.8fr);
  gap: 64px;
  align-items: center;
  padding: 70px 62px;
  background: var(--paper);
}

.insights-feature figure {
  height: 420px;
  margin: 0;
  overflow: hidden;
}

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

.insights-feature p {
  max-width: 620px;
  color: #332c26;
  font-size: 19px;
  line-height: 1.5;
}

.article-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(10, 10, 11, 0.14);
  border-top: 1px solid rgba(10, 10, 11, 0.14);
}

.article-index article {
  display: grid;
  align-content: start;
  min-height: 360px;
  padding: 34px;
  background: var(--ivory);
}

.article-index h2 {
  margin-top: 24px;
  font-size: 38px;
}

.article-index p {
  color: #3a332d;
  font-size: 17px;
  line-height: 1.45;
}

.article-index a {
  align-self: end;
  margin-top: 26px;
  color: var(--plum);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.legal-page {
  background: var(--ivory);
}

.legal-hero {
  padding: 74px 62px 62px;
  border-bottom: 1px solid rgba(10, 10, 11, 0.16);
}

.legal-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(76px, 7vw, 120px);
  line-height: 1;
  text-transform: uppercase;
}

.legal-hero p {
  max-width: 720px;
  margin: 30px 0 0;
  font-family: var(--serif);
  font-size: clamp(27px, 2.2vw, 40px);
  line-height: 1.14;
}

.legal-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(10, 10, 11, 0.14);
  border-bottom: 1px solid rgba(10, 10, 11, 0.14);
}

.legal-sections article {
  min-height: 230px;
  padding: 34px;
  background: var(--paper);
}

.legal-sections h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.legal-sections p {
  max-width: 640px;
  color: #3a332d;
  font-size: 18px;
  line-height: 1.48;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(430px, 0.85fr);
  gap: 70px;
  align-items: start;
  padding: 54px 62px 84px;
}

.contact-page h1 {
  max-width: 850px;
  font-size: clamp(78px, 6.4vw, 106px);
  line-height: 0.9;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border-top: 4px solid var(--plum);
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(42, 13, 40, 0.12);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(10, 10, 11, 0.2);
  background: #fff;
  color: var(--ink);
  padding: 14px 13px;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  justify-self: start;
}

.form-note {
  margin: 0;
  color: var(--plum);
  font-size: 15px;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 38px 50px;
  border-top: 1px solid rgba(10, 10, 11, 0.14);
  background: var(--ivory);
}

.site-footer .brand {
  width: clamp(160px, 13vw, 198px);
}

.site-footer p {
  margin: 0;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 30px;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer small {
  grid-column: 2 / -1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.reveal,
.process-band article,
.pillar-lane,
.interior-lane-list article,
.philosophy-card,
.team-card,
.work-pillar,
.program-row,
.article-index article {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible,
.process-band article.is-visible,
.pillar-lane.is-visible,
.interior-lane-list article.is-visible,
.philosophy-card.is-visible,
.team-card.is-visible,
.work-pillar.is-visible,
.program-row.is-visible,
.article-index article.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    min-height: 90px;
    padding: 16px 28px;
    gap: 18px;
  }

  .hero {
    padding: 44px 34px 0;
  }

  .hero__grid,
  .process-band,
  .audience-section,
  .media-strip,
  .contact-page,
  .interior-masthead,
  .interior-operating,
  .interior-closing,
  .about-hero,
  .philosophy-section,
  .team-network,
  .about-principles,
  .about-closing,
  .work-pillar,
  .work-pillar:nth-child(2),
  .work-platform,
  .detail-hero,
  .detail-intro,
  .program-row,
  .program-row--reverse,
  .capability-band,
  .insights-feature,
  .article-index,
  .legal-sections {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 132px;
  }

  .hero__rail {
    grid-template-columns: 1fr 1fr;
    max-width: none;
    gap: 22px 36px;
  }

  .hero__actions {
    grid-column: span 2;
  }

  .hero__image {
    width: calc(100% + 68px);
    margin-left: -34px;
    margin-right: -34px;
  }

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

  .pillar-lane {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  }

  .pillar-lane__copy {
    padding: 42px 28px 38px 34px;
  }

  .pillar-lane__summary {
    padding: 42px 30px;
    border-right: 0;
  }

  .lane-image {
    grid-column: 1 / -1;
    min-height: 280px;
    clip-path: none;
  }

  .media-strip {
    padding: 58px 34px;
  }

  .media-strip__items {
    grid-template-columns: 1fr;
  }

  .interior-masthead {
    padding: 48px 34px 36px;
  }

  .interior-masthead__rail {
    max-width: none;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 28px;
  }

  .interior-operating__intro {
    border-right: 0;
    border-bottom: 1px solid rgba(181, 130, 52, 0.42);
  }

  .about-hero {
    min-height: auto;
  }

  .about-hero__copy,
  .work-hero,
  .work-pillar__copy {
    padding: 52px 34px;
  }

  .about-hero__image,
  .work-pillar figure {
    min-height: 360px;
    border-left: 0;
  }

  .philosophy-section,
  .team-network,
  .about-principles,
  .about-closing,
  .work-platform {
    gap: 38px;
    padding: 58px 34px;
  }

  .work-pillar:nth-child(2) figure {
    order: 0;
  }

  .detail-hero {
    min-height: auto;
  }

  .detail-hero__copy,
  .program-row__copy,
  .insights-hero,
  .legal-hero {
    padding: 58px 34px;
  }

  .detail-hero__image,
  .program-row figure,
  .insights-feature figure {
    min-height: 360px;
    border-left: 0;
  }

  .program-row--reverse figure {
    order: 0;
  }

  .detail-intro,
  .capability-band,
  .insights-feature {
    gap: 38px;
    padding: 58px 34px;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 78px;
    padding: 12px 18px;
  }

  .brand {
    width: 136px;
  }

  .site-header .brand {
    width: auto;
  }

  .site-header .brand img {
    height: 52px;
    max-width: 174px;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 77px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border-bottom: 1px solid var(--soft-line);
    background: var(--paper);
  }

  .nav-item {
    display: grid;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 0 18px;
    border: 0;
    border-left: 1px solid var(--line);
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown a {
    padding: 12px 0;
    font-size: 11px;
  }

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

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(10, 10, 11, 0.08);
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .hero {
    padding: 34px 20px 0;
  }

  .hero h1 {
    font-size: 66px;
  }

  .hero__slogan {
    font-size: 31px;
  }

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

  .hero__actions {
    grid-column: auto;
  }

  .hero__image {
    width: calc(100% + 40px);
    height: 122px;
    margin: 14px -20px 0;
  }

  .process-band {
    padding: 32px 20px;
  }

  .process-band__intro {
    padding-right: 0;
    border-right: 0;
  }

  .process-band__steps {
    grid-template-columns: 1fr 1fr;
  }

  .pillar-lane {
    grid-template-columns: 1fr;
  }

  .pillar-lane__copy {
    padding: 28px 20px 12px;
    border-right: 0;
  }

  .pillar-lane h2 {
    font-size: 58px;
  }

  .pillar-lane__summary {
    gap: 18px;
    padding: 0 20px 28px;
  }

  .pillar-lane__summary p {
    font-size: 25px;
  }

  .lane-image {
    min-height: 210px;
  }

  .audience-section,
  .media-strip,
  .contact-page,
  .interior-masthead,
  .about-hero__copy,
  .work-hero,
  .work-pillar__copy {
    padding: 38px 20px;
  }

  .audience-section h2,
  .process-band h2,
  .interior-operating__intro h2,
  .interior-closing h2,
  .philosophy-section__intro h2,
  .team-network__intro h2,
  .about-principles h2,
  .about-closing h2,
  .work-platform h2 {
    font-size: 34px;
  }

  .interior-masthead h1,
  .contact-page h1,
  .about-hero h1,
  .work-hero h1 {
    font-size: 58px;
    line-height: 1.02;
  }

  .interior-masthead__copy p,
  .contact-page__intro p,
  .about-hero__copy p,
  .work-hero p {
    font-size: 23px;
  }

  .interior-image-band {
    height: 220px;
  }

  .interior-operating__intro {
    padding: 36px 20px;
  }

  .interior-lane-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .interior-lane-list article {
    grid-template-columns: 58px 1fr;
    min-height: 122px;
    padding: 24px 20px;
  }

  .interior-lane-list span {
    font-size: 38px;
  }

  .interior-lane-list p {
    font-size: 16px;
  }

  .interior-closing {
    gap: 22px;
    padding: 42px 20px;
  }

  .identity-strip,
  .philosophy-grid,
  .team-network__grid {
    grid-template-columns: 1fr;
  }

  .identity-strip article {
    min-height: 0;
    padding: 28px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 10, 11, 0.13);
  }

  .identity-strip strong {
    font-size: 48px;
  }

  .philosophy-section,
  .team-network,
  .about-principles,
  .about-closing,
  .work-platform {
    gap: 28px;
    padding: 42px 20px;
  }

  .philosophy-card,
  .team-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .philosophy-card h3,
  .team-card h3 {
    font-size: 30px;
  }

  .about-principles li {
    font-size: 18px;
  }

  .about-closing {
    align-items: start;
  }

  .work-pillar {
    min-height: 0;
  }

  .work-pillar figure,
  .about-hero__image {
    min-height: 260px;
  }

  .work-pillar h2 {
    font-size: 52px;
    line-height: 1.03;
  }

  .work-pillar__copy p {
    font-size: 24px;
  }

  .work-pillar__services {
    margin: 26px 0 22px;
  }

  .detail-hero__copy,
  .program-row__copy,
  .insights-hero,
  .legal-hero {
    padding: 46px 20px;
  }

  .detail-hero h1,
  .insights-hero h1,
  .legal-hero h1 {
    font-size: 54px;
    line-height: 1.02;
  }

  .detail-hero p,
  .insights-hero p,
  .legal-hero p {
    font-size: 23px;
    line-height: 1.14;
  }

  .detail-hero__image,
  .program-row figure,
  .insights-feature figure {
    min-height: 260px;
  }

  .detail-intro,
  .capability-band,
  .insights-feature {
    gap: 26px;
    padding: 42px 20px;
  }

  .detail-intro h2,
  .capability-band h2,
  .insights-feature h2 {
    font-size: 34px;
  }

  .detail-intro p {
    font-size: 18px;
  }

  .program-row {
    min-height: 0;
  }

  .program-row h2 {
    font-size: 38px;
  }

  .program-row p {
    font-size: 23px;
  }

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

  .capability-band span {
    width: 100%;
  }

  .article-index {
    grid-template-columns: 1fr;
  }

  .article-index article {
    min-height: 0;
    padding: 28px 20px;
  }

  .article-index h2 {
    font-size: 30px;
  }

  .legal-sections article {
    min-height: 0;
    padding: 28px 20px;
  }

  .legal-sections h2 {
    font-size: 30px;
  }

  .media-strip__items article {
    min-height: 210px;
    padding: 24px 20px;
  }

  .media-strip__items h3 {
    font-size: 28px;
  }

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 34px 20px;
  }
}

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