:root {
  --navy: #0b1f33;
  --blue: #1f5e7a;
  --gold: #d6a84f;
  --porcelain: #f6f4ef;
  --ink: #1d252c;
  --muted: #66727c;
  --line: #d8dee3;
  --white: #ffffff;
  --shadow: 0 28px 90px rgba(11, 31, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--porcelain);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 18px 18px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 14px;
  border: 1px solid rgba(216, 222, 227, 0.72);
  border-radius: 999px;
  background: rgba(246, 244, 239, 0.82);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(11, 31, 51, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-size: 0.82rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--navy);
}

.language-switcher {
  display: flex;
  gap: 6px;
}

.lang {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.lang.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 150px 24px 80px;
  background:
    radial-gradient(circle at 82% 16%, rgba(214, 168, 79, 0.28), transparent 28rem),
    linear-gradient(135deg, #fbfaf6 0%, var(--porcelain) 50%, #e9eef1 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(11, 31, 51, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 51, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-grid,
.statement-grid,
.international-section,
.expertise-section,
.timeline-section,
.conversion-section,
.authority-bar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100vh - 230px);
  grid-template-columns: 1.05fr 0.75fr;
  align-items: center;
  gap: 64px;
}

.eyebrow,
.section-kicker {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h1 {
  max-width: 840px;
  margin-top: 22px;
  font-size: clamp(4rem, 8vw, 7.8rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

h3 {
  font-size: 1.85rem;
}

.hero-lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 18px 42px rgba(11, 31, 51, 0.2);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.62);
}

.executive-card {
  overflow: hidden;
  border: 1px solid rgba(216, 222, 227, 0.76);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.portrait-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.portrait-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(11, 31, 51, 0.72));
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(18%) contrast(1.04);
}

.card-content {
  padding: 28px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
}

.card-content h2 {
  margin: 8px 0;
  color: var(--white);
  font-size: 2.6rem;
}

.role {
  margin: 0;
  color: var(--gold);
  font-weight: 700;
}

.signal-line {
  position: absolute;
  right: 0;
  bottom: 8vh;
  width: 42vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.authority-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  transform: translateY(-42px);
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.metric {
  min-height: 160px;
  padding: 28px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
}

.metric span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.metric p {
  margin: 0;
}

.statement-section,
.expertise-section,
.timeline-section,
.conversion-section {
  padding: 110px 24px;
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 72px;
  align-items: start;
}

.statement-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.international-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 110px 0;
}

.map-panel {
  min-height: 460px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--navy);
  box-shadow: var(--shadow);
  color: rgba(255, 255, 255, 0.7);
}

.map-grid {
  position: relative;
  height: 360px;
  background:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 52px 52px;
}

.map-grid::before,
.map-grid::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(214, 168, 79, 0.45);
  border-radius: 50%;
}

.map-grid::before {
  inset: 70px 110px 70px;
}

.map-grid::after {
  inset: 120px 190px 110px 80px;
}

.node {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 10px rgba(214, 168, 79, 0.16);
}

.madrid { left: 48%; top: 46%; }
.europe { left: 58%; top: 34%; }
.america { left: 26%; top: 52%; }
.asia { left: 76%; top: 58%; }

.map-panel p {
  margin: 0;
  padding: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-weight: 600;
}

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

.international-copy h2 {
  margin-top: 18px;
}

.international-copy p:last-child {
  margin-top: 26px;
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

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

.expertise-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(11, 31, 51, 0.08);
}

.expertise-card span {
  color: var(--gold);
  font-weight: 700;
}

.expertise-card h3 {
  margin-top: 72px;
  font-size: 2rem;
}

.expertise-card p {
  color: var(--muted);
}

.timeline {
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 190px 1fr 1.2fr;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item time {
  color: var(--blue);
  font-weight: 700;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.conversion-section {
  padding-bottom: 140px;
}

.conversion-panel {
  padding: clamp(34px, 7vw, 76px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 86% 20%, rgba(214, 168, 79, 0.22), transparent 28rem),
    var(--navy);
  color: rgba(255, 255, 255, 0.78);
}

.conversion-panel h2 {
  max-width: 900px;
  margin-top: 14px;
  color: var(--white);
}

.conversion-panel p:not(.section-kicker) {
  max-width: 720px;
  margin: 24px 0 32px;
}

.conversion-panel .section-kicker {
  color: var(--gold);
}

.conversion-panel .button.primary {
  background: var(--gold);
  color: var(--navy);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 24px;
  }

  .main-nav {
    display: none;
  }

  .hero-grid,
  .statement-grid,
  .international-section,
  .expertise-grid,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .authority-bar {
    grid-template-columns: repeat(2, 1fr);
    transform: translateY(0);
    margin-top: 28px;
  }

  h1 {
    font-size: clamp(3.4rem, 16vw, 5.2rem);
  }

  .hero {
    padding-top: 128px;
  }

  .expertise-card {
    min-height: auto;
  }

  .expertise-card h3 {
    margin-top: 34px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    inset: 10px;
  }

  .brand strong {
    display: none;
  }

  .authority-bar {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: auto;
  }
}
