:root {
  --bg-page: #ffffff;
  --bg-shell: #ffffff;
  --bg-panel: #f3f5f4;
  --color-text: #1f2a26;
  --color-muted: #4c5753;
  --color-accent: #6f9a8a;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --radius: 2px;
  --header-h: 7rem;
  --layout-pad-bottom: 0;
  --layout-side-padding: 2rem;
  --layout-col-gap: 0.5rem;
  --nav-column-w: clamp(95px, 10vw, 235px);
  --nav-content-inset: clamp(0.2rem, 0.9vw, 1.2rem);
  --about-menu-distance: -4.2rem;
  --screen-bottom-border: calc(var(--layout-side-padding) * 2);
  --content-h: calc(100vh - var(--screen-bottom-border) - var(--header-h));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg-page);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-shell {
  width: 100%;
  height: calc(100vh - var(--screen-bottom-border));
  margin: 0;
  background: var(--bg-shell);
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.site-bottom-note {
  display: none;
}

@media (min-width: 768px) {
  .site-bottom-note {
    position: fixed;
    left: var(--layout-side-padding);
    right: var(--layout-side-padding);
    bottom: 0;
    height: var(--screen-bottom-border);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    color: rgba(140, 146, 156, 0.72);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    line-height: 1;
    text-align: left;
    white-space: nowrap;
    z-index: 20;
    pointer-events: auto;
  }

  .site-bottom-note__sep {
    color: rgba(140, 146, 156, 0.72);
  }

  .site-bottom-note__disclosures {
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    text-underline-offset: 2px;
  }

  .site-bottom-note__disclosures:hover {
    text-decoration: underline;
  }

  .site-bottom-note__disclosures:focus-visible {
    outline: 1px solid rgba(88, 151, 134, 0.55);
    outline-offset: 2px;
    border-radius: 2px;
  }

  .site-bottom-note__credit a {
    color: inherit;
    text-decoration: none;
    text-underline-offset: 2px;
  }

  .site-bottom-note__credit a:hover {
    text-decoration: underline;
    color: rgba(102, 109, 120, 0.86);
  }
}

.disclosures-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
}

.disclosures-modal[hidden] {
  display: none !important;
}

.disclosures-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 33, 0.36);
}

.disclosures-modal__panel {
  position: relative;
  width: min(88vw, 860px);
  max-height: min(84vh, 760px);
  overflow: auto;
  padding: 1.2rem 1.3rem 1.2rem;
  border: 1px solid rgba(11, 42, 75, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 48px rgba(11, 42, 75, 0.23);
}

.disclosures-modal__close {
  position: absolute;
  top: 0.42rem;
  right: 0.5rem;
  border: 0;
  background: transparent;
  color: #589786;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.disclosures-modal__title {
  margin: 0 0 0.7rem;
  color: #0b2a4b;
  font-size: 1.02rem;
  font-weight: 500;
}

.disclosures-modal__text {
  margin: 0 0 0.6rem;
  color: #243239;
  font-size: 0.88rem;
  line-height: 1.45;
}

.disclosures-modal__text a {
  color: #0b2a4b;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.disclosures-modal__copyright {
  margin-top: 0.85rem;
  margin-bottom: 0;
  color: #3f4d57;
  font-weight: 500;
}

.header {
  min-height: var(--header-h);
  padding: 1.45rem var(--layout-side-padding) 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--nav-column-w);
  align-items: center;
  column-gap: 0.5rem;
}

.header__logo {
  width: clamp(185px, 24vw, 240px);
  object-fit: contain;
}

.lang-menu {
  position: relative;
  justify-self: start;
  margin-left: var(--nav-content-inset);
  width: 118px;
  font-family: var(--font-sans);
}

.lang-menu__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.56rem 0.56rem;
  border: 1px solid #2f4068;
  border-radius: 0;
  background: #ffffff;
  color: #1c1f22;
  font-family: inherit;
  font-size: 0.93rem;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.lang-menu__trigger:hover {
  color: #589786;
}

.lang-menu__chevron {
  width: 12px;
  height: 8px;
  display: inline-flex;
}

.lang-menu__chevron::before {
  content: "";
  width: 12px;
  height: 8px;
  display: block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' fill='none' stroke='%231c1f22' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / 12px 8px;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.lang-menu__trigger:hover .lang-menu__chevron::before {
  filter: brightness(0) saturate(100%) invert(54%) sepia(13%) saturate(858%)
    hue-rotate(108deg) brightness(92%) contrast(88%);
}

.lang-menu.is-open .lang-menu__chevron::before {
  transform: rotate(180deg);
}

.lang-menu__list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #2f4068;
  border-top: 0;
  background: #ffffff;
  display: none;
  z-index: 30;
}

.lang-menu.is-open .lang-menu__list {
  display: block;
}

.lang-menu__option {
  width: 100%;
  border: 0;
  background: #ffffff;
  text-align: left;
  padding: 0.72rem 0.56rem;
  font-family: inherit;
  font-size: 0.93rem;
  line-height: 1.2;
  color: #2f4068;
  cursor: pointer;
}

.lang-menu__option.is-selected {
  color: #1c1f22;
}

.lang-menu__option:hover {
  color: #589786;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--nav-column-w);
  gap: var(--layout-col-gap);
  padding: 0 var(--layout-side-padding) var(--layout-pad-bottom);
  height: var(--content-h);
  position: relative;
}

.main {
  position: relative;
  height: var(--content-h);
  min-height: 440px;
  overflow: hidden;
}

.page[hidden] {
  display: none;
}

.page,
.hero,
.split__visual,
.split__content,
.page--contact .contact-panel {
  height: var(--content-h);
  min-height: 440px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #1a221f;
}

#page-home .hero {
  touch-action: none;
}

.hero__img,
.split__visual img,
.contact-panel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rotator-container {
  position: relative;
}

.rotator-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 10s ease-in-out;
}

.rotator-layer.is-visible {
  opacity: 1;
}

.hero__inner {
  position: absolute;
  left: clamp(1.4rem, 3.2vw, 3.2rem);
  bottom: clamp(2.6rem, 5.4vw, 4.6rem);
  color: #fff;
  z-index: 3;
}

.hero__touch-bird {
  --bird-tilt: 0deg;
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(56px, 8.2vw, 84px);
  height: auto;
  transform: translate(-50%, -50%) rotate(var(--bird-tilt));
  transform-origin: 50% 50%;
  transition: transform 120ms ease-out;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}

.hero__touch-bird.is-visible {
  opacity: 1;
  visibility: visible;
}

.hero__touch-bird.is-flipped {
  transform: translate(-50%, -50%) scaleX(-1) rotate(var(--bird-tilt));
}

.hero__title {
  margin: 0 0 0.9rem;
  max-width: none;
  font-family: var(--font-sans);
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1.28;
  white-space: pre;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--ghost {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.15;
  padding: 0.42rem 0.92rem;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(12, 20, 18, 0.26);
  color: #fff;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.btn--ghost:hover {
  border-color: #589786;
  color: #589786;
}

.btn--outline {
  margin-top: 1rem;
  border-color: #b7c7bf;
  color: #5f8679;
  font-size: 0.76rem;
  padding: 0.32rem 0.58rem;
  background: transparent;
}

.btn--outline:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

.page--split {
  display: grid;
  grid-template-columns: 42% 58%;
}

.about-panel--slide-in-right {
  animation: page-slide-in-right 0.5s cubic-bezier(0, 0, 0.58, 1);
}

.about-panel--slide-out-right {
  animation: page-slide-in-right 0.5s cubic-bezier(0, 0, 0.58, 1) reverse forwards;
}

.team-panel--slide-in-right {
  animation: page-slide-in-right 0.5s cubic-bezier(0, 0, 0.58, 1);
}

.team-panel--slide-out-right {
  animation: page-slide-in-right 0.5s cubic-bezier(0, 0, 0.58, 1) reverse forwards;
}

#page-contact.contact-panel--slide-in-right .contact-panel__overlay {
  animation: page-slide-in-right 0.5s cubic-bezier(0, 0, 0.58, 1);
}

#page-contact.contact-panel--slide-out-right .contact-panel__overlay {
  animation: page-slide-in-right 0.5s cubic-bezier(0, 0, 0.58, 1) reverse forwards;
}

@keyframes page-slide-in-right {
  from {
    transform: translateX(100%);
    opacity: 1;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.page--overlay-transition {
  position: absolute;
  inset: 0;
  z-index: 6;
}

#page-about.page--split,
#page-team.page--split {
  position: relative;
}

.split__visual {
  background: #1a221f;
}

.split__content {
  padding: 1.55rem 1.65rem 1.35rem;
  background: var(--bg-panel);
  overflow: auto;
}

#page-about .split__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
}

#page-about .split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#page-team .split__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
}

#page-team .split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#page-about .split__content--about {
  --about-content-w: min(71%, 1400px);
  --about-content-mr: 2.35rem;
  --about-fade-mid: calc(100% - var(--about-content-mr) - var(--about-content-w));
  --about-fade-start: calc(var(--about-fade-mid) - 45%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 60%;
  height: 100%;
  padding: 1.4rem 0.35rem 1.4rem 0.9rem;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) var(--about-fade-start),
    rgba(255, 255, 255, 0.72) var(--about-fade-mid),
    #ffffff 100%
  );
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#page-team .split__content--team {
  --about-content-w: min(71%, 1400px);
  --about-content-mr: 2.35rem;
  --about-fade-mid: calc(100% - var(--about-content-mr) - var(--about-content-w));
  --about-fade-start: calc(var(--about-fade-mid) - 45%);
  --team-title-top-limit: 0.9rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 60%;
  height: 100%;
  padding: 1.4rem 0.35rem 1.4rem 0.9rem;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) var(--about-fade-start),
    rgba(255, 255, 255, 0.72) var(--about-fade-mid),
    #ffffff 100%
  );
  overflow: auto;
  overflow-anchor: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#page-team .split__content--team:not(.has-open-bio) {
  justify-content: center;
}

#page-team .split__content--team.has-open-bio {
  justify-content: flex-start;
}

#page-team .split__content--team.is-expanding-bio {
  justify-content: flex-start;
}

#page-team .split__content--team.is-tablet-bio-collapsing {
  justify-content: flex-start;
}

#page-team .split__content--team .team-content.is-tablet-recentering {
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

#page-team .split__content--team .team-content.is-tablet-opening {
  transition: transform 0.56s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

#page-about .split__content--about .about-content {
  width: var(--about-content-w);
  margin-left: auto;
  margin-right: var(--about-content-mr);
  max-height: 94%;
}

#page-about .about-close {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  border: 0;
  background: transparent;
  color: #589786;
  font-family: var(--font-sans);
  font-size: clamp(32px, 2.6vw, 46px);
  font-weight: 100;
  font-variation-settings: "wght" 100;
  line-height: 0.9;
  padding: 0.1rem 0.2rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#page-about .about-close:hover {
  color: #0b2a4b;
}

#page-about .split__content--about .split__title,
#page-about .split__content--about .split__lead,
#page-about .split__content--about .split__text {
  text-align: left;
}

#page-about .split__content--about .split__title,
#page-team .split__content--team .split__title {
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 300;
  line-height: 1.08;
  color: #0b2a4b;
  margin-bottom: clamp(0.55rem, 1vw, 0.9rem);
}

#page-about .split__content--about .split__title::after,
#page-team .split__content--team .split__title::after {
  content: "";
  display: block;
  width: clamp(40px, 4vw, 60px);
  height: clamp(3px, 0.35vw, 4px);
  margin-left: 0;
  margin-top: clamp(0.34rem, 0.6vw, 0.52rem);
  background: #589786;
}

#page-team .split__content--team .team-content {
  width: var(--about-content-w);
  margin-left: auto;
  margin-right: var(--about-content-mr);
  max-height: none;
  padding-bottom: clamp(1rem, 2.2vh, 1.8rem);
}

#page-team .split__content--team .split__title {
  margin-bottom: clamp(1rem, 1.6vw, 1.6rem);
}

#page-team .split__content--team .team {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.4vw, 1.5rem);
}

#page-team .team-group {
  margin: 0 0 clamp(0.9rem, 1.4vw, 1.4rem);
  width: 100%;
  aspect-ratio: 16 / 5.8;
  overflow: hidden;
  border-radius: 2px;
  background: #eef2f0;
  box-shadow: 0 8px 22px rgba(11, 42, 75, 0.08);
}

#page-team .team-group__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

#page-team .team-list {
  margin: -0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.45rem, 1vw, 1.4rem);
}

#page-team .team-mobile {
  display: none;
}

#page-team .team-list__item {
  text-align: left;
}

#page-team .team-list__name {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.38rem;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  color: #0b2a4b;
  margin-bottom: 0.04rem;
}

#page-team .team-list__name > span:first-child {
  white-space: nowrap;
}

#page-team .team-list__icons {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  flex-shrink: 0;
}

#page-team .team-list__icon {
  width: 1.18rem;
  height: 1.18rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.2px solid rgba(88, 151, 134, 0.95);
  border-radius: 999px;
  color: #589786;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  line-height: 1;
}

#page-team .team-list__icon--linkedin {
  font-weight: 600;
  letter-spacing: -0.01em;
}

#page-team .team-list__icon--mail {
  font-size: 0.72rem;
}

#page-team .team-list__icon:hover {
  color: #ffffff;
  background: #589786;
  border-color: #589786;
}

#page-team .team-list__role {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
  color: #589786;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: clamp(0.3rem, 0.5vw, 0.5rem);
}

#page-team .team-list__role::after {
  content: "";
  display: block;
  width: clamp(26px, 2.2vw, 34px);
  height: 1.2px;
  margin-top: clamp(0.16rem, 0.3vw, 0.25rem);
  background: #589786;
}

#page-team .team-list__bio {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.28;
  color: #1f2a26;
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.62s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.28s ease, margin-top 0.28s ease;
}

#page-team .team-list__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 24px;
  min-height: 24px;
  padding: 0.1rem 0.4rem 0.1rem 0.26rem;
  border: 1px solid rgba(11, 42, 75, 0.34);
  border-radius: var(--radius);
  background: transparent;
  color: #0b2a4b;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  margin-bottom: 0.34rem;
  gap: 0.28rem;
}

#page-team .team-list__toggle-symbol {
  font-size: 0.96rem;
  line-height: 1;
}

#page-team .team-list__toggle-caption {
  font-size: 0.65rem;
  line-height: 1.1;
  white-space: nowrap;
}

#page-team .team-list__item.is-open .team-list__bio {
  max-height: 1200px;
  opacity: 1;
  margin-top: 0.12rem;
}

#page-team .split__content--team .team__name {
  font-family: var(--font-sans);
  font-size: clamp(12px, 0.95vw, 16px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.22;
  color: #0b2a4b;
  margin-bottom: 0.22rem;
}

#page-team .split__content--team .team__role {
  font-family: var(--font-sans);
  font-size: clamp(9px, 0.62vw, 10.5px);
  font-weight: 500;
  line-height: 1.3;
  color: #589786;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#page-team .about-close,
#page-contact .about-close {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  border: 0;
  background: transparent;
  color: #589786;
  font-family: var(--font-sans);
  font-size: clamp(32px, 2.6vw, 46px);
  font-weight: 100;
  font-variation-settings: "wght" 100;
  line-height: 0.9;
  padding: 0.1rem 0.2rem;
  cursor: pointer;
  z-index: 2;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#page-team .about-close:hover,
#page-contact .about-close:hover {
  color: #0b2a4b;
}

#page-about .split__content--about .split__lead {
  margin-top: 0;
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
  max-width: none;
}

#page-about .split__content--about .split__lead {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.28;
  color: #589786;
}

#page-about .split__content--about .split__text p {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.28;
  color: #1f2a26;
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
  max-width: none;
  width: 100%;
}

#page-about .split__content--about .btn--outline {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.15;
  color: #589786;
  border-width: 1px;
  border-color: rgba(88, 151, 134, 0.8);
  border-radius: var(--radius);
  min-height: 0;
  padding: 0.42rem 0.92rem 0.42rem 0.76rem;
  background: transparent;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  width: fit-content;
  margin-left: 0;
  margin-right: 0;
  gap: 0.5rem;
  letter-spacing: 0.01em;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

#page-about .split__content--about .btn--outline::before {
  content: "";
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
  transform: translateY(0.02em);
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3v10m0 0l-4-4m4 4l4-4M5 15v4h14v-4' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3v10m0 0l-4-4m4 4l4-4M5 15v4h14v-4' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

#page-about .split__content--about .btn--outline:not(:disabled):hover {
  color: #589786;
  border-color: #589786;
  background: transparent;
}

#page-about .split__content--about::before {
  content: none;
}

.split__title {
  margin: 0 0 0.75rem;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.08;
}

.split__title--underlined {
  position: relative;
  display: inline-block;
  padding-bottom: 0.33rem;
}

.split__title--underlined::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 2px;
  background: var(--color-accent);
}

.split__lead {
  margin: 0 0 0.8rem;
  font-size: 0.97rem;
  line-height: 1.35;
  color: #4c5b56;
  max-width: 26rem;
}

.split__text p {
  margin: 0 0 0.72rem;
  font-size: 0.64rem;
  line-height: 1.52;
  color: #2f3935;
  max-width: 27rem;
}

.team {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.team__member {
  text-align: center;
}

.team__photo {
  width: 78px;
  height: 78px;
  margin: 0 auto 0.32rem;
  border-radius: 999px;
  object-fit: cover;
}

.team__name {
  font-size: 0.6rem;
  line-height: 1.15;
}

.team__role {
  font-size: 0.54rem;
  line-height: 1.15;
  color: #4f5b57;
}

.page--contact .contact-panel {
  position: relative;
  --contact-box-right: 2.35rem;
  --contact-box-w: min(33%, 210px);
  --contact-fade-mid: calc(100% - var(--contact-box-right) - var(--contact-box-w));
  --contact-fade-start: calc(var(--contact-fade-mid) - 14%);
}

.contact-panel__overlay {
  position: absolute;
  inset: 0;
}

.contact-panel__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) var(--contact-fade-start),
    rgba(255, 255, 255, 0.9) var(--contact-fade-mid),
    rgba(255, 255, 255, 0.98) 100%
  );
}

.contact-panel__box {
  position: absolute;
  top: 50%;
  right: var(--contact-box-right);
  transform: translateY(-50%);
  width: var(--contact-box-w);
}

.contact-block {
  margin-bottom: 1rem;
}

.contact-block:last-child {
  margin-bottom: 0;
}

.contact-block__label {
  margin: 0 0 0.23rem;
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 300;
  line-height: 1.32;
  color: #589786;
}

.contact-block__text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 400;
  line-height: 1.45;
  color: #000000;
}

.contact-block__text a {
  text-decoration: none;
}

.contact-block__text a[href^="mailto:"] {
  white-space: normal;
  overflow-wrap: anywhere;
}

.site-nav {
  position: absolute;
  right: var(--layout-side-padding);
  top: 50%;
  transform: translateY(-50%);
  width: var(--nav-column-w);
  padding-left: var(--nav-content-inset);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.45rem, 0.9vw, 1.1rem);
}

.site-nav li + li {
  margin-top: 0;
}

.site-nav a {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: clamp(1.08rem, 1.2vw, 1.56rem);
  line-height: clamp(1.2, 1.12vw, 1.46);
  color: #111;
}

.site-nav a:hover {
  color: #589786;
}

.site-nav a.is-active {
  color: #589786;
}

.legal-docs-btn {
  display: none;
  position: absolute;
  right: calc(var(--layout-side-padding) + var(--nav-content-inset));
  bottom: 0.9rem;
  align-items: center;
  gap: 0.24rem;
  padding: 0.2rem 0.34rem;
  border: 1px solid rgba(11, 42, 75, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #4f6760;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  line-height: 1;
  z-index: 35;
  opacity: 0.9;
  cursor: pointer;
}

.legal-docs-btn::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4v9m0 0l-3.5-3.5M12 13l3.5-3.5M5 15.5v3h14v-3' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4v9m0 0l-3.5-3.5M12 13l3.5-3.5M5 15.5v3h14v-3' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

.legal-docs-btn:hover {
  color: #589786;
  border-color: rgba(88, 151, 134, 0.5);
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
}

.legal-modal[hidden] {
  display: none !important;
}

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 33, 0.34);
}

.legal-modal__panel {
  position: relative;
  width: min(90vw, 420px);
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(11, 42, 75, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 40px rgba(11, 42, 75, 0.18);
}

.legal-modal__close {
  position: absolute;
  top: 0.35rem;
  right: 0.45rem;
  border: 0;
  background: transparent;
  color: #589786;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.legal-modal__title {
  margin: 0 0 0.22rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: #0b2a4b;
}

.legal-modal__subtitle {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  color: #45637a;
}

.legal-modal__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.48rem;
}

.legal-modal__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(11, 42, 75, 0.16);
  border-radius: 9px;
  padding: 0.45rem 0.58rem;
  background: #ffffff;
  color: #0b2a4b;
  font-size: 0.76rem;
  line-height: 1.2;
}

.legal-modal__link::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4v9m0 0l-3.5-3.5M12 13l3.5-3.5M5 15.5v3h14v-3' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4v9m0 0l-3.5-3.5M12 13l3.5-3.5M5 15.5v3h14v-3' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

.legal-modal__link:hover {
  color: #589786;
  border-color: rgba(88, 151, 134, 0.45);
}

.legal-modal__note {
  margin: 0.72rem 0 0;
  font-size: 0.72rem;
  line-height: 1.35;
  color: #2d3d4a;
}

.legal-modal__note a {
  color: #0b2a4b;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 768px) and (max-width: 1366px) and (hover: none) and (pointer: coarse) {
  .site-bottom-note {
    left: 0.7rem;
    right: 0.7rem;
  }

  #page-home .hero__cta.btn--ghost {
    min-height: 38px;
    padding: 0.38rem 0.9rem;
    font-size: 0.86rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px) saturate(128%);
    -webkit-backdrop-filter: blur(10px) saturate(128%);
    box-shadow: 0 8px 20px rgba(6, 18, 28, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }

  #page-home .hero__cta.btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.24);
    box-shadow: 0 10px 24px rgba(6, 18, 28, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    transform: translateY(-1px);
  }

  #page-home .hero__cta.btn--ghost:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.2);
  }

  #page-home .hero__cta.btn--ghost:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
  }

  #page-about .about-close,
  #page-team .about-close,
  #page-contact .about-close {
    top: 0.26rem;
    right: calc(0.7rem + (102px - 32px) / 2 - 34px);
    font-size: 1.38rem;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(11, 42, 75, 0.32);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px) saturate(130%);
    -webkit-backdrop-filter: blur(10px) saturate(130%);
    box-shadow: 0 8px 18px rgba(6, 18, 28, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.52);
    color: #0b2a4b;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  }

  #page-about .about-close:hover,
  #page-team .about-close:hover,
  #page-contact .about-close:hover {
    border-color: rgba(11, 42, 75, 0.48);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 20px rgba(6, 18, 28, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.62);
    transform: translateY(-1px);
    color: #0b2a4b;
  }

  #page-about .about-close:active,
  #page-team .about-close:active,
  #page-contact .about-close:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.84);
  }

  #page-about .split__content--about .btn--outline {
    min-height: 38px;
    padding: 0.38rem 0.9rem 0.38rem 0.74rem;
    border: 1px solid rgba(88, 151, 134, 0.8);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px) saturate(128%);
    -webkit-backdrop-filter: blur(10px) saturate(128%);
    box-shadow: 0 8px 20px rgba(6, 18, 28, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    color: #589786;
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-bottom: 0.9rem;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }

  #page-about .split__content--about .btn--outline::before {
    width: 1.25em;
    height: 1.25em;
    transform: translate(0.06em, 0.02em);
  }

  #page-about .split__content--about .btn--outline:not(:disabled):hover {
    border-color: rgba(255, 255, 255, 0.72);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.24);
    box-shadow: 0 10px 24px rgba(6, 18, 28, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    transform: translateY(-1px);
  }

  .header {
    min-height: 8.6rem;
    padding: 1.6rem 0.7rem 0.8rem;
    grid-template-columns: minmax(0, 1fr) 102px;
    align-items: center;
    column-gap: 0.35rem;
    position: relative;
  }

  .header__brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .header__logo {
    width: clamp(148px, 22vw, 188px);
  }

  .layout {
    grid-template-columns: minmax(0, 1fr) 102px;
    gap: 0.3rem;
    height: calc(100vh - 8.6rem);
    padding: 0 0.7rem 0;
  }

  .lang-menu {
    margin-left: 0;
    width: 102px;
    display: flex;
    justify-content: center;
    position: absolute;
    right: 0.7rem;
    top: 8.6rem;
    transform: none;
    z-index: 25;
  }

  .lang-menu__trigger {
    width: auto;
    min-width: 60px;
    min-height: 36px;
    padding: 0.2rem 0.44rem 0.2rem 0.46rem;
    border: 1px solid rgba(11, 42, 75, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px) saturate(130%);
    -webkit-backdrop-filter: blur(10px) saturate(130%);
    box-shadow: 0 5px 12px rgba(6, 18, 28, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    color: #0b2a4b;
    font-size: 0.78rem;
    font-weight: 500;
    gap: 0.4rem;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }

  .lang-menu__current {
    display: inline-block;
    min-width: 2.2ch;
    text-align: center;
    color: #0b2a4b;
    font-weight: 600;
    line-height: 1;
  }

  .lang-menu__trigger:hover {
    border-color: rgba(11, 42, 75, 0.38);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 18px rgba(6, 18, 28, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
  }

  .lang-menu__trigger:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.76);
  }

  .lang-menu__trigger:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
  }

  .lang-menu__option {
    padding: 0.66rem 0.82rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: #1f3355;
    text-align: center;
  }

  .lang-menu__option:hover {
    color: #0b2a4b;
    background: rgba(88, 151, 134, 0.15);
  }

  .lang-menu__chevron {
    width: 13px;
    height: 9px;
  }

  .lang-menu__chevron::before {
    width: 13px;
    height: 9px;
    background-size: 13px 9px;
  }

  .lang-menu__list {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin-top: 0.25rem;
    min-width: 118px;
    border: 1px solid rgba(11, 42, 75, 0.22);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(11, 42, 75, 0.08);
    overflow: hidden;
  }

  .site-nav {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 102px;
    padding-left: 0;
    z-index: 40;
    pointer-events: auto;
  }

  .site-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }

  .site-nav a {
    display: inline-block;
    text-align: left;
    padding: 0;
    border-radius: 0;
    font-size: clamp(1.18rem, 2.3vw, 1.42rem);
    line-height: 2.05;
  }

  .legal-docs-btn {
    display: inline-flex !important;
    position: absolute !important;
    left: auto;
    right: calc(0.7rem + (102px - 56px) / 2);
    bottom: 0.08rem;
    width: 56px;
    justify-content: center;
    padding: 0.14rem 0.22rem;
    font-size: 0.58rem;
    border-radius: 7px;
    z-index: 60;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .legal-docs-btn::before {
    width: 0.68rem;
    height: 0.68rem;
  }

  #page-team .team-group {
    margin: 0 0 0.7rem;
    aspect-ratio: 16 / 5.8;
  }

  #page-team .split__content--team {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #page-team .split__content--team .team-content {
    max-height: none;
    padding-bottom: 1.35rem;
  }

  #page-team .team-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin: 0;
    align-items: start;
  }

  #page-team .team-list__item {
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.54);
    box-shadow: 0 12px 24px rgba(11, 42, 75, 0.1);
    backdrop-filter: blur(18px) saturate(122%);
    -webkit-backdrop-filter: blur(18px) saturate(122%);
    padding: 0.72rem 0.72rem 0.34rem;
    align-self: start;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "name name"
      "role role"
      "toggle icons"
      "bio bio";
    align-items: center;
    row-gap: 0.3rem;
  }

  #page-team .team-list__name {
    display: contents;
  }

  #page-team .team-list__name > span:first-child {
    grid-area: name;
    font-size: 0.96rem;
    line-height: 1.36;
    white-space: nowrap;
  }

  #page-team .team-list__role {
    grid-area: role;
    font-size: 0.78rem;
    line-height: 1.34;
    margin-bottom: 0.22rem;
  }

  #page-team .team-list__icons {
    grid-area: icons;
    justify-self: end;
    align-self: center;
    display: inline-flex;
    gap: 0.24rem;
  }

  #page-team .team-list__icons .team-list__icon {
    width: 1.42rem;
    height: 1.42rem;
    font-size: 0.74rem;
    background: rgba(255, 255, 255, 0.8);
  }

  #page-team .team-list__toggle {
    grid-area: toggle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.42rem;
    border: 1px solid rgba(11, 42, 75, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #0b2a4b;
    font-family: var(--font-sans);
    font-size: 0.74rem;
    line-height: 1.2;
    padding: 0.12rem 0.62rem;
    cursor: pointer;
    margin: 0;
    justify-self: start;
    align-self: center;
    gap: 0.28rem;
  }

  #page-team .team-list__toggle-symbol {
    font-size: 0.96rem;
  }

  #page-team .team-list__toggle-caption {
    font-size: 0.65rem;
    line-height: 1.1;
    white-space: nowrap;
  }

  #page-team .team-list__item .team-list__bio {
    grid-area: bio;
    display: block !important;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    font-size: 0.82rem;
    line-height: 1.56;
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    overflow-wrap: normal;
    word-break: normal;
    margin-top: 0;
    transition: max-height 0.62s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.28s ease, margin-top 0.28s ease;
  }

  #page-team .team-list__item.is-open .team-list__bio {
    display: block !important;
    max-height: 1200px;
    opacity: 1;
    overflow: hidden;
    margin-top: 0.08rem;
  }

}

@media (min-width: 768px) and (max-width: 1366px) and (orientation: portrait) and (hover: none) and (pointer: coarse) {
  #page-about .split__content--about,
  #page-team .split__content--team {
    width: 94%;
    --about-content-w: min(86%, 1400px);
    --about-content-mr: 0.45rem;
  }
}

@media (min-width: 768px) and (max-width: 800px) and (orientation: portrait) {
  #page-about .split__content--about,
  #page-team .split__content--team {
    width: 95%;
    --about-content-w: min(88%, 1400px);
    --about-content-mr: 0.35rem;
  }
}

@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) and (hover: none) and (pointer: coarse) {
  #page-about .split__content--about,
  #page-team .split__content--team {
    width: 72%;
  }

  .header {
    grid-template-columns: minmax(0, 1fr) 114px;
  }

  .layout {
    grid-template-columns: minmax(0, 1fr) 114px;
  }

  .site-nav {
    width: 114px;
  }

  .lang-menu {
    width: 114px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  #page-about .split__content--about,
  #page-team .split__content--team {
    width: 77%;
    --about-content-w: min(89%, 1400px);
    --about-content-mr: 0.35rem;
  }
}

@media (min-width: 1025px) and (max-width: 1366px) and (orientation: landscape) and (hover: none) and (pointer: coarse) {
  #page-about .split__content--about,
  #page-team .split__content--team {
    width: 78%;
    --about-content-w: min(94%, 1400px);
    --about-content-mr: 0.2rem;
  }

  .header {
    grid-template-columns: minmax(0, 1fr) 126px;
  }

  .layout {
    grid-template-columns: minmax(0, 1fr) 126px;
  }

  .site-nav {
    width: 126px;
  }

  .lang-menu {
    width: 126px;
  }
}

/* Desktop (mouse/trackpad): continuous scaling to avoid breakpoint jumps. */
@media (min-width: 981px) and (max-width: 1460px) and (hover: hover) and (pointer: fine) {
  #page-about .split__content--about,
  #page-team .split__content--team {
    width: clamp(68%, calc(107.8% - 2.73vw), 74%);
    --about-content-w: min(clamp(80%, calc(133.1% - 3.64vw), 88%), 1400px);
    --about-content-mr: clamp(0.55rem, 0.9vw, 1rem);
  }
}

@media (max-width: 767px) {
  html,
  body {
    overflow: hidden;
  }

  body {
    font-size: 14px;
    background: #ffffff;
  }

  .site-shell {
    height: 100vh;
    min-height: 0;
    overflow: hidden;
    padding-bottom: 0;
    position: relative;
  }

  .header {
    min-height: 8.6rem;
    padding: 1.6rem 0.7rem 0.8rem;
    grid-template-columns: minmax(0, 1fr) 102px;
    align-items: center;
    column-gap: 0.35rem;
    position: relative;
  }

  .header__brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .header__logo {
    width: clamp(148px, 46vw, 188px);
  }

  .lang-menu {
    margin-left: 0;
    width: 102px;
    display: flex;
    justify-content: center;
    position: absolute;
    right: 0.7rem;
    top: 8.6rem;
    transform: none;
    z-index: 25;
  }

  .lang-menu__trigger {
    width: auto;
    min-width: 60px;
    min-height: 36px;
    padding: 0.2rem 0.44rem 0.2rem 0.46rem;
    border: 1px solid rgba(11, 42, 75, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px) saturate(130%);
    -webkit-backdrop-filter: blur(10px) saturate(130%);
    box-shadow: 0 5px 12px rgba(6, 18, 28, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    color: #0b2a4b;
    font-size: 0.78rem;
    font-weight: 500;
    gap: 0.4rem;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }

  .lang-menu__current {
    display: inline-block;
    min-width: 2.2ch;
    text-align: left;
    color: #0b2a4b;
    font-weight: 600;
    line-height: 1;
  }

  .lang-menu__trigger:hover {
    border-color: rgba(11, 42, 75, 0.38);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 18px rgba(6, 18, 28, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
  }

  .lang-menu__trigger:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.76);
  }

  .lang-menu__trigger:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
  }

  .lang-menu__option {
    padding: 0.66rem 0.82rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: #1f3355;
    text-align: center;
  }

  .lang-menu__option:hover {
    color: #0b2a4b;
    background: rgba(88, 151, 134, 0.15);
  }

  .lang-menu__chevron {
    width: 13px;
    height: 9px;
  }

  .lang-menu__chevron::before {
    width: 13px;
    height: 9px;
    background-size: 13px 9px;
  }

  .lang-menu__list {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin-top: 0.25rem;
    min-width: 118px;
    border: 1px solid rgba(11, 42, 75, 0.22);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(11, 42, 75, 0.08);
    overflow: hidden;
  }

  .lang-menu__list li {
    border-bottom: 1px solid rgba(11, 42, 75, 0.08);
  }

  .lang-menu__list li:last-child {
    border-bottom: 0;
  }

  .layout {
    grid-template-columns: minmax(0, 1fr) 102px;
    gap: 0.3rem;
    height: calc(100vh - 8.6rem);
    padding: 0 0.7rem 3.8rem;
  }

  .site-bottom-note {
    position: fixed;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.55rem;
    display: block;
    margin: 0;
    padding: 0;
    color: rgba(11, 42, 75, 0.68);
    font-family: var(--font-sans);
    font-size: 0.58rem;
    line-height: 1.2;
    text-align: left;
    white-space: normal;
    z-index: 60;
    pointer-events: auto;
  }

  .site-bottom-note > span:first-child {
    display: block;
    font-size: 0.54rem;
    line-height: 1.15;
    color: rgba(11, 42, 75, 0.56);
    text-align: left;
    margin-bottom: 0.16rem;
  }

  .site-bottom-note__sep {
    display: inline;
    color: rgba(11, 42, 75, 0.4);
  }

  .site-bottom-note > .site-bottom-note__sep--leading {
    display: none;
  }

  .site-bottom-note__disclosures,
  .site-bottom-note__credit {
    display: inline;
    padding: 0;
    border: 0;
    background: transparent;
    color: #0b2a4b;
    font-size: 0.58rem;
    line-height: 1.15;
    text-decoration: none;
    text-underline-offset: 2px;
    cursor: pointer;
  }

  .site-bottom-note__disclosures:hover,
  .site-bottom-note__credit:hover {
    color: #589786;
    text-decoration: underline;
  }

  .site-bottom-note__credit a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
  }

  .main {
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .page,
  .hero,
  .split__visual,
  .split__content,
  .page--contact .contact-panel {
    height: 100%;
    min-height: 0;
  }

  .hero {
    min-height: 0;
    border-radius: 0;
  }

  .hero__inner {
    left: 0.85rem;
    right: auto;
    bottom: 1.6rem;
    max-width: 88%;
  }

  .hero__title {
    font-size: clamp(1.8rem, 7.9vw, 2.35rem);
    line-height: 1.3;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
    margin-bottom: 0.42rem;
  }

  #page-home .hero__cta.btn--ghost {
    min-height: 38px;
    padding: 0.38rem 0.9rem;
    font-size: 0.86rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px) saturate(128%);
    -webkit-backdrop-filter: blur(10px) saturate(128%);
    box-shadow: 0 8px 20px rgba(6, 18, 28, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }

  #page-home .hero__cta.btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.24);
    box-shadow: 0 10px 24px rgba(6, 18, 28, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    transform: translateY(-1px);
  }

  #page-home .hero__cta.btn--ghost:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.2);
  }

  #page-home .hero__cta.btn--ghost:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
  }

  #page-about.page--split,
  #page-team.page--split {
    position: relative;
    display: block;
  }

  #page-about .split__visual,
  #page-team .split__visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 0;
  }

  #page-about .split__content--about,
  #page-team .split__content--team {
    --about-content-w: min(92%, 520px);
    --about-content-mr: 0.45rem;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    padding: 0.72rem 0.4rem;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.46) 52%,
      rgba(255, 255, 255, 0.96) 100%
    );
    overflow: auto;
    justify-content: flex-start;
  }

  /* Keep iPhone team panel stable: never switch to centered mode */
  #page-team .split__content--team:not(.has-open-bio),
  #page-team .split__content--team.has-open-bio,
  #page-team .split__content--team.is-expanding-bio {
    justify-content: flex-start;
  }

  #page-about .split__content--about {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.44) 0%,
      rgba(255, 255, 255, 0.78) 46%,
      rgba(255, 255, 255, 0.98) 100%
    );
  }

  #page-team .split__content--team {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.34) 0%,
      rgba(255, 255, 255, 0.68) 48%,
      rgba(255, 255, 255, 0.95) 100%
    );
  }

  #page-about .split__content--about .about-content,
  #page-team .split__content--team .team-content {
    width: calc(100% - 0.8rem);
    margin-left: auto;
    margin-right: auto;
    max-height: 94%;
  }

  #page-team .split__content--team .team-content {
    max-height: none;
    padding-bottom: 1.5rem;
  }

  #page-about .split__content--about .about-content,
  #page-team .split__content--team .team-content {
    margin-left: auto;
    margin-right: auto;
  }

  #page-about .split__content--about .about-content {
    padding-bottom: 1.25rem;
  }

  #page-about .split__content--about .split__title,
  #page-team .split__content--team .split__title {
    font-size: clamp(1.95rem, 5.4vw, 2.25rem);
    margin-bottom: 0.45rem;
  }

  #page-about .split__content--about .split__lead {
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1.62;
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    overflow-wrap: normal;
    word-break: normal;
  }

  #page-about .split__content--about .split__text p {
    font-size: 0.86rem;
    line-height: 1.62;
    margin-bottom: 0.5rem;
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    overflow-wrap: normal;
    word-break: normal;
  }

  #page-about .split__content--about .btn--outline {
    min-height: 38px;
    padding: 0.38rem 0.9rem 0.38rem 0.74rem;
    border: 1px solid rgba(88, 151, 134, 0.8);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    color: #589786;
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    backdrop-filter: blur(10px) saturate(128%);
    -webkit-backdrop-filter: blur(10px) saturate(128%);
    box-shadow: 0 8px 20px rgba(6, 18, 28, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    margin-bottom: 0.9rem;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }

  #page-about .split__content--about .btn--outline::before {
    width: 1.25em;
    height: 1.25em;
    transform: translate(0.06em, 0.02em);
  }

  #page-about .split__content--about .btn--outline:not(:disabled):hover {
    border-color: rgba(255, 255, 255, 0.72);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.24);
    box-shadow: 0 10px 24px rgba(6, 18, 28, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    transform: translateY(-1px);
  }

  #page-team .team-group {
    display: none;
  }

  #page-team .team-list {
    display: none;
  }

  #page-team .team-mobile {
    display: grid;
    gap: 0.9rem;
    margin-top: 0.5rem;
  }

  #page-team .split__content--team .team-content {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #page-team .split__content--team .team-content.has-mobile-open-bio {
    justify-content: flex-start;
  }

  #page-team .split__content--team .team-content.is-mobile-bio-collapsing {
    justify-content: flex-start;
  }

  #page-team .split__content--team .team-content.is-mobile-recentering {
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
  }

  #page-team .team-mobile__card {
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.54);
    padding: 0.72rem 0.72rem 0.34rem;
    box-shadow: 0 12px 24px rgba(11, 42, 75, 0.1);
    backdrop-filter: blur(18px) saturate(122%);
    -webkit-backdrop-filter: blur(18px) saturate(122%);
  }

  #page-team .team-mobile__head {
    display: grid;
    grid-template-columns: 4.9rem minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 0.58rem;
    align-items: start;
  }

  #page-team .team-mobile__avatar {
    width: 4.9rem;
    height: 4.9rem;
    border-radius: 999px;
    border: 1px solid rgba(88, 151, 134, 0.35);
    background: rgba(255, 255, 255, 0.88);
    overflow: hidden;
  }

  #page-team .team-mobile__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
  }

  #page-team .team-mobile__name {
    font-size: 1.06rem;
    line-height: 1.36;
    font-weight: 500;
    color: #0b2a4b;
    margin-bottom: 0.12rem;
  }

  #page-team .team-mobile__role {
    font-size: 0.84rem;
    line-height: 1.34;
    color: #589786;
    margin-bottom: 0.42rem;
  }

  #page-team .team-mobile__icons {
    display: inline-flex;
    gap: 0.3rem;
    align-items: center;
    justify-content: flex-start;
  }

  #page-team .team-mobile__actions {
    display: grid;
    grid-template-columns: 4.9rem minmax(0, 1fr);
    align-items: center;
    gap: 0.58rem;
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: -0.08rem;
  }

  #page-team .team-mobile__icons .team-list__icon {
    width: 1.42rem;
    height: 1.42rem;
    font-size: 0.74rem;
    background: rgba(255, 255, 255, 0.8);
  }

  #page-team .team-mobile__details {
    margin-top: 0;
    flex: 0 0 auto;
    justify-self: center;
  }

  #page-team .team-mobile__details summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0b2a4b;
    font-family: var(--font-sans);
    font-size: 0.74rem;
    font-weight: 500;
    line-height: 1.2;
    border: 1px solid rgba(11, 42, 75, 0.25);
    border-radius: 999px;
    min-height: 1.42rem;
    padding: 0.12rem 0.62rem;
    background: rgba(255, 255, 255, 0.72);
    white-space: nowrap;
  }

  #page-team .team-mobile__details summary::-webkit-details-marker {
    display: none;
  }

  #page-team .team-mobile__bio {
    grid-column: 1 / -1;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding-top: 0;
    border-top: 1px solid transparent;
    font-size: 0.86rem;
    line-height: 1.62;
    color: #1f2a26;
    text-align: left;
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.62s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.24s ease;
    will-change: max-height, opacity;
  }

  #page-team .team-mobile__card.is-open .team-mobile__bio {
    max-height: 720px;
    opacity: 1;
    margin-top: 0.45rem;
    padding-top: 0.5rem;
    border-top-color: rgba(88, 151, 134, 0.25);
  }

  #page-team .team-mobile__bio-close {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 0.28rem;
    margin-bottom: 0.28rem;
    min-height: 1.42rem;
    border: 1px solid rgba(11, 42, 75, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #0b2a4b;
    font-family: var(--font-sans);
    font-size: 0.74rem;
    font-weight: 500;
    line-height: 1.2;
    padding: 0.12rem 0.62rem;
    cursor: pointer;
    display: none;
    white-space: nowrap;
  }

  #page-team .team-mobile__card.is-open .team-mobile__bio-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .contact-panel__fade {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.46) 52%,
      rgba(255, 255, 255, 0.96) 100%
    );
  }

  .contact-panel__box {
    position: absolute;
    left: 50%;
    right: auto;
    top: auto;
    bottom: 0.7rem;
    transform: translateX(-50%);
    width: calc(100% - 1.6rem);
    max-width: none;
    padding: 0.72rem 0.78rem;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-bottom-width: 3px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(11, 42, 75, 0.1);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
  }

  .contact-block {
    margin-bottom: 0.72rem;
  }

  .contact-block__label {
    font-size: clamp(1.12rem, 3.2vw, 1.34rem);
    line-height: 1.46;
    margin-bottom: 0.18rem;
    color: #589786;
  }

  .contact-block__text {
    font-size: clamp(0.88rem, 2.4vw, 1.02rem);
    line-height: 1.58;
    color: #0b2a4b;
  }

  .contact-block__text a {
    color: inherit;
    text-decoration: none;
  }

  .contact-block__text a[href^="mailto:"] {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  #page-about .about-close,
  #page-team .about-close,
  #page-contact .about-close {
    top: 0.26rem;
    right: calc(0.7rem + (90px - 32px) / 2 - 34px);
    font-size: 1.38rem;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(11, 42, 75, 0.32);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px) saturate(130%);
    -webkit-backdrop-filter: blur(10px) saturate(130%);
    box-shadow: 0 8px 18px rgba(6, 18, 28, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.52);
    color: #0b2a4b;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  }

  #page-about .about-close:hover,
  #page-team .about-close:hover,
  #page-contact .about-close:hover {
    border-color: rgba(11, 42, 75, 0.48);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 20px rgba(6, 18, 28, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.62);
    transform: translateY(-1px);
    color: #0b2a4b;
  }

  #page-about .about-close:active,
  #page-team .about-close:active,
  #page-contact .about-close:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.84);
  }

  #page-team .split__content--team {
    --team-title-top-limit: 0.2rem;
  }

  .site-nav {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 102px;
    padding-left: 0;
    z-index: 40;
    pointer-events: auto;
  }

  .site-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }

  .site-nav li + li {
    margin-top: 0;
  }

  .site-nav a {
    display: inline-block;
    text-align: left;
    padding: 0;
    border-radius: 0;
    font-size: clamp(1.18rem, 3.3vw, 1.42rem);
    line-height: 2.05;
  }

  .site-nav a.is-active {
    background: transparent;
  }

  .legal-docs-btn {
    display: inline-flex;
    left: auto;
    right: calc(0.7rem + (102px - 56px) / 2);
    bottom: 0.6rem;
    width: 56px;
    justify-content: center;
    padding: 0.14rem 0.22rem;
    font-size: 0.58rem;
    border-radius: 7px;
    z-index: 42;
  }

  .legal-docs-btn::before {
    width: 0.68rem;
    height: 0.68rem;
  }

  .legal-modal__panel {
    width: min(92vw, 360px);
    padding: 0.9rem 0.85rem 0.82rem;
  }

  .legal-modal__title {
    font-size: 0.92rem;
  }

  .legal-modal__subtitle {
    font-size: 0.72rem;
  }

  .legal-modal__link {
    font-size: 0.72rem;
    padding: 0.4rem 0.5rem;
  }
}

@media (max-width: 560px) {
  .header {
    grid-template-columns: minmax(0, 1fr) 94px;
  }

  .layout {
    grid-template-columns: minmax(0, 1fr) 94px;
    padding-bottom: 3.3rem;
  }

  .site-nav {
    width: 94px;
  }

  .lang-menu {
    width: 94px;
    right: 0.7rem;
  }

  #page-about .about-close,
  #page-team .about-close,
  #page-contact .about-close {
    right: calc(0.7rem + (94px - 32px) / 2 - 34px);
  }

  .legal-docs-btn {
    left: auto;
    right: calc(0.7rem + (94px - 52px) / 2);
    bottom: 0.6rem;
    width: 52px;
    justify-content: center;
    padding: 0.12rem 0.2rem;
    font-size: 0.54rem;
  }

  #page-about .split__content--about,
  #page-team .split__content--team {
    width: 100%;
  }

  .hero__inner {
    left: 0.72rem;
    right: 0.45rem;
    bottom: 1.15rem;
    max-width: none;
  }

  .hero__title {
    font-size: clamp(1.5rem, 7.1vw, 1.95rem);
    line-height: 1.28;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  #page-home .hero__cta.btn--ghost {
    min-height: 36px;
    padding: 0.32rem 0.74rem;
    font-size: 0.78rem;
    max-width: 100%;
  }

  .site-bottom-note {
    bottom: 0.46rem;
    font-size: 0.54rem;
  }

  .site-bottom-note > span:first-child {
    font-size: 0.49rem;
  }

  .site-bottom-note__disclosures,
  .site-bottom-note__credit {
    font-size: 0.54rem;
  }

  #page-about .split__content--about .btn--outline {
    min-height: 36px;
    padding: 0.32rem 0.74rem 0.32rem 0.62rem;
    font-size: 0.78rem;
    max-width: 100%;
  }

  .contact-panel__box {
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 1.6rem);
    padding: 0.64rem 0.66rem;
  }

  .contact-block__label {
    font-size: clamp(1.08rem, 3.5vw, 1.28rem);
    line-height: 1.44;
  }

  .contact-block__text {
    font-size: clamp(0.84rem, 3vw, 0.98rem);
    line-height: 1.56;
  }
}

/* iPad hard override: keep Docs button visible and aligned */
@media (min-width: 700px) and (max-width: 1366px) and (hover: none) and (pointer: coarse) {
  .legal-docs-btn {
    display: inline-flex !important;
    position: absolute !important;
    left: auto !important;
    right: calc(0.7rem + (102px - 56px) / 2) !important;
    bottom: 0.6rem !important;
    width: 56px !important;
    justify-content: center !important;
    min-height: 1.24rem !important;
    padding: 0.16rem 0.24rem !important;
    font-size: 0.64rem !important;
    border-radius: 7px !important;
    border: 1px solid rgba(11, 42, 75, 0.46) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    color: #0b2a4b !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 9999 !important;
    transform: none !important;
  }

  .legal-docs-btn::before {
    width: 0.74rem !important;
    height: 0.74rem !important;
  }
}
