/* ═══════════════════════════════════════════════════════════════
   IRON Capital Asset Management Limited
   Brand system inherited from iron.africa
   ═══════════════════════════════════════════════════════════════ */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Source+Sans+3:wght@300;400;500;600;700&display=swap");

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #8b1a1a;
  --red-light: #a52020;
  --red-pale: #fdf0f0;
  --charcoal: #1c1c1c;
  --dark: #2d2d2d;
  --mid: #555;
  --muted: #888;
  --border: #e2e0db;
  --bg: #fafaf8;
  --white: #fff;
  --surface: #f4f3f0;
  --gold: #c9a227;
  --gold-light: #e3c25c;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Source Sans 3", sans-serif;
}

html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 80px; }

body {
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── Shared primitives ─────────────────────────────────────── */
.section { padding: 96px 5%; }
.section-alt { background: var(--bg); }
.section-surface { background: var(--surface); }

.label {
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
}
.label::before { content: ""; background: var(--red); width: 28px; height: 1.5px; display: block; }
.label-light { color: #fff9; }
.label-light::before { background: var(--red-light); }

.h2 {
  font-family: var(--font-serif);
  color: var(--charcoal);
  margin-bottom: 20px;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.18;
}
.h2 em { color: var(--red); font-style: italic; }
.h2-light { color: #fff; }
.h2-light em { color: #e89393; }

.body-text { color: var(--mid); max-width: 540px; font-size: 18px; line-height: 1.85; }
.section-head { max-width: 720px; margin-bottom: 56px; }

.arrow-link {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: gap .2s;
  display: inline-flex;
  margin-top: 24px;
}
.arrow-link:hover { gap: 14px; }
.arrow-link svg { stroke: currentColor; fill: none; stroke-width: 2px; width: 14px; height: 14px; }

.btn-primary {
  background: var(--red);
  color: #fff;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-sans);
  text-decoration: none;
  transition: background .2s, gap .2s;
  display: inline-flex;
}
.btn-primary:hover { background: var(--red-light); gap: 14px; }
.btn-primary svg { stroke: currentColor; fill: none; stroke-width: 2px; }

/* ── Scroll reveal ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ── Topbar ────────────────────────────────────────────────── */
.nav-topbar {
  z-index: 10000;
  color: #ffffffa6;
  letter-spacing: .04em;
  text-align: center;
  background: #1a1a1a;
  padding: 7px 5%;
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.4;
  position: fixed;
  top: 0; left: 0; right: 0;
}
.nav-topbar span { color: #ffffff73; margin: 0 6px; }
.nav-topbar .tb-brief { display: none; }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  z-index: 9999;
  border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #fffffff7;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 5%;
  transition: background .4s, border-color .4s;
  display: flex;
  position: fixed;
  top: 31px; left: 0; right: 0;
}
.navbar.nav-dark {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: transparent;
  border-bottom: 1px solid #ffffff14;
}

/* Logo — replicated from iron.africa: image only, monochrome white over dark, colour on light */
.nav-logo { align-items: center; text-decoration: none; display: flex; }
.nav-logo-img { object-fit: contain; width: auto; height: 64px; display: block; transition: filter .3s; }
.nav-dark .nav-logo-img { filter: brightness(0) invert(1); }

.nav-links { align-items: center; gap: 32px; margin: 0; padding: 0; list-style: none; display: flex; }
.nav-links a {
  color: var(--mid);
  letter-spacing: .03em;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  background: var(--red);
  height: 1.5px;
  transition: transform .25s;
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  transform: scaleX(0);
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-dark .nav-links a { color: #ffffffeb; }
.nav-dark .nav-links a:hover { color: #fff; }
.nav-dark .nav-links a::after { background: #fff; }

.nav-item-dropdown { position: relative; }
.nav-dropdown-toggle {
  color: var(--mid);
  letter-spacing: .03em;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-sans);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.nav-dropdown-toggle::before {
  content: "";
  background: var(--red);
  height: 1.5px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-dropdown-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s;
}
.nav-item-dropdown:hover .nav-dropdown-toggle::before,
.nav-item-dropdown:focus-within .nav-dropdown-toggle::before,
.nav-item-dropdown.nav-submenu-open .nav-dropdown-toggle::before { transform: scaleX(1); }
.nav-item-dropdown:hover .nav-dropdown-toggle::after,
.nav-item-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-item-dropdown.nav-submenu-open .nav-dropdown-toggle::after { transform: rotate(225deg) translateY(1px); }
.nav-item-dropdown:hover .nav-dropdown-toggle,
.nav-item-dropdown:focus-within .nav-dropdown-toggle { color: var(--charcoal); }
.nav-dark .nav-dropdown-toggle { color: #ffffffeb; }
.nav-dark .nav-dropdown-toggle::before { background: #fff; }
.nav-dark .nav-item-dropdown:hover .nav-dropdown-toggle,
.nav-dark .nav-item-dropdown:focus-within .nav-dropdown-toggle { color: #fff; }

.nav-submenu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  min-width: 290px;
  background: #fff;
  border-top: 2px solid var(--red);
  box-shadow: 0 18px 44px #0000001f;
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav-submenu li { border-top: 1px solid var(--border); }
.nav-submenu li:first-child { border-top: none; }
.nav-submenu a {
  display: block;
  padding: 16px 22px;
  color: var(--mid);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}
.nav-submenu a::after { display: none; }
.nav-submenu a:hover { background: #faf7f3; color: var(--charcoal); }
.nav-item-dropdown:hover .nav-submenu,
.nav-item-dropdown:focus-within .nav-submenu,
.nav-item-dropdown.nav-submenu-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Dark navbar dropdown adjustments: keep submenu readable over hero */
.navbar.nav-dark .nav-submenu {
  background: linear-gradient(180deg, rgba(10,10,10,0.96), rgba(8,8,8,0.92));
  border-top-color: rgba(255,255,255,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}
.navbar.nav-dark .nav-submenu li { border-top: 1px solid rgba(255,255,255,0.04); }
.navbar.nav-dark .nav-submenu a {
  color: #ffffffda;
}
.navbar.nav-dark .nav-submenu a:hover { background: rgba(255,255,255,0.03); color: #fff; }

.nav-cta {
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--red) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-light) !important; color: #fff !important; }

.nav-hamburger {
  cursor: pointer;
  z-index: 10001;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px; height: 44px;
  padding: 10px;
  display: none;
  border-radius: 8px;
}
.nav-hamburger-line {
  background: var(--charcoal);
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  transition: all .3s cubic-bezier(.77,0,.175,1);
}
.nav-dark .nav-hamburger-line { background: #ffffff; }
.nav-mobile-open .nav-hamburger-line { background: #ffffff !important; box-shadow: 0 0 2px rgba(255,255,255,0.5); }
.nav-mobile-open .nav-hamburger-line:first-child { transform: translateY(8.5px) rotate(45deg); height: 2.5px; }
.nav-mobile-open .nav-hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-mobile-open .nav-hamburger-line:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); height: 2.5px; }

.nav-backdrop { z-index: 9998; background: #000000b3; position: fixed; inset: 0; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero-slideshow { width: 100%; height: 100vh; min-height: 640px; position: relative; overflow: hidden; background: #0a0a0a; }

.hero-slide { opacity: 0; z-index: 1; transition: opacity 1.2s cubic-bezier(.4,0,.2,1); position: absolute; inset: 0; pointer-events: none; }
.hero-slide.active { opacity: 1; z-index: 2; pointer-events: auto; }
.hero-slide-bg {
  filter: brightness(.45) contrast(1.1) saturate(1.05);
  background-position: 50%;
  background-size: cover;
  transition: transform 8s;
  position: absolute;
  inset: 0;
  transform: scale(1.06);
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay { background: linear-gradient(#00000040 0%, #00000080 50%, #000000b3 100%); position: absolute; inset: 0; }

.hero-slide-content {
  z-index: 3;
  flex-direction: column;
  justify-content: flex-end;
  width: 75%;
  min-width: 560px;
  height: 100%;
  padding: 0 8% 150px;
  display: flex;
  position: relative;
}
.hero-slide-eyebrow {
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #fff9;
  opacity: 0;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: all .8s .3s;
  display: flex;
  transform: translateY(20px);
}
.hero-slide.active .hero-slide-eyebrow { opacity: 1; transform: translateY(0); }
.hero-slide-eyebrow::before { content: ""; background: var(--red); width: 36px; height: 1px; }

.hero-slide-headline {
  font-family: var(--font-serif);
  color: #fff;
  opacity: 0;
  margin-bottom: 20px;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  transition: all .8s .45s;
  transform: translateY(30px);
}
.hero-slide.active .hero-slide-headline { opacity: 1; transform: translateY(0); }
.hero-slide-headline em { color: #ffffffd9; font-style: italic; }

.hero-slide-sub {
  color: #ffffffa6;
  opacity: 0;
  max-width: 560px;
  margin-bottom: 36px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  transition: all .8s .6s;
  transform: translateY(20px);
}
.hero-slide.active .hero-slide-sub { opacity: 1; transform: translateY(0); }

.hero-slide-cta {
  background: var(--red);
  color: #fff;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .8s .75s, opacity .8s .75s, background .3s, gap .3s;
  display: inline-flex;
  transform: translateY(20px);
}
.hero-slide.active .hero-slide-cta { opacity: 1; transform: translateY(0); }
.hero-slide-cta:hover { background: var(--red-light); gap: 14px; }
.hero-slide-cta svg { stroke: currentColor; fill: none; stroke-width: 2px; }

.hero-nav { z-index: 10; align-items: center; gap: 20px; display: flex; position: absolute; bottom: 165px; right: 8%; }
.hero-dots { align-items: center; gap: 8px; display: flex; }
.hero-dot { cursor: pointer; background: none; border: 1.5px solid #fff6; width: 10px; height: 10px; padding: 0; transition: all .3s; }
.hero-dot.active { background: #fff; border-color: #fff; }
.hero-dot:hover { border-color: #fff; }
.hero-counter { color: #ffffff80; letter-spacing: .1em; font-size: 12px; }
.hero-counter span { color: #fff; font-weight: 600; }

.hero-progress { z-index: 10; background: #ffffff1f; height: 1px; position: absolute; bottom: 148px; left: 8%; right: 8%; }
.hero-progress-fill { background: var(--red); width: 0; height: 100%; transition: width .1s linear; }

/* Arrow controls */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.38);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  z-index: 12;
  cursor: pointer;
  transition: background .18s, transform .12s;
}
.hero-arrow svg { width: 18px; height: 18px; }
.hero-arrow:hover { background: rgba(0,0,0,0.55); transform: translateY(-50%) scale(1.03); }
.hero-prev { left: 18px; }
.hero-next { right: 18px; }

@media (max-width: 720px) {
  .hero-arrow { width: 40px; height: 40px; }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
}

.hero-stats-bar {
  z-index: 10;
  background: #111;
  border-top: 1px solid #ffffff1a;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: absolute;
  bottom: 0; left: 0;
}
.hero-stat { border-right: 1px solid #ffffff14; flex-direction: column; flex: 1; justify-content: center; padding: 24px 5%; display: flex; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: var(--font-serif); color: #fff; margin-bottom: 6px; font-size: 24px; font-weight: 400; line-height: 1.2; }
.hero-stat-lbl { letter-spacing: .12em; text-transform: uppercase; color: #ffffff8c; font-size: 11.5px; }

/* ── About ─────────────────────────────────────────────────── */
.about-grid { align-items: center; gap: 64px; display: grid; grid-template-columns: 1.1fr 1fr; max-width: 1280px; margin: 0 auto; }
.about-copy .body-text + .body-text { margin-top: 18px; }
.about-media { position: relative; }
.about-media img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.about-media::after { content: ""; border: 1.5px solid var(--red); z-index: -1; position: absolute; inset: 24px -24px -24px 24px; }
.about-media-caption { letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 34px; font-size: 11px; }

.values-row { gap: 28px; display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1280px; margin: 80px auto 0; }
.value-card { background: var(--bg); border: 1px solid var(--border); border-top: 3px solid var(--red); padding: 36px 32px; transition: transform .3s, box-shadow .3s; }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px #1c1c1c12; }
.value-num { font-family: var(--font-serif); color: var(--red); opacity: .35; font-size: 40px; line-height: 1; margin-bottom: 16px; }
.value-card h3 { font-family: var(--font-serif); font-size: 24px; font-weight: 500; margin-bottom: 10px; }
.value-card p { color: var(--mid); font-size: 15.5px; }

.mission-band { background: var(--charcoal); text-align: center; max-width: 1280px; margin: 80px auto 0; padding: 72px 8%; }
.mission-band .label { justify-content: center; }
.mission-text { font-family: var(--font-serif); color: #fff; font-size: clamp(24px, 2.6vw, 38px); font-weight: 400; line-height: 1.4; max-width: 820px; margin: 0 auto; }
.mission-text em { color: #e89393; font-style: italic; }

/* ── Services ──────────────────────────────────────────────── */
.services-grid { gap: 24px; display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1280px; margin: 0 auto; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 28px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before { content: ""; background: var(--red); width: 100%; height: 3px; position: absolute; top: 0; left: 0; transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px #1c1c1c12; border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { background: var(--red-pale); align-items: center; justify-content: center; width: 56px; height: 56px; margin-bottom: 22px; display: flex; }
.service-icon svg { stroke: var(--red); fill: none; stroke-width: 1.6px; stroke-linecap: round; stroke-linejoin: round; width: 26px; height: 26px; }
.service-card h3 { font-family: var(--font-serif); font-size: 19px; font-weight: 500; line-height: 1.3; margin-bottom: 10px; }
.service-card p { color: var(--mid); font-size: 14.5px; line-height: 1.75; }

/* ── Team ──────────────────────────────────────────────────── */
.team-grid { gap: 28px; display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1080px; margin: 0 auto; }
.team-card { background: var(--bg); border: 1px solid var(--border); text-align: center; padding: 48px 32px 40px; transition: transform .3s, box-shadow .3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px #1c1c1c12; }
.team-avatar {
  background: var(--charcoal);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 28px;
  align-items: center;
  justify-content: center;
  width: 88px; height: 88px;
  margin: 0 auto 24px;
  display: flex;
  border-bottom: 3px solid var(--red);
}
.team-card h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 500; margin-bottom: 6px; }
.team-role { letter-spacing: .2em; text-transform: uppercase; color: var(--red); font-size: 11.5px; font-weight: 600; }

/* ── Team tabs ─────────────────────────────────────────────── */
.team-tabs {
  display: inline-flex;
  gap: 6px;
  margin: 0 auto 52px;
  padding: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
}
.team-tabs-wrap { text-align: center; }
.team-tab {
  font-family: var(--font-sans);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 13px 30px;
  font-size: 12.5px;
  font-weight: 600;
  transition: color .2s, background .2s;
}
.team-tab:hover { color: var(--charcoal); }
.team-tab.active { background: var(--red); color: #fff; }

.team-panel { display: none; }
.team-panel.active { display: block; animation: teamFade .5s ease; }
@keyframes teamFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ── Member cards (photo) ──────────────────────────────────── */
.members-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; max-width: 1280px; margin: 0 auto; }
.members-grid.cols-3 { grid-template-columns: repeat(3, 1fr); max-width: 1040px; }

.member-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.member-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px #1c1c1c1a; }

/* LinkedIn / profile affordance */
.member-linkedin {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--red); color: #fff;
  box-shadow: 0 4px 12px #00000033;
  opacity: 1;
  transition: background .2s, transform .25s;
  pointer-events: none;
}
.member-linkedin svg { width: 18px; height: 18px; fill: currentColor; }
.member-card:hover .member-linkedin { background: var(--red-light); transform: scale(1.1); }
.member-card:hover .member-photo img { filter: brightness(.9); }
.member-card:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.member-photo { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--surface); }
.member-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s, filter .4s; }
.member-card:hover .member-photo img { transform: scale(1.05); }
.member-photo::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.member-card:hover .member-photo::after { transform: scaleX(1); }
.member-info { padding: 24px 24px 28px; text-align: center; }
.member-name { font-family: var(--font-serif); font-size: 20px; font-weight: 500; margin-bottom: 6px; }
.member-role { letter-spacing: .18em; text-transform: uppercase; color: var(--red); font-size: 11px; font-weight: 600; }
.member-bio { color: var(--mid); font-size: 13.5px; line-height: 1.65; margin-top: 12px; }

/* ── Why IRON value section ───────────────────────────────── */
.value-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto 28px;
  align-items: stretch;
}
.value-panel,
.value-media {
  background: linear-gradient(180deg, #ffffff 0%, #fffdfb 100%);
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px #00000008;
}
.value-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 40px;
}
.value-kicker {
  margin-bottom: 16px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.value-quote {
  margin: 0 0 30px;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.42;
  color: var(--charcoal);
}
.value-media {
  overflow: hidden;
  min-height: 100%;
}
.value-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.advantage-card {
  position: relative;
  padding: 34px 28px 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfb 100%);
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px #00000008;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.advantage-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, transparent 65%);
}
.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px #1c1c1c14;
}
.advantage-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 1px solid rgba(127, 22, 22, 0.18);
  border-radius: 50%;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.advantage-tag {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.advantage-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
}
.advantage-card p {
  margin: 0;
  color: var(--mid);
  font-size: 15px;
  line-height: 1.75;
}
.benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1280px;
  margin: 34px auto 0;
  padding: 26px 30px;
  background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.benefit-item {
  padding: 12px 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.benefit-item:first-child { border-left: none; }
.benefit-stat {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2vw, 35px);
  color: #fff;
}
.benefit-label {
  display: block;
  color: #ffffffa6;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* ── Contact ───────────────────────────────────────────────── */
.contact-section { background: var(--charcoal); }
.contact-grid { gap: 72px; display: grid; grid-template-columns: 1fr 1fr; max-width: 1280px; margin: 0 auto; }
.contact-lead { color: #ffffffa6; font-size: 17px; max-width: 480px; margin-bottom: 40px; }

.contact-item { align-items: flex-start; gap: 18px; margin-bottom: 28px; display: flex; }
.contact-item-icon { background: #ffffff0f; border: 1px solid #ffffff1a; align-items: center; justify-content: center; flex-shrink: 0; width: 48px; height: 48px; display: flex; }
.contact-item-icon svg { stroke: var(--red-light); fill: none; stroke-width: 1.6px; width: 22px; height: 22px; }
.contact-item-label { letter-spacing: .18em; text-transform: uppercase; color: #ffffff73; font-size: 11px; font-weight: 600; margin-bottom: 4px; }
.contact-item-value { color: #ffffffd9; font-size: 15.5px; line-height: 1.7; }
.contact-item-value a { color: #ffffffd9; text-decoration: none; transition: color .2s; }
.contact-item-value a:hover { color: #fff; }

.contact-form { background: #ffffff08; border: 1px solid #ffffff14; padding: 44px 40px; }
.form-row { gap: 20px; display: grid; grid-template-columns: 1fr 1fr; }
.form-field { margin-bottom: 20px; }
.form-field label { letter-spacing: .14em; text-transform: uppercase; color: #ffffff8c; font-size: 11px; font-weight: 600; margin-bottom: 8px; display: block; }
.form-field input, .form-field textarea {
  background: #ffffff0a;
  border: 1px solid #ffffff1f;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  width: 100%;
  padding: 13px 16px;
  transition: border-color .2s, background .2s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: #ffffff4d; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--red-light); background: #ffffff0f; outline: none; }
.form-field textarea { resize: vertical; }

/* ── Contact page redesign ─────────────────────────────────── */
.contact-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.contact-head .label { justify-content: center; }
.contact-head p { color: #ffffffa6; max-width: 560px; margin: 0 auto; font-size: 17px; line-height: 1.8; }

.office-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1280px; margin: 0 auto 28px; }
.office-card {
  background: #ffffff08;
  border: 1px solid #ffffff14;
  border-top: 3px solid var(--red);
  padding: 34px 30px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.office-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px #00000040; border-color: #ffffff26; }
.office-card-icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: #ffffff0f; border: 1px solid #ffffff1a;
  margin-bottom: 22px;
}
.office-card-icon svg { stroke: var(--red-light); fill: none; stroke-width: 1.6px; width: 24px; height: 24px; }
.office-card-name { font-family: var(--font-serif); color: #fff; font-size: 22px; font-weight: 500; margin-bottom: 4px; }
.office-card-tag { display: inline-block; letter-spacing: .18em; text-transform: uppercase; color: var(--red-light); font-size: 10.5px; font-weight: 600; margin-bottom: 14px; }
.office-card-addr { color: #ffffffa6; font-size: 14.5px; line-height: 1.75; }

.contact-grid-lower { align-items: stretch; }
.contact-side {
  background: #ffffff05;
  border: 1px solid #ffffff14;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
}
.contact-side-title { font-family: var(--font-serif); color: #fff; font-size: 26px; font-weight: 500; margin-bottom: 8px; }
.contact-side-sub { color: #ffffff8c; font-size: 15px; line-height: 1.7; margin-bottom: 28px; }

.quick-card {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 20px;
  background: #ffffff08; border: 1px solid #ffffff14;
  text-decoration: none;
  margin-bottom: 16px;
  transition: border-color .25s, background .25s, transform .25s;
}
.quick-card:hover { border-color: var(--red-light); background: #ffffff0f; transform: translateX(4px); }
.quick-icon {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  background: #ffffff0f; border: 1px solid #ffffff1a;
}
.quick-icon svg { stroke: var(--red-light); fill: none; stroke-width: 1.6px; width: 21px; height: 21px; }
.quick-label { display: block; letter-spacing: .16em; text-transform: uppercase; color: #ffffff73; font-size: 11px; font-weight: 600; margin-bottom: 4px; }
.quick-value { display: block; color: #fff; font-size: 15.5px; line-height: 1.5; }
.quick-note {
  color: #ffffff73; font-size: 13px; line-height: 1.7;
  margin-top: auto; padding-top: 22px; border-top: 1px solid #ffffff14;
}
.quick-note strong { color: #ffffffb3; font-weight: 600; }
.contact-grid-lower .contact-form { height: 100%; }

/* ── Footer ────────────────────────────────────────────────── */
.footer { background: #111; color: #ffffffa6; }
.footer-main { gap: 56px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; max-width: 1280px; margin: 0 auto; padding: 72px 5% 56px; }
.footer-logo { width: auto; height: 72px; margin-bottom: 22px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 320px; }
.footer-col h4 { font-family: var(--font-serif); color: #fff; font-size: 17px; font-weight: 500; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 14px; }
.footer-col a { color: #ffffffa6; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-contact li { line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid #ffffff14;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 5%;
  font-size: 12.5px;
  color: #ffffff73;
}

/* ── Nav active state ──────────────────────────────────────── */
.nav-links a.active { color: var(--charcoal); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-dark .nav-links a.active { color: #fff; }
.nav-links a.nav-cta.active::after { display: none; }

/* ── Interior page hero banner ─────────────────────────────── */
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 54vh;
  padding: 150px 5% 68px;
  overflow: hidden;
  background: #0a0a0a;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 50%;
  filter: brightness(.4) contrast(1.05) saturate(1.05);
  transform: scale(1.04);
}
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(#00000040 0%, #000000a6 60%, #000000cc 100%); }
.page-hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1280px; margin: 0 auto; }
.page-hero .label { color: #fff9; }
.page-hero h1 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 16px;
}
.page-hero h1 em { color: #e89393; font-style: italic; }
.page-hero p { color: #ffffffb3; max-width: 640px; font-size: 17px; line-height: 1.8; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ffffff73;
}
.breadcrumb a { color: #ffffff8c; text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: #ffffff40; }
.breadcrumb .current { color: var(--red-light); }

/* ── Section CTA + CTA band ────────────────────────────────── */
.section-cta { text-align: center; margin-top: 52px; }
.cta-band { background: var(--charcoal); text-align: center; padding: 88px 8%; }
.cta-band .label { justify-content: center; }
.cta-band .h2 { color: #fff; }
.cta-band .h2 em { color: #e89393; }
.cta-band p { color: #ffffffa6; max-width: 560px; margin: 0 auto 34px; font-size: 17px; }
.cta-band .btn-primary { padding: 16px 40px; font-size: 12px; }

/* ── Award ribbon (sits directly under the hero) ───────────── */
.award-ribbon {
  display: flex;
  align-items: center;
  gap: 26px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 34px;
  position: relative;
  text-decoration: none;
  color: #fff;
  background:
    radial-gradient(120% 180% at 88% 50%, #4a3708 0%, transparent 62%),
    linear-gradient(100deg, #141414 0%, #232323 55%, #1a1a1a 100%);
  border-top: 1px solid #ffffff14;
  border-bottom: 2px solid var(--gold);
  transition: background .45s, box-shadow .45s, transform .35s;
}
.award-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, #c9a2271f 70%, transparent);
  opacity: 0;
  transition: opacity .45s;
  pointer-events: none;
}
.award-ribbon:hover::before { opacity: 1; }
.award-ribbon:hover { box-shadow: 0 18px 46px #0000002e; }
.award-ribbon:focus-visible { outline: 2px solid var(--gold); outline-offset: -4px; }

.award-ribbon-thumb {
  flex: 0 0 auto;
  width: 58px;
  height: 76px;
  border-radius: 3px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 6px 20px #00000059, 0 0 0 1px #c9a2274d;
  transition: transform .45s;
}
.award-ribbon-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; display: block; }
.award-ribbon:hover .award-ribbon-thumb { transform: translateY(-3px) scale(1.04); }

.award-ribbon-copy { flex: 1 1 auto; min-width: 0; display: block; }
.award-ribbon-eyebrow {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 7px;
}
.award-ribbon-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}
.award-ribbon-title em { color: var(--gold-light); font-style: italic; }
.award-ribbon-meta {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  color: #ffffff87;
}

.award-ribbon-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border: 1px solid #c9a22759;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
  transition: background .3s, color .3s, border-color .3s;
}
.award-ribbon-cta svg { fill: none; stroke: currentColor; stroke-width: 2; transition: transform .3s; }
.award-ribbon:hover .award-ribbon-cta { background: var(--gold); border-color: var(--gold); color: #17130a; }
.award-ribbon:hover .award-ribbon-cta svg { transform: translateX(4px); }

/* ── Euromoney award section ───────────────────────────────── */
.award-section { background: var(--bg); }
.award-head { max-width: 1280px; margin: 0 auto 52px; }
.award-head .h2 em { color: var(--gold); }

.award-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 68px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.award-headline {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.36;
  color: var(--charcoal);
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.award-dateline {
  margin: 18px 0 26px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.award-story .body-text { margin-bottom: 20px; }

.award-quote {
  margin: 34px 0;
  padding: 4px 0 4px 30px;
  border-left: 2px solid var(--gold);
}
.award-quote p {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.62;
  color: var(--dark);
}
.award-quote p::before { content: "\201C"; }
.award-quote p::after { content: "\201D"; }
.award-quote cite {
  display: block;
  margin-top: 18px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

.evid-card {
  cursor: pointer;
  background: radial-gradient(120% 100% at 50% 0, #12203f 0%, #0b1428 55%, #070c1c 100%);
  border: 1px solid rgba(201, 154, 63, 0.28);
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin: 34px 0 28px;
  padding: 44px 28px 40px;
  font-family: inherit;
  line-height: normal;
  text-align: center;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px -34px rgba(6, 11, 30, 0.7);
}
.evid-card:hover {
  border-color: rgba(201, 154, 63, .55);
  transform: translateY(-2px);
  box-shadow: 0 30px 70px -32px rgba(6, 11, 30, 0.8);
}
.evid-card:focus-visible { outline: 2px solid var(--gold-mid); outline-offset: 3px; }
.evid-glow {
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(201, 154, 63, 0.16), rgba(0, 0, 0, 0) 72%);
  width: 70%;
  height: 120%;
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translate(-50%);
}
.evid-logo {
  z-index: 1;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.4));
  width: min(300px, 72%);
  height: auto;
  display: block;
  position: relative;
}
.evid-play {
  z-index: 2;
  color: #2a1c07;
  background: linear-gradient(135deg, #e6c877, #c99a3f);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 66px;
  height: 66px;
  padding-left: 4px;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  position: relative;
  box-shadow: 0 10px 30px -8px rgba(201, 154, 63, 0.7);
}
.evid-play::before {
  content: "";
  border: 1.5px solid rgba(201, 154, 63, 0.5);
  border-radius: 50%;
  animation: evidPulse 2.4s ease-out infinite;
  position: absolute;
  inset: -8px;
}
.evid-card:hover .evid-play {
  transform: scale(1.08);
  box-shadow: 0 14px 36px -8px rgba(201, 154, 63, 0.85);
}
.evid-caption {
  z-index: 1;
  font-family: var(--font-sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #e0b95f;
  font-size: 12px;
  font-weight: 700;
  position: relative;
}

.euro-about {
  margin-top: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.euro-about-label {
  margin: 0 0 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.euro-about p:last-child {
  margin: 0;
  color: #4a4a4a;
  line-height: 1.72;
}

.award-media { position: sticky; top: 104px; }
.award-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
  box-shadow: 0 26px 60px #0000003d;
}

.award-press {
  max-width: 1280px;
  margin: 72px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.award-press-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.award-press-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 44px;
}
.award-press-logos a {
  display: block;
  opacity: .55;
  filter: grayscale(1);
  transition: opacity .3s, filter .3s, transform .3s;
}
.award-press-logos a:hover { opacity: 1; filter: grayscale(0); transform: translateY(-2px); }
.award-press-logos img { height: 26px; width: auto; display: block; }
/* Squarer, stacked marks need extra height to hold equal optical weight */
.award-press-logos .press-stacked img { height: 38px; }

/* ── Awards hero slide (light — Euromoney, split layout) ───── */
/* ── Awards hero slide (light — Euromoney, split layout) ───── */
.hero-slide-awards {
  background: linear-gradient(118deg, #fdf6f4 0%, #fbeeee 46%, #ffffff 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: 84px 0 96px;
}
.awards-inner {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1fr 1.72fr; align-items: center; gap: 54px 60px;
  width: 100%; height: auto; max-width: 1620px; margin: 0 auto;
  padding: 0 3%;
}
.euro-heading { display: flex; flex-direction: column; line-height: .95; margin-bottom: 28px; }
.euro-l1 { font-weight: 700; font-size: clamp(34px, 5vw, 70px); letter-spacing: -.015em; color: var(--charcoal); }
.euro-l2, .euro-l3 { font-weight: 700; font-size: clamp(24px, 3.1vw, 44px); letter-spacing: .01em; color: var(--charcoal); margin-top: 5px; }
.euro-year { color: var(--red); }
.euro-sub { color: #2a2a2a; font-size: clamp(18px, 1.55vw, 23px); font-weight: 600; line-height: 1.45; max-width: 430px; margin-bottom: 38px; }
.awards-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff; border: none; cursor: pointer;
  letter-spacing: .12em; text-transform: uppercase; font-size: 12px; font-weight: 600;
  padding: 15px 32px; text-decoration: none; transition: background .2s, gap .2s;
}
.awards-cta:hover { background: var(--red-light); gap: 14px; }
.awards-cta svg { stroke: currentColor; fill: none; stroke-width: 2; }
.awards-trophies {
  position: relative;
  background: linear-gradient(180deg, #f8f7f5 0%, #f3f0ea 100%);
  border: 1px solid rgba(58, 47, 41, 0.09);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.awards-stage {
  position: relative;
  min-height: 100%;
}
.awards-slide {
  display: none;
  padding: 0;
}
.awards-slide.is-active {
  display: block;
}
.awards-trophies img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.awards-badges-bar {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 4px;
  background: #fff;
  border: 1px solid #e7e1d8;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  padding: 22px 34px;
}
.awards-badges-bar .badges-strip { display: block; width: 100%; height: auto; }
.badges-stack { display: none; }
.awards-arrow {
  display: none !important;
}
.awards-prev, .awards-next { display: none !important; }

/* Re-theme shared hero chrome while the light awards slide is active */
.hero-slideshow.awards-active .hero-stats-bar { display: none; }
.hero-slideshow.awards-active .hero-dot { border-color: #1c1c1c73 !important; }
.hero-slideshow.awards-active .hero-dot.active { background: var(--charcoal) !important; border-color: var(--charcoal) !important; }
.hero-slideshow.awards-active .hero-counter { color: #1c1c1c80; }
.hero-slideshow.awards-active .hero-counter span { color: var(--charcoal); }
.hero-slideshow.awards-active .hero-progress { background: #1c1c1c1f; }

/* ── Euromoney announcement popup (modal) ──────────────────── */
.award-pop {
  position: fixed; inset: 0; z-index: 10050;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(5, 8, 18, 0.72);
  -webkit-backdrop-filter: blur(10px) saturate(130%); backdrop-filter: blur(10px) saturate(130%);
  overflow-y: auto; animation: apFade .4s both;
}
.award-pop[hidden] { display: none; }
.award-pop.award-pop--out { animation: apFadeOut .34s both; }
body.award-pop-open { overflow: hidden; }
.award-card {
  position: relative; width: min(460px, calc(100vw - 40px)); max-width: 460px; max-height: calc(100vh - 48px); margin: auto; overflow: auto; overscroll-behavior: contain;
  background: linear-gradient(180deg, #fff 0%, #fffdf8 100%);
  border: 1px solid rgba(184, 154, 91, 0.4); border-radius: 20px;
  box-shadow: 0 40px 90px -30px rgba(6, 11, 30, 0.9), 0 10px 28px -16px rgba(6, 11, 30, 0.65);
  animation: apRise .55s cubic-bezier(.22,1,.36,1) both;
}
.award-pop--out .award-card { animation: apSink .32s both; }
.award-close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  height: 38px; padding: 0 16px 0 13px;
  background: rgba(255, 255, 255, 0.96); border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 22px;
  color: var(--charcoal); cursor: pointer;
  font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 6px 20px -6px rgba(6, 11, 30, 0.9); transition: background .2s, color .2s, transform .15s;
}
.award-close:hover { background: var(--red); color: #fff; border-color: var(--red); }
.award-close:active { transform: scale(.96); }
.award-close svg { stroke: currentColor; }
.award-flyer { position: relative; overflow: hidden; background: linear-gradient(180deg, #08111f 0%, #0d1833 100%); }
.award-flyer-img { display: block; width: 100%; height: auto; }
.award-flyer-badge {
  position: absolute; top: 0; left: 0; z-index: 2;
  background: linear-gradient(135deg, #7f1616 0%, var(--red) 100%);
  color: #fff;
  padding: 8px 18px; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  box-shadow: 0 6px 16px -6px rgba(139, 26, 26, 0.85);
}
.award-copy {
  padding: 20px 24px 0; text-align: center;
}
.award-copy-kicker {
  margin: 0 0 10px; color: var(--red); font-size: 10px; letter-spacing: .22em; font-weight: 700; text-transform: uppercase;
}
.award-copy-title {
  margin: 0 0 10px; color: var(--charcoal); font-family: var(--font-serif); font-size: clamp(22px, 2vw, 28px); font-weight: 700; line-height: 1.18;
}
.award-copy-text {
  margin: 0; color: #4a4a4a; font-size: 14px; line-height: 1.7;
}
.award-actions {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px;
  padding: 22px 26px 26px; background: transparent;
}
.award-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff; border: none; border-radius: 999px; cursor: pointer;
  padding: 14px 26px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; transition: transform .2s, background .2s, box-shadow .2s;
  box-shadow: 0 16px 30px -20px rgba(122, 18, 18, 0.95);
}
.award-btn:hover { background: var(--red-light); color: #fff; transform: translateY(-1px); }
.award-btn svg { stroke: currentColor; }
.evid-modal {
  z-index: 10060;
  background: rgba(4, 7, 16, 0.86);
  justify-content: center;
  align-items: center;
  padding: 24px;
  animation: evidFade .3s ease both;
  display: flex;
  position: fixed;
  inset: 0;
}
.evid-modal[hidden] { display: none; }
.evid-stage {
  width: min(1000px, 100%);
  max-height: calc(100vh - 48px);
  animation: evidRise .4s cubic-bezier(.22, 1, .36, 1) both;
  position: relative;
}
.evid-close {
  z-index: 3;
  width: 40px !important;
  height: 40px !important;
  color: #1c1c1c !important;
  cursor: pointer;
  background: #fff !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: normal !important;
  font: inherit;
  text-shadow: none !important;
  box-sizing: border-box;
  border-radius: 50% !important;
  justify-content: center;
  align-items: center;
  transition: background .2s, color .2s, transform .15s;
  display: flex !important;
  position: absolute;
  top: -14px;
  right: -14px;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.6) !important;
}
.evid-close:hover { background: #8b1a1a !important; color: #fff !important; }
.evid-close:active { transform: scale(.94); }
.evid-close:focus-visible { outline: 2px solid #e0b95f; outline-offset: 2px; }
.evid-video {
  background: #000;
  border-radius: 6px;
  width: 100%;
  max-height: calc(100vh - 48px);
  display: block;
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.9);
}

@keyframes evidPulse {
  0% { opacity: .8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}
@keyframes evidFade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes evidRise {
  0% { opacity: 0; transform: translateY(18px) scale(.98); }
  100% { opacity: 1; transform: none; }
}

@keyframes apFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes apFadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes apRise { from { opacity: 0; transform: translateY(26px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes apSink { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(20px) scale(.98); } }

/* ═══ Responsive ═══════════════════════════════════════════── */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .members-grid, .members-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .award-grid { grid-template-columns: 1fr; gap: 44px; }
  .award-media { position: static; max-width: 420px; margin: 0 auto; }
  .award-ribbon { gap: 20px; padding: 20px 26px; }
  .award-ribbon-title { font-size: 20px; }
  .value-showcase { grid-template-columns: 1fr; }
  .advantage-grid { grid-template-columns: 1fr; }
  .benefit-strip { grid-template-columns: 1fr; }
  .benefit-item { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.12); }
  .benefit-item:first-child { border-top: none; }
}

@media (max-width: 720px) {
  .members-grid, .members-grid.cols-3 { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .team-tabs { display: flex; width: 100%; }
  .team-tab { flex: 1; padding: 13px 12px; }
  .member-info { padding: 18px 14px 22px; }
  .member-name { font-size: 17px; }
  .value-panel { padding: 28px 22px; }
  .value-quote { font-size: 23px; }
  .advantage-card { padding: 26px 22px 26px; }
  .benefit-strip { padding: 20px 22px; }
}

@media (max-width: 900px) {
  .hero-slide-awards { padding-bottom: 110px; }
  .award-card { max-height: calc(100vh - 32px); }
  .about-grid, .contact-grid, .group-grid { grid-template-columns: 1fr; }
  .office-cards { grid-template-columns: 1fr; max-width: 560px; }
  .about-media { max-width: 560px; }
  .values-row, .team-grid { grid-template-columns: 1fr; max-width: 560px; }
  .hero-slide-content {
    width: 100%; min-width: 0;
    /* center copy vertically on mobile to avoid pushed-up text */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14vh 6% 120px;
    text-align: left;
  }
  .hero-slide-eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: .22em;
  }
  .hero-slide-headline {
    max-width: 11ch;
    margin-bottom: 16px;
    font-size: clamp(34px, 8.5vw, 56px);
    line-height: 1.12;
  }
  .hero-slide-sub {
    max-width: 540px;
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.8;
  }
  .hero-slide-cta {
    padding: 14px 26px;
    font-size: 12px;
  }
  .hero-nav { right: 6%; }
  .hero-progress { left: 6%; right: 6%; }
  /* awards slide grows to fit the stacked badges; other slides stay full-height */
  .hero-slideshow { height: auto; min-height: 100svh; }
  .hero-slide { position: relative; display: none; opacity: 1; transition: none; min-height: 100svh; }
  .hero-slide.active { display: block; }

  /* mobile awards composition: heading → tagline → trophies → Learn More → stacked badges */
  .hero-slide-awards { justify-content: flex-start; padding: 0; }
  .awards-inner {
    display: flex; flex-direction: column; align-items: center;
    gap: 16px; padding: 90px 6% 150px; max-width: 600px; text-align: center;
  }
  .awards-copy { display: contents; }
  .euro-heading { order: 1; align-items: center; margin-bottom: 2px; }
  .euro-l1 { font-size: clamp(32px, 8.5vw, 52px); line-height: .92; }
  .euro-l2, .euro-l3 { font-size: clamp(26px, 7vw, 44px); line-height: 1; }
  .euro-sub { order: 2; margin: 0 auto; max-width: 100%; font-size: 17px; text-align: center; }
  .awards-trophies {
    order: 3; width: 100%; max-width: 520px; min-height: auto; padding: 0;
    border: none; border-radius: 14px; box-shadow: none; background: transparent;
  }
  .awards-stage { padding: 0; display: flex; justify-content: center; align-items: center; }
  .awards-slide.is-active { display: block; }
  .awards-trophies img { width: 100%; height: auto; margin: 0 auto; border-radius: 10px; box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1); }
  .awards-arrow, .awards-prev, .awards-next { display: none !important; }
  .awards-cta { order: 4; margin: 4px auto 2px; }
  .awards-badges-bar {
    order: 5; display: block; width: 100%; max-width: 520px;
    background: transparent; border: none; box-shadow: none; padding: 0; margin: 8px 0 0;
  }
  .awards-badges-bar .badges-strip { display: none; }
  .badges-stack { display: flex; flex-direction: column; gap: 10px; }
  .badge-card {
    background: #fff; border: 1px solid #e7e1d8; border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05); padding: 12px 16px;
  }
  .badge-card img { display: block; width: 100%; height: auto; }
  /* badges replace the stats bar on the mobile awards slide */
  .hero-slideshow.awards-active .hero-stats-bar { display: none; }
  .award-pop { padding: 16px; }
  .award-card { width: min(100%, calc(100vw - 32px)); border-radius: 16px; }
  .award-close { top: 10px; right: 10px; }
  .award-copy { padding: 18px 18px 0; }
  .award-copy-title { font-size: 24px; }
  .award-copy-text { font-size: 13.5px; }
  .award-actions { padding: 18px; }
  .award-btn { width: 100%; justify-content: center; }

  /* Ensure non-awards slides are vertically centered and consistently spaced on mobile */
  .hero-slide:not(.hero-slide-awards) .hero-slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 14vh 6% 120px;
    text-align: center;
    width: 100%;
    min-width: 0;
  }
  .hero-slide:not(.hero-slide-awards) .hero-slide-headline {
    max-width: min(92%, 42ch);
    margin: 0 auto 14px;
  }
  .hero-slide:not(.hero-slide-awards) .hero-slide-sub { max-width: 92%; margin: 0 auto; }
}

@media (max-width: 960px) {
  /* backdrop-filter on .navbar would create a containing block that clips
     the position:fixed mobile drawer — disable it so the drawer fills the viewport */
  .navbar { height: 68px; }
  .navbar, .navbar.nav-dark { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .navbar:not(.nav-dark) { background: #fffffff7; }
  .nav-logo-img { height: 46px; }
  .nav-hamburger { display: flex; margin-left: auto; }
  .nav-links {
    z-index: 9999;
    background: radial-gradient(circle at top right, rgba(174, 27, 27, 0.32), transparent 35%), linear-gradient(180deg, #111 0%, #090909 100%);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: min(86vw, 365px);
    max-width: 365px;
    padding: 84px 24px 28px;
    transition: transform .4s cubic-bezier(.77,0,.175,1);
    position: fixed;
    top: 0; bottom: 0; right: 0;
    overflow-y: auto;
    transform: translateX(100%);
    box-shadow: -10px 0 42px rgba(0, 0, 0, 0.55);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links.nav-mobile-open { transform: translateX(0); }
  .nav-links li { border-bottom: 1px solid #ffffff14; width: 100%; padding: 16px 0; }
  .nav-links li:last-child { border-bottom: none; padding-top: 28px; }
  .nav-links a {
    letter-spacing: .08em; text-transform: uppercase; font-size: 15px; display: block;
    color: #ffffffb3 !important;
  }
  .nav-links a:hover { color: #fff !important; }
  .nav-links { padding: 12px 0; }
  .nav-links li { padding: 0; margin: 0; }
  .nav-links a {
    display: block;
    padding: 16px 20px;
    border: none;
    font-size: 16px;
  }
  .nav-links a::after { display: none !important; }

  .nav-item-dropdown { width: 100%; padding: 0; margin: 0; }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 15px;
    color: #ffffffb3;
    padding: 16px 20px;
    background: transparent;
    border: none;
  }
  .nav-item-dropdown:hover .nav-dropdown-toggle,
  .nav-item-dropdown:focus-within .nav-dropdown-toggle { color: #fff; }
  .nav-dropdown-toggle::before { display: none; }
  .nav-dropdown-toggle::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    transition: transform .25s;
  }
  .nav-item-dropdown.nav-submenu-open .nav-dropdown-toggle::after { transform: rotate(135deg); }

  .nav-submenu {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    position: static !important;
    left: auto !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    display: none !important;
    border-radius: 0;
    overflow: visible;
    list-style: none;
  }
  .nav-item-dropdown.nav-submenu-open .nav-submenu { display: block !important; }
  .nav-submenu li { border: none; width: 100%; padding: 0; margin: 0; }
  .nav-submenu li:first-child { border-top: none; }
  .nav-submenu a {
    padding: 14px 20px 14px 40px;
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 14px;
    line-height: 1.5;
    white-space: normal;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: block;
    min-height: auto;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }
  .nav-submenu a:hover { background: rgba(255, 255, 255, 0.05); color: #fff !important; }
  .nav-cta {
    text-align: center; width: 100%; padding: 18px 32px !important; letter-spacing: .12em !important;
    border-radius: 999px;
  }
  section[id] { scroll-margin-top: 68px; }

  .section { padding: 72px 6%; }
  .hero-stats-bar { flex-wrap: wrap; }
  .hero-stat { flex: 1 1 50%; min-width: 0; padding: 16px 14px; }
  .hero-stat-num { font-size: 18px; }
  .hero-stat-lbl { font-size: 10px; letter-spacing: .08em; }
  .hero-slide-content { padding-bottom: 180px; justify-content: center; align-items: center; }
  .hero-nav { bottom: 215px; }
  .hero-progress { bottom: 198px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 32px 24px; }
  .about-media::after { inset: 16px -14px -14px 16px; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  /* fixed topbar height so the fixed navbar's top offset always matches it,
     even when the regulatory text wraps to two lines on small screens */
  .nav-topbar { height: 42px; display: flex; align-items: center; justify-content: center; padding: 4px 16px; font-size: 10px; line-height: 1.35; }
  .nav-topbar .tb-full { display: none; }
  .nav-topbar .tb-brief { display: inline; }
  .navbar { top: 42px; }
  section[id] { scroll-margin-top: 110px; }
  .page-hero { min-height: 42vh; padding: 122px 6% 52px; }
  .cta-band { padding: 64px 6%; }

  /* Award ribbon: full-width CTA under the copy, thumbnail stays alongside */
  .award-ribbon { flex-wrap: wrap; padding: 22px 6%; gap: 18px; }
  .award-ribbon-copy { flex: 1 1 180px; }
  .award-ribbon-cta { width: 100%; justify-content: center; padding: 14px 22px; }
  .award-headline { font-size: 23px; }
  .award-quote { margin: 28px 0; padding-left: 22px; }
  .award-quote p { font-size: 18px; }
  .award-press { margin-top: 56px; }
  .award-press-logos { gap: 30px 34px; }
  .award-press-logos img { height: 22px; }
  .award-press-logos .press-stacked img { height: 32px; }
}

@media (max-width: 480px) {
  .award-pop { padding: 12px; }
  .award-card { width: min(100%, calc(100vw - 24px)); max-height: calc(100vh - 24px); border-radius: 14px; }
  .award-copy { padding: 16px 16px 0; }
  .award-copy-title { font-size: 21px; }
  .award-copy-text { font-size: 13px; }
  .award-actions { padding: 16px; }
  .award-btn { padding: 13px 20px; font-size: 10px; }
  .award-ribbon-title { font-size: 18px; }
  .award-ribbon-thumb { width: 46px; height: 60px; }
  .award-ribbon-meta { font-size: 12px; }
  .award-headline { font-size: 20px; }
  .award-quote p { font-size: 17px; }
  .award-press-logos { gap: 24px 26px; }
  .award-press-logos img { height: 19px; }
  .award-press-logos .press-stacked img { height: 28px; }
  .members-grid, .members-grid.cols-3 { grid-template-columns: 1fr; gap: 24px; max-width: 340px; }
  .member-info { padding: 20px 18px 24px; }
  .member-name { font-size: 19px; }
  .mission-band { margin-top: 64px; padding: 56px 8%; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; max-width: 400px; margin-left: auto; margin-right: auto; }
  .hero-slide-content { padding: 18vh 5% 120px; justify-content: center; align-items: center; }
  .hero-slide-eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: .2em;
  }
  .hero-slide-headline {
    font-size: clamp(29px, 9.8vw, 40px);
    margin-bottom: 14px;
  }
  .hero-slide-sub {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.72;
  }
  .hero-slide-cta {
    width: 100%; max-width: 280px;
    justify-content: center;
    padding: 14px 20px;
  }
  .hero-nav { bottom: 170px; right: 5%; gap: 12px; }
  .hero-progress { bottom: 156px; left: 5%; right: 5%; }
  /* 16px minimum stops iOS Safari from auto-zooming when a field gains focus */
  .form-field input, .form-field textarea { font-size: 16px; }

  /* Small phone adjustments for non-awards slides */
  .hero-slide:not(.hero-slide-awards) .hero-slide-content {
    padding: 12vh 5% 100px;
    align-items: center;
    text-align: center;
  }
  .hero-slide:not(.hero-slide-awards) .hero-slide-headline {
    font-size: clamp(26px, 8vw, 40px);
    margin: 0 auto 12px;
  }
}

/* ── Group page ─────────────────────────────────────────────── */
.group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.group-card {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfb 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.07);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.group-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.12);
  border-color: rgba(139, 26, 26, 0.18);
}

.group-card-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--surface);
}

.group-card-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform .55s ease, filter .35s ease;
}

.group-card:hover .group-card-media img {
  transform: scale(1.05);
  filter: saturate(1.03);
}

.group-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 34px 32px;
}

.group-card-body h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
}

.group-card-body p {
  color: var(--mid);
  font-size: 15.5px;
  line-height: 1.78;
}

.group-card .arrow-link {
  margin-top: 10px;
}

.group-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(139, 26, 26, 0.14);
  border-radius: 999px;
  background: var(--red-pale);
  color: var(--red);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* ── Mobile refinement pass ────────────────────────────────── */
.nav-hamburger:focus-visible,
.nav-dropdown-toggle:focus-visible,
.nav-links a:focus-visible,
.btn-primary:focus-visible,
.hero-slide-cta:focus-visible,
.awards-cta:focus-visible,
.award-ribbon:focus-visible,
.quick-card:focus-visible,
.group-card:focus-visible,
.member-card:focus-visible,
.team-tab:focus-visible {
  outline: 2px solid rgba(139, 26, 26, 0.8);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .group-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .nav-links {
    width: min(92vw, 380px);
    max-width: 380px;
    padding: 88px 22px 28px;
  }

  .nav-links li {
    padding: 14px 0;
  }

  .nav-links li:last-child {
    padding-top: 22px;
  }

  .nav-links a,
  .nav-dropdown-toggle {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-submenu {
    margin-top: 10px;
  }

  .nav-submenu a {
    min-height: 44px;
    padding: 14px 0 14px 16px;
  }

  .page-hero h1,
  .hero-slide-headline {
    text-wrap: balance;
  }

  .page-hero p,
  .hero-slide-sub,
  .body-text,
  .contact-head p,
  .cta-band p {
    max-width: 100%;
  }

  .group-card {
    grid-template-columns: 1fr;
  }

  .group-card-media img {
    min-height: 240px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 64px 20px;
  }

  .section-head,
  .award-head,
  .contact-head {
    margin-bottom: 38px;
  }

  .label {
    gap: 8px;
    margin-bottom: 14px;
    letter-spacing: .22em;
    font-size: 11px;
  }

  .label::before {
    width: 22px;
  }

  .h2 {
    margin-bottom: 16px;
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.18;
  }

  .body-text {
    font-size: 16px;
    line-height: 1.78;
  }

  .page-hero {
    min-height: 44vh;
    padding: 126px 20px 46px;
  }

  .page-hero p {
    font-size: 15px;
    line-height: 1.75;
  }

  .breadcrumb {
    flex-wrap: wrap;
    gap: 6px 8px;
    margin-bottom: 16px;
    letter-spacing: .14em;
  }

  .hero-slide-content {
    justify-content: flex-end;
    min-height: 100svh;
    padding: 0 20px 128px;
  }

  .hero-slide-eyebrow {
    gap: 10px;
    margin-bottom: 16px;
    line-height: 1.4;
  }

  .hero-slide-eyebrow::before {
    width: 28px;
    flex: 0 0 28px;
  }

  .hero-slide-headline {
    max-width: 12ch;
    margin-bottom: 16px;
    font-size: clamp(31px, 9vw, 44px);
    line-height: 1.12;
  }

  .hero-slide-sub {
    max-width: 32ch;
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.75;
    color: #ffffffe0;
  }

  .hero-slide-cta {
    min-width: 220px;
    min-height: 48px;
    padding: 14px 24px;
  }

  .hero-nav {
    left: 20px;
    right: 20px;
    bottom: 96px;
    justify-content: space-between;
    gap: 14px;
  }

  .hero-dots {
    flex: 0 0 auto;
  }

  .hero-counter {
    margin-left: auto;
  }

  .hero-progress {
    bottom: 76px;
    left: 20px;
    right: 20px;
  }

  .awards-inner {
    gap: 18px;
    padding: 136px 20px 132px;
  }

  .euro-sub {
    max-width: 28ch;
    font-size: 16px;
    line-height: 1.55;
  }

  .awards-cta {
    min-width: min(100%, 240px);
    min-height: 48px;
    justify-content: center;
  }

  .badges-stack {
    gap: 12px;
  }

  .badge-card {
    padding: 12px 14px;
  }

  .award-ribbon {
    padding: 20px;
    gap: 16px;
  }

  .award-ribbon-title {
    font-size: 19px;
    line-height: 1.32;
  }

  .award-ribbon-meta {
    line-height: 1.6;
  }

  .service-card,
  .value-card,
  .advantage-card,
  .office-card,
  .contact-side,
  .contact-form {
    padding-left: 22px;
    padding-right: 22px;
  }

  .contact-grid {
    gap: 28px;
  }

  .quick-card {
    align-items: flex-start;
    gap: 14px;
    padding: 16px 16px;
  }

  .quick-value {
    font-size: 15px;
    line-height: 1.55;
  }

  .office-card-name,
  .contact-side-title {
    font-size: 24px;
  }

  .team-tabs-wrap {
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .team-tabs {
    width: max-content;
    min-width: 100%;
    gap: 8px;
    padding: 6px;
    white-space: nowrap;
  }

  .team-tab {
    flex: 0 0 auto;
    min-width: 172px;
    padding: 13px 18px;
  }

  .footer-main {
    padding: 56px 20px 40px;
    gap: 32px;
  }

  .footer-bottom {
    padding: 18px 20px 24px;
    font-size: 12px;
    line-height: 1.6;
  }

  .group-card-body {
    padding: 26px 22px;
  }

  .group-card-body h3 {
    font-size: 24px;
  }
}

@media (max-width: 560px) {
  .nav-topbar {
    min-height: 42px;
    height: auto;
    padding-left: 12px;
    padding-right: 12px;
  }

  .navbar {
    padding: 0 20px;
  }

  .nav-logo-img {
    height: 42px;
  }

  .hero-slideshow {
    min-height: 100dvh;
  }

  .hero-slide-content {
    padding-top: 0;
    padding-bottom: 118px;
  }

  .hero-nav {
    bottom: 94px;
  }

  .hero-progress {
    bottom: 74px;
  }

  .hero-slide-cta,
  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .awards-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-slide-headline {
    max-width: 11ch;
    font-size: clamp(30px, 10vw, 38px);
  }

  .hero-slide-sub {
    max-width: 27ch;
    font-size: 14.5px;
  }

  .awards-inner {
    padding: 132px 20px 118px;
  }

  .about-grid,
  .value-showcase,
  .award-grid,
  .contact-grid,
  .group-grid {
    gap: 24px;
  }

  .about-media::after {
    inset: 12px -10px -10px 12px;
  }

  .services-grid,
  .members-grid,
  .members-grid.cols-3 {
    gap: 20px;
  }

  .contact-form,
  .contact-side,
  .office-card,
  .service-card,
  .value-card,
  .advantage-card,
  .group-card-body {
    padding: 20px;
  }

  .award-quote {
    padding-left: 18px;
  }

  .award-quote p {
    font-size: 16px;
    line-height: 1.72;
  }

  .member-role,
  .benefit-label,
  .quick-label,
  .office-card-tag {
    letter-spacing: .14em;
  }

  .group-card-media img {
    min-height: 220px;
  }

  .group-card-body h3 {
    font-size: 22px;
  }
}

/* ── Accessibility & shared utilities (technical-SEO pass) ─── */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100010; background: var(--red); color: #fff; padding: 12px 20px; font-size: 14px; font-weight: 600; text-decoration: none; }
.skip-link:focus { left: 8px; top: 8px; }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; border: 1.5px solid var(--charcoal); color: var(--charcoal); background: transparent; padding: 14px 30px; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; transition: background .2s, color .2s; }
.btn-outline:hover { background: var(--charcoal); color: #fff; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
