:root {
  --navy: #062c4e;
  --navy-deep: #031c32;
  --blue: #0b527c;
  --orange: #f58b2b;
  --cream: #f2ece2;
  --paper: #fbfaf7;
  --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(--muted); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.desktop-nav { display: flex; gap: 34px; 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(--orange); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 16px; }
.home-link { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 600; }
.home-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: #edf3f6; color: var(--blue); }

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  padding: 80px clamp(24px, 9vw, 150px);
  background: var(--navy-deep);
  color: white;
}
.hero::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -190px;
  top: -250px;
  border: 1px solid rgba(245, 139, 43, .42);
  border-radius: 50%;
}
.hero::after {
  content: "B";
  position: absolute;
  left: -30px;
  bottom: -250px;
  color: rgba(255, 255, 255, .025);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 700px;
  line-height: 1;
}
.hero-copy, .portrait-composition { 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: .99; letter-spacing: -.035em; }
h1 { margin: 0; font-size: clamp(60px, 6.8vw, 104px); }
.hero-lead { max-width: 680px; margin: 32px 0 0; color: rgba(255,255,255,.76); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.65; }
.button { display: inline-flex; margin-top: 38px; padding: 15px 22px; border-radius: 999px; background: var(--orange); color: var(--navy-deep); font-size: 14px; font-weight: 700; transition: .25s ease; }
.button:hover { transform: translateY(-2px); background: #ffa044; }

.portrait-composition { min-height: 600px; }
.portrait { position: absolute; overflow: hidden; margin: 0; border: 10px solid rgba(255,255,255,.08); background: #fff; box-shadow: 0 30px 70px rgba(0,0,0,.3); }
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.portrait figcaption { position: absolute; left: 16px; bottom: 14px; padding: 7px 11px; background: rgba(3,28,50,.82); border-radius: 999px; color: white; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.portrait-one { left: 1%; top: 15%; width: 42%; height: 54%; transform: rotate(-4deg); }
.portrait-two { z-index: 2; left: 29%; top: 3%; width: 45%; height: 68%; transform: rotate(2deg); }
.portrait-three { right: 0; bottom: 6%; width: 40%; height: 51%; transform: rotate(5deg); }

.section { padding: 120px clamp(24px, 9vw, 150px); }
.identity { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 150px); }
.identity h2, .people h2, .expertise h2 { margin: 0; color: var(--navy); font-size: clamp(46px, 5.2vw, 76px); }
.identity-copy { padding-top: 24px; }
.identity-copy p { margin: 0 0 25px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.identity-copy .large-copy { color: var(--ink); font-size: 22px; }

.people { background: #e9eef0; }
.people-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: clamp(40px, 9vw, 140px); margin-bottom: 58px; }
.people-heading > p { max-width: 520px; margin: 0 0 8px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.person-card { overflow: hidden; background: var(--paper); border-radius: 20px; transition: transform .3s ease, box-shadow .3s ease; }
.person-card:hover { transform: translateY(-6px); box-shadow: 0 24px 55px rgba(6, 44, 78, .15); }
.person-image { height: 420px; overflow: hidden; background: #e4e8e9; }
.person-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: saturate(.86); transition: transform .5s ease, filter .5s ease; }
.person-card:hover .person-image img { transform: scale(1.025); filter: saturate(1); }
.person-info { min-height: 320px; display: flex; flex-direction: column; padding: 28px; }
.role { margin: 0 0 12px; color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.person-info h3 { margin: 0; color: var(--navy); font-family: "Playfair Display", Georgia, serif; font-size: 36px; font-weight: 500; line-height: 1.08; }
.description { margin: 22px 0 28px; color: var(--muted); line-height: 1.65; }
.discover { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line); color: var(--navy); font-size: 13px; font-weight: 700; }
.discover b { display: grid; width: 38px; height: 38px; place-items: center; background: var(--orange); border-radius: 50%; font-size: 18px; }

.expertise { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 10vw, 160px); }
.expertise-list article { display: grid; grid-template-columns: 45px 1fr; gap: 20px; padding: 30px 0; border-top: 1px solid var(--line); }
.expertise-list article:last-child { border-bottom: 1px solid var(--line); }
.expertise-list article > span { color: var(--orange); font-size: 12px; font-weight: 700; }
.expertise-list h3 { margin: -8px 0 10px; color: var(--navy); font-family: "Playfair Display", Georgia, serif; font-size: 28px; font-weight: 500; }
.expertise-list p { margin: 0; color: var(--muted); line-height: 1.6; }

.closing { text-align: center; background: var(--navy); color: white; }
.closing blockquote { max-width: 1000px; margin: 0 auto; font-family: "Playfair Display", Georgia, serif; font-size: clamp(36px, 5vw, 68px); line-height: 1.13; }
.closing a { display: inline-flex; gap: 10px; margin-top: 40px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.45); font-size: 14px; font-weight: 700; }
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: 100px; }
  .portrait-composition { min-height: 500px; width: min(680px, 100%); }
  .people-grid { grid-template-columns: 1fr 1fr; }
  .person-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .person-card:last-child .person-image { height: 100%; }
}

@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: 150px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 8px; letter-spacing: .1em; }
  .home-link span:last-child { display: none; }
  .header-actions { gap: 8px; }
  .language-current { padding: 8px 10px; }
  .hero { min-height: auto; padding: 88px 22px 65px; }
  h1 { font-size: clamp(54px, 15vw, 76px); }
  .hero-lead { font-size: 16px; line-height: 1.55; }
  .portrait-composition { min-height: 380px; margin-top: 25px; }
  .portrait { border-width: 6px; }
  .portrait-one { width: 44%; height: 56%; }
  .portrait-two { width: 46%; height: 68%; }
  .portrait-three { width: 42%; height: 54%; }
  .portrait figcaption { left: 8px; bottom: 8px; padding: 5px 8px; font-size: 9px; }
  .section { padding: 84px 22px; }
  .identity, .people-heading, .expertise { grid-template-columns: 1fr; }
  .identity-copy { padding-top: 0; }
  .identity-copy .large-copy { font-size: 19px; }
  .people-grid { grid-template-columns: 1fr; }
  .person-card:last-child { grid-column: auto; display: block; }
  .person-card:last-child .person-image, .person-image { height: 390px; }
  .person-info { min-height: 300px; }
  footer { flex-direction: column; align-items: flex-start; gap: 14px; }
  footer div { flex-direction: column; gap: 5px; }
}

@media (max-width: 420px) {
  .portrait-composition { min-height: 320px; }
  .person-image { height: 350px; }
}

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