:root {
  --black: #050505;
  --black-soft: #090909;
  --black-card: #111111;

  --white: #ffffff;
  --white-soft: #fafafa;
  --surface: #f4f4f4;
  --surface-2: #eeeeee;

  --text: #111111;
  --text-soft: #4f4f4f;
  --muted: #737373;

  --line: rgba(0, 0, 0, 0.1);
  --line-strong: rgba(0, 0, 0, 0.18);

  --dark-line: rgba(255, 255, 255, 0.1);
  --dark-line-strong: rgba(255, 255, 255, 0.2);

  --shadow-small:
    0 8px 28px rgba(0, 0, 0, 0.05);

  --shadow-medium:
    0 24px 70px rgba(0, 0, 0, 0.1);

  --shadow-large:
    0 38px 100px rgba(0, 0, 0, 0.16);

  --radius-small: 16px;
  --radius-medium: 24px;
  --radius-large: 34px;
  --radius-xlarge: 48px;

  --container: 1240px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  width: 100%;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
}

::selection {
  background: #111111;
  color: #ffffff;
}

.container {
  width: min(var(--container), calc(100% - 96px));
  margin: 0 auto;
}

.narrow-container {
  width: min(1040px, calc(100% - 96px));
  margin: 0 auto;
}

.section-white {
  background: var(--white);
}

.section-soft {
  background: var(--surface);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 15% 12%,
      rgba(255, 255, 255, 0.055),
      transparent 31%
    ),
    radial-gradient(
      circle at 84% 84%,
      rgba(255, 255, 255, 0.035),
      transparent 34%
    );
}

.section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 68px;
}

.section-header h2 {
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(46px, 4vw, 66px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -2px;
}

.dark-header h2 {
  color: #f7f7f7;
}

.centered {
  text-align: center;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 880px;
  overflow: hidden;
  background: #030303;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 40%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  filter: saturate(.86) contrast(1.04);
  transform: scale(1.07);
  animation:
    heroImage
    2.1s
    cubic-bezier(.18, .72, .18, 1)
    forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.01) 0%,
      rgba(0, 0, 0, 0.05) 24%,
      rgba(0, 0, 0, 0.4) 36%,
      rgba(0, 0, 0, 0.94) 48%,
      #030303 62%,
      #030303 100%
    );
}

.hero-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(600px, calc(50% - 70px));
  transform: translateY(-50%);
}

.hero h1 {
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(76px, 6.1vw, 108px);
  line-height: .92;
  font-weight: 500;
  letter-spacing: -4px;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(38px);
  animation:
    heroText
    1s
    .18s
    cubic-bezier(.2, .75, .2, 1)
    forwards;
}

.hero-role {
  max-width: 575px;
  margin-top: 34px;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
  line-height: 1.65;
  font-weight: 300;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(26px);
  animation:
    heroText
    .95s
    .4s
    cubic-bezier(.2, .75, .2, 1)
    forwards;
}

.hero-location {
  margin-top: 14px;
  color: rgba(255, 255, 255, .46);
  font-size: 14px;
  opacity: 0;
  transform: translateY(18px);
  animation:
    heroText
    .9s
    .56s
    cubic-bezier(.2, .75, .2, 1)
    forwards;
}

.hero-line {
  width: 82px;
  height: 1px;
  margin: 42px 0 33px;
  background:
    linear-gradient(
      90deg,
      #ffffff,
      rgba(255, 255, 255, .12)
    );
  transform: scaleX(0);
  transform-origin: left;
  animation:
    heroLine
    .9s
    .72s
    cubic-bezier(.2, .7, .2, 1)
    forwards;
}

.hero-description {
  max-width: 535px;
  color: rgba(255, 255, 255, .61);
  font-size: 15px;
  line-height: 1.95;
  font-weight: 300;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(22px);
  animation:
    heroText
    .95s
    .84s
    cubic-bezier(.2, .75, .2, 1)
    forwards;
}

.hero-scroll {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 90px;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.hero-scroll::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 44%;
  background: #ffffff;
  animation:
    scrollBeam
    1.8s
    ease-in-out
    infinite;
}

.about {
  position: relative;
  padding: 160px 0 175px;
}

.about .section-header {
  margin-bottom: 92px;
}

.about-layout {
  display: grid;
  grid-template-columns: 540px 1fr;
  gap: 115px;
  align-items: center;
}

.image-frame {
  position: relative;
  height: 700px;
  padding: 8px;
  overflow: hidden;
  border-radius: var(--radius-large);
  background:
    linear-gradient(
      145deg,
      rgba(0, 0, 0, .15),
      rgba(255, 255, 255, .7)
    );
  box-shadow: var(--shadow-medium);
}

.image-frame img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  border-radius:
    calc(
      var(--radius-large)
      - 8px
    );
}

.about-content {
  max-width: 580px;
}

.about-content p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
}

.about-content .large-text {
  margin-bottom: 40px;
  color: #141414;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 40px;
  line-height: 1.27;
  font-weight: 500;
  letter-spacing: -1px;
}

.philosophy {
  padding: 170px 0 180px;
}

.philosophy::after {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  left: 50%;
  top: -430px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, .012),
    0 0 0 160px rgba(255, 255, 255, .007);
}

.philosophy .section-header {
  margin-bottom: 58px;
}

.philosophy blockquote {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #f5f5f5;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(37px, 4vw, 57px);
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: -1.2px;
}

.vertical-line {
  position: relative;
  z-index: 2;
  width: 1px;
  height: 60px;
  margin: 60px auto 34px;
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(255, 255, 255, .7),
      transparent
    );
}

.philosophy .narrow-container > p {
  position: relative;
  z-index: 2;
  width: min(730px, 100%);
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, .52);
  font-size: 15px;
  line-height: 1.95;
}

.competencies {
  padding: 150px 0 170px;
}

.competency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.competency-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  min-height: 270px;
  padding: 42px 39px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background:
    radial-gradient(
      280px circle at var(--mouse-x) var(--mouse-y),
      rgba(0, 0, 0, .07),
      transparent 67%
    ),
    rgba(255, 255, 255, .66);
  box-shadow:
    inset
    0
    1px
    0
    rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  transition:
    transform .38s cubic-bezier(.2, .7, .2, 1),
    box-shadow .38s ease,
    border-color .3s ease,
    background-color .3s ease;
}

.competency-card::after {
  content: "";
  position: absolute;
  left: 39px;
  right: 39px;
  bottom: 0;
  height: 2px;
  background: #111111;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s ease;
}

.competency-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(0, 0, 0, .2);
  background-color: rgba(255, 255, 255, .95);
  box-shadow:
    0 30px 80px
    rgba(0, 0, 0, .12);
}

.competency-card:hover::after {
  transform: scaleX(1);
}

.competency-card h3 {
  position: relative;
  z-index: 2;
  color: #161616;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.23;
  font-weight: 500;
}

.competency-card p {
  position: relative;
  z-index: 2;
  max-width: 315px;
  margin-top: 26px;
  color: #717171;
  font-size: 14px;
  line-height: 1.8;
}

.career {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: stretch;
  background: #080808;
}

.career-media {
  position: relative;
  align-self: stretch;
  padding: 24px;
  overflow: visible;
  background: #080808;
}

.career-media img {
  position: sticky;
  z-index: 2;
  top: 24px;
  width: 100%;
  height: calc(100vh - 48px);
  min-height: 650px;
  max-height: 860px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-large);
  filter: saturate(.86) contrast(1.04);
  box-shadow:
    0 35px 90px
    rgba(0, 0, 0, .44);
  transition:
    transform .6s cubic-bezier(.2, .7, .2, 1),
    filter .6s ease;
}

.career-media:hover img {
  transform: scale(.994);
  filter: saturate(1) contrast(1.02);
}

.career-content {
  position: relative;
  z-index: 3;
  padding: 150px 8vw 160px 90px;
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f6f6f6
    );
  border-radius:
    var(--radius-xlarge)
    0
    0
    var(--radius-xlarge);
  box-shadow:
    -30px
    0
    90px
    rgba(0, 0, 0, .12);
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 158px;
  top: 10px;
  bottom: 18px;
  width: 1px;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, .06),
      rgba(0, 0, 0, .22),
      rgba(0, 0, 0, .06)
    );
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 66px;
  padding-bottom: 96px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 151px;
  top: 6px;
  width: 15px;
  height: 15px;
  border: 4px solid #f8f8f8;
  border-radius: 50%;
  background: #151515;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .18);
  z-index: 2;
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.timeline-item:hover::before {
  transform: scale(1.4);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .18),
    0 0 0 8px rgba(0, 0, 0, .06);
}

.timeline-period {
  padding-top: 2px;
  color: #898989;
  font-size: 11px;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-body h3 {
  color: #151515;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 33px;
  line-height: 1.17;
  font-weight: 500;
}

.timeline-body h4 {
  margin-top: 9px;
  color: #555555;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.timeline-body p {
  margin-top: 22px;
  color: #757575;
  font-size: 14px;
  line-height: 1.9;
}

.timeline-body h5 {
  margin-top: 28px;
  color: #383838;
  font-size: 13px;
  font-weight: 600;
}

.timeline-body ul {
  margin-top: 16px;
  list-style: none;
}

.timeline-body li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 20px;
  color: #565656;
  font-size: 13px;
  line-height: 1.55;
}

.timeline-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111111;
}

.education {
  padding: 155px 0 170px;
}

.education-layout {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 105px;
  align-items: center;
}

.education-content h3 {
  color: #151515;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 500;
}

.education-content h4 {
  margin-top: 13px;
  color: #515151;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.education-period {
  margin-top: 11px;
  color: #858585;
  font-size: 12px;
  letter-spacing: 1px;
}

.education-content > p:not(.education-period),
.additional-content > p:not(.education-period) {
  margin-top: 29px;
  color: #707070;
  font-size: 14px;
  line-height: 1.9;
}

.education-content h5 {
  margin-top: 31px;
  color: #383838;
  font-size: 13px;
  font-weight: 600;
}

.discipline-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.discipline-grid span {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  color: #5f5f5f;
  font-size: 12px;
  transition:
    transform .3s ease,
    background-color .3s ease,
    color .3s ease,
    box-shadow .3s ease;
}

.discipline-grid span:hover {
  transform: translateY(-4px);
  background: #111111;
  color: #ffffff;
  box-shadow:
    0 12px 30px
    rgba(0, 0, 0, .13);
}

.education-media {
  position: relative;
  height: 650px;
  padding: 8px;
  overflow: hidden;
  border-radius: var(--radius-large);
  background:
    linear-gradient(
      145deg,
      rgba(0, 0, 0, .18),
      rgba(255, 255, 255, .7)
    );
  box-shadow: var(--shadow-medium);
}

.education-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: none !important;
  border-radius:
    calc(
      var(--radius-large)
      - 8px
    );
}

.additional-education {
  position: relative;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 80px;
  margin-top: 130px;
  padding: 64px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .83),
      rgba(238, 238, 238, .6)
    );
  box-shadow:
    0 30px 100px
    rgba(0, 0, 0, .06);
  backdrop-filter: blur(12px);
}

.additional-education::after {
  content: "";
  position: absolute;
  right: -135px;
  top: -135px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(0, 0, 0, .055);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(0, 0, 0, .012),
    0 0 0 110px rgba(0, 0, 0, .007);
}

.additional-content,
.education-table {
  position: relative;
  z-index: 2;
}

.additional-content h3 {
  color: #181818;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 31px;
  line-height: 1.25;
  font-weight: 500;
}

.education-table {
  border-top: 1px solid var(--line);
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 165px 1fr;
}

.table-head {
  padding: 15px 0;
  color: #898989;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.table-row {
  position: relative;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  transition:
    padding-left .32s ease,
    background-color .32s ease;
}

.table-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: #111111;
  transition: width .32s ease;
}

.table-row:hover {
  padding-left: 20px;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .035),
      transparent
    );
}

.table-row:hover::before {
  width: 11px;
}

.table-row span {
  color: #858585;
  font-size: 12px;
}

.table-row strong {
  color: #383838;
  font-size: 14px;
  font-weight: 500;
}

.education-conclusion {
  width: min(800px, 100%);
  margin: 72px 0 0 auto;
  color: #686868;
  font-size: 14px;
  line-height: 1.9;
}

.expertise {
  padding: 155px 0 175px;
}

.expertise-heading {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
}

.expertise-heading .section-header {
  margin-bottom: 0;
}

.expertise-heading > p {
  width: 470px;
  color: rgba(255, 255, 255, .52);
  font-size: 15px;
  line-height: 1.9;
}

.expertise-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 80px;
}

.expertise-item {
  position: relative;
  overflow: hidden;
  padding: 29px 31px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-small);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .055),
      rgba(255, 255, 255, .015)
    );
  color: rgba(255, 255, 255, .72);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  backdrop-filter: blur(10px);
  transition:
    transform .35s cubic-bezier(.2, .7, .2, 1),
    color .35s ease,
    background-color .35s ease,
    border-color .35s ease;
}

.expertise-item::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 55%;
  height: 100%;
  transform: skewX(-20deg);
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, .1),
      transparent
    );
  transition: left .65s ease;
}

.expertise-item:hover {
  transform: translateX(7px) scale(1.008);
  color: #ffffff;
  border-color: rgba(255, 255, 255, .23);
  background: rgba(255, 255, 255, .075);
}

.expertise-item:hover::after {
  left: 145%;
}

.geography {
  padding: 155px 0 175px;
}

.geography-intro {
  max-width: 700px;
  margin-top: -37px;
  margin-bottom: 70px;
  color: #737373;
  font-size: 15px;
  line-height: 1.9;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.country-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  height: 185px;
  padding: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background:
    radial-gradient(
      190px circle at var(--mouse-x) var(--mouse-y),
      rgba(0, 0, 0, .065),
      transparent 70%
    ),
    linear-gradient(
      145deg,
      #ffffff,
      #f3f3f3
    );
  transition:
    transform .4s cubic-bezier(.2, .7, .2, 1),
    box-shadow .4s ease,
    border-color .3s ease;
}

.country-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -85px;
  top: -85px;
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 50%;
  transition: transform .5s ease;
}

.country-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 2px;
  background: #111111;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.country-card:hover {
  transform: translateY(-9px) scale(1.015);
  border-color: rgba(0, 0, 0, .2);
  box-shadow:
    0 32px 75px
    rgba(0, 0, 0, .12);
}

.country-card:hover::before {
  transform: scale(1.35);
}

.country-card:hover::after {
  transform: scaleX(1);
}

.country-card span {
  position: relative;
  z-index: 2;
  font-size: 30px;
}

.country-card h3 {
  position: relative;
  z-index: 2;
  color: #151515;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 500;
}

.geography-conclusion {
  width: min(700px, 100%);
  margin-top: 56px;
  color: #727272;
  font-size: 14px;
  line-height: 1.9;
}

.achievements {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: stretch;
  background: #f5f5f5;
}

.achievements-media {
  position: relative;
  align-self: stretch;

  padding: 24px;

  overflow: visible;

  background: #f5f5f5;

  display: flex;
  align-items: flex-start;
}

.achievements-media img {
  position: sticky;
  z-index: 2;
  top: 24px;
  width: 100%;
  height: calc(100vh - 48px);
  min-height: 650px;
  max-height: 860px;
  object-fit: contain;
  object-position: center top;
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: var(--radius-large);
  filter: saturate(.9) contrast(1.025);
  box-shadow:
    0 30px 80px
    rgba(0, 0, 0, .13);
  transition:
    transform .6s cubic-bezier(.2, .7, .2, 1),
    filter .6s ease,
    box-shadow .6s ease;
}

.achievements-media:hover img {
  transform: scale(.994);
  filter: saturate(1) contrast(1.015);
  box-shadow:
    0 38px 100px
    rgba(0, 0, 0, .16);
}

.achievements-content {
  position: relative;
  z-index: 3;
  padding: 135px 7vw 145px;
  background: #f5f5f5;
}

.achievements-intro {
  max-width: 560px;
  color: #707070;
  font-size: 15px;
  line-height: 1.9;
}

.achievements-subtitle {
  margin-top: 42px;
  color: #363636;
  font-size: 14px;
  font-weight: 500;
}

.achievement-list {
  margin-top: 30px;
}

.achievement-item {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  margin-bottom: 13px;
  padding: 25px 27px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .09);
  border-radius: var(--radius-small);
  background:
    radial-gradient(
      250px circle at var(--mouse-x) var(--mouse-y),
      rgba(0, 0, 0, .05),
      transparent 70%
    ),
    rgba(255, 255, 255, .72);
  transition:
    transform .38s cubic-bezier(.2, .7, .2, 1),
    box-shadow .35s ease,
    border-color .35s ease,
    background-color .35s ease;
}

.achievement-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #111111;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .38s ease;
}

.achievement-item:hover {
  transform: translateX(8px) scale(1.006);
  border-color: rgba(0, 0, 0, .17);
  background-color: #ffffff;
  box-shadow:
    0 20px 45px
    rgba(0, 0, 0, .08);
}

.achievement-item:hover::before {
  transform: scaleY(1);
}

.achievement-item p {
  position: relative;
  z-index: 2;
  max-width: 520px;
  color: #414141;
  font-size: 14px;
  line-height: 1.7;
}

.principles {
  position: relative;
  padding: 165px 0 180px;
  overflow: hidden;
}

.principles::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 0, 0, .035);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(0, 0, 0, .012),
    0 0 0 180px rgba(0, 0, 0, .006);
}

.principles-inner {
  position: relative;
  z-index: 2;
  width: min(850px, calc(100% - 96px));
  margin: 0 auto;
  text-align: center;
}

.principles-inner p {
  width: min(720px, 100%);
  margin: 0 auto 26px;
  color: #6d6d6d;
  font-size: 15px;
  line-height: 1.95;
}

.contacts {
  padding: 150px 0 160px;
}

.contacts .container {
  position: relative;
  z-index: 2;
}

.contact-card {
  position: relative;
  padding: 60px 64px;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-large);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .07),
      rgba(255, 255, 255, .018)
    );
  box-shadow:
    inset
    0
    1px
    0
    rgba(255, 255, 255, .07),
    0
    35px
    100px
    rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}

.contact-card::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -210px;
  top: -230px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(255, 255, 255, .018),
    0 0 0 110px rgba(255, 255, 255, .008);
  transition: transform .8s ease;
}

.contact-card:hover::before {
  transform: scale(1.12);
}

.contact-card h3 {
  position: relative;
  z-index: 2;
  color: #f7f7f7;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 45px;
  line-height: 1.2;
  font-weight: 500;
}

.contact-card p {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  color: rgba(255, 255, 255, .6);
  font-size: 16px;
  line-height: 1.7;
}

.contact-card span {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, .38);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(55px) scale(.987);
  transition:
    opacity 1s cubic-bezier(.16, .76, .2, 1),
    transform 1s cubic-bezier(.16, .76, .2, 1),
    filter .95s ease;
}

.reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.stagger-item {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(32px) scale(.98);
}

.stagger-group.visible .stagger-item {
  animation:
    staggerReveal
    .78s
    cubic-bezier(.17, .75, .2, 1)
    forwards;
}

.stagger-group.visible .stagger-item:nth-child(1) {
  animation-delay: .03s;
}

.stagger-group.visible .stagger-item:nth-child(2) {
  animation-delay: .09s;
}

.stagger-group.visible .stagger-item:nth-child(3) {
  animation-delay: .15s;
}

.stagger-group.visible .stagger-item:nth-child(4) {
  animation-delay: .21s;
}

.stagger-group.visible .stagger-item:nth-child(5) {
  animation-delay: .27s;
}

.stagger-group.visible .stagger-item:nth-child(6) {
  animation-delay: .33s;
}

.stagger-group.visible .stagger-item:nth-child(7) {
  animation-delay: .39s;
}

.stagger-group.visible .stagger-item:nth-child(8) {
  animation-delay: .45s;
}

.stagger-group.visible .stagger-item:nth-child(9) {
  animation-delay: .51s;
}

.stagger-group.visible .stagger-item:nth-child(10) {
  animation-delay: .57s;
}

.contact-links {
  position: relative;
  z-index: 2;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 32px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;
  padding: 0 18px;

  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;

  background:
    rgba(255, 255, 255, .04);

  color:
    rgba(255, 255, 255, .74);

  font-size: 13px;
  font-weight: 500;

  text-decoration: none;

  backdrop-filter: blur(10px);

  transition:
    transform .3s cubic-bezier(.2, .7, .2, 1),
    background-color .3s ease,
    border-color .3s ease,
    color .3s ease,
    box-shadow .3s ease;
}

.contact-links a:hover {
  transform: translateY(-3px);

  background: #ffffff;

  border-color: #ffffff;

  color: #111111;

  box-shadow:
    0 14px 35px
    rgba(0, 0, 0, .22);
}

@media (max-width: 540px) {
  .contact-links {
    gap: 10px;
    margin-top: 26px;
  }

  .contact-links a {
    min-height: 44px;
    padding: 0 16px;
    font-size: 12px;
  }
}
@keyframes heroImage {
  from {
    opacity: .35;
    transform: scale(1.07);
    filter:
      saturate(.55)
      contrast(1.08)
      blur(3px);
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter:
      saturate(.86)
      contrast(1.04)
      blur(0);
  }
}

@keyframes heroText {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes heroLine {
  to {
    transform: scaleX(1);
  }
}

@keyframes scrollBeam {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateY(330%);
    opacity: 0;
  }
}

@keyframes staggerReveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1150px) {
  .container {
    width: min(100% - 64px, 980px);
  }

  .narrow-container {
    width: min(100% - 64px, 900px);
  }

  .hero-media img {
    width: 44%;
  }

  .hero-content {
    left: 50%;
    width: calc(50% - 50px);
  }

  .about-layout {
    grid-template-columns: 430px 1fr;
    gap: 65px;
  }

  .image-frame {
    height: 610px;
  }

  .career {
    grid-template-columns: 40% 60%;
  }

  .career-media {
    padding: 18px;
  }

  .career-media img {
    top: 18px;
    height: calc(100vh - 36px);
    min-height: 620px;
  }

  .career-content {
    padding-left: 58px;
    padding-right: 45px;
    border-radius: 38px 0 0 38px;
  }

  .timeline::before {
    left: 122px;
  }

  .timeline-item {
    grid-template-columns: 95px 1fr;
    gap: 55px;
  }

  .timeline-item::before {
    left: 116px;
  }

  .education-layout {
    grid-template-columns: 1fr 410px;
    gap: 60px;
  }

  .education-media {
    height: 560px;
  }

  .additional-education {
    grid-template-columns: 300px 1fr;
    gap: 50px;
    padding: 46px;
  }

  .country-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .achievements-media {
    padding: 18px;
  }

  .achievements-media img {
    top: 18px;
    height: calc(100vh - 36px);
    min-height: 620px;
    object-fit: contain;
    object-position: center top;
  }

  .achievements-content {
    padding-left: 55px;
    padding-right: 55px;
  }
}

@media (max-width: 820px) {
  .container,
  .narrow-container,
  .principles-inner {
    width: calc(100% - 40px);
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-header h2 {
    font-size: 43px;
    letter-spacing: -1.3px;
  }

  .hero {
    height: auto;
    min-height: 830px;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    object-position: 40% top;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, .04) 0%,
        rgba(0, 0, 0, .17) 32%,
        rgba(0, 0, 0, .84) 60%,
        #030303 100%
      );
  }

  .hero-content {
    top: auto;
    left: 20px;
    right: 20px;
    bottom: 82px;
    width: auto;
    transform: none;
  }

  .hero h1 {
    font-size: 63px;
    letter-spacing: -2.6px;
  }

  .hero-role {
    margin-top: 23px;
    font-size: 16px;
  }

  .hero-description {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.78;
  }

  .hero-scroll {
    left: 20px;
    height: 48px;
  }

  .about,
  .competencies,
  .education,
  .geography,
  .principles,
  .contacts {
    padding-top: 100px;
    padding-bottom: 105px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .image-frame {
    width: 100%;
    height: 560px;
    border-radius: 28px;
  }

  .about-content .large-text {
    font-size: 31px;
  }

  .philosophy {
    padding: 105px 0 110px;
  }

  .philosophy blockquote {
    font-size: 34px;
  }

  .competency-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .competency-card {
    min-height: 195px;
    border-radius: 21px;
  }

  .career {
    display: block;
    padding-top: 18px;
    background: #080808;
  }

  .career-media {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0 18px 18px;
    background: transparent;
  }

  .career-media img {
    position: relative;
    top: auto;
    width: 100%;
    height: 600px;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    object-position: center top;
    border-radius: 27px;
  }

  .career-content {
    padding: 95px 20px 105px;
    border-radius: 32px 32px 0 0;
  }

  .timeline::before {
    left: 7px;
  }

  .timeline-item {
    display: block;
    padding-left: 37px;
    padding-bottom: 78px;
  }

  .timeline-item::before {
    left: 0;
  }

  .timeline-period {
    margin-bottom: 15px;
  }

  .timeline-body h3 {
    font-size: 28px;
  }

  .education-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .education-media {
    height: 560px;
    border-radius: 27px;
  }

  .additional-education {
    grid-template-columns: 1fr;
    gap: 45px;
    margin-top: 85px;
    padding: 36px;
    border-radius: 25px;
  }

  .education-conclusion {
    margin-top: 52px;
  }

  .expertise {
    padding: 105px 0 110px;
  }

  .expertise-heading {
    display: block;
  }

  .expertise-heading > p {
    width: 100%;
    margin-top: 26px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .country-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievements {
    display: block;
    padding-top: 18px;
    background: #f5f5f5;
  }

  .achievements-media {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0 18px 18px;
    background: #f5f5f5;
  }

  .achievements-media img {
    position: relative;
    top: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
    object-position: center top;
    background: #f5f5f5;
    border-radius: 27px;
  }

  .achievements-content {
    padding: 95px 20px 105px;
    background: #f5f5f5;
  }

  .reveal {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(42px) scale(.985);
    transition:
      opacity .85s cubic-bezier(.16, .76, .2, 1),
      transform .9s cubic-bezier(.16, .76, .2, 1),
      filter .8s ease;
  }

  .reveal.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }

  .stagger-item {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(26px) scale(.985);
  }

  .stagger-group.visible .stagger-item {
    animation:
      staggerReveal
      .72s
      cubic-bezier(.17, .75, .2, 1)
      forwards;
  }
}

@media (max-width: 540px) {
  .container,
  .narrow-container,
  .principles-inner {
    width: calc(100% - 32px);
  }

  body {
    font-size: 15px;
  }

  .section-header h2 {
    font-size: 37px;
    letter-spacing: -1px;
  }

  .hero {
    min-height: 780px;
  }

  .hero h1 {
    font-size: 53px;
    letter-spacing: -2px;
  }

  .hero-role {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-line {
    margin: 28px 0 24px;
  }

  .hero-description {
    font-size: 13px;
  }

  .image-frame,
  .education-media {
    height: 450px;
  }

  .about-content .large-text {
    font-size: 27px;
  }

  .about-content p {
    font-size: 14px;
  }

  .philosophy blockquote {
    font-size: 29px;
  }

  .philosophy .narrow-container > p {
    font-size: 14px;
  }

  .competency-card {
    padding: 31px 27px;
  }

  .competency-card h3 {
    font-size: 24px;
  }

  .career {
    padding-top: 12px;
  }

  .career-media {
    padding: 0 12px 12px;
  }

  .career-media img {
    height: 480px;
    border-radius: 22px;
  }

  .career-content {
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 27px 27px 0 0;
  }

  .timeline-item {
    padding-left: 30px;
  }

  .timeline-body h3 {
    font-size: 25px;
  }

  .timeline-body h4,
  .timeline-body p,
  .timeline-body li {
    font-size: 13px;
  }

  .education-content h3 {
    font-size: 30px;
  }

  .additional-content h3 {
    font-size: 27px;
  }

  .additional-education {
    padding: 26px;
  }

  .table-head,
  .table-row {
    grid-template-columns: 105px 1fr;
    gap: 15px;
  }

  .table-row strong {
    font-size: 13px;
  }

  .expertise-item {
    padding: 22px;
    font-size: 20px;
  }

  .country-grid {
    grid-template-columns: 1fr;
  }

  .country-card {
    height: 148px;
  }

  .achievements {
    padding-top: 12px;
  }

  .achievements-media {
    padding: 0 12px 12px;
  }

  .achievements-media img {
    height: auto;
    object-fit: contain;
    object-position: center top;
    border-radius: 22px;
  }

  .achievements-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .achievement-item {
    padding: 22px;
  }

  .contact-card {
    padding: 42px 29px;
    border-radius: 25px;
  }

  .contact-card h3 {
    font-size: 35px;
  }

  .contact-card p {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal,
  .stagger-item {
    opacity: 1;
    filter: none;
    transform: none;
  }
}