:root {
  --violet: #5b2a86;
  --turquoise: #1D999E;
  --turquoise-dark: #11575a;
  --band-gradient:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.13), transparent 38%),
    radial-gradient(circle at 88% 8%, rgba(29, 153, 158, 0.22), transparent 34%),
    linear-gradient(140deg, var(--violet) 0%, var(--turquoise) 100%);
  --ink: #102033;
  --ink-soft: #495668;
  --line: #d7dde5;
  --surface: #ffffff;
  --surface-soft: #f3f6fa;
  --surface-muted: #edf2f7;
  --footer: #0f2334;
  --max-width: 1180px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 18px 42px rgba(14, 21, 31, 0.1);
  --shadow-card: 0 14px 34px rgba(20, 27, 36, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.62;
  background:
    radial-gradient(circle at 92% 8%, rgba(23, 109, 111, 0.09), transparent 34%),
    radial-gradient(circle at 8% 20%, rgba(91, 42, 134, 0.08), transparent 36%),
    linear-gradient(180deg, #f9fbfd 0%, #ffffff 42%);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  line-height: 1.15;
  color: var(--violet);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
}

h1 {
  font-family: "Trebuchet MS", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.6rem);
  letter-spacing: -0.02em;
}

h2 {
  font-family: "Segoe UI", "Trebuchet MS", "Avenir Next", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
  letter-spacing: -0.01em;
}

h3 {
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

ul,
ol {
  margin: 0.35rem 0 1rem;
  padding-left: 1.15rem;
}

li {
  margin-bottom: 0.42rem;
  color: var(--ink-soft);
}

strong {
  color: var(--violet);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid rgba(215, 221, 229, 0.88);
}

.nav-wrap {
  min-height: 122px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand img {
  display: block;
  width: auto;
  height: 42px;
}

.brand-text {
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0.015em;
  color: var(--violet);
  text-transform: uppercase;
}

.site-header .brand {
  gap: 0;
}

.site-header .brand img {
  height: 92px;
}

.site-header .brand-text {
  display: none;
}

.site-nav {
  justify-self: center;
}

.site-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.5rem 0.92rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 620;
  color: var(--violet);
  transition: color 0.16s ease, background-color 0.16s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--turquoise);
  background: rgba(23, 109, 111, 0.12);
}

.has-submenu {
  position: relative;
}

.has-submenu > a::after {
  content: "▾";
  font-size: 0.65rem;
  margin-left: 0.35rem;
}

.submenu {
  position: absolute;
  left: 0;
  top: calc(100% + 0.5rem);
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  min-width: 260px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.submenu a {
  width: 100%;
  justify-content: flex-start;
  border-radius: 9px;
  padding: 0.5rem 0.62rem;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switch {
  display: inline-flex;
  gap: 0.32rem;
  align-items: center;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 700;
  color: #5e6775;
  transition: all 0.16s ease;
}

.lang-switch a.active,
.lang-switch a:hover {
  color: var(--turquoise);
  border-color: rgba(23, 109, 111, 0.4);
  background: rgba(23, 109, 111, 0.08);
}

.hero {
  position: relative;
  padding: 5.2rem 0 3.2rem;
}

.hero::before {
  content: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: stretch;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.34rem 0.76rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #667389;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--turquoise);
}

.lead {
  margin-top: 1rem;
  font-size: 1.08rem;
  max-width: 68ch;
  color: #344154;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  min-height: 46px;
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.16s ease, background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.btn-primary {
  background: var(--turquoise);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(23, 109, 111, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--turquoise-dark);
}

.btn-secondary {
  border-color: rgba(91, 42, 134, 0.34);
  background: #ffffff;
  color: var(--violet);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(91, 42, 134, 0.08);
}

.panel,
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.panel {
  padding: 1.15rem;
}

.card {
  padding: 1rem;
}

.card h3 {
  margin-bottom: 0.42rem;
}

.card p {
  margin-bottom: 0.35rem;
}

.job-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.4rem;
  align-items: end;
  padding: 1.35rem 1.45rem 1.4rem;
  border: 1px solid rgba(29, 153, 158, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 249, 0.98));
  box-shadow: var(--shadow-card);
}

.job-highlight-copy {
  min-width: 0;
}

.job-highlight-label {
  margin: 0 0 0.35rem;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--turquoise);
}

.job-highlight h3 {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", "Avenir Next", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  color: var(--violet);
}

.job-highlight-title {
  color: inherit;
  text-decoration: none;
}

.job-highlight-title:hover h3,
.job-highlight-title:focus-visible h3 {
  color: var(--turquoise);
}

.job-highlight-meta {
  margin: 0.38rem 0 0;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--turquoise-dark);
}

.job-highlight p:last-child {
  margin-bottom: 0;
}

.job-highlight .cta-row {
  margin-top: 0;
  justify-content: flex-end;
}

.section-profile li::marker {
  color: var(--turquoise);
}

.section {
  padding: 2.35rem 0;
}

.section + .section {
  border-top: 1px solid rgba(215, 221, 229, 0.8);
}

.section.alt {
  background: linear-gradient(180deg, #f3f7fb 0%, #f8fafc 100%);
  border-radius: 26px;
  padding: 2rem;
  border: 1px solid rgba(215, 221, 229, 0.6);
}

.section-anchor {
  scroll-margin-top: 110px;
}

.grid-2,
.grid-3,
.pillar-grid,
.process-grid,
.stats-row {
  display: grid;
  gap: 0.9rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pillar-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.metric {
  border: 1px solid rgba(23, 109, 111, 0.2);
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 0.9rem;
}

.metric b {
  display: block;
  font-size: 1.45rem;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  color: var(--turquoise);
}

.metric span {
  color: #5f6b7f;
  font-size: 0.82rem;
}

.pillar {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.pillar::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--turquoise));
}

.pillar h3 {
  margin-top: 0.9rem;
}

.step {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.step .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(23, 109, 111, 0.14);
  color: var(--turquoise);
  font-weight: 800;
  font-size: 0.84rem;
  margin-bottom: 0.6rem;
}

.focus-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
}

.home-page .hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.home-page .hero-media {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.home-page .hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.home-page .inline-facts {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home-page .inline-facts li {
  margin: 0;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(91, 42, 134, 0.25);
  color: #3f4d62;
  font-size: 0.8rem;
  background: rgba(91, 42, 134, 0.04);
}

.home-page .pillar-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.2rem 1.2rem;
  margin-top: 1rem;
}

.home-page .pillar-item {
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
}

.home-page .pillar-item p {
  margin-bottom: 0;
}

.home-page .process-list {
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}

.home-page .process-list li {
  margin: 0 0 0.95rem;
  padding: 0 0 0.2rem 0.95rem;
  border-left: 2px solid rgba(23, 109, 111, 0.32);
}

.home-page .process-list li p {
  margin-bottom: 0;
}

.home-page .simple-media {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.home-page .simple-media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.home-page .simple-media figcaption {
  padding: 0.75rem 0.9rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: #5f6b7f;
}

.home-modern .site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
}

.home-modern .site-header .container {
  width: min(var(--max-width), 92vw);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.home-modern .nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.home-modern .site-nav {
  justify-self: center;
  margin: 0;
}

.home-modern .brand {
  justify-self: start;
}

.home-modern .lang-switch {
  justify-self: end;
}

.home-modern .brand-text {
  color: var(--violet);
}

.home-modern .site-nav a {
  color: var(--violet);
}

.home-modern .site-nav a:hover,
.home-modern .site-nav a:focus-visible,
.home-modern .site-nav a.active {
  color: var(--turquoise);
  background: rgba(23, 109, 111, 0.12);
}

.home-modern .lang-switch a {
  color: #5e6775;
  border-color: var(--line);
  background: #ffffff;
}

.home-modern .lang-switch a.active,
.home-modern .lang-switch a:hover {
  color: var(--turquoise);
  border-color: rgba(23, 109, 111, 0.4);
  background: rgba(23, 109, 111, 0.08);
}

.hero-splash {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0 -4vw;
}

.hero-splash-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-splash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 24, 44, 0.82) 0%,
    rgba(22, 45, 71, 0.74) 48%,
    rgba(23, 109, 111, 0.56) 100%
  );
}

.hero-splash-content {
  position: relative;
  z-index: 2;
  width: min(920px, 92vw);
  margin: 0 auto;
  padding: 8.5rem 0 5rem;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
}

.hero-splash-content h1 {
  color: #ffffff;
  max-width: 16ch;
  margin-left: 0;
  margin-right: 0;
}

.hero-splash-content .lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 62ch;
  margin-left: 0;
  margin-right: 0;
}

.hero-splash-content .kicker {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.hero-splash-content .dot {
  background: #ffffff;
}

.hero-splash-content .btn-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
  background: transparent;
}

.hero-splash-content .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-splash-content .cta-row {
  justify-content: flex-start;
}

.hero-facts {
  margin-top: 1.15rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
}

.home-modern-main .section {
  padding: 5rem 0;
}

.inner-modern {
  background:
    radial-gradient(circle at 94% 6%, rgba(23, 109, 111, 0.08), transparent 30%),
    radial-gradient(circle at 7% 18%, rgba(91, 42, 134, 0.07), transparent 34%),
    linear-gradient(180deg, #f9fbfd 0%, #ffffff 42%);
}

.inner-modern .site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
}

.inner-modern .site-header .brand-text {
  color: var(--violet);
}

.inner-modern .hero {
  position: relative;
  padding: 4.2rem min(40%, 460px) 2rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  margin-top: 0;
  overflow: hidden;
}

.inner-modern .hero h1 {
  max-width: 20ch;
}

.inner-modern .hero .lead {
  max-width: 66ch;
  color: #334254;
}

.inner-modern .hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 1rem;
  width: min(35vw, 430px);
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  border: 1px solid rgba(215, 221, 229, 0.95);
  box-shadow: 0 14px 30px rgba(15, 23, 35, 0.12);
  background-image: linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)), url("../assets/images/cloud-focus.png");
  background-size: cover;
  background-position: center;
}

.inner-modern.page-about .hero::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)), url("../assets/images/about-heritage.png");
  box-shadow: 0 14px 30px rgba(15, 23, 35, 0.12);
}

.inner-modern.page-investment .hero::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)), url("../assets/images/hero-boardroom.png");
  box-shadow: 0 14px 30px rgba(15, 23, 35, 0.12);
}

.inner-modern.page-about .hero,
.inner-modern.page-investment .hero {
  overflow: visible;
}

.inner-modern.page-investment .hero {
  padding-right: min(44%, 520px);
  min-height: 360px;
}

.inner-modern.page-investment .hero > p {
  max-width: 62ch;
}

.inner-modern.page-team .hero::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)), url("../assets/images/team-executive.png");
}

.inner-modern.page-careers .hero::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)), url("../assets/images/careers-workspace.png");
}

.inner-modern.page-contact .hero::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)), url("../assets/images/dusseldorf-location.png");
}

.inner-modern.page-legal .hero {
  padding-right: 0;
}

.inner-modern.page-legal .hero::after {
  display: none;
}

.inner-modern.page-legal .hero h1 {
  max-width: 30ch;
}

.inner-modern.page-legal .section {
  margin: 0;
  padding: 2.8rem 0;
  border: 0;
  background: transparent;
  position: relative;
  z-index: 0;
}

.inner-modern.page-legal .section + .section {
  border-top: 0;
}

.inner-modern.page-legal main > section.section.alt::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--band-gradient);
}

.inner-modern.page-legal main > section.section.alt .section-label {
  display: block;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--turquoise);
  letter-spacing: 0.2em;
  margin-bottom: 0.35rem;
}

.inner-modern.page-legal main > section.section.alt h2 {
  color: #ffffff;
  font-family: "Segoe UI", "Trebuchet MS", "Avenir Next", sans-serif;
  font-weight: 650;
}

.inner-modern.page-legal main > section.section.alt h3,
.inner-modern.page-legal main > section.section.alt h4 {
  color: var(--turquoise);
  font-family: "Segoe UI", "Trebuchet MS", "Avenir Next", sans-serif;
  font-weight: 650;
}

.inner-modern.page-legal main > section.section.alt h2::before {
  content: none;
}

.inner-modern.page-legal main > section.section.alt > h2:first-of-type {
  max-width: 22ch;
  margin-bottom: 0.45rem;
}

.inner-modern.page-legal main > section.section.alt > h2:first-of-type::after {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
}

.inner-modern.page-legal main > section.section.alt p,
.inner-modern.page-legal main > section.section.alt li,
.inner-modern.page-legal main > section.section.alt .section-sub {
  color: rgba(248, 252, 255, 0.93);
}

.inner-modern.page-legal main > section.section.alt strong {
  color: #ffffff;
}

.inner-modern.page-legal main > section.section.alt a {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.inner-modern.page-legal main > section.section.alt .card,
.inner-modern.page-legal main > section.section.alt .panel {
  border-top-color: rgba(29, 153, 158, 0.7);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.legal-grid .panel,
.legal-grid .card {
  height: 100%;
}

.inner-modern .hero .kicker {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  margin: 0 0 0.35rem;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--turquoise);
}

.inner-modern .hero .dot {
  display: none;
}

.inner-modern .section {
  padding: 2.4rem 0;
}

.inner-modern:not(.page-legal) .section {
  margin: 0;
  padding: 2.8rem 0;
  border: 0;
  background: transparent;
  position: relative;
  z-index: 0;
}

.inner-modern:not(.page-legal) .section + .section {
  border-top: 0;
}

.inner-modern .section h2 {
  position: relative;
  padding-top: 0.85rem;
  margin-bottom: 0.65rem;
}

.inner-modern .section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 68px;
  height: 3px;
  border-radius: 999px;
  background: var(--turquoise);
}

.inner-modern .section > p {
  max-width: 76ch;
}

.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) {
  background: transparent;
}

.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1)::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--band-gradient);
}

.inner-modern .panel,
.inner-modern .card {
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(29, 153, 158, 0.38);
  box-shadow: none;
  background: transparent;
  padding: 0.9rem 0 0.2rem;
}

.inner-modern .panel h3,
.inner-modern .card h3 {
  color: var(--violet);
}

.inner-modern .card strong,
.inner-modern .panel strong {
  display: block;
  margin-bottom: 0.24rem;
  font-family: "Segoe UI", "Trebuchet MS", "Avenir Next", sans-serif;
  font-weight: 650;
  letter-spacing: -0.005em;
}

.inner-modern .card strong {
  color: var(--turquoise-dark);
}

.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) .section-label {
  display: block;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--turquoise);
  letter-spacing: 0.2em;
  margin-bottom: 0.35rem;
}

.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) h2 {
  color: #ffffff;
  font-family: "Segoe UI", "Trebuchet MS", "Avenir Next", sans-serif;
  font-weight: 650;
}

.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) h3,
.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) h4 {
  color: var(--turquoise);
  font-family: "Segoe UI", "Trebuchet MS", "Avenir Next", sans-serif;
  font-weight: 650;
}

.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) h2::before {
  content: none;
}

.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) > h2:first-of-type {
  max-width: 22ch;
  margin-bottom: 0.45rem;
}

.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) > h2:first-of-type::after {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
}

.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) p,
.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) li,
.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) .section-sub {
  color: rgba(248, 252, 255, 0.93);
}

.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) .card,
.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) .panel {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  padding: 0.9rem 0 0.2rem;
  background: transparent;
}

.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) .section-media {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) .location-map {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) .card p,
.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) .panel p,
.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) .card li,
.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) .panel li {
  color: rgba(248, 252, 255, 0.94);
}

.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) strong {
  color: #ffffff;
}

.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) h3,
.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) h4,
.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) .card strong,
.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) .panel strong {
  color: var(--turquoise);
}

.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) .card,
.inner-modern:not(.page-legal) main > section.section:nth-of-type(2n+1) .panel {
  border-top-color: rgba(29, 153, 158, 0.7);
}

.inner-modern .section ol {
  list-style: none;
  counter-reset: section-steps;
  padding-left: 0;
}

.inner-modern .section ol > li {
  counter-increment: section-steps;
  position: relative;
  padding-left: 2rem;
}

.inner-modern .section ol > li::before {
  content: counter(section-steps, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--turquoise);
}

.section-label {
  margin: 0 0 0.35rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--turquoise);
  font-weight: 700;
}

.content-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: center;
}

.content-split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.content-media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.content-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-media {
  margin: 0;
  width: 100%;
  max-width: none;
}

.section-media img {
  aspect-ratio: 4 / 3;
}

.section-media.media-framework,
.section-media.media-capital,
.section-media.media-private,
.section-media.media-realestate,
.section-media.media-location {
  width: min(500px, 100%);
}

.section-media.media-portrait {
  width: min(500px, 100%);
  aspect-ratio: 4 / 3;
  background: transparent;
  margin-inline: 0;
}

.section-media.media-portrait img {
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 26%;
  filter: brightness(1.06) saturate(0.96);
}

.section-media-layout {
  margin-top: 0.95rem;
}

.section-media-layout .content-split {
  align-items: start;
}

.section-media-layout .content-split > .section-media {
  justify-self: end;
}

.section-media-layout .content-split.reverse > .section-media {
  justify-self: start;
}

.management-layout {
  gap: 0.45rem;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
}

.management-layout.reverse > .section-media {
  justify-self: start;
  align-self: start;
  margin-inline: 0;
}

.asset-focus-grid {
  margin-top: 1rem;
}

.subsection-intro {
  margin-top: 1.6rem;
}

.location-map-embed {
  display: none;
  visibility: hidden;
}

.key-points {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.key-points div {
  padding-top: 0.55rem;
  border-top: 1px solid rgba(29, 153, 158, 0.46);
}

.key-points b {
  display: block;
  font-family: "Segoe UI", "Trebuchet MS", "Avenir Next", sans-serif;
  font-size: 1.12rem;
  color: var(--violet);
}

.dark-band {
  margin: 0 -4vw;
  padding: 4rem 4vw;
  background: var(--band-gradient);
  color: rgba(255, 255, 255, 0.92);
}

.dark-band h2 {
  color: #ffffff;
  font-family: "Segoe UI", "Trebuchet MS", "Avenir Next", sans-serif;
  font-weight: 650;
}

.dark-band h3 {
  color: var(--turquoise);
  font-family: "Segoe UI", "Trebuchet MS", "Avenir Next", sans-serif;
  font-weight: 650;
}

.dark-band h4 {
  color: var(--turquoise);
  font-family: "Segoe UI", "Trebuchet MS", "Avenir Next", sans-serif;
  font-weight: 650;
}

.dark-band p {
  color: rgba(248, 252, 255, 0.93);
}

.dark-band li {
  color: rgba(248, 252, 255, 0.93);
}

.dark-band strong {
  color: var(--turquoise);
}

.dark-band-head {
  max-width: 760px;
  margin-bottom: 1.25rem;
}

.dark-band-head .section-label {
  display: block;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--turquoise);
  letter-spacing: 0.2em;
  margin-bottom: 0.35rem;
}

.dark-band-head h2 {
  max-width: 20ch;
  margin-bottom: 0.45rem;
}

.dark-band-accent {
  display: block;
  width: 92px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
  margin-bottom: 0.55rem;
}

.dark-band-head p {
  max-width: 60ch;
}

.pillars-plain {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.4rem;
}

.pillars-plain article {
  padding-top: 0.2rem;
  border-top: 1px solid rgba(29, 153, 158, 0.7);
}

.pillars-plain h3 {
  display: block;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--turquoise);
  border: 0;
  box-shadow: none;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.pillars-plain p {
  color: rgba(248, 252, 255, 0.92);
  margin-bottom: 0;
}

.principles-list {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.principles-list li {
  margin: 0 0 1rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(23, 109, 111, 0.42);
}

.principles-list .number {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  color: var(--turquoise);
  text-transform: uppercase;
  font-weight: 700;
}

.principles-list h3 {
  margin: 0.25rem 0 0.25rem;
}

.inner-modern .section ol.steps-block {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.inner-modern .section ol.steps-block > li {
  margin: 0 0 1rem;
  padding: 0 0 0.2rem 1rem;
  border-left: 2px solid rgba(23, 109, 111, 0.42);
}

.inner-modern .section ol.steps-block > li::before {
  content: none !important;
}

.inner-modern .section ol.steps-block .number {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  color: var(--turquoise);
  text-transform: uppercase;
  font-weight: 700;
}

.inner-modern .section ol.steps-block h4 {
  margin: 0.25rem 0 0.25rem;
  font-family: "Segoe UI", "Trebuchet MS", "Avenir Next", sans-serif;
  font-weight: 650;
}

.inner-modern .section ol.steps-block h4 a {
  color: inherit;
  text-decoration: none;
}

.inner-modern .section ol.steps-block h4 a:hover,
.inner-modern .section ol.steps-block h4 a:focus-visible {
  text-decoration: underline;
}

.inner-modern .section ol.steps-inline {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.inner-modern .section ol.steps-inline > li {
  position: static;
  padding-left: 0;
  margin: 0 0 1rem;
}

.inner-modern .section ol.steps-inline > li::before {
  content: none !important;
}

.inner-modern .section ol.steps-inline .step-head {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 0.15rem;
  color: var(--turquoise);
}

.inner-modern .section ol.steps-inline .number,
.inner-modern .section ol.steps-inline h4,
.inner-modern .section ol.steps-inline h4 a,
.inner-modern .section ol.steps-inline h4 a:visited {
  color: inherit !important;
}

.inner-modern .section ol.steps-inline .number {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  flex: 0 0 auto;
}

.inner-modern .section ol.steps-inline h4 {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", "Avenir Next", sans-serif;
  font-weight: 650;
}

.inner-modern .section ol.steps-inline h4 a {
  text-decoration: none;
}

.inner-modern .section ol.steps-inline h4 a:hover,
.inner-modern .section ol.steps-inline h4 a:focus-visible {
  text-decoration: underline;
}

.inner-modern .section ol.steps-inline > li > p {
  margin-left: calc(1.6rem + 0.85rem);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.media-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.media-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}


.media-caption {
  padding: 0.75rem 0.9rem;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.media-caption b {
  color: #1e3353;
  display: block;
  margin-bottom: 0.2rem;
}

.media-caption span {
  font-size: 0.82rem;
  color: #5f6b7f;
}

.quote-band {
  margin-top: 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(23, 109, 111, 0.24);
  padding: 1rem;
  background: rgba(23, 109, 111, 0.06);
}

.quote-band p {
  margin: 0;
  color: #264661;
}

.cta-block {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(91, 42, 134, 0.2);
  background: linear-gradient(115deg, rgba(91, 42, 134, 0.09), rgba(23, 109, 111, 0.08));
  padding: 1.3rem;
}

.cta-block h2 {
  margin-bottom: 0.5rem;
}

.site-footer {
  margin-top: 3.2rem;
  background:
    radial-gradient(circle at 16% 14%, rgba(75, 169, 171, 0.2), transparent 42%),
    linear-gradient(180deg, #3a617d 0%, #335672 100%);
  color: rgba(255, 255, 255, 0.92);
  padding: 2.2rem 0;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.site-footer .brand-text {
  color: #ffffff;
  text-transform: none;
}

.site-footer .brand img {
  height: 46px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer a:hover {
  color: #99dcde;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.87rem;
}

.fine {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.language-landing {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.6rem;
}

.language-card {
  width: min(920px, 100%);
  border-radius: 26px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.language-options {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.language-option {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: linear-gradient(160deg, #ffffff 0%, #f4faf9 100%);
  box-shadow: var(--shadow-card);
}

.language-option:hover {
  border-color: rgba(23, 109, 111, 0.35);
}

@media (max-width: 1080px) {
  .site-header .brand img {
    height: 72px;
  }

  .home-modern .nav-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand lang"
      "menu menu";
    row-gap: 0.65rem;
  }

  .home-modern .brand {
    grid-area: brand;
  }

  .home-modern .site-nav {
    grid-area: menu;
    margin: 0;
    justify-self: stretch;
  }

  .home-modern .lang-switch {
    grid-area: lang;
    justify-self: end;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand lang"
      "menu menu";
    row-gap: 0.65rem;
    padding: 0.7rem 0;
  }

  .brand {
    grid-area: brand;
  }

  .site-nav {
    grid-area: menu;
    justify-self: stretch;
  }

  .site-nav > ul {
    flex-wrap: wrap;
  }

  .lang-switch {
    grid-area: lang;
    justify-self: end;
  }

  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: 100%;
    margin-top: 0.3rem;
    display: none;
  }

  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu {
    display: block;
  }
}

@media (max-width: 960px) {
  .hero {
    padding-top: 4.4rem;
  }

  .hero-grid,
  .focus-layout,
  .legal-grid,
  .grid-2,
  .grid-3,
  .media-grid,
  .pillar-grid,
  .process-grid,
  .stats-row,
  .site-footer .footer-grid,
  .language-options {
    grid-template-columns: 1fr;
  }

  .section.alt {
    padding: 1.3rem;
  }

  .inner-modern .hero {
    padding-right: 0;
  }

  .inner-modern .hero::after {
    position: static;
    display: block;
    width: 100%;
    max-width: 560px;
    margin-top: 1rem;
  }

  .inner-modern.page-legal .hero::after {
    display: none;
  }

  .home-page .pillar-list {
    grid-template-columns: 1fr;
  }

  .content-split,
  .content-split.reverse,
  .key-points,
  .pillars-plain {
    grid-template-columns: 1fr;
  }

  .section-media {
    max-width: none;
  }

  .section-media.media-framework,
  .section-media.media-capital,
  .section-media.media-private,
  .section-media.media-realestate,
  .section-media.media-location {
    width: 100%;
  }

  .section-media.media-portrait {
    width: min(340px, 100%);
  }

  .hero-splash-content {
    padding-top: 7.4rem;
  }

  .job-highlight {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .job-highlight .cta-row {
    justify-content: flex-start;
  }
}
