:root {
  --navy-950: #071128;
  --navy-900: #0b1739;
  --navy-800: #12255a;
  --navy-700: #1d3474;
  --blue: #2447a8;
  --yellow: #f7ce18;
  --yellow-soft: #ffe878;
  --red: #ce2034;
  --ivory: #f6f3eb;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #101828;
  --slate: #526075;
  --line: rgba(11, 23, 57, 0.14);
  --shadow-sm: 0 12px 32px rgba(7, 17, 40, 0.08);
  --shadow-lg: 0 30px 80px rgba(7, 17, 40, 0.18);
  --content: 1240px;
  --header-h: 82px;
  --z-header: 50;
  --z-menu: 40;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 14px;
  z-index: 100;
  transform: translateY(-180%);
  border-radius: 3px;
  background: var(--yellow);
  color: var(--navy-950);
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  display: flex;
  height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 4vw, 68px);
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(18px);
  transition: height .25s var(--ease), border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  height: 68px;
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(7, 17, 40, 0.06);
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 18px;
  color: var(--navy-900);
  text-decoration: none;
}

.brand img {
  width: 160px;
  height: auto;
}

.brand-divider {
  width: 1px;
  height: 30px;
  background: var(--line);
}

.brand-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  white-space: nowrap;
}

.brand-name strong {
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.6vw, 30px);
}

.main-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s var(--ease);
}

.main-nav a:hover::after,
.main-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.main-nav .nav-cta {
  min-height: 42px;
  padding: 0 19px;
  background: var(--navy-900);
  color: var(--white);
  transition: background .2s ease, color .2s ease;
}

.main-nav .nav-cta:hover {
  background: var(--yellow);
  color: var(--navy-950);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  transition: transform .2s var(--ease);
}

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

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

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  padding-top: var(--header-h);
  grid-template-columns: minmax(420px, .93fr) minmax(500px, 1.07fr);
  background: var(--ivory);
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: calc(min(900px, 100svh) - var(--header-h));
  justify-content: center;
  flex-direction: column;
  padding: clamp(72px, 8vw, 122px) clamp(44px, 6.5vw, 108px);
  background: var(--navy-900);
  color: var(--white);
}

.hero-copy::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px) 0 0 / 82px 82px,
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px) 0 0 / 82px 82px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}

.kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker {
  color: var(--yellow);
}

.kicker::before,
.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--yellow);
}

.hero h1,
.section-title,
.results-intro h2,
.quote-content blockquote,
.closing h2 {
  font-family: "Libre Bodoni", Georgia, serif;
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0;
  font-size: clamp(58px, 7.4vw, 116px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .84;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
  font-style: italic;
}

.hero-role {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-role span {
  margin: 0 8px;
  color: var(--red);
}

.hero-lede {
  max-width: 590px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 25px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform .2s var(--ease);
}

.button:hover svg {
  transform: translateX(4px);
}

.button-primary {
  background: var(--yellow);
  box-shadow: 0 12px 32px rgba(247, 206, 24, .2);
  color: var(--navy-950);
}

.button-primary:hover {
  background: var(--yellow-soft);
  box-shadow: 0 16px 38px rgba(247, 206, 24, .3);
}

.text-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease;
}

.text-link:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.hero-signature {
  position: absolute;
  right: 38px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .45);
}

.hero-signature span {
  font-family: "Libre Bodoni", Georgia, serif;
  font-size: 35px;
}

.hero-signature p {
  margin: 0;
  font-size: 9px;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-signature strong {
  color: var(--yellow);
}

.hero-portrait {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #f1f0ed;
}

.portrait-field {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(247, 206, 24, .16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .6), transparent 60%);
}

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

.portrait-caption {
  position: absolute;
  right: 34px;
  bottom: 32px;
  z-index: 2;
  padding: 15px 18px;
  border-left: 3px solid var(--yellow);
  background: rgba(255, 253, 248, .9);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.portrait-caption span,
.portrait-caption strong {
  display: block;
}

.portrait-caption span {
  color: var(--slate);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.portrait-caption strong {
  margin-top: 3px;
  color: var(--navy-900);
  font-family: "Libre Bodoni", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.hero-rail {
  position: absolute;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  width: 32px;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  background: var(--yellow);
  color: var(--navy-950);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-rail span {
  writing-mode: vertical-rl;
}

.results-strip {
  display: grid;
  background: var(--navy-950);
  color: var(--white);
  grid-template-columns: minmax(300px, 1.4fr) repeat(4, minmax(150px, .65fr));
}

.results-intro,
.stat {
  min-height: 235px;
  padding: 44px clamp(24px, 3vw, 48px);
}

.results-intro {
  background: var(--navy-800);
}

.results-intro h2 {
  margin: 0;
  font-size: clamp(32px, 3.2vw, 50px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.stat {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.stat:last-child {
  border: 0;
}

.stat strong {
  color: var(--yellow);
  font-family: "Libre Bodoni", Georgia, serif;
  font-size: clamp(47px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: 1;
}

.stat strong span {
  font-size: .48em;
}

.stat p {
  max-width: 140px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section {
  padding: clamp(86px, 10vw, 150px) clamp(24px, 5vw, 76px);
}

.section-title {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(46px, 5.8vw, 82px);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: .98;
}

.story {
  display: grid;
  max-width: var(--content);
  align-items: center;
  gap: clamp(64px, 9vw, 130px);
  margin: 0 auto;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
}

.story-media {
  position: relative;
  padding: 0 0 36px 30px;
}

.story-media::before {
  position: absolute;
  inset: 32px 32px 0 0;
  z-index: -1;
  background: var(--yellow);
  content: "";
}

.story-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.media-number {
  position: absolute;
  top: -60px;
  left: -16px;
  z-index: -2;
  color: rgba(11, 23, 57, .055);
  font-family: "Libre Bodoni", Georgia, serif;
  font-size: clamp(100px, 13vw, 190px);
  letter-spacing: -.07em;
  line-height: 1;
}

.image-note {
  position: absolute;
  right: -20px;
  bottom: 0;
  max-width: 240px;
  margin: 0;
  padding: 18px 20px;
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
  color: rgba(255, 255, 255, .66);
  font-size: 11px;
  line-height: 1.55;
}

.image-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--yellow);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pullquote {
  margin: 34px 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--yellow);
  color: var(--navy-800);
  font-family: "Libre Bodoni", Georgia, serif;
  font-size: clamp(24px, 2.7vw, 36px);
  font-style: italic;
  line-height: 1.25;
}

.prose {
  max-width: 670px;
  color: var(--slate);
  font-size: 16px;
}

.prose p {
  margin: 0 0 18px;
}

.prose strong,
.appointment strong {
  color: var(--navy-900);
}

.appointment {
  display: grid;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 112px 1fr;
}

.appointment span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.appointment p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
}

.quote-banner {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: var(--navy-950);
}

.quote-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 40, .97) 0%, rgba(7, 17, 40, .82) 40%, rgba(7, 17, 40, .12) 78%);
}

.quote-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 570px;
  max-width: var(--content);
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  padding: 80px clamp(24px, 5vw, 76px);
  color: var(--white);
}

.quote-mark {
  width: 52px;
  margin-bottom: 26px;
  fill: var(--yellow);
}

.quote-content blockquote {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 5.6vw, 78px);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: 1.02;
}

.quote-content blockquote em {
  color: var(--yellow);
  font-style: italic;
}

.quote-content > p {
  margin: 34px 0 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.quote-content > p span {
  margin-left: 15px;
  color: rgba(255, 255, 255, .48);
}

.management {
  max-width: var(--content);
  margin: 0 auto;
}

.management-heading {
  display: grid;
  align-items: end;
  gap: 28px 60px;
  margin-bottom: 62px;
  grid-template-columns: 1fr minmax(280px, 430px);
}

.management-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.management-heading > p:last-child {
  margin: 0 0 5px;
  color: var(--slate);
  font-size: 16px;
}

.management-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.management-card {
  position: relative;
  min-height: 360px;
  padding: 38px 34px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background .25s ease, color .25s ease;
}

.management-card:hover {
  background: var(--navy-900);
  color: var(--white);
}

.card-index {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(11, 23, 57, .2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.management-card:hover .card-index {
  color: rgba(255, 255, 255, .35);
}

.card-icon {
  width: 38px;
  height: 38px;
  margin: 12px 0 52px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.management-card:hover .card-icon {
  stroke: var(--yellow);
}

.management-card h3 {
  max-width: 280px;
  margin: 0 0 16px;
  color: var(--navy-900);
  font-family: "Libre Bodoni", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.1;
}

.management-card:hover h3 {
  color: var(--white);
}

.management-card p {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.75;
}

.management-card:hover p {
  color: rgba(255, 255, 255, .66);
}

.gallery {
  max-width: none;
  background: var(--navy-900);
  color: var(--white);
}

.gallery-heading,
.gallery-grid {
  max-width: var(--content);
  margin-right: auto;
  margin-left: auto;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 52px;
}

.gallery-heading .section-title {
  color: var(--white);
}

.gallery-heading > p {
  max-width: 370px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, .58);
  font-size: 15px;
}

.gallery-grid {
  display: grid;
  min-height: 680px;
  gap: 8px;
  grid-template-columns: 1.1fr .85fr 1.05fr;
  grid-template-rows: 1fr .78fr;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--navy-950);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .6s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.gallery-crowd {
  grid-row: 1 / 3;
}

.gallery-crowd img {
  object-position: center;
}

.gallery-portrait img {
  object-position: 58% center;
}

.gallery-work {
  grid-row: 1 / 3;
}

.gallery-work img {
  object-position: center 22%;
}

.gallery-grid figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .42);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gallery-grid figure::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(7, 17, 40, .72));
  content: "";
  pointer-events: none;
}

.vision {
  display: grid;
  max-width: var(--content);
  align-items: start;
  gap: 80px;
  margin: 0 auto;
  grid-template-columns: .8fr 1.2fr;
}

.vision-heading {
  position: sticky;
  top: 120px;
}

.vision-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.vision-list li {
  display: grid;
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 48px 1fr;
}

.vision-list > li > span {
  padding-top: 5px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.vision-list h3 {
  margin: 0 0 8px;
  color: var(--navy-900);
  font-family: "Libre Bodoni", Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.vision-list p {
  max-width: 620px;
  margin: 0;
  color: var(--slate);
  font-size: 14px;
}

.closing {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.closing::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 0 57%, rgba(255, 255, 255, .06) 57% 58%, transparent 58%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 86px);
  content: "";
}

.closing-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 620px;
  max-width: var(--content);
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  padding: 90px clamp(24px, 5vw, 76px);
}

.closing h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(58px, 8vw, 116px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .88;
}

.closing h2 em {
  color: var(--yellow);
  font-style: italic;
}

.closing-copy > p:not(.eyebrow) {
  max-width: 550px;
  margin: 30px 0 36px;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
}

.button-light {
  align-self: flex-start;
  border-color: rgba(255, 255, 255, .6);
  color: var(--white);
}

.button-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--blue);
}

.closing-mark {
  position: absolute;
  right: -3vw;
  bottom: -8vw;
  color: rgba(255, 255, 255, .055);
  font-family: "Libre Bodoni", Georgia, serif;
  font-size: clamp(260px, 40vw, 610px);
  font-weight: 600;
  letter-spacing: -.12em;
  line-height: .8;
}

.site-footer {
  display: grid;
  align-items: center;
  gap: 38px;
  padding: 52px clamp(24px, 5vw, 76px);
  background: var(--navy-950);
  color: var(--white);
  grid-template-columns: 1.2fr .8fr 1fr;
}

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

.footer-brand img {
  width: 150px;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer-brand p,
.footer-meta p {
  margin: 0;
}

.footer-brand p {
  font-family: "Libre Bodoni", Georgia, serif;
  font-size: 20px;
  line-height: 1.2;
}

.footer-brand span {
  color: rgba(255, 255, 255, .45);
  font-family: "Public Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-meta {
  color: rgba(255, 255, 255, .42);
  font-size: 10px;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 10px 24px;
  flex-wrap: wrap;
}

.footer-links a {
  min-height: 44px;
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 44px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}

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

.flag-line {
  display: grid;
  height: 7px;
  grid-template-columns: 2fr 1fr 1fr;
}

.flag-line span:nth-child(1) { background: var(--yellow); }
.flag-line span:nth-child(2) { background: var(--blue); }
.flag-line span:nth-child(3) { background: var(--red); }

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.management-card:nth-child(2),
.stat:nth-child(3) { transition-delay: .06s; }
.management-card:nth-child(3),
.stat:nth-child(4) { transition-delay: .12s; }
.management-card:nth-child(4),
.stat:nth-child(5) { transition-delay: .18s; }
.management-card:nth-child(5) { transition-delay: .24s; }
.management-card:nth-child(6) { transition-delay: .3s; }

@media (max-width: 1100px) {
  :root { --header-h: 74px; }

  .brand img { width: 138px; }
  .brand-name { display: none; }
  .brand-divider { display: none; }

  .hero {
    min-height: 790px;
    grid-template-columns: .92fr 1.08fr;
  }

  .hero-copy {
    min-height: calc(790px - var(--header-h));
    padding: 78px 42px;
  }

  .hero h1 { font-size: clamp(60px, 8vw, 90px); }
  .hero-signature { display: none; }
  .hero-rail { display: none; }

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

  .results-intro {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .results-intro h2 br { display: none; }

  .story {
    grid-template-columns: minmax(0, .85fr) minmax(400px, 1.15fr);
  }

  .management-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { min-height: 600px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 820px) {
  .site-header {
    height: var(--header-h);
    padding: 0 20px;
  }

  .site-header.is-scrolled { height: 64px; }
  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    z-index: var(--z-menu);
    display: flex;
    max-height: 0;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    flex-direction: column;
    border-top: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: max-height .35s var(--ease), opacity .2s ease, visibility .2s ease;
  }

  .main-nav.is-open {
    max-height: calc(100svh - var(--header-h));
    opacity: 1;
    visibility: visible;
  }

  .main-nav a,
  .main-nav .nav-cta {
    min-height: 62px;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--navy-900);
    font-size: 12px;
  }

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

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column-reverse;
    padding-top: var(--header-h);
  }

  .hero-portrait {
    min-height: 530px;
  }

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

  .portrait-caption {
    right: 20px;
    bottom: 20px;
  }

  .hero-copy {
    min-height: auto;
    padding: 64px 24px 72px;
  }

  .hero h1 { font-size: clamp(62px, 18vw, 96px); }
  .hero-lede { max-width: 600px; }

  .results-strip { grid-template-columns: repeat(2, 1fr); }
  .stat { min-height: 200px; }

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

  .story-media {
    max-width: 640px;
  }

  .management-heading {
    display: block;
  }

  .management-heading .section-title { margin-bottom: 24px; }

  .gallery-heading {
    display: block;
  }

  .gallery-heading > p { margin-top: 26px; }

  .gallery-grid {
    min-height: 820px;
    grid-template-columns: 1.2fr .8fr;
    grid-template-rows: 1.2fr .8fr;
  }

  .gallery-crowd { grid-row: 1 / 3; }
  .gallery-portrait { grid-column: 2; grid-row: 1; }
  .gallery-work { display: none; }
  .gallery-assembly { grid-column: 2; grid-row: 2; }

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

  .vision-heading {
    position: static;
  }

  .site-footer { grid-template-columns: 1fr; }
  .footer-links { grid-column: auto; }
  .footer-meta { order: 3; }
}

@media (max-width: 560px) {
  .brand img { width: 126px; }
  .hero-portrait { min-height: 410px; }
  .portrait-caption { display: none; }

  .hero-copy {
    padding-top: 54px;
    padding-bottom: 60px;
  }

  .hero h1 { font-size: clamp(56px, 19vw, 78px); }
  .hero-role { line-height: 1.7; }
  .hero-role span { display: none; }
  .hero-lede { margin-top: 24px; font-size: 16px; }
  .hero-actions { align-items: stretch; gap: 14px; flex-direction: column; }
  .button { width: 100%; }
  .text-link { align-self: flex-start; }

  .results-strip { grid-template-columns: 1fr 1fr; }
  .results-intro { grid-column: 1 / -1; }
  .results-intro,
  .stat { min-height: 178px; padding: 32px 22px; }
  .stat strong { font-size: 54px; }

  .section { padding: 82px 20px; }
  .story { gap: 64px; }
  .story-media { padding-left: 14px; }
  .image-note { right: -4px; }

  .appointment {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .quote-banner,
  .quote-content { min-height: 530px; }
  .quote-banner > img { object-position: 52% center; }
  .quote-overlay { background: linear-gradient(90deg, rgba(7, 17, 40, .96), rgba(7, 17, 40, .62)); }
  .quote-content blockquote { font-size: 43px; }
  .quote-content > p span { display: block; margin: 6px 0 0; }

  .management-grid { grid-template-columns: 1fr; }
  .management-card { min-height: 320px; }

  .gallery-grid {
    display: grid;
    min-height: 850px;
    grid-template-columns: 1fr;
    grid-template-rows: 1.15fr .85fr;
  }

  .gallery-crowd { grid-column: 1; grid-row: 1; }
  .gallery-portrait { display: none; }
  .gallery-assembly { grid-column: 1; grid-row: 2; }

  .vision { gap: 48px; }
  .vision-list li { grid-template-columns: 34px 1fr; }

  .closing,
  .closing-copy { min-height: 560px; }
  .closing h2 { font-size: 58px; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .footer-links,
  .flag-line { display: none; }
  .hero { padding-top: 0; }
  .reveal { opacity: 1; transform: none; }
}

.not-found {
  position: relative;
  display: grid;
  min-height: calc(100svh - 8px);
  overflow: hidden;
  place-items: center;
  padding: 48px 24px;
  background: var(--navy-900);
  color: var(--white);
}

.not-found > div {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
}

.not-found h1 {
  margin: 0;
  font-family: "Libre Bodoni", Georgia, serif;
  font-size: clamp(56px, 10vw, 108px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .94;
}

.not-found p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, .7);
  font-size: 17px;
}

.not-found > span {
  position: absolute;
  right: -4vw;
  bottom: -8vw;
  color: rgba(255, 255, 255, .04);
  font-family: "Libre Bodoni", Georgia, serif;
  font-size: clamp(240px, 50vw, 760px);
  font-weight: 600;
  letter-spacing: -.1em;
  line-height: .65;
}
