:root {
  --navy: #062c4e;
  --navy-deep: #031c32;
  --green: #5f9d5a;
  --green-dark: #2f6d4c;
  --orange: #f58b2b;
  --paper: #fbfaf7;
  --cream: #f1ede4;
  --ink: #102436;
  --muted: #627381;
  --line: rgba(8, 44, 75, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "DM Sans", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(22px, 4vw, 68px);
  background: rgba(251,250,247,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 14px; width: max-content; }
.brand img { width: 54px; height: 46px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; }
.brand strong { color: var(--navy); font-family: "Playfair Display", Georgia, serif; font-size: 20px; }
.brand small { margin-top: 2px; color: var(--green-dark); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.desktop-nav { display: flex; gap: 30px; font-size: 14px; font-weight: 600; }
.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 2px; background: var(--green); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 16px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 600; }
.back-link:hover { color: var(--navy); }
.language-picker { position: relative; }
.language-current { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: transparent; color: var(--navy); border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-weight: 700; }
.language-menu { position: absolute; top: calc(100% + 10px); right: 0; min-width: 150px; padding: 7px; opacity: 0; visibility: hidden; transform: translateY(-6px); background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 18px 50px rgba(0,31,56,.16); transition: .2s ease; }
.language-picker.open .language-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.language-menu button { display: block; width: 100%; padding: 10px 12px; text-align: left; border: 0; border-radius: 9px; background: transparent; color: var(--ink); cursor: pointer; }
.language-menu button:hover, .language-menu button.active { background: #edf3f1; color: var(--green-dark); }

.hero { position: relative; min-height: calc(100vh - 88px); overflow: hidden; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(50px,8vw,130px); padding: 90px clamp(24px,9vw,150px); background: var(--navy-deep); color: white; }
.hero::before { content: ""; position: absolute; width: 600px; height: 600px; left: -250px; bottom: -330px; border: 1px solid rgba(95,157,90,.5); border-radius: 50%; }
.hero::after { content: ""; position: absolute; width: 360px; height: 360px; right: -130px; top: -130px; border: 1px solid rgba(245,139,43,.45); border-radius: 50%; }
.hero-copy, .hero-visual { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 20px; color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; font-weight: 500; line-height: .98; letter-spacing: -.035em; }
h1 { margin: 0; font-size: clamp(64px,7.2vw,112px); }
.hero-role { margin: 22px 0 0; color: #89bd83; font-size: clamp(19px,2vw,27px); font-weight: 500; }
.hero-lead { max-width: 670px; margin: 25px 0 0; color: rgba(255,255,255,.76); font-size: clamp(17px,1.5vw,20px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 36px; }
.button { display: inline-flex; justify-content: center; padding: 15px 22px; border-radius: 999px; font-size: 14px; font-weight: 700; transition: .25s ease; }
.button-primary { background: var(--green); color: white; }
.button-primary:hover { transform: translateY(-2px); background: #70ae69; }
.button-ghost { border: 1px solid rgba(255,255,255,.5); color: white; }
.button-ghost:hover { background: white; color: var(--navy); }

.hero-visual { min-height: 650px; }
.portrait-frame { position: absolute; inset: 8% 5% 8% 12%; overflow: hidden; border-radius: 260px 260px 26px 26px; background: linear-gradient(150deg,#dce6dd,#f5f2e9); box-shadow: 0 35px 80px rgba(0,0,0,.32); }
.portrait-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 60%,rgba(3,28,50,.12)); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: saturate(.85) contrast(1.03); }
.fact { position: absolute; z-index: 2; min-width: 155px; padding: 17px 19px; background: rgba(251,250,247,.94); color: var(--navy); border-radius: 16px; box-shadow: 0 20px 45px rgba(0,0,0,.18); backdrop-filter: blur(8px); }
.fact strong { display: block; color: var(--green-dark); font-family: "Playfair Display", Georgia, serif; font-size: 29px; line-height: 1; }
.fact span { display: block; margin-top: 6px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.fact-one { left: 0; top: 20%; }
.fact-two { right: 0; top: 48%; }
.fact-three { left: 2%; bottom: 7%; }

.section { padding: 120px clamp(24px,9vw,150px); }
.section h2 { margin: 0; color: var(--navy); font-size: clamp(46px,5.2vw,76px); }
.profile { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px,9vw,150px); }
.profile-copy { padding-top: 24px; }
.profile-copy > p { margin: 0 0 24px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.profile-copy .large-copy { color: var(--ink); font-size: 22px; }
.profile-copy blockquote { margin: 38px 0 0; padding: 22px 0 22px 24px; border-left: 2px solid var(--green); color: var(--navy); font-family: "Playfair Display", Georgia, serif; font-size: 23px; line-height: 1.45; }

.expertise { background: #e9efeb; }
.expertise-heading { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,9vw,140px); align-items: end; margin-bottom: 58px; }
.expertise-heading > p { max-width: 520px; margin: 0 0 8px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.expertise-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.expertise-grid article { min-height: 370px; display: flex; flex-direction: column; padding: 30px; background: var(--paper); border: 1px solid rgba(6,44,78,.08); border-radius: 18px; }
.number { align-self: flex-start; padding-bottom: 8px; color: var(--green-dark); border-bottom: 2px solid var(--green); font-size: 12px; font-weight: 700; }
.expertise-grid h3 { max-width: 75%; margin: 58px 0 17px; color: var(--navy); font-family: "Playfair Display", Georgia, serif; font-size: clamp(28px,3vw,42px); font-weight: 500; line-height: 1.08; }
.expertise-grid p { margin: 0; color: var(--muted); line-height: 1.65; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 25px; }
.tags span { padding: 7px 10px; background: #edf2ee; color: var(--green-dark); border-radius: 999px; font-size: 11px; font-weight: 700; }

.career { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px,10vw,160px); }
.career-intro { position: sticky; top: 135px; align-self: start; }
.career-intro > p:last-child { max-width: 500px; margin: 28px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.timeline { position: relative; }
.timeline::before { content: ""; position: absolute; left: 69px; top: 10px; bottom: 10px; width: 1px; background: var(--line); }
.timeline article { position: relative; display: grid; grid-template-columns: 70px 1fr; gap: 30px; padding: 0 0 46px; }
.timeline article::before { content: ""; position: absolute; left: 64px; top: 7px; width: 11px; height: 11px; background: var(--paper); border: 3px solid var(--green); border-radius: 50%; }
.timeline time { padding-top: 2px; color: var(--green-dark); font-size: 12px; font-weight: 700; }
.timeline h3 { margin: 0 0 10px; color: var(--navy); font-family: "Playfair Display", Georgia, serif; font-size: 28px; font-weight: 500; }
.timeline p { margin: 0; color: var(--muted); line-height: 1.65; }
.timeline .current::before { background: var(--green); box-shadow: 0 0 0 6px rgba(95,157,90,.14); }

.collaborations { background: var(--navy); color: white; text-align: center; }
.collaborations h2 { color: white; }
.company-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; max-width: 1100px; margin: 50px auto 0; }
.company-cloud span { padding: 12px 17px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.78); font-size: 13px; }

.press-heading { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,9vw,140px); align-items: end; margin-bottom: 55px; }
.press-heading > p { max-width: 540px; margin: 0 0 8px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.press-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.press-grid a { min-height: 220px; display: flex; flex-direction: column; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s ease; }
.press-grid a:hover { background: #edf2ee; }
.press-date { color: var(--green-dark); font-size: 12px; font-weight: 700; }
.press-grid h3 { margin: 45px 0 20px; color: var(--navy); font-family: "Playfair Display", Georgia, serif; font-size: 25px; font-weight: 500; }
.open { margin-top: auto; color: var(--muted); font-size: 12px; font-weight: 700; }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px,10vw,160px); background: var(--cream); }
.contact-actions > p { max-width: 560px; margin: 8px 0 36px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.contact-actions > a { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-top: 1px solid var(--line); color: var(--navy); font-weight: 700; }
.contact-actions > a:last-child { border-bottom: 1px solid var(--line); }
footer { display: flex; align-items: center; justify-content: space-between; padding: 30px clamp(24px,5vw,70px); background: var(--navy-deep); color: rgba(255,255,255,.66); font-size: 13px; }
footer div { display: flex; gap: 18px; }
footer strong { color: white; }
footer a:hover { color: white; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 105px; }
  .hero-visual { min-height: 590px; width: min(650px,100%); justify-self: center; }
  .press-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  .site-header { height: 76px; padding: 0 16px; }
  .brand { gap: 9px; }
  .brand img { width: 40px; height: 38px; }
  .brand strong { font-size: 18px; }
  .brand small { max-width: 170px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 8px; letter-spacing: .1em; }
  .back-link span:last-child { display: none; }
  .header-actions { gap: 8px; }
  .language-current { padding: 8px 10px; }
  .hero { min-height: auto; padding: 88px 22px 60px; }
  h1 { font-size: clamp(58px,17vw,82px); }
  .hero-lead { font-size: 16px; line-height: 1.55; }
  .hero-actions { flex-direction: column; }
  .hero-visual { min-height: 485px; margin-top: 15px; }
  .portrait-frame { inset: 6% 5% 7% 8%; }
  .fact { min-width: 125px; padding: 13px; }
  .fact strong { font-size: 23px; }
  .fact span { max-width: 105px; font-size: 8px; }
  .fact-one { left: 0; }
  .fact-two { right: 0; }
  .section { padding: 84px 22px; }
  .profile, .expertise-heading, .career, .press-heading, .contact { grid-template-columns: 1fr; }
  .profile-copy { padding-top: 0; }
  .profile-copy .large-copy { font-size: 19px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-grid article { min-height: 340px; }
  .career-intro { position: static; }
  .timeline { margin-top: 15px; }
  .timeline::before { left: 0; }
  .timeline article { grid-template-columns: 1fr; gap: 10px; padding-left: 25px; }
  .timeline article::before { left: -6px; }
  .press-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; gap: 14px; }
  footer div { flex-direction: column; gap: 5px; }
}

@media (max-width: 420px) {
  .hero-visual { min-height: 420px; }
  .portrait-frame { inset: 4% 3% 5% 5%; }
  .fact-two { top: 52%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
