:root {
  color-scheme: dark;
  --navy: #e8edf2;
  --navy-soft: #d9e1e8;
  --ink: #d8dfe6;
  --muted: #a8b3bf;
  --quiet: #8795a3;
  --line: #273746;
  --line-dark: #3a4c5d;
  --paper: #0e1721;
  --white: #111c27;
  --accent: #c5a56f;
  --accent-soft: #ddbf8d;
  --background: #0a121a;
  --surface-raised: #152331;
  --on-accent: #111820;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --header-height: 74px;
  --shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--accent);
  color: var(--on-accent);
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

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

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

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

button {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.wrap {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(58, 76, 93, 0.72);
  background: rgba(10, 18, 26, 0.96);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

@supports (backdrop-filter: blur(12px)) {
  .site-header {
    background: rgba(10, 18, 26, 0.9);
    backdrop-filter: blur(14px);
  }
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
}

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

.brand-initials {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.brand-name {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #b5c0cb;
  font-size: 12px;
  font-weight: 600;
}

.site-nav > a:not(.nav-resume) {
  position: relative;
  padding: 10px 0;
}

.site-nav > a:not(.nav-resume)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-resume):hover::after,
.site-nav > a:not(.nav-resume).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-resume {
  padding: 11px 16px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  transition: background 180ms ease, color 180ms ease;
}

.nav-resume:hover {
  background: transparent;
  color: var(--accent-soft);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-dark);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--navy);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  padding: calc(var(--header-height) + 88px) 0 0;
  background: var(--background);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: clamp(60px, 8vw, 118px);
  align-items: end;
}

.hero-name,
.overline,
.case-label,
.earlier-date,
.technical-index {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-main h1 {
  max-width: 850px;
  margin-top: 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(4rem, 6.8vw, 6.45rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero-main h1 span {
  display: block;
  color: #aebbc7;
}

.hero-summary {
  max-width: 750px;
  margin-top: 34px;
  color: #b3bec9;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.hero-contact li {
  display: inline-flex;
  align-items: center;
}

.hero-contact li:not(:last-child)::after {
  width: 3px;
  height: 3px;
  margin-left: 22px;
  border-radius: 50%;
  background: var(--line-dark);
  content: "";
}

.hero-contact a {
  color: var(--accent-soft);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #596a7a;
  text-underline-offset: 3px;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line-dark);
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--on-accent);
}

.button-primary:hover {
  border-color: var(--accent-soft);
  background: var(--accent-soft);
}

.button-secondary {
  background: var(--white);
  color: var(--navy);
}

.button-secondary:hover {
  border-color: #536779;
  background: var(--surface-raised);
}

.executive-profile {
  min-width: 0;
  align-self: center;
}

.identity-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: #111c27;
}

.executive-portrait {
  position: relative;
  width: 132px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #0a121a;
}

.executive-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(10, 18, 26, 0.28));
  pointer-events: none;
}

.executive-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
  filter: saturate(0.82) contrast(1.06) brightness(0.94);
}

.identity-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.identity-name {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.identity-role {
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.identity-location {
  color: var(--quiet);
  font-size: 12px;
  line-height: 1.4;
}

.executive-profile dl {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 12px;
  border: 1px solid var(--line);
  background: #111c27;
}

.executive-profile dl > div {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 13px 16px;
  border-top: 1px solid var(--line);
}

.executive-profile dl > div:first-child {
  border-top: 0;
}

.executive-profile dt {
  color: var(--quiet);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.executive-profile dd {
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.impact-summary {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 86px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  list-style: none;
}

.impact-summary li {
  min-height: 150px;
  padding: 27px 24px 24px;
  border-right: 1px solid var(--line);
}

.impact-summary li:first-child {
  padding-left: 0;
}

.impact-summary li:last-child {
  padding-right: 0;
  border-right: 0;
}

.impact-summary strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.impact-summary span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.section {
  padding-block: clamp(88px, 9vw, 126px);
}

.section-intro {
  max-width: 780px;
}

.section-intro h2,
.contact h2 {
  margin-top: 15px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.75rem, 5vw, 4.65rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-intro-split {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
}

.section-intro-split > div {
  max-width: 760px;
}

.section-intro-split > p {
  width: min(360px, 34%);
  padding-bottom: 7px;
  color: var(--muted);
  font-size: 14px;
}

.profile {
  background: var(--background);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(470px, 1.2fr);
  gap: clamp(64px, 9vw, 132px);
  margin-top: 66px;
}

.profile-copy {
  max-width: 510px;
}

.profile-lead {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(25px, 2.8vw, 34px);
  line-height: 1.3;
}

.profile-copy > p:not(.profile-lead) {
  margin-top: 24px;
  color: var(--muted);
  font-size: 15px;
}

.expertise {
  border-top: 2px solid var(--accent);
}

.expertise h3 {
  padding: 20px 0 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.expertise dl > div {
  display: grid;
  grid-template-columns: 175px 1fr;
  gap: 30px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.expertise dt {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.expertise dd {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.experience {
  background: var(--paper);
}

.experience-list {
  margin-top: 64px;
  border-top: 2px solid var(--accent);
}

.position {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 54px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line-dark);
}

.position-meta {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.position-meta p:first-child {
  color: var(--navy);
  font-weight: 700;
}

.position-meta span {
  display: inline-block;
  margin-top: 13px;
  padding: 5px 7px;
  border: 1px solid var(--line-dark);
  color: #98a6b4;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.position-current .position-meta span {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--on-accent);
}

.position-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.position-header h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.position-header div > p {
  margin-top: 6px;
  color: #b8c4cf;
  font-size: 13px;
  font-weight: 700;
}

.inline-link,
.case-link {
  display: inline-block;
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #657789;
  text-underline-offset: 4px;
}

.inline-link:hover,
.case-link:hover {
  text-decoration-color: var(--accent-soft);
}

.position-scope {
  margin-top: 24px;
  color: #c8d1da;
  font-size: 15px;
  font-weight: 600;
}

.impact-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  list-style: none;
}

.impact-list li,
.technical-item li {
  position: relative;
  padding-left: 19px;
  color: #abb6c1;
  font-size: 14px;
}

.impact-list li::before,
.technical-item li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.technology {
  margin-top: 22px;
  color: var(--quiet);
  font-size: 11px;
  line-height: 1.6;
}

.technology strong {
  color: #b3bfca;
}

.selected-work {
  background: var(--background);
}

.case-studies {
  display: grid;
  gap: 26px;
  margin-top: 64px;
}

.case-study {
  border: 1px solid var(--line);
  background: var(--white);
}

.platform-case {
  padding: clamp(38px, 5vw, 64px);
  border-top: 3px solid var(--accent);
  background: #101b26;
}

.platform-case-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 30px 70px;
  align-items: end;
}

.platform-case-header .case-label {
  grid-column: 1 / -1;
}

.platform-case-header h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.platform-case-header > p:last-child {
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 15px;
}

.platform-video {
  margin-top: 42px;
}

.platform-video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #05080c;
}

.platform-video video {
  display: block;
  width: 100%;
  height: 100%;
  background: #05080c;
  object-fit: contain;
}

.platform-video figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 11px;
  color: var(--quiet);
  font-size: 10px;
  line-height: 1.45;
}

.platform-video figcaption span:last-child {
  flex: 0 0 auto;
}

.platform-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.platform-metrics > div {
  padding: 25px 22px;
  border-right: 1px solid var(--line);
}

.platform-metrics > div:first-child {
  padding-left: 0;
}

.platform-metrics > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.platform-metrics dt {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}

.platform-metrics dd {
  margin-top: 7px;
  color: var(--quiet);
  font-size: 10px;
  line-height: 1.4;
}

.platform-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 40px;
}

.platform-detail-grid section {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.platform-detail-grid h4 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
}

.platform-detail-grid p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.case-study-featured {
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  box-shadow: var(--shadow);
}

.case-content {
  padding: clamp(34px, 4vw, 54px);
}

.case-content h3,
.case-study-text h3 {
  margin-top: 14px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.case-content > p:not(.case-label, .case-technology) {
  margin-top: 21px;
  color: var(--muted);
  font-size: 15px;
}

.case-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.case-outcomes dt {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.case-outcomes dd {
  margin-top: 5px;
  color: var(--quiet);
  font-size: 10px;
}

.case-link {
  margin-top: 31px;
}

.case-media {
  background: #0c151e;
}

.cherry-media {
  display: flex;
  min-width: 0;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  padding: 48px 42px 0;
  overflow: hidden;
}

.cherry-media figure {
  width: 42%;
  max-width: 235px;
  overflow: hidden;
  border: 5px solid #344250;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background: #070a0d;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
}

.cherry-media figure:last-child {
  width: 38%;
  max-width: 210px;
}

.cherry-media img {
  width: 100%;
}

.media-case {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  background: #101b26;
  box-shadow: var(--shadow);
}

.media-case-portrait {
  grid-template-columns: minmax(300px, 1fr) minmax(340px, 0.72fr);
}

.media-case-copy {
  align-self: center;
  padding: clamp(36px, 5vw, 66px);
}

.media-case-copy h3 {
  margin-top: 14px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.15rem, 3.7vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.media-case-copy > p:not(.case-label, .case-technology) {
  max-width: 58ch;
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
}

.case-feature-list {
  display: grid;
  gap: 9px;
  margin-top: 25px;
  list-style: none;
}

.case-feature-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.case-feature-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--accent);
}

.media-case-copy > .health-disclaimer {
  margin-top: 19px;
  color: var(--quiet);
  font-size: 10px;
  line-height: 1.5;
}

.media-case-figure {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(30px, 4vw, 54px);
  border-left: 1px solid var(--line);
  background: #0c151e;
}

.media-case-frame {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #05080c;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
}

.media-case-frame video {
  display: block;
  width: 100%;
  height: 100%;
  background: #05080c;
  object-fit: contain;
}

.landscape-frame {
  aspect-ratio: 1600 / 876;
}

.portrait-frame {
  width: min(100%, 292px);
  aspect-ratio: 596 / 1280;
  margin-inline: auto;
  border-radius: 20px;
}

.media-case-figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  color: var(--quiet);
  font-size: 10px;
  line-height: 1.45;
}

.media-case-figure figcaption span:last-child {
  flex: 0 0 auto;
}

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

.case-study-compact {
  overflow: hidden;
}

.case-study-compact .case-content {
  padding: 34px 38px 40px;
}

.case-study-compact .case-content h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
}

.landscape-media {
  height: 320px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0b131b;
}

.landscape-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: transform 400ms ease;
}

.case-study-compact:hover .landscape-media img {
  transform: scale(1.012);
}

.planet-official-media {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0b131b;
}

.planet-official-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 400ms ease;
}

.case-study-compact:hover .planet-official-media img {
  transform: scale(1.012);
}

.case-technology {
  margin-top: 22px;
  color: var(--quiet);
  font-size: 11px;
}

.case-study-text {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 70px;
  align-items: start;
  padding: 46px 50px;
  border-top: 3px solid var(--accent);
}

.case-study-text h3 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.case-study-text > div:last-child > p {
  color: var(--muted);
  font-size: 15px;
}

.technical {
  background: var(--paper);
}

.technical-list {
  margin-top: 62px;
  border-top: 2px solid var(--accent);
}

.technical-item {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 7vw, 96px);
  padding: 40px 0;
  border-bottom: 1px solid var(--line-dark);
}

.technical-item h3 {
  margin-top: 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.technical-item .inline-link {
  margin-top: 15px;
}

.technical-item ul {
  display: grid;
  gap: 12px;
  list-style: none;
}

.earlier {
  background: var(--background);
}

.earlier-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
  margin-top: 62px;
  border-top: 2px solid var(--accent);
}

.earlier-role {
  padding: 31px 0 36px;
  border-bottom: 1px solid var(--line-dark);
}

.earlier-role h3 {
  margin-top: 15px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.earlier-title {
  color: #b8c4cf;
  font-size: 12px;
  font-weight: 700;
}

.earlier-role > p:last-child {
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
}

.contact {
  padding-block: clamp(84px, 9vw, 122px);
  background: #08111a;
  color: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.7fr);
  gap: clamp(70px, 10vw, 140px);
  align-items: end;
}

.contact .overline {
  color: var(--accent);
}

.contact h2 {
  color: var(--navy);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.contact-layout > div:first-child > p:last-child {
  max-width: 650px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 15px;
}

.contact-details {
  border-top: 1px solid var(--line-dark);
}

.contact-details > a,
.language-row {
  display: grid;
  min-height: 72px;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}

.contact-details span {
  color: var(--quiet);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.contact-details a strong {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: text-decoration-color 180ms ease;
}

.contact-details a:hover strong {
  color: var(--accent-soft);
  text-decoration-color: var(--accent-soft);
}

.site-footer {
  padding-block: 25px;
  border-top: 1px solid var(--line);
  background: #08111a;
  color: var(--quiet);
  font-size: 11px;
}

.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.site-footer a,
.site-footer button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #c2ccd5;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.site-footer a:hover,
.site-footer button:hover {
  color: var(--accent-soft);
}

.print-header,
.print-only {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 1050px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 58px;
  }

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

  .impact-summary li {
    border-bottom: 1px solid var(--line);
  }

  .impact-summary li:nth-child(3) {
    border-right: 0;
  }

  .impact-summary li:nth-child(n + 4) {
    border-bottom: 0;
  }

  .impact-summary li:first-child {
    padding-left: 24px;
  }

  .profile-grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(430px, 1.3fr);
    gap: 58px;
  }

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

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .wrap {
    width: min(100% - 40px, 720px);
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 90px 32px 40px;
    background: var(--white);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.nav-resume) {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 600;
  }

  .site-nav > a:not(.nav-resume)::after {
    display: none;
  }

  .nav-resume {
    margin-top: 26px;
    padding: 14px 17px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 70px);
  }

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

  .executive-profile {
    max-width: 600px;
  }

  .impact-summary {
    margin-top: 64px;
  }

  .section-intro-split {
    display: block;
  }

  .section-intro-split > p {
    width: min(100%, 520px);
    margin-top: 22px;
  }

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

  .profile-copy {
    max-width: 620px;
  }

  .position {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 36px;
  }

  .platform-case-header,
  .platform-detail-grid {
    grid-template-columns: 1fr;
  }

  .platform-case-header {
    gap: 20px;
  }

  .platform-case-header > p:last-child {
    max-width: 650px;
    padding-bottom: 0;
  }

  .platform-detail-grid {
    gap: 22px;
  }

  .case-study-featured {
    grid-template-columns: 1fr;
  }

  .media-case,
  .media-case-portrait {
    grid-template-columns: 1fr;
  }

  .media-case-figure {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .cherry-media {
    min-height: 520px;
    order: -1;
  }

  .case-study-text {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .technical-item {
    grid-template-columns: 1fr;
    gap: 27px;
  }

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

  .contact-details {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 28px, 560px);
  }

  .nav-shell {
    width: calc(100% - 24px);
  }

  .brand {
    gap: 9px;
  }

  .brand-initials {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 49px);
  }

  .hero-main h1 {
    margin-top: 17px;
    font-size: clamp(3.2rem, 15vw, 4.7rem);
    line-height: 0.98;
  }

  .hero-summary {
    margin-top: 26px;
    font-size: 17px;
  }

  .hero-contact {
    display: grid;
    gap: 8px;
  }

  .hero-contact li:not(:last-child)::after {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .identity-card {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
  }

  .executive-portrait {
    width: 108px;
  }

  .identity-name {
    font-size: 22px;
  }

  .executive-profile dl > div {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 14px;
  }

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

  .impact-summary li,
  .impact-summary li:first-child,
  .impact-summary li:last-child {
    min-height: 135px;
    padding: 23px 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .impact-summary li:nth-child(2n) {
    border-right: 0;
  }

  .impact-summary li:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .impact-summary li:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 76px;
  }

  .section-intro h2,
  .contact h2 {
    font-size: clamp(2.55rem, 12vw, 3.65rem);
  }

  .profile-grid,
  .experience-list,
  .case-studies,
  .technical-list,
  .earlier-list {
    margin-top: 46px;
  }

  .expertise dl > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .position {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 0;
  }

  .position-meta span {
    margin-top: 8px;
  }

  .position-header {
    display: block;
  }

  .position-header .inline-link {
    margin-top: 13px;
  }

  .position-header h3 {
    font-size: 29px;
  }

  .position-scope {
    font-size: 14px;
  }

  .platform-case {
    padding: 32px 26px 36px;
  }

  .platform-video {
    margin-top: 31px;
  }

  .platform-video figcaption {
    display: grid;
    gap: 3px;
  }

  .platform-metrics {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 31px;
  }

  .platform-metrics > div,
  .platform-metrics > div:first-child,
  .platform-metrics > div:last-child {
    padding: 21px 14px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .platform-metrics > div:nth-child(2n) {
    border-right: 0;
  }

  .platform-metrics > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .impact-list li,
  .technical-item li {
    font-size: 14px;
  }

  .case-study-featured {
    min-height: 0;
  }

  .cherry-media {
    min-height: 390px;
    gap: 14px;
    padding: 34px 22px 0;
  }

  .cherry-media figure {
    width: 44%;
    border-width: 4px;
    border-radius: 18px 18px 0 0;
  }

  .case-content {
    padding: 31px 26px 35px;
  }

  .media-case-copy {
    padding: 34px 26px 38px;
  }

  .media-case-figure {
    padding: 26px;
  }

  .media-case-figure figcaption {
    display: grid;
    gap: 3px;
  }

  .portrait-frame {
    width: min(100%, 260px);
  }

  .case-study-grid {
    grid-template-columns: 1fr;
  }

  .landscape-media,
  .planet-official-media {
    height: 255px;
  }

  .case-study-compact .case-content {
    padding: 29px 26px 34px;
  }

  .case-study-text {
    padding: 32px 26px;
  }

  .earlier-list {
    grid-template-columns: 1fr;
  }

  .contact-details > a,
  .language-row {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .contact-details strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .site-footer .wrap {
    display: block;
  }

  .site-footer div {
    margin-top: 14px;
  }
}

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

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

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

@media print {
  :root {
    color-scheme: light;
    --navy: #13263b;
    --navy-soft: #263f59;
    --ink: #18222d;
    --muted: #5d6875;
    --quiet: #7d8791;
    --line: #d8dde3;
    --line-dark: #bdc5ce;
    --paper: #f5f7f9;
    --white: #ffffff;
    --accent: #a47843;
    --accent-soft: #c7a97a;
    --background: #ffffff;
    --surface-raised: #f5f7f9;
    --on-accent: #111820;
  }

  @page {
    size: A4;
    margin: 8mm 9mm;
  }

  *,
  *::before,
  *::after {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  html {
    scroll-padding-top: 0;
  }

  body {
    overflow: visible;
    background: #fff;
    color: #111;
    font-family: Arial, sans-serif;
    font-size: 7.5pt;
    line-height: 1.26;
  }

  a {
    color: inherit !important;
  }

  .site-header,
  .skip-link,
  .hero,
  .selected-work,
  .site-footer,
  .technical-item-token,
  .profile-copy,
  .profile .section-intro,
  .experience .section-intro > p,
  .experience .section-intro > div > p,
  .technical .section-intro > p,
  .earlier .section-intro > p,
  .earlier .section-intro > div > p,
  .contact-layout > div:first-child,
  .contact-details > a,
  .position-meta span,
  .inline-link {
    display: none !important;
  }

  .wrap {
    width: 100%;
  }

  .print-header {
    display: block;
    padding-bottom: 3.5mm;
    border-bottom: 0.25mm solid #aaa;
  }

  .screen-only {
    display: none !important;
  }

  .print-only {
    display: inline;
  }

  .print-header h1 {
    font-family: Georgia, serif;
    font-size: 22pt;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .print-header .print-title {
    margin-top: 2.5mm;
    color: #234968;
    font-size: 9pt;
    font-weight: 700;
  }

  .print-header .print-targets {
    margin-top: 1.2mm;
    color: #234968;
    font-size: 7.2pt;
    font-weight: 600;
  }

  .print-header > p:nth-of-type(2) {
    margin-top: 1.5mm;
    color: #555;
  }

  .print-header h2 {
    margin-top: 3.5mm;
    padding-bottom: 0.8mm;
    border-bottom: 0.2mm solid #bbb;
    font-family: Georgia, serif;
    font-size: 12pt;
  }

  .print-header h2 + p {
    margin-top: 1.4mm;
    font-size: 7.6pt;
  }

  /* Summary + skills live in print-header for ATS parsers */
  #profile {
    display: none !important;
  }

  .section {
    padding: 3.4mm 0 0;
  }

  .profile-grid {
    display: block;
    margin-top: 0;
  }

  .expertise {
    border-top: 0;
  }

  .expertise h3 {
    padding: 0 0 1mm;
    border-bottom: 0.2mm solid #aaa;
    font-family: Georgia, serif;
    font-size: 12pt;
  }

  .expertise dl > div {
    display: grid;
    grid-template-columns: 34mm 1fr;
    gap: 3mm;
    padding: 0.7mm 0;
    border-top: 0;
  }

  .expertise dt {
    color: #234968;
    font-size: 7.6pt;
  }

  .expertise dd {
    color: #222;
    font-size: 7pt;
    line-height: 1.25;
  }

  .experience,
  .technical,
  .earlier {
    background: #fff;
  }

  .experience .section-intro,
  .technical .section-intro,
  .earlier .section-intro {
    display: block;
  }

  .experience .section-intro h2,
  .technical .section-intro h2,
  .earlier .section-intro h2 {
    margin: 0 0 2mm;
    padding-bottom: 1mm;
    border-bottom: 0.2mm solid #aaa;
    font-family: Georgia, serif;
    font-size: 12pt;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.1;
  }

  .experience-list,
  .technical-list,
  .earlier-list {
    margin-top: 0;
    border-top: 0;
  }

  .position {
    display: grid;
    grid-template-columns: 34mm 1fr;
    gap: 3mm;
    padding: 1.5mm 0 0.8mm;
    border-bottom: 0;
    break-inside: avoid;
  }

  .position-current {
    break-inside: auto;
  }

  .position-meta {
    display: block;
    color: #555;
    font-size: 7.2pt;
  }

  .position-meta p:first-child {
    color: #555;
  }

  .position-content {
    padding-bottom: 1.2mm;
    border-bottom: 0.2mm solid #ccc;
  }

  .position-header h3 {
    font-family: Arial, sans-serif;
    font-size: 10pt;
    letter-spacing: 0;
  }

  .position-header div > p {
    margin-top: 0.5mm;
    color: #234968;
    font-size: 7.5pt;
  }

  .position-scope {
    margin-top: 0.8mm;
    color: #333;
    font-size: 6.9pt;
  }

  .impact-list {
    gap: 0.35mm;
    margin-top: 0.8mm;
  }

  .impact-list li,
  .technical-item li {
    padding-left: 3mm;
    color: #111;
    font-size: 6.8pt;
    line-height: 1.22;
  }

  .impact-list li::before,
  .technical-item li::before {
    top: 0.65em;
    width: 1.5mm;
    background: #111;
  }

  .technology {
    margin-top: 0.7mm;
    color: #555;
    font-size: 6.3pt;
    line-height: 1.22;
  }

  .technical-item {
    display: grid;
    grid-template-columns: 42mm 1fr;
    gap: 3mm;
    padding: 1.3mm 0;
    border-bottom: 0.2mm solid #ccc;
    break-inside: avoid;
  }

  .technical-index {
    color: #555;
    font-size: 6.8pt;
  }

  .technical-item h3 {
    margin-top: 0.5mm;
    font-family: Arial, sans-serif;
    font-size: 9pt;
    letter-spacing: 0;
  }

  .technical-item ul {
    gap: 0.35mm;
  }

  .earlier-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2mm 3mm;
  }

  .earlier-role {
    padding: 0.8mm 0;
    border: 0;
    break-inside: avoid;
  }

  .earlier-date {
    color: #555;
    font-size: 6.2pt;
    letter-spacing: 0;
    text-transform: none;
  }

  .earlier-role h3 {
    margin-top: 0.5mm;
    font-family: Arial, sans-serif;
    font-size: 8.3pt;
    letter-spacing: 0;
  }

  .earlier-title {
    color: #234968;
    font-size: 6.6pt;
  }

  .earlier-role > p:last-child {
    margin-top: 0.3mm;
    color: #222;
    font-size: 6.1pt;
    line-height: 1.18;
  }

  .contact {
    display: block;
    padding: 3mm 0 0;
    background: #fff;
    color: #111;
  }

  .contact-layout {
    display: block;
  }

  .contact-details {
    border-top: 0;
  }

  .language-row {
    display: grid;
    min-height: 0;
    grid-template-columns: 34mm 1fr;
    gap: 3mm;
    padding-top: 1mm;
    border-bottom: 0;
  }

  .contact-details span {
    color: #234968;
    font-size: 7.5pt;
    letter-spacing: 0;
    text-transform: none;
  }

  .contact-details strong {
    color: #111;
    font-size: 7.5pt;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }
}
