/* KAMINO — Global Bridges
   Dark cinematic direction. Deep Navy dominant.
   Apple-like restraint, editorial rhythm. */

:root {
  /* Color system — oklch tuned for harmony */
  --navy:        #0A1628;
  --navy-deep:   #060E1C;
  --navy-lift:   #12203A;
  --navy-line:   rgba(244, 241, 234, 0.08);
  --navy-line-2: rgba(244, 241, 234, 0.14);

  --warm-white:  #F4F1EA;
  --warm-white-dim: #DDD8CC;
  --stone:       #8A8578;
  --stone-soft:  #A9A498;

  --baltic:      #4A7C6A;
  --baltic-glow: #6FA890;
  --terra:       #C87456;
  --terra-soft:  #D89078;

  /* Semantic */
  --bg:          var(--navy);
  --bg-deep:     var(--navy-deep);
  --fg:          var(--warm-white);
  --fg-dim:      var(--warm-white-dim);
  --muted:       var(--stone);
  --accent:      var(--baltic);
  --accent-warm: var(--terra);
  --line:        var(--navy-line);
  --line-strong: var(--navy-line-2);

  /* Type */
  --sans: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Rhythm */
  --gutter: clamp(24px, 5vw, 80px);
  --section-y: clamp(96px, 14vh, 200px);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-feature-settings: "ss01", "cv11", "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  font-size: 16px;
  letter-spacing: -0.005em;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }

::selection { background: var(--terra); color: var(--warm-white); }

/* ─────────────── TYPE SCALE ─────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.no-rule::before { display: none; }

.mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--stone-soft);
}

h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.03em; line-height: 1.02; }
.display-xl {
  font-size: clamp(56px, 10vw, 168px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.display-l {
  font-size: clamp(44px, 6.5vw, 108px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.display-m {
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.display-s {
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
p.lede {
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.5;
  color: var(--fg-dim);
  max-width: 58ch;
  font-weight: 400;
  letter-spacing: -0.005em;
}
p.body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-dim);
  max-width: 62ch;
}

.italic-serif {
  font-family: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ─────────────── NAV ─────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out), padding 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(10, 22, 40, 0.72);
  backdrop-filter: saturate(1.4) blur(18px);
  -webkit-backdrop-filter: saturate(1.4) blur(18px);
  border-bottom-color: var(--line);
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav__wordmark {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--fg);
}
.nav__icon {
  height: 28px;
  width: auto;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.nav__wordmark:hover .nav__icon {
  transform: scale(1.05);
}
.nav__wordmark-text {
  position: relative;
  padding-left: 14px;
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.05;
}
.nav__wordmark-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 26px;
  background: var(--line-strong);
}
.nav__wordmark-name {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--fg);
}
.nav__wordmark-tag {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-soft);
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}
.nav__menu {
  display: flex;
  gap: 36px;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  color: var(--fg-dim);
}
.nav__menu a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav__menu a:hover { color: var(--fg); }
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}
.nav__lang {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--stone-soft);
  display: inline-flex;
  gap: 8px;
}
.nav__lang span { padding: 2px 6px; border-radius: 3px; }
.nav__lang .active { color: var(--fg); background: rgba(244,241,234,0.06); }
/* ─────────────── HERO ─────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px var(--gutter) 60px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 40%, rgba(74,124,106,0.10), transparent 55%),
              radial-gradient(ellipse at 20% 90%, rgba(200,116,86,0.06), transparent 50%),
              var(--navy-deep);
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
  z-index: 2;
  width: 100%;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 720px;
}
.hero__headline {
  font-size: clamp(52px, 8vw, 128px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05; /* room for descenders (g, p) — no clipping */
}
.hero__headline .word {
  display: inline-block;
  vertical-align: baseline;
  /* Clip mask reveals rising letters without cropping descenders/ascenders */
  clip-path: inset(-0.15em -0.2em -0.15em -0.2em);
}
.hero__headline .word span {
  display: inline-block;
  transform: translateY(140%);
  animation: rise 0.9s var(--ease-out) forwards;
}
.hero__headline .word:nth-child(1) span { animation-delay: 0.15s; }
.hero__headline .word:nth-child(2) span { animation-delay: 0.28s; }
.hero__headline .word:nth-child(3) span { animation-delay: 0.41s; }
@keyframes rise {
  to { transform: translateY(0); }
}
.hero__headline .bridge {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--terra-soft);
  font-size: 0.78em;
  letter-spacing: 0;
  padding-left: 0.06em;
  line-height: 1;
  /* Nudge down so the italic B's top-swash sits below Building's g descender */
  margin-top: 0.08em;
  display: inline-block;
}

.hero__sub {
  max-width: 52ch;
  color: var(--fg-dim);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.5;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.7s forwards;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.9s forwards;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--warm-white);
  color: var(--navy);
  padding: 16px 26px;
  border-radius: 100px;
  font-size: 15px;
  letter-spacing: -0.005em;
  font-weight: 500;
  transition: transform 0.4s var(--ease-out), background 0.3s;
}
.cta-primary:hover {
  background: var(--terra);
  color: var(--warm-white);
  transform: translateX(4px);
}
.cta-primary .arrow {
  width: 18px; height: 18px;
  transition: transform 0.4s var(--ease-out);
}
.cta-primary:hover .arrow { transform: translateX(4px); }

.cta-secondary {
  font-size: 13.5px;
  color: var(--fg-dim);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.cta-secondary:hover { color: var(--fg); }
.cta-secondary::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
}

/* Map area */
.hero__map {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  min-height: 460px;
}
#constellation {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Hero footer meta */
.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
  align-items: end;
}
.hero__meta-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__meta-block .k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.hero__meta-block .v {
  font-size: 15px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.hero__meta-block .v em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--terra-soft);
  font-weight: 400;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--stone);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  pointer-events: none;
}
.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, transparent, var(--stone-soft), transparent);
  animation: scroll-line 2.4s var(--ease-in-out) infinite;
}
@keyframes scroll-line {
  0% { transform: translateY(-100%); opacity: 0; }
  40%, 60% { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* ─────────────── VISION ─────────────── */
.vision {
  position: relative;
  padding: var(--section-y) var(--gutter);
  background: var(--navy);
  overflow: hidden;
}
.vision__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 80px);
  margin-bottom: clamp(60px, 8vw, 120px);
  align-items: end;
}
.vision__quote {
  font-size: clamp(40px, 5.4vw, 92px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  max-width: 14ch;
}
.vision__quote em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--terra-soft);
  letter-spacing: -0.015em;
}
.vision__intro { color: var(--fg-dim); max-width: 44ch; padding-bottom: 8px; }

/* Regions row */
.regions {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.region {
  padding: 40px clamp(16px, 2vw, 32px) 20px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.region:last-child { border-right: 0; padding-right: 0; }
.region:not(:first-child) { padding-left: clamp(24px, 3vw, 48px); }
.region__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--stone);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.region__num .badge {
  display: inline-flex;
  padding: 3px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  color: var(--fg-dim);
}
.region__title {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.region.spain .region__title { color: var(--terra-soft); }
.region__desc {
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 34ch;
}
.region__cities {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.region__city {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.region__city .name { color: var(--fg); letter-spacing: -0.005em; }
.region__city .coord {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--stone);
  white-space: nowrap;
}

/* Connectors between regions (visual bridges) */
.vision__connectors {
  position: absolute;
  left: 0; right: 0;
  height: 40px;
  pointer-events: none;
  top: calc(40px + 1px); /* aligned with border-top of .regions */
}

/* Stats strip */
.vision__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 60px 0 0;
  margin-top: 80px;
  border-top: 1px solid var(--line);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat__num {
  font-size: clamp(48px, 5vw, 88px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__num em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--terra-soft);
  font-weight: 400;
}
.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-soft);
  margin-top: 8px;
}

/* Spain feature block */
.spain-feature {
  margin-top: clamp(80px, 10vw, 140px);
  padding: clamp(40px, 5vw, 72px);
  background: linear-gradient(135deg, rgba(200,116,86,0.16), rgba(200,116,86,0.04));
  border: 1px solid rgba(200,116,86,0.25);
  border-radius: 4px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.spain-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at right, rgba(200,116,86,0.10), transparent 60%);
  pointer-events: none;
}
.spain-feature__mark {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: clamp(80px, 10vw, 160px);
  color: var(--terra);
  line-height: 0.9;
  letter-spacing: -0.03em;
  z-index: 1;
}
.spain-feature__body { z-index: 1; }
.spain-feature__body .eyebrow { color: var(--terra-soft); margin-bottom: 16px; }
.spain-feature__title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 22ch;
}
.spain-feature__title em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--terra-soft);
  font-weight: 400;
}
.spain-feature__desc {
  color: var(--fg-dim);
  max-width: 56ch;
  font-size: 15.5px;
  line-height: 1.6;
}

/* ─────────────── SERVICES (horizontal scroll) ─────────────── */
.services {
  position: relative;
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
}
.services__pin {
  position: relative;
  height: 600vh; /* fallback — JS overrides based on actual track width */
}
.services__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 96px var(--gutter) 0;
  align-items: end;
}
.services__title {
  font-size: clamp(36px, 4.6vw, 68px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.services__title em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--terra-soft);
  font-weight: 400;
}
.services__intro {
  color: var(--fg-dim);
  max-width: 42ch;
  padding-bottom: 8px;
  font-size: 15.5px;
  line-height: 1.6;
}
.services__track-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}
.services__track {
  display: flex;
  height: 100%;
  will-change: transform;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.svc-panel {
  flex: 0 0 auto;
  width: min(680px, 78vw);
  margin-right: clamp(24px, 3vw, 56px);
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  padding-left: clamp(28px, 3vw, 44px);
  position: relative;
  color: var(--fg);
}
.svc-panel__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.svc-panel__num .idx {
  color: var(--fg);
  font-size: 15px;
  letter-spacing: 0.02em;
}
.svc-panel__title {
  font-size: clamp(48px, 6.4vw, 100px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 32px;
}
.svc-panel__lede {
  font-size: clamp(16px, 1.2vw, 20px);
  color: var(--fg-dim);
  line-height: 1.5;
  max-width: 46ch;
  margin-bottom: 40px;
}
.svc-panel__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.svc-panel__list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--fg-dim);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: baseline;
}
.svc-panel__list li .idx {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--stone);
}

/* Executive Search: inverted premium block */
.svc-panel.premium {
  background: var(--warm-white);
  color: var(--navy);
  border-radius: 4px;
  border-left: 0;
  padding: 40px clamp(28px, 3vw, 48px);
  position: relative;
}
.svc-panel.premium .svc-panel__num { color: var(--stone); }
.svc-panel.premium .svc-panel__num .idx { color: var(--navy); }
.svc-panel.premium .svc-panel__title { color: var(--navy); }
.svc-panel.premium .svc-panel__title em {
  color: var(--terra);
}
.svc-panel.premium .svc-panel__lede { color: rgba(10,22,40,0.68); }
.svc-panel.premium .svc-panel__list { border-color: rgba(10,22,40,0.10); }
.svc-panel.premium .svc-panel__list li { color: rgba(10,22,40,0.72); border-color: rgba(10,22,40,0.10); }
.svc-panel.premium .svc-panel__list li .idx { color: var(--terra); }
.svc-panel.premium .star {
  position: absolute;
  top: 40px;
  right: clamp(28px, 3vw, 48px);
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--terra);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.svc-panel.premium .star::before {
  content: "★";
  color: var(--terra);
  font-style: normal;
}

/* Final closing panel */
.svc-panel.closing {
  border-left: 0;
  padding-left: 0;
  width: min(720px, 82vw);
  justify-content: center;
}
.svc-panel.closing .quote {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 18ch;
}
.svc-panel.closing .quote em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--terra-soft);
  font-weight: 400;
}
.svc-panel.closing .quote-tag {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Progress + counter */
.services__bar {
  position: absolute;
  bottom: 40px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--stone-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 3;
}
.services__bar .track {
  flex: 1;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.services__bar .track::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(var(--p, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--terra), var(--terra-soft));
  transition: transform 0.1s linear;
}
.services__bar .count { color: var(--fg); }

/* ─────────────── ESTONIA FEATURE (twin of Spain) ─────────────── */
.estonia-feature {
  margin-top: clamp(60px, 8vw, 100px);
  padding: clamp(40px, 5vw, 72px);
  background: linear-gradient(135deg, rgba(74,124,106,0.18), rgba(74,124,106,0.04));
  border: 1px solid rgba(74,124,106,0.28);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.estonia-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at left, rgba(74,124,106,0.12), transparent 60%);
  pointer-events: none;
}
.estonia-feature__body { z-index: 1; }
.estonia-feature__body .eyebrow { color: var(--baltic-glow); margin-bottom: 16px; }
.estonia-feature__title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 22ch;
}
.estonia-feature__title em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--baltic-glow);
  font-weight: 400;
}
.estonia-feature__desc {
  color: var(--fg-dim);
  max-width: 56ch;
  font-size: 15.5px;
  line-height: 1.6;
}
.estonia-feature__motto {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(74,124,106,0.24);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-dim);
}
.estonia-feature__motto .et {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--baltic-glow);
  letter-spacing: -0.005em;
}
.estonia-feature__motto .sep {
  color: var(--baltic);
  opacity: 0.6;
}
.estonia-feature__motto .en {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-soft);
}
.estonia-feature__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(74,124,106,0.24);
  max-width: 60ch;
}
.estonia-feature__pillar { display: flex; flex-direction: column; gap: 4px; }
.estonia-feature__pillar .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--baltic-glow);
}
.estonia-feature__pillar .v {
  font-size: 14px;
  color: var(--fg);
  letter-spacing: -0.005em;
  line-height: 1.35;
}
.estonia-feature__mark {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: clamp(80px, 10vw, 160px);
  color: var(--baltic-glow);
  line-height: 0.9;
  letter-spacing: -0.03em;
  z-index: 1;
}

/* ─────────────── EXECUTIVE SEARCH FEATURED (independent premium block) ─────────────── */
.exec-search {
  position: relative;
  background: var(--warm-white);
  color: var(--navy);
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  overflow: hidden;
}
.exec-search::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(200,116,86,0.12), transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(74,124,106,0.08), transparent 55%);
  pointer-events: none;
}
.exec-search__inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
.exec-search__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.exec-search__tag::before {
  content: "★";
  color: var(--terra);
  font-size: 12px;
}
.exec-search__title {
  font-size: clamp(48px, 6.8vw, 112px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: var(--navy);
  margin-bottom: 40px;
}
.exec-search__title em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--terra);
  font-weight: 400;
}
.exec-search__lede {
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.5;
  color: rgba(10,22,40,0.72);
  max-width: 46ch;
  margin-bottom: 40px;
}
.exec-search__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(10,22,40,0.14);
  max-width: 60ch;
}
.exec-search__meta-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.exec-search__meta-row .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10,22,40,0.5);
}
.exec-search__meta-row .v {
  font-size: 15px;
  color: var(--navy);
  letter-spacing: -0.005em;
}

.exec-search__right {
  padding-top: clamp(20px, 4vw, 60px);
}
/* Crest sits centered over the quote block (which is max-width 26ch) */
.exec-search__crest {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: clamp(140px, 14vw, 200px);
  height: auto;
  margin: 0 auto clamp(28px, 3vw, 44px);
  opacity: 0.95;
  /* Optically center within the quote's column */
  padding-right: 0;
}
.exec-search__crest-frame {
  max-width: 26ch;
  display: flex;
  justify-content: center;
}
.exec-search__quote {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--navy);
  padding: 32px 0;
  border-top: 1px solid rgba(10,22,40,0.14);
  border-bottom: 1px solid rgba(10,22,40,0.14);
  max-width: 26ch;
}
.exec-search__quote em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--terra);
  font-weight: 400;
}
.exec-search__services {
  list-style: none;
  padding: 32px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.exec-search__services li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(10,22,40,0.10);
  font-size: 15px;
  color: var(--navy);
  align-items: baseline;
}
.exec-search__services li .idx {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--terra);
}
.exec-search__services li .name { letter-spacing: -0.005em; }
.exec-search__services li .note {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10,22,40,0.5);
}

/* ─────────────── SENIOR ADVISORS (nested inside exec-search) ─────────────── */
.advisors {
  position: relative;
  margin-top: clamp(80px, 10vw, 140px);
  padding: clamp(40px, 5vw, 72px) 0 0;
  border-top: 1px solid rgba(10,22,40,0.14);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.advisors__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
.advisors__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--baltic);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.advisors__tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--baltic);
}
.advisors__title {
  font-size: clamp(32px, 4.2vw, 60px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--navy);
  margin-bottom: 32px;
}
.advisors__title em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--baltic);
  font-weight: 400;
}
.advisors__lede {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(10,22,40,0.72);
  max-width: 46ch;
}
.advisors__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(10,22,40,0.14);
}
.advisors__list li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(10,22,40,0.10);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: baseline;
}
.advisors__list .idx {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--baltic);
}
.advisors__list .body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.advisors__list .name {
  font-size: 16px;
  color: var(--navy);
  letter-spacing: -0.01em;
  font-weight: 500;
}
.advisors__list .note {
  font-size: 13.5px;
  color: rgba(10,22,40,0.6);
  line-height: 1.5;
}
.advisors__stats {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(10,22,40,0.14);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-mini {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-mini__num {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-mini__num em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--baltic);
  font-weight: 400;
}
.stat-mini__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10,22,40,0.5);
}

/* ─────────────── SERVICES CLOSING ─────────────── */
.services-closing {
  position: relative;
  background: var(--navy-deep);
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.services-closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(200,116,86,0.08), transparent 55%);
  pointer-events: none;
}
.services-closing__inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 96px);
  align-items: center;
}
.services-closing__glyph {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: clamp(140px, 18vw, 280px);
  color: var(--terra);
  line-height: 0.85;
  letter-spacing: -0.05em;
  opacity: 0.85;
}
.services-closing__body { max-width: 60ch; }
.services-closing h3 {
  font-size: clamp(32px, 4.4vw, 68px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 32px;
}
.services-closing h3 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--terra-soft);
  font-weight: 400;
}
.services-closing p {
  color: var(--fg-dim);
  font-size: 17px;
  line-height: 1.55;
  max-width: 52ch;
}

/* ─────────────── ABOUT US ─────────────── */
.about {
  position: relative;
  padding: var(--section-y) var(--gutter);
  background: var(--navy);
  border-top: 1px solid var(--line);
}
.about__header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 80px);
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 120px);
}
.about__title {
  font-size: clamp(44px, 6vw, 100px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  max-width: 14ch;
}
.about__title em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--terra-soft);
  font-weight: 400;
}
.about__intro { color: var(--fg-dim); font-size: 15.5px; line-height: 1.6; max-width: 44ch; padding-bottom: 8px; }

.people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.person {
  background: var(--navy);
  padding: 32px clamp(20px, 2.4vw, 36px) 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background 0.5s var(--ease-out);
}
.person:hover {
  background: var(--navy-lift);
}
.person__photo {
  aspect-ratio: 4 / 5;
  background: var(--navy-deep);
  overflow: hidden;
  position: relative;
  border-radius: 2px;
}
.person__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.15) contrast(1.02);
  transition: transform 0.9s var(--ease-out), filter 0.6s var(--ease-out);
}
.person:hover .person__photo img {
  transform: scale(1.03);
  filter: grayscale(0) contrast(1.05);
}
.person__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,22,40,0.35) 100%);
  pointer-events: none;
}
.person__flag {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  gap: 4px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--warm-white);
  padding: 4px 8px;
  background: rgba(10,22,40,0.72);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  z-index: 2;
}
.person__name {
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.person__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra-soft);
  margin-top: -14px;
}
.person__name-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.person__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: none;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  color: var(--stone-soft);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.person__linkedin svg {
  width: 13px;
  height: 13px;
  display: block;
}
.person__linkedin:hover {
  color: var(--navy);
  background: var(--warm-white);
  border-color: var(--warm-white);
}
.person__bio {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.55;
}
.person__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.person__meta-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  font-size: 12.5px;
  align-items: baseline;
}
.person__meta-row .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.person__meta-row .v {
  color: var(--fg-dim);
  letter-spacing: -0.005em;
}

/* Person expansion slot (scale to 20) */
.person.placeholder {
  background: transparent;
  border: 1px dashed var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 32px;
  text-align: center;
  cursor: default;
  transition: none;
}
.person.placeholder:hover { background: transparent; }
.person.placeholder .plus {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 48px;
  color: var(--terra-soft);
  line-height: 0.9;
  margin-bottom: 12px;
}
.person.placeholder .text {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-soft);
  max-width: 20ch;
  line-height: 1.5;
}

.about__closing {
  margin-top: clamp(80px, 10vw, 140px);
  padding-top: clamp(60px, 8vw, 100px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}
.about__closing h3 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 20ch;
}
.about__closing h3 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--terra-soft);
  font-weight: 400;
}
.about__closing .signature {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  padding-bottom: 8px;
  white-space: nowrap;
}

/* ─────────────── WHY KAMINO ─────────────── */
.why {
  position: relative;
  padding: var(--section-y) var(--gutter);
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 20%, rgba(74,124,106,0.08), transparent 55%);
  pointer-events: none;
}
.why__inner { position: relative; }
.why__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 80px);
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 120px);
}
.why__title {
  font-size: clamp(48px, 6.5vw, 108px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.96;
}
.why__title em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--terra-soft);
  font-weight: 400;
}
.why__intro {
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.6;
  max-width: 46ch;
  padding-bottom: 12px;
}

/* Advantages: editorial numbered rows */
.advantages {
  border-top: 1px solid var(--line);
}
.advantage {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  position: relative;
  transition: background 0.5s var(--ease-out);
}
.advantage::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(200,116,86,0.06), transparent);
  transition: width 0.6s var(--ease-out);
  pointer-events: none;
}
.advantage:hover::before { width: 100%; }
.advantage__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--stone);
  padding-top: 8px;
}
.advantage__title {
  font-size: clamp(24px, 2.6vw, 40px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--fg);
  max-width: 20ch;
}
.advantage__title em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--terra-soft);
  font-weight: 400;
}
.advantage__desc {
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.6;
  max-width: 46ch;
  padding-top: 10px;
}

.why__closing {
  margin-top: clamp(80px, 10vw, 140px);
  padding: clamp(48px, 6vw, 88px) clamp(32px, 4vw, 64px);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(74,124,106,0.08), transparent 60%);
}
.why__closing::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,116,86,0.12), transparent 60%);
}
.why__closing .eyebrow { margin-bottom: 24px; }
.why__closing h3 {
  position: relative;
  font-size: clamp(32px, 4.2vw, 60px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 22ch;
}
.why__closing h3 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  color: var(--terra-soft);
  font-weight: 400;
}

/* ─────────────── FOOTER ─────────────── */
.footer {
  padding: clamp(60px, 8vw, 100px) var(--gutter) 40px;
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer__mark {
  display: flex;
  align-items: flex-start;
}
.footer__logo {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: clamp(100px, 11vw, 160px);
  display: block;
  opacity: 0.95;
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  color: var(--fg-dim);
  font-size: 14px;
  transition: color 0.25s;
}
.footer__col a:hover { color: var(--fg); }
.footer__col .tel-cc {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-soft);
  padding: 2px 6px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  margin-right: 8px;
  vertical-align: middle;
}
.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  flex-wrap: wrap;
}

/* ─────────────── REVEAL ─────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__map { min-height: 380px; order: -1; }
  .vision__header { grid-template-columns: 1fr; }
  .regions { grid-template-columns: 1fr; }
  .region { border-right: 0; border-bottom: 1px solid var(--line); padding: 32px 0; }
  .region:not(:first-child) { padding-left: 0; }
  .vision__stats { grid-template-columns: repeat(2, 1fr); }
  .spain-feature { grid-template-columns: 1fr; }
  .services__header { grid-template-columns: 1fr; }
  .hero__meta { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__mark { grid-column: 1 / -1; margin-bottom: 24px; }

  .services-closing__inner { grid-template-columns: 1fr; gap: 32px; }
  .estonia-feature { grid-template-columns: 1fr; }
  .exec-search__inner { grid-template-columns: 1fr; gap: 40px; }
  .exec-search__right { padding-top: 0; }
  .advisors__inner { grid-template-columns: 1fr; gap: 40px; }
  .advisors__stats { grid-template-columns: repeat(3, 1fr); }
  .about__header { grid-template-columns: 1fr; }
  .people { grid-template-columns: repeat(2, 1fr); }
  .about__closing { grid-template-columns: 1fr; align-items: start; }
  .why__header { grid-template-columns: 1fr; }
  .advantage { grid-template-columns: 60px 1fr; }
  .advantage__desc { grid-column: 2; padding-top: 8px; }
}

@media (max-width: 720px) {
  .nav__menu { display: none; }
  .nav { grid-template-columns: 1fr auto; }
  .hero__meta { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__mark { grid-column: auto; }
  .people { grid-template-columns: 1fr; }
  .services-closing__glyph { font-size: 100px; }
}

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