:root {
  --ink: #06182b;
  --ink-soft: #102a43;
  --paper: #f6f2e9;
  --paper-deep: #e8dfcf;
  --white: #fffdf8;
  --copper: #c99a46;
  --copper-dark: #93651f;
  --bronze: #e0b65d;
  --sage: #73849a;
  --line: rgba(24, 27, 26, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(26, 25, 22, 0.12);
  --shadow-small: 0 12px 32px rgba(26, 25, 22, 0.10);
  --radius: 26px;
  --radius-small: 15px;
  --max: 1240px;
  --header-height: 82px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 8%, rgba(183, 119, 69, 0.11), transparent 30rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--copper-dark);
}

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

::selection {
  background: var(--bronze);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-small);
}

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

.progress-bar {
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--bronze));
}

.container {
  width: min(calc(100% - 44px), var(--max));
  margin-inline: auto;
}

.container.narrow {
  width: min(calc(100% - 44px), 900px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

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

h1,
h2,
h3,
.display {
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7.7vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

h2 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.4vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.01;
}

h3 {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.026em;
  line-height: 1.12;
}

h4 {
  margin-bottom: 10px;
  font-size: 0.83rem;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  color: #444a47;
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  line-height: 1.48;
}

.lead.light {
  color: rgba(255, 253, 249, 0.77);
}

.small {
  font-size: 0.88rem;
  line-height: 1.55;
}

.muted {
  color: #666d69;
}

.light-muted {
  color: rgba(255, 253, 249, 0.64);
}

.kicker-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--copper-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker-line::before {
  width: 45px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section {
  padding: clamp(78px, 10vw, 150px) 0;
}

.section.compact {
  padding: clamp(60px, 7vw, 105px) 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(183, 119, 69, 0.19), transparent 30rem),
    var(--ink);
}

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

.section-white {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 50px;
  margin-bottom: clamp(44px, 6vw, 78px);
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.divider {
  height: 1px;
  margin: 42px 0;
  background: var(--line);
}

.divider.light {
  background: var(--line-light);
}

.source-ref {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 31px;
  height: 22px;
  margin-left: 0.18em;
  padding: 0 7px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--copper-dark);
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  vertical-align: 0.13em;
}

.source-ref:hover {
  color: var(--white);
  background: var(--copper-dark);
}

.source-ref.light {
  color: var(--bronze);
}

.source-ref.light:hover {
  color: var(--ink);
  background: var(--bronze);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #565d59;
  background: rgba(255, 253, 249, 0.52);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  line-height: 1.25;
  text-transform: uppercase;
}

.badge::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--copper);
}

.badge.dark {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 253, 249, 0.72);
  background: rgba(255, 255, 255, 0.05);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: var(--shadow-small);
}

.btn::after {
  content: "→";
  font-size: 1rem;
  transition: transform 180ms ease;
}

.btn:hover::after {
  transform: translateX(3px);
}

.btn-secondary {
  color: var(--ink);
  background: transparent;
}

.btn-secondary:hover {
  color: var(--ink);
  background: rgba(24, 27, 26, 0.06);
  box-shadow: none;
}

.btn-light {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.btn-light:hover {
  color: var(--ink);
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: transparent;
}

.btn-ghost-light:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.btn-plain::after,
.icon-btn::after {
  display: none;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  color: var(--white);
  background: rgba(24, 27, 26, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  text-decoration: none;
}

.brand:hover {
  color: var(--white);
}

.brand-mark {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 253, 249, 0.58);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 9px 11px;
  border-radius: 999px;
  color: rgba(255, 253, 249, 0.68);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.065em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta {
  margin-left: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0 auto;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  margin-block: 5px;
}

.nav-open .nav-toggle span {
  opacity: 0;
}

.nav-open .nav-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  color: var(--white);
  background: var(--ink);
}

.hero-grid {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 9vw, 140px) clamp(28px, 6vw, 96px) clamp(66px, 7vw, 110px) max(22px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 4% 8%, rgba(183, 119, 69, 0.25), transparent 20rem),
    linear-gradient(140deg, #171a19 0%, #171a19 65%, #202422 100%);
}

.hero-copy::after {
  position: absolute;
  z-index: -1;
  right: 35px;
  bottom: 38px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-copy h1 {
  max-width: 780px;
}

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

.hero-subtitle {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.72);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.5;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: #29302d;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(24, 27, 26, 0.28), transparent 24%),
    linear-gradient(0deg, rgba(24, 27, 26, 0.47), transparent 40%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% 42%;
  filter: saturate(0.72) contrast(1.04) brightness(0.84);
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 253, 249, 0.69);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-caption strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
}

.hero-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink-soft);
}

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

.stat {
  min-height: 150px;
  padding: 30px clamp(22px, 3vw, 40px);
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}

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

.stat strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.stat span {
  display: block;
  color: rgba(255, 253, 249, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.5;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.split.top {
  align-items: start;
}

.split-portrait {
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d8d2c9;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame.portrait {
  aspect-ratio: 4 / 5.3;
}

.image-frame.landscape {
  aspect-ratio: 16 / 10;
}

.image-frame.square {
  aspect-ratio: 1;
}

.image-frame .image-note {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 11px;
  color: rgba(255, 253, 249, 0.80);
  background: rgba(24, 27, 26, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.72rem;
  line-height: 1.45;
}

.quote-card {
  position: relative;
  padding: clamp(34px, 5vw, 65px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.72);
  box-shadow: var(--shadow-small);
}

.quote-card::before {
  position: absolute;
  top: 18px;
  left: 27px;
  color: rgba(183, 119, 69, 0.25);
  content: "“";
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 1;
}

.quote-card blockquote {
  position: relative;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.75rem);
  line-height: 1.32;
}

.quote-card footer {
  margin-top: 27px;
  color: #626965;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.55;
  text-transform: uppercase;
}

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

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

.card {
  min-height: 100%;
  padding: clamp(27px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 253, 249, 0.64);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.card:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.card .number {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--copper-dark);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.card.dark-card {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.card.dark-card:hover {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.card.dark-card p {
  color: rgba(255, 253, 249, 0.64);
}

.card.dark-card .number {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--bronze);
}

.icon-line {
  width: 44px;
  height: 3px;
  margin-bottom: 28px;
  background: var(--copper);
}

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

.feature-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 15px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list .tick {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--copper);
  font-size: 0.75rem;
  font-weight: 900;
}

.feature-list strong {
  display: block;
  margin-bottom: 3px;
}

.feature-list span:not(.tick) {
  color: #626965;
}

.case-study {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.case-study + .case-study {
  margin-top: 26px;
}

.case-study-media {
  min-height: 430px;
  background: #d1ccc4;
}

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

.case-study-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 78px);
}

.case-study-body .outcome {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #555c58;
}

.case-study.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.case-study.reverse .case-study-media {
  order: 2;
}

.callout-band {
  position: relative;
  overflow: hidden;
  padding: clamp(55px, 8vw, 100px) 0;
  color: var(--white);
  background: var(--copper-dark);
}

.callout-band::after {
  position: absolute;
  top: -95px;
  right: -70px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.callout-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
}

.callout-inner h2 {
  max-width: 850px;
  margin-bottom: 10px;
}

.callout-inner p {
  max-width: 730px;
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.73);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 13vw, 190px) 0 clamp(74px, 10vw, 135px);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(183, 119, 69, 0.25), transparent 31rem),
    var(--ink);
}

.page-hero::before {
  position: absolute;
  top: -220px;
  right: -120px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.page-hero h1 {
  max-width: 1000px;
  margin-bottom: 28px;
  font-size: clamp(3.8rem, 8.5vw, 8rem);
}

.page-hero .lead {
  max-width: 920px;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.bio-intro-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(50px, 9vw, 120px);
}

.bio-intro-grid .image-frame {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.prose {
  font-size: 1.06rem;
}

.prose h2 {
  margin-top: 1.55em;
}

.prose h3 {
  margin-top: 1.75em;
}

.prose p {
  max-width: 760px;
  color: #424844;
}

.prose p:first-of-type {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.38rem;
  line-height: 1.55;
}

.prose .pull-quote {
  max-width: 780px;
  margin: 55px 0;
  padding: 35px 0 35px 32px;
  border-left: 3px solid var(--copper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
  line-height: 1.38;
}

.bio-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 253, 249, 0.65);
}

.bio-fact {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.bio-fact:last-child {
  border-right: 0;
}

.bio-fact strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.bio-fact span {
  color: #69706c;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 20px;
}

.timeline::before {
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 112px;
  width: 1px;
  content: "";
  background: var(--line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 85px minmax(0, 1fr);
  gap: 54px;
  padding: 0 0 46px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-year {
  color: var(--copper-dark);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.3;
  text-align: right;
}

.timeline-content {
  position: relative;
  padding-left: 2px;
}

.timeline-content::before {
  position: absolute;
  top: 8px;
  left: -34px;
  width: 11px;
  height: 11px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  content: "";
  background: var(--copper);
  box-shadow: 0 0 0 1px var(--copper);
}

.timeline-content h3 {
  margin-bottom: 9px;
  font-size: 1.55rem;
}

.timeline-content p {
  max-width: 790px;
  margin-bottom: 0;
  color: #555c58;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 14px;
}

.photo-strip .image-frame {
  border-radius: 17px;
  box-shadow: none;
}

.photo-strip .image-frame:first-child {
  grid-row: span 2;
}

.photo-strip img {
  min-height: 100%;
  object-fit: cover;
}

.photo-strip .wide {
  grid-column: span 2;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.process-step {
  min-height: 310px;
  padding: 30px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.process-step:last-child {
  border-right: 0;
}

.process-step .step-no {
  display: block;
  margin-bottom: 62px;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.process-step h3 {
  font-size: 1.55rem;
}

.process-step p {
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.6);
  font-size: 0.91rem;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  padding: clamp(30px, 5vw, 55px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.68);
}

.service-card::after {
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 150px;
  height: 150px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.service-card .service-index {
  display: inline-flex;
  margin-bottom: 60px;
  color: var(--copper-dark);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.service-card p {
  max-width: 520px;
  color: #5f6662;
}

.service-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  color: #444a47;
  font-size: 0.9rem;
}

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

.portfolio-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  color: var(--white);
  background: var(--ink-soft);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  color: var(--white);
  background: #363c39;
}

.portfolio-card .portfolio-type {
  color: var(--bronze);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-card h3 {
  margin-bottom: 13px;
  font-size: 2rem;
}

.portfolio-card p {
  color: rgba(255, 253, 249, 0.62);
}

.portfolio-card .arrow {
  font-size: 1.8rem;
}

.awards-feature {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.awards-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 86px);
}

.awards-feature-copy p {
  max-width: 650px;
  color: rgba(255, 253, 249, 0.67);
}

.awards-feature-media {
  min-height: 520px;
}

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

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.filter-button {
  min-height: 42px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4f5652;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

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

.award-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 253, 249, 0.68);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.award-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-small);
}

.award-card.is-hidden {
  display: none;
}

.award-year {
  margin-bottom: 48px;
  color: var(--copper-dark);
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
}

.award-card h3 {
  font-size: 1.6rem;
}

.award-card p {
  color: #5a615d;
}

.award-card .award-foot {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.award-card .award-type {
  color: #777d79;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.award-card .award-source {
  color: var(--copper-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}

.award-card .award-source:hover {
  text-decoration: underline;
}

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

.award-logo-card {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--white);
}

.award-logo-card img {
  max-width: 170px;
  max-height: 180px;
  object-fit: contain;
}

.sources-list {
  display: grid;
  gap: 18px;
  counter-reset: source;
}

.source-card {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 253, 249, 0.72);
  scroll-margin-top: 110px;
}

.source-card::before {
  counter-increment: source;
  content: "S" counter(source);
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.source-card h3 {
  margin-bottom: 5px;
  font-size: 1.42rem;
}

.source-card p {
  max-width: 760px;
  margin-bottom: 0;
  color: #5b625e;
}

.source-card .source-link {
  align-self: center;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.source-card .source-link:hover {
  color: var(--white);
  background: var(--ink);
}

.editorial-note {
  padding: clamp(35px, 5vw, 55px);
  border-left: 5px solid var(--copper);
  color: var(--white);
  background: var(--ink-soft);
}

.editorial-note h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.editorial-note p {
  max-width: 900px;
  color: rgba(255, 253, 249, 0.68);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: clamp(40px, 6vw, 75px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 164, 119, 0.22), transparent 19rem),
    var(--ink);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
}

.cta-panel p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.67);
}

.site-footer {
  color: var(--white);
  background: #111312;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(230px, 0.45fr) minmax(230px, 0.45fr);
  gap: 55px;
  padding: 78px 0 60px;
}

.footer-brand .brand-mark {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.footer-brand h2 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3.35rem);
}

.footer-brand p {
  max-width: 610px;
  color: rgba(255, 253, 249, 0.57);
}

.footer-column h3 {
  margin-bottom: 18px;
  color: var(--bronze);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: rgba(255, 253, 249, 0.67);
  font-size: 0.9rem;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 253, 249, 0.44);
  font-size: 0.73rem;
  line-height: 1.55;
}

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  opacity: 0;
  color: var(--white);
  background: rgba(24, 27, 26, 0.92);
  box-shadow: var(--shadow-small);
  cursor: pointer;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

.only-print {
  display: none;
}

@media (max-width: 1100px) {
  .site-nav a:not(.header-cta) {
    padding-inline: 8px;
    font-size: 0.66rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(370px, 0.97fr);
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

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

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

  .process-step:nth-child(3) {
    border-right: 0;
  }

  .process-step:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .process-step:nth-child(4) {
    grid-column: span 1;
  }

  .process-step:nth-child(5) {
    grid-column: span 2;
  }

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

  .footer-main {
    grid-template-columns: minmax(0, 1fr) repeat(2, minmax(180px, 0.4fr));
  }
}

@media (max-width: 1040px) {
  :root {
    --header-height: 72px;
  }

  .container,
  .container.narrow {
    width: min(calc(100% - 32px), var(--max));
  }

  .nav-toggle {
    position: relative;
    display: block;
  }

  .nav-toggle span,
  .nav-toggle::before,
  .nav-toggle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
  }

  .nav-toggle::before {
    transform: translate(-50%, calc(-50% - 6px));
  }

  .nav-toggle::after {
    transform: translate(-50%, calc(-50% + 6px));
  }

  .nav-open .nav-toggle::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav-open .nav-toggle::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    z-index: 1200;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    height: calc(100dvh - var(--header-height));
    min-height: calc(100vh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 26px 18px 40px;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    background: rgba(24, 27, 26, 0.995);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a,
  .site-nav a:not(.header-cta) {
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 0.8rem;
  }

  .header-cta {
    margin: 10px 0 0;
    text-align: center;
  }

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

  .hero-copy {
    min-height: 650px;
    padding: 90px 24px 70px;
  }

  .hero-media {
    min-height: 560px;
  }

  .section-heading,
  .split,
  .split-portrait,
  .bio-intro-grid,
  .case-study,
  .case-study.reverse,
  .awards-feature {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    gap: 8px;
  }

  .bio-intro-grid .image-frame {
    position: relative;
    top: auto;
    max-width: 580px;
  }

  .case-study.reverse .case-study-media {
    order: 0;
  }

  .callout-inner,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .awards-feature-media {
    min-height: 460px;
  }

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

  .process-step,
  .process-step:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .process-step:nth-child(even) {
    border-right: 0;
  }

  .process-step:nth-child(5) {
    grid-column: span 2;
    border-right: 0;
    border-bottom: 0;
  }

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

  .bio-fact:nth-child(2) {
    border-right: 0;
  }

  .bio-fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small {
    font-size: 0.56rem;
  }

  .hero-copy {
    min-height: 600px;
  }

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

  .hero-caption {
    right: 18px;
    left: 18px;
  }

  .stats-grid,
  .cards-grid,
  .cards-grid.two,
  .service-grid,
  .awards-grid,
  .portfolio-grid,
  .award-logos {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 125px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

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

  .process-step,
  .process-step:nth-child(3),
  .process-step:nth-child(even),
  .process-step:nth-child(5) {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step .step-no {
    margin-bottom: 35px;
  }

  .timeline::before {
    left: 16px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 46px;
  }

  .timeline-year {
    text-align: left;
  }

  .timeline-content::before {
    left: -36px;
  }

  .photo-strip {
    grid-template-columns: 1fr 1fr;
  }

  .photo-strip .image-frame:first-child {
    grid-column: span 2;
    grid-row: auto;
  }

  .photo-strip .wide {
    grid-column: span 2;
  }

  .bio-facts {
    grid-template-columns: 1fr;
  }

  .bio-fact,
  .bio-fact:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .bio-fact:last-child {
    border-bottom: 0;
  }

  .source-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 17px;
  }

  .source-card::before {
    width: 48px;
    height: 48px;
  }

  .source-card .source-link {
    grid-column: 2;
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media print {
  :root {
    --paper: #ffffff;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .site-header,
  .back-to-top,
  .progress-bar,
  .page-actions,
  .btn-row,
  .callout-band,
  .cta-panel,
  .site-footer,
  .filter-bar {
    display: none !important;
  }

  .page-hero {
    padding: 28px 0;
    color: #000;
    background: #fff;
    border-bottom: 1px solid #aaa;
  }

  .page-hero h1 {
    font-size: 44pt;
  }

  .page-hero .lead,
  .lead.light,
  .light-muted {
    color: #333;
  }

  .section {
    padding: 32px 0;
  }

  .image-frame,
  .card,
  .award-card,
  .case-study,
  .quote-card,
  .source-card {
    box-shadow: none;
    break-inside: avoid;
  }

  .only-print {
    display: block;
  }

  a {
    text-decoration: none;
  }
}


/* ──────────────────────────────────────────────────────────────────────────
   2026 BOOK EDITION — current portrait, life chronology and impact pages
   ────────────────────────────────────────────────────────────────────────── */
.site-header {
  background: rgba(6, 24, 43, 0.96);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--bronze);
}

.hero-copy {
  background:
    radial-gradient(circle at 9% 10%, rgba(224, 182, 93, 0.22), transparent 21rem),
    linear-gradient(140deg, #06182b 0%, #081d33 62%, #102a43 100%);
}

.hero-media {
  background: #0b2740;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(6, 24, 43, 0.35), transparent 28%),
    linear-gradient(0deg, rgba(6, 24, 43, 0.58), transparent 42%);
}

.hero-media img {
  object-position: 50% 36%;
  filter: saturate(0.95) contrast(1.04) brightness(0.88);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-badges .badge {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 253, 248, 0.78);
  background: rgba(255, 255, 255, 0.05);
}

.current-profile-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.current-profile-card figure {
  min-height: 470px;
  margin: 0;
  background: var(--ink-soft);
}

.current-profile-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
}

.current-profile-card .profile-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 72px);
}

.current-profile-card .profile-note {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #68727c;
  font-size: 0.8rem;
}

.life-preview {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 12%, rgba(224, 182, 93, 0.18), transparent 28rem),
    var(--ink);
}

.life-preview .section-heading {
  margin-bottom: 38px;
}

.life-preview-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.life-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
}

.life-card .life-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #122b43;
}

.life-card .life-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(6, 24, 43, 0.56), transparent 46%);
  pointer-events: none;
}

.life-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

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

.life-card[data-stage="early"] img { object-position: 50% 38%; }
.life-card[data-stage="school"] img { object-position: 50% 23%; }
.life-card[data-stage="graduation"] img { object-position: 50% 50%; }
.life-card[data-stage="startup"] img { object-position: 50% 50%; }
.life-card[data-stage="group-house"] img { object-position: 50% 70%; }
.life-card[data-stage="charity"] img { object-position: 50% 40%; }
.life-card[data-stage="current"] img { object-position: 50% 30%; }

.life-card .life-copy {
  min-height: 180px;
  padding: 18px 17px 20px;
}

.life-card .life-index {
  display: inline-grid;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--bronze);
  font-size: 0.68rem;
  font-weight: 900;
}

.life-card h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.life-card p {
  margin: 0;
  color: rgba(255, 253, 248, 0.63);
  font-size: 0.78rem;
  line-height: 1.52;
}

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

.journey-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  grid-template-columns: minmax(180px, 0.44fr) minmax(0, 0.56fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow-small);
}

.journey-card.featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(300px, 0.45fr) minmax(0, 0.55fr);
}

.journey-card figure {
  min-height: 360px;
  margin: 0;
  background: #d9d4ca;
}

.journey-card.featured figure {
  min-height: 480px;
}

.journey-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-card[data-stage="early"] img { object-position: 50% 36%; }
.journey-card[data-stage="school"] img { object-position: 50% 24%; }
.journey-card[data-stage="graduation"] img { object-position: 50% 50%; }
.journey-card[data-stage="startup"] img { object-position: 50% 50%; }
.journey-card[data-stage="group-house"] img { object-position: 50% 70%; }
.journey-card[data-stage="charity"] img { object-position: 50% 37%; }
.journey-card[data-stage="current"] img { object-position: 50% 30%; }

.journey-card .journey-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
}

.journey-card .journey-era {
  margin-bottom: 13px;
  color: var(--copper-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.journey-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
}

.journey-card p:last-child {
  margin-bottom: 0;
}

.impact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: stretch;
  gap: 22px;
}

.impact-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 86px);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.impact-hero-media {
  overflow: hidden;
  min-height: 560px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

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

.impact-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 253, 248, 0.72);
}

.impact-card .impact-no {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--copper-dark);
  font-family: var(--serif);
  font-size: 2.2rem;
}

.impact-card h3 {
  font-size: 1.6rem;
}

.impact-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 14px;
}

.impact-gallery figure {
  overflow: hidden;
  min-height: 320px;
  margin: 0;
  border-radius: 18px;
  background: #d8d2c9;
}

.impact-gallery figure:first-child {
  grid-row: span 2;
  min-height: 654px;
}

.impact-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-gallery figure:first-child img { object-position: 50% 39%; }

.context-note {
  padding: 22px 24px;
  border-left: 4px solid var(--copper);
  color: #59626b;
  background: rgba(201, 154, 70, 0.10);
  font-size: 0.88rem;
}

.book-edition-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.72);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.book-edition-ribbon::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--bronze);
}

@media (max-width: 1180px) {
  .life-preview-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .life-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 1040px) {
  .site-nav {
    background: rgba(6, 24, 43, 0.995);
  }

  .current-profile-card,
  .impact-hero-grid {
    grid-template-columns: 1fr;
  }

  .current-profile-card figure {
    min-height: 620px;
  }

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

  .journey-card.featured {
    grid-column: auto;
  }

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

@media (max-width: 760px) {
  .life-preview-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 0 0 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .life-card,
  .life-card:last-child {
    min-width: min(78vw, 300px);
    grid-column: auto;
    scroll-snap-align: start;
  }

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

  .journey-card figure,
  .journey-card.featured figure {
    min-height: 430px;
  }

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

  .impact-gallery figure,
  .impact-gallery figure:first-child {
    grid-row: auto;
    min-height: 420px;
  }

  .current-profile-card figure {
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .brand-copy strong {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .current-profile-card figure,
  .journey-card figure,
  .journey-card.featured figure,
  .impact-gallery figure,
  .impact-gallery figure:first-child {
    min-height: 360px;
  }
}


/* Final book-led additions — August 2026 */
.beyond-boardroom {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 12%, rgba(224, 182, 93, 0.14), transparent 28rem),
    linear-gradient(145deg, #07182a 0%, #0e2942 100%);
}
.beyond-boardroom .card {
  border-color: rgba(255,255,255,.14);
  color: var(--white);
  background: rgba(255,255,255,.055);
  box-shadow: none;
}
.beyond-boardroom .card p { color: rgba(255,253,248,.69); }
.beyond-boardroom .number { color: var(--ink); background: var(--bronze); border-color: transparent; }
.beyond-boardroom .source-ref { color: var(--bronze); border-color: var(--bronze); }
.current-recognition {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(224,182,93,.2), transparent 24rem),
    var(--ink-soft);
}
.current-recognition-grid {
  display: grid;
  grid-template-columns: minmax(0,.78fr) minmax(0,1.22fr);
  gap: clamp(34px,7vw,100px);
  align-items: center;
}
.current-recognition-grid p { color: rgba(255,253,248,.72); }
.book-edition-ribbon {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: rgba(255,253,248,.76);
  background: rgba(255,255,255,.035);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
}
.book-edition-ribbon::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--bronze);
  content: "";
}
@media (max-width: 820px) {
  .current-recognition-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .book-edition-ribbon { border-radius: 14px; font-size: .58rem; }
}

/* Preserve readable card copy when a light case study sits inside a dark section. */
.case-study-body,
.section-dark .case-study-body {
  color: var(--ink);
}
.case-study-body h3,
.section-dark .case-study-body h3 {
  color: var(--ink);
}
.case-study-body p:not(.outcome),
.section-dark .case-study-body p:not(.outcome) {
  color: #424a47;
}
