:root {
  --ink: #10212a;
  --navy: #0a1a24;
  --navy-2: #102b39;
  --teal: #176b6a;
  --teal-light: #dcebea;
  --gold: #c7a265;
  --gold-light: #ead9bd;
  --paper: #f5f3ee;
  --white: #ffffff;
  --muted: #5f6b70;
  --line: #d9ddd9;
  --shadow: 0 24px 70px rgba(8, 26, 36, 0.12);
  --radius-sm: 10px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.65em;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.8rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

p {
  margin: 0 0 1.2em;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--white);
  transform: translateY(-160%);
}

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

.topbar {
  color: #dbe5e8;
  background: #07131b;
  font-size: 0.79rem;
  letter-spacing: 0.045em;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar a {
  text-decoration: none;
}

.topbar a:hover {
  color: var(--gold-light);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(10, 26, 36, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(5, 17, 24, 0.25);
}

.site-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 198px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-nav a {
  position: relative;
  padding: 13px 12px;
  color: #e7eef0;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  border-radius: 8px;
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  margin-left: 8px;
  padding: 12px 17px;
  color: var(--navy);
  background: var(--gold-light);
}

.site-nav .nav-cta::after {
  display: none;
}

.site-nav .nav-cta:hover {
  background: var(--white);
}

.site-nav .lang-switch {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-left: 4px;
  padding-inline: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.site-nav .lang-switch::after {
  display: none;
}

.site-nav .lang-switch:hover,
.site-nav .lang-switch:focus-visible {
  color: var(--navy);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 15%, rgba(23, 107, 106, 0.35), transparent 35%),
    linear-gradient(135deg, #07141d 0%, #0d2836 58%, #102f3b 100%);
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000, transparent 75%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
  padding-block: 90px 74px;
}

.hero h1,
.hero h2,
.hero h3,
.page-hero h1,
.page-hero h2 {
  color: var(--white);
}

.hero h1 {
  max-width: 820px;
}

.hero .lead {
  max-width: 700px;
  color: #dce6e8;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: var(--gold-light);
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero__actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  color: var(--navy);
  background: var(--gold-light);
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button::after {
  content: "→";
  transition: transform 180ms ease;
}

.button:hover {
  color: var(--navy);
  background: var(--white);
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(4px);
}

.button--outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

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

.button--dark:hover {
  color: var(--white);
  background: var(--teal);
}

.hero__visual {
  position: relative;
  align-self: center;
  min-height: 420px;
  padding-block: 34px;
}

.hero__illustration-frame {
  position: relative;
  width: 100%;
  margin-left: auto;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.hero__illustration-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  border-radius: inherit;
}

.hero__illustration-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.hero__identity-card {
  position: absolute;
  z-index: 3;
  bottom: 4px;
  left: -28px;
  width: min(290px, calc(100% - 18px));
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 11px 16px 11px 11px;
  color: var(--navy);
  background: rgba(245, 243, 238, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 44px 14px 14px 44px;
  box-shadow: var(--shadow);
}

.hero__identity-card img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  object-position: 55% center;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.hero__identity-card strong,
.hero__identity-card span {
  display: block;
}

.hero__identity-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.2;
}

.hero__identity-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.hero__badge {
  position: absolute;
  z-index: 2;
  top: 4px;
  right: -22px;
  width: 198px;
  padding: 15px 17px;
  color: var(--navy);
  background: rgba(245, 243, 238, 0.95);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.hero__badge strong,
.hero__badge span {
  display: block;
}

.hero__badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.hero__badge span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.proof-strip {
  color: var(--navy);
  background: var(--gold-light);
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.proof-item {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 30px;
  border-right: 1px solid rgba(10, 26, 36, 0.18);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.proof-item span {
  color: #4e514e;
  font-size: 0.82rem;
}

.section {
  padding-block: clamp(78px, 10vw, 132px);
}

.section--white {
  background: var(--white);
}

.section--navy {
  color: #dce6e8;
  background: var(--navy);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 52px;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
}

.section-heading--split p {
  margin-bottom: 0.8em;
  color: var(--muted);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.expertise-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.expertise-card::before {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  content: "";
  background: var(--teal-light);
  border-radius: 50%;
  transition: transform 260ms ease;
}

.expertise-card:hover {
  border-color: #adc7c5;
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.expertise-card:hover::before {
  transform: scale(1.35);
}

.expertise-card__number {
  margin-bottom: 48px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.expertise-card h3 {
  max-width: 280px;
}

.expertise-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.expertise-card__link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 800;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.split-feature--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.feature-image {
  position: relative;
}

.feature-image::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -24px;
  width: 65%;
  height: 70%;
  content: "";
  background: var(--gold-light);
  border-radius: var(--radius);
}

.feature-image img {
  width: 100%;
  height: min(660px, 72vw);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-image--landscape img {
  height: 460px;
}

.feature-image--portrait img {
  object-position: center 34%;
}

.feature-copy .lead {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 20px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
}

.feature-list li::before {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  content: "✓";
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.75rem;
}

.citation {
  padding: 24px 28px;
  color: var(--navy);
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-sm);
}

.citation p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-style: italic;
}

.citation small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-style: normal;
}

.publication-feature-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 0.85fr);
  gap: 18px;
}

.publication-feature {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  color: var(--white);
  background: #12313e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.publication-feature:first-child {
  background:
    linear-gradient(150deg, rgba(10, 26, 36, 0.78), rgba(16, 43, 57, 0.92)),
    url("../images/expertise-rgpd.webp") center / cover;
}

.cookie-notice {
  position: fixed;
  z-index: 120;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  left: max(18px, env(safe-area-inset-left));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: min(1080px, calc(100% - 36px));
  margin-inline: auto;
  padding: 20px 22px;
  color: #e9f0f1;
  background: rgba(10, 26, 36, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  margin: 0;
  color: #dce6e8;
  font-size: 0.88rem;
}

.cookie-notice strong {
  color: var(--white);
}

.cookie-notice a {
  color: var(--gold-light);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-notice__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cookie-notice__button {
  min-height: 44px;
  padding: 10px 17px;
  color: var(--navy);
  background: var(--gold-light);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-notice__button:hover,
.cookie-notice__button:focus-visible {
  background: var(--white);
}

.publication-feature__meta {
  margin-bottom: 42px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.publication-feature h3 {
  color: var(--white);
}

.publication-feature p {
  color: #dce6e8;
  font-size: 0.9rem;
}

.publication-feature a {
  margin-top: auto;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 800;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--teal);
}

.cta-band::after {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 470px;
  height: 470px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.04), 0 0 0 160px rgba(255, 255, 255, 0.03);
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  min-height: 340px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
  padding-block: 72px;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  color: #e2eeee;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #081722, #113441);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  align-items: end;
  gap: 60px;
  padding-block: 92px 78px;
}

.page-hero .lead {
  max-width: 760px;
  color: #dce6e8;
}

.page-hero__mark {
  justify-self: end;
  color: rgba(255, 255, 255, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 13vw, 12rem);
  line-height: 0.78;
}

.page-hero__visual {
  width: 100%;
  max-width: 480px;
  margin: 0;
  align-self: center;
  justify-self: end;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.26);
}

.page-hero__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: 80px;
}

.content-grid__aside {
  align-self: start;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-grid__aside h3 {
  font-size: 1.25rem;
}

.anchor-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.anchor-list a {
  display: block;
  padding: 11px 0;
  color: var(--teal);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.anchor-list li:last-child a {
  border-bottom: 0;
}

.service-section {
  padding: 0 0 70px;
  margin-bottom: 70px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 140px;
}

.service-section:last-child {
  border-bottom: 0;
}

.service-section__tag {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-section__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.56fr);
  align-items: center;
  gap: 30px;
  margin-bottom: 24px;
}

.service-section__intro h2 {
  margin-top: 8px;
}

.service-section__intro p:last-child {
  margin-bottom: 0;
}

.service-section__visual {
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(8, 26, 36, 0.16);
}

.service-section__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 420ms ease;
}

.service-section:hover .service-section__visual img {
  transform: scale(1.025);
}

.service-section ul,
.prose ul {
  padding-left: 1.2em;
}

.service-section li,
.prose li {
  margin-bottom: 0.55em;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(50px, 8vw, 104px);
  align-items: start;
}

.profile-photo {
  position: sticky;
  top: 128px;
  width: 100%;
  max-width: 340px;
}

.profile-photo img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: 55% center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.profile-photo__caption {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.timeline {
  margin-top: 44px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 32px;
  padding-bottom: 38px;
}

.timeline-item::before {
  position: absolute;
  top: 8px;
  bottom: 0;
  left: 137px;
  width: 1px;
  content: "";
  background: var(--line);
}

.timeline-item::after {
  position: absolute;
  top: 8px;
  left: 132px;
  width: 11px;
  height: 11px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-item__date {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.medal-inline {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 34px;
  align-items: center;
  margin: 56px 0;
  padding: 28px;
  background: var(--teal-light);
  border-radius: var(--radius);
}

.medal-inline img {
  width: 210px;
  height: 240px;
  object-fit: cover;
  object-position: center 58%;
  border-radius: var(--radius-sm);
}

.medal-inline p:last-child {
  margin-bottom: 0;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.training-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.training-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.training-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.institutions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.institutions li {
  padding: 8px 13px;
  color: #31545a;
  background: var(--teal-light);
  border-radius: 100px;
  font-size: 0.81rem;
  font-weight: 700;
}

.publication-tools {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.search-field {
  position: relative;
}

.search-field input {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px 12px 44px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 8px;
}

.search-field::before {
  position: absolute;
  top: 11px;
  left: 15px;
  color: var(--teal);
  content: "⌕";
  font-size: 1.3rem;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.filter-button {
  min-height: 42px;
  padding: 8px 14px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.publication-status {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.83rem;
}

.publication-language-note {
  margin: -8px 0 24px;
  color: var(--muted);
  font-size: 0.84rem;
  font-style: italic;
}

.publication-list {
  display: grid;
  gap: 12px;
}

.publication-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 26px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.publication-card:hover {
  border-color: #a7c4c1;
  box-shadow: 0 16px 40px rgba(8, 26, 36, 0.08);
  transform: translateY(-2px);
}

.publication-card[hidden] {
  display: none;
}

.publication-card__year {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.publication-card h2 {
  margin-bottom: 7px;
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.publication-card__meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
}

.publication-card__tag {
  display: inline-block;
  margin-right: 8px;
  padding: 4px 9px;
  color: #245c5b;
  background: var(--teal-light);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.publication-card__link {
  min-width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--teal);
  border: 1px solid var(--line);
  border-radius: 50%;
  text-decoration: none;
}

.publication-card__link:hover {
  color: var(--white);
  background: var(--teal);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(45px, 8vw, 100px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-detail {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.contact-detail strong {
  display: block;
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 0.73rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-detail p,
.contact-detail address {
  margin: 0;
  font-style: normal;
}

.contact-form {
  padding: clamp(28px, 5vw, 50px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #d8ddda;
  border-radius: 8px;
}

.form-field textarea {
  min-height: 165px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.fees-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: start;
  gap: clamp(36px, 7vw, 88px);
}

.fees-principles {
  padding: 28px;
  background: var(--teal-light);
  border-radius: var(--radius);
}

.fees-principles h3 {
  font-size: 1.35rem;
}

.fees-principles ul,
.fee-card ul {
  margin: 0;
  padding-left: 1.15em;
}

.fees-principles li,
.fee-card li {
  margin-bottom: 0.5em;
}

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

.fee-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(26px, 4vw, 38px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(8, 26, 36, 0.08);
}

.fee-card__label {
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fee-card h3 {
  font-size: clamp(1.55rem, 2.7vw, 2.1rem);
}

.fee-card__mode {
  margin: 8px 0 22px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.fee-card p,
.fee-card li {
  color: var(--muted);
  font-size: 0.92rem;
}

.fee-card .button {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 13px;
}

.fee-card--featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  border-color: rgba(255, 255, 255, 0.1);
}

.fee-card--featured::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(255, 255, 255, 0.025);
}

.fee-card--featured h3 {
  color: var(--white);
}

.fee-card--featured p,
.fee-card--featured li {
  color: #d8e4e7;
}

.fee-card--featured .fee-card__label,
.fee-card--featured .fee-card__mode {
  color: var(--gold-light);
}

.fee-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fee-process-step {
  padding: 34px;
  background: var(--white);
}

.fee-process-step span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 800;
}

.fee-process-step h3 {
  font-size: 1.35rem;
}

.fee-process-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.fees-note {
  margin-top: 28px;
  padding: 22px 24px;
  color: var(--muted);
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
}

.legal-card {
  max-width: 900px;
  padding: clamp(28px, 6vw, 60px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin-top: 1.6em;
  font-size: 1.7rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.notice {
  padding: 18px 20px;
  color: #6f4a15;
  background: #fff4dc;
  border: 1px solid #edd1a1;
  border-radius: var(--radius-sm);
}

.site-footer {
  color: #ccd9dc;
  background: #06131b;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 0.75fr 0.95fr;
  gap: 52px;
  padding-block: 72px 58px;
}

.site-footer .brand img {
  width: 214px;
}

.site-footer__about p {
  max-width: 340px;
  margin-top: 22px;
  color: #aebec2;
  font-size: 0.86rem;
}

.site-footer h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: #b9c8cc;
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.site-footer__bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #8fa1a6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1080px) {
  .site-header__inner {
    min-height: 76px;
  }

  .brand img {
    width: 170px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 0;
    height: calc(100vh - 76px);
    display: grid;
    align-content: start;
    gap: 2px;
    padding: 20px;
    overflow: auto;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.28);
    transform: translateY(-120%);
    transition: transform 240ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 10px;
  }

  .site-nav .nav-cta {
    margin: 8px 0 0;
  }

  .site-nav .lang-switch {
    width: max-content;
    margin: 8px 0 0;
  }

  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero__identity-card {
    left: -12px;
  }

  .hero__badge {
    right: -12px;
  }

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

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

  .publication-feature:first-child {
    grid-column: 1 / -1;
  }

  .site-footer__main {
    grid-template-columns: 1.25fr repeat(2, 0.75fr);
  }

  .site-footer__contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 800px) {
  :root {
    --container: min(100% - 30px, 680px);
  }

  body {
    font-size: 16px;
  }

  .topbar {
    display: none;
  }

  .hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 72px 58px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.3rem);
  }

  .hero__visual {
    min-height: auto;
    padding-block: 26px 58px;
  }

  .hero__badge {
    top: 10px;
    right: 10px;
    bottom: auto;
    left: auto;
    width: 178px;
    padding: 12px 14px;
  }

  .hero__badge strong {
    font-size: 0.95rem;
  }

  .hero__identity-card {
    bottom: 8px;
    left: 12px;
  }

  .hero__illustration-frame {
    border-radius: 22px;
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(10, 26, 36, 0.18);
  }

  .section-heading--split,
  .split-feature,
  .split-feature--reverse,
  .cta-band__inner,
  .content-grid,
  .profile-grid,
  .contact-grid,
  .fees-overview {
    grid-template-columns: 1fr;
  }

  .service-section__intro {
    grid-template-columns: 1fr;
  }

  .service-section__visual {
    width: min(100%, 520px);
  }

  .split-feature--reverse .feature-copy {
    order: 2;
  }

  .split-feature--reverse .feature-image {
    order: 1;
  }

  .section-heading--split {
    gap: 18px;
  }

  .feature-image img,
  .feature-image--landscape img {
    height: min(620px, 115vw);
  }

  .cta-band__inner {
    gap: 15px;
  }

  .page-hero__inner {
    min-height: 370px;
    grid-template-columns: 1fr;
    padding-block: 72px 58px;
  }

  .page-hero__mark {
    display: none;
  }

  .page-hero__visual {
    max-width: none;
    justify-self: stretch;
  }

  .content-grid__aside,
  .profile-photo {
    position: static;
  }

  .profile-photo img {
    height: 360px;
  }

  .fee-process-grid {
    grid-template-columns: 1fr;
  }

  .publication-tools {
    grid-template-columns: 1fr;
  }

  .filter-group {
    justify-content: flex-start;
  }

  .contact-grid {
    gap: 45px;
  }
}

@media (max-width: 600px) {
  .cookie-notice {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 18px;
  }

  .cookie-notice__actions {
    justify-content: space-between;
  }

  .expertise-grid,
  .training-grid,
  .publication-feature-grid,
  .fees-grid,
  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .profile-photo img {
    height: 330px;
  }

  .publication-feature:first-child,
  .site-footer__contact {
    grid-column: auto;
  }

  .expertise-card {
    min-height: 310px;
  }

  .publication-feature {
    min-height: 300px;
  }

  .medal-inline {
    grid-template-columns: 1fr;
  }

  .medal-inline img {
    width: 100%;
    height: 320px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-left: 26px;
  }

  .timeline-item::before {
    left: 5px;
  }

  .timeline-item::after {
    left: 0;
  }

  .publication-card {
    grid-template-columns: 1fr auto;
    gap: 13px;
    padding: 22px;
  }

  .publication-card__year {
    grid-column: 1 / -1;
  }

  .publication-card__link {
    grid-column: 2;
    grid-row: 2;
  }

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

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media print {
  .topbar,
  .site-header,
  .site-footer,
  .cta-band,
  .publication-tools {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .page-hero__inner {
    padding-block: 32px;
  }
}
