:root {
  --ink-950: #191a1c;
  --ink-900: #222428;
  --ink-850: #292c31;
  --ink-800: #343840;
  --ink-700: #4b515b;
  --ink-600: #626a76;
  --ink-500: #7c8490;
  --orange-800: #7e3517;
  --orange-700: #97451f;
  --orange-600: #b45728;
  --orange-500: #ca6d3c;
  --orange-400: #dc8b60;
  --orange-200: #efc3aa;
  --orange-100: #f9ece4;
  --slate-100: #e3e6e8;
  --slate-75: #eef0f1;
  --slate-50: #f7f7f6;
  --white: #ffffff;
  --success: #176744;
  --danger: #9f2937;
  --warning: #8a5a00;
  --shadow-sm: 0 1px 2px rgba(16, 22, 29, .06), 0 10px 28px rgba(16, 22, 29, .07);
  --shadow-md: 0 20px 55px rgba(16, 22, 29, .13);
  --shadow-lg: 0 34px 90px rgba(16, 22, 29, .20);
  --radius-sm: .65rem;
  --radius-md: 1rem;
  --radius-lg: 1.45rem;
  --radius-xl: 2rem;
  --container: 1240px;
  --header-height: 94px;
  --transition: 180ms ease;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 1.25rem); }
body {
  margin: 0;
  color: var(--ink-950);
  background: var(--white);
  font-family: Inter, Aptos, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-underline-offset: .2em; text-decoration-thickness: .08em; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--orange-200); color: var(--ink-950); }

h1, h2, h3, h4, p, ul, ol, dl, blockquote { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--ink-950);
  letter-spacing: -.035em;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(2.65rem, 5.4vw, 5rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(2rem, 3.8vw, 3.55rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.28rem, 1.8vw, 1.72rem); margin-bottom: .65rem; }
h4 { font-size: 1.05rem; margin-bottom: .45rem; letter-spacing: -.015em; }
p { margin-bottom: 1.05rem; }
ul, ol { padding-left: 1.3rem; }
strong { font-weight: 780; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 1000;
  padding: .8rem 1rem;
  background: var(--white);
  color: var(--ink-950);
  border-radius: .55rem;
  box-shadow: var(--shadow-md);
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2.5rem), var(--container)); margin-inline: auto; }
.container-narrow { width: min(calc(100% - 2.5rem), 860px); margin-inline: auto; }
.section { padding: clamp(4.5rem, 7vw, 7rem) 0; position: relative; }
.section-sm { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.section-xs { padding: 2.2rem 0; }
.section-slate { background: var(--slate-50); }
.section-orange-soft { background: var(--orange-100); }
.section-dark { background: var(--ink-950); color: rgba(255,255,255,.82); }
.section-gradient { background: linear-gradient(135deg, var(--ink-950), #26313d 66%, #304052); color: var(--white); }
.section-dark :is(h2,h3,h4), .section-gradient :is(h2,h3,h4) { color: var(--white); }
.section-dark p, .section-gradient p { color: rgba(255,255,255,.78); }
.section-heading { max-width: 830px; margin-bottom: 2.6rem; }
.section-heading.center { text-align: center; margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .95rem;
  color: var(--orange-700);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 2.35rem; height: 2px; background: var(--orange-500); }
.section-dark .eyebrow, .section-gradient .eyebrow, .page-hero .eyebrow { color: #f1a47b; }
.lead { font-size: clamp(1.08rem, 1.55vw, 1.28rem); line-height: 1.65; color: var(--ink-700); }
.section-dark .lead, .section-gradient .lead, .page-hero .lead { color: rgba(255,255,255,.82); }
.muted { color: var(--ink-600); }
.small { font-size: .91rem; }
.tiny { font-size: .79rem; }
.upper { text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.max-900 { max-width: 900px; }

/* Header */
.topbar {
  min-height: 38px;
  display: flex;
  align-items: center;
  background: var(--ink-950);
  color: rgba(255,255,255,.84);
  font-size: .77rem;
  letter-spacing: .025em;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.topbar-meta { display: flex; align-items: center; gap: 1.1rem; }
.topbar-dot { width: .43rem; height: .43rem; flex: 0 0 auto; border-radius: 50%; background: var(--orange-500); }
.topbar a { text-decoration: none; color: #f3a77f; }
.topbar a:hover { color: var(--white); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(25,26,28,.09);
  backdrop-filter: blur(18px);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.is-scrolled { background: rgba(255,255,255,.995); box-shadow: 0 12px 38px rgba(16,22,29,.1); }
.header-inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; text-decoration: none; }
.cim-brand { display: inline-flex; flex-direction: column; align-items: flex-start; gap: .28rem; min-width: 0; }
.brand-primary { display: flex; align-items: center; gap: .8rem; min-width: 0; }
.brand-mark { flex: 0 0 auto; width: 106px; }
.brand-mark img { width: 100%; height: auto; }
.brand-wording { min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: .16rem; }
.brand-name { color: var(--ink-950); font-size: 1.34rem; line-height: 1.05; letter-spacing: -.025em; white-space: nowrap; }
.brand-tagline { align-self: stretch; padding-top: .28rem; border-top: 1px solid rgba(25,26,28,.18); color: var(--ink-600); font-size: .68rem; font-weight: 820; line-height: 1.15; letter-spacing: .105em; text-align: center; text-transform: uppercase; white-space: nowrap; }
.primary-nav { display: flex; align-items: center; justify-content: flex-end; gap: .02rem; }
.primary-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: .62rem .61rem;
  border-radius: .58rem;
  color: var(--ink-800);
  font-size: .82rem;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--orange-700); background: var(--orange-100); }
.primary-nav .header-cta { margin-left: .42rem; padding-inline: .95rem; color: var(--white); background: var(--orange-600); }
.primary-nav .header-cta:hover { color: var(--white); background: var(--orange-700); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--slate-100);
  border-radius: .72rem;
  background: var(--slate-50);
  color: var(--ink-950);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after { transform: translateY(5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-2px) rotate(-45deg); }

/* Buttons and links */
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; margin-top: 1.7rem; }
.btn {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .82rem 1.18rem;
  border: 1px solid transparent;
  border-radius: .72rem;
  font-size: .9rem;
  font-weight: 820;
  line-height: 1.2;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.btn svg, .text-link svg, .arrow-chip svg { width: 1.05rem; height: 1.05rem; flex: 0 0 auto; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--orange-600); box-shadow: 0 11px 30px rgba(180,87,40,.22); }
.btn-primary:hover { background: var(--orange-700); box-shadow: 0 14px 34px rgba(180,87,40,.28); }
.btn-dark { color: var(--white); background: var(--ink-950); }
.btn-dark:hover { background: var(--ink-800); }
.btn-outline { color: var(--ink-950); border-color: rgba(25,26,28,.28); background: transparent; }
.btn-outline:hover { color: var(--orange-700); border-color: var(--orange-500); background: var(--white); }
.btn-ghost-light { color: var(--white); border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.04); }
.btn-ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  color: var(--orange-700);
  font-weight: 820;
  text-decoration: none;
}
.text-link:hover { color: var(--orange-800); }
.section-dark .text-link { color: #f3a77f; }

/* Home hero */
.hero-home {
  position: relative;
  overflow: hidden;
  padding: clamp(4.4rem, 7vw, 7.4rem) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(202,109,60,.21), transparent 28rem),
    linear-gradient(135deg, #17191c 0%, #222a32 56%, #2b3743 100%);
}
.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: radial-gradient(circle, rgba(255,255,255,.15) 1px, transparent 1.2px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to right, transparent 0, #000 55%, #000 100%);
}
.hero-home-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(440px, .96fr); gap: clamp(2.5rem, 5vw, 5.2rem); align-items: center; }
.hero-copy { max-width: 700px; }
.hero-copy h1 { color: var(--white); font-size: clamp(3rem, 5.2vw, 5.5rem); }
.hero-copy .lead { color: rgba(255,255,255,.84); max-width: 680px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.5rem; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: .38rem .68rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.07);
  font-size: .76rem;
  font-weight: 720;
}
.hero-showcase { min-width: 0; }
.hero-showcase-photo {
  position: relative;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: #303740;
}
.hero-showcase-photo > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.hero-showcase-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,13,16,.83) 100%); }
.hero-showcase-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.25rem;
  display: grid;
  gap: .2rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: .85rem;
  color: var(--white);
  background: rgba(15,18,22,.78);
  backdrop-filter: blur(10px);
}
.hero-showcase-photo figcaption span { color: #f1a47b; font-size: .76rem; font-weight: 820; letter-spacing: .095em; text-transform: uppercase; }
.hero-showcase-photo figcaption strong { color: var(--white); font-size: 1.05rem; }
.hero-proof-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .72rem; margin-top: .8rem; }
.hero-proof-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: .75rem;
  align-items: start;
  padding: .9rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: .85rem;
  background: rgba(255,255,255,.065);
}
.hero-proof-item > svg { width: 40px; height: 40px; padding: .55rem; border-radius: .62rem; color: #f2a47c; background: rgba(202,109,60,.14); }
.hero-proof-item strong { display: block; color: var(--white); font-size: .86rem; line-height: 1.3; }
.hero-proof-item span { display: block; margin-top: .2rem; color: rgba(255,255,255,.67); font-size: .76rem; line-height: 1.45; }

/* Page heroes */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 6.5vw, 6.5rem) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(202,109,60,.18), transparent 25rem),
    linear-gradient(135deg, var(--ink-950), #26313c 70%, #314151);
}
.page-hero h1 { color: var(--white); max-width: 970px; font-size: clamp(2.7rem, 5vw, 4.8rem); }
.page-hero p { color: rgba(255,255,255,.78); }
.page-hero .max-900 { color: rgba(255,255,255,.71); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0,1.18fr) minmax(360px,.82fr); gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.page-hero-photo {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: #303740;
}
.page-hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; margin-bottom: 1.2rem; color: rgba(255,255,255,.62); font-size: .79rem; }
.breadcrumbs a { color: rgba(255,255,255,.8); text-decoration: none; }
.breadcrumbs span::before { content: "/"; margin-right: .45rem; color: rgba(255,255,255,.36); }

/* Layout and grids */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.compact-grid { gap: 1rem; }
.media-split, .split {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(380px,.92fr);
  gap: clamp(2.5rem, 5vw, 5.2rem);
  align-items: center;
}
.media-split.reverse > :first-child { order: 2; }
.media-split.reverse > :last-child { order: 1; }
.contact-grid { display: grid; grid-template-columns: minmax(310px,.75fr) minmax(0,1.25fr); gap: 2rem; align-items: start; }
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 3rem; align-items: start; }

/* Generic cards */
.card {
  position: relative;
  min-width: 0;
  padding: 1.6rem;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 1.32rem; }
.card p { color: var(--ink-700); }
.card-link { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.card-link:hover { transform: translateY(-4px); border-color: var(--orange-200); box-shadow: var(--shadow-md); }
.card-link .text-link { margin-top: auto; padding-top: .6rem; }
.feature-card { min-height: 255px; }
.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  border-radius: .85rem;
  color: var(--orange-700);
  background: var(--orange-100);
}
.card-icon svg { width: 25px; height: 25px; }
.card-number { display: block; margin-bottom: .8rem; color: var(--orange-600); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.practice-card { border-top: 4px solid var(--orange-500); }
.region-card { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.13); box-shadow: none; }
.region-card h3, .region-card .card-icon { color: var(--white); }
.region-card p { color: rgba(255,255,255,.73); }
.region-card .card-icon { background: rgba(255,255,255,.08); }

/* Stats */
.stats-strip { border-bottom: 1px solid var(--slate-100); background: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); }
.stat { min-height: 135px; display: flex; flex-direction: column; justify-content: center; padding: 1.8rem 1.5rem; border-right: 1px solid var(--slate-100); }
.stat:last-child { border-right: 0; }
.stat-value { color: var(--orange-700); font-size: clamp(1.55rem, 2.5vw, 2.35rem); font-weight: 870; line-height: 1.1; letter-spacing: -.035em; }
.stat-label { margin-top: .5rem; color: var(--ink-600); font-size: .84rem; line-height: 1.45; }

/* Photography */
.photo-panel, .contact-photo {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #dfe3e5;
  box-shadow: var(--shadow-md);
}
.photo-panel-tall { min-height: 610px; }
.photo-panel-dark { border: 1px solid rgba(255,255,255,.14); background: #303740; }
.photo-panel img, .contact-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-panel figcaption {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: .78rem;
  color: var(--white);
  background: rgba(20,22,25,.78);
  backdrop-filter: blur(8px);
  font-size: .88rem;
  line-height: 1.45;
}

/* Sector cards */
.sector-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 1.15rem; }
.sector-card {
  position: relative;
  min-height: 470px;
  grid-column: span 2;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--ink-900);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  isolation: isolate;
  transition: transform var(--transition), box-shadow var(--transition);
}
.sector-card:nth-last-child(2):nth-child(4), .sector-card:last-child:nth-child(5) { grid-column: span 3; }
.sector-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.sector-card-media, .sector-card-media img, .sector-card-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.sector-card-media img { object-fit: cover; transition: transform 500ms ease; }
.sector-card:hover .sector-card-media img { transform: scale(1.035); }
.sector-card-overlay { z-index: 1; background: linear-gradient(180deg, rgba(10,12,15,.06) 12%, rgba(10,12,15,.48) 48%, rgba(10,12,15,.96) 100%); }
.sector-card-body { position: absolute; z-index: 2; inset: auto 0 0; display: flex; flex-direction: column; align-items: flex-start; padding: 1.65rem; }
.sector-card-kicker { margin-bottom: .55rem; color: #f3a77f; font-size: .73rem; font-weight: 880; letter-spacing: .12em; text-transform: uppercase; }
.sector-card h3 { color: var(--white); font-size: 1.62rem; }
.sector-card p { color: rgba(255,255,255,.82); font-size: .96rem; line-height: 1.55; }
.sector-card-action { display: inline-flex; align-items: center; gap: .55rem; margin-top: .45rem; color: #f3a77f; font-size: .85rem; font-weight: 830; }
.arrow-chip { width: 32px; height: 32px; display: inline-grid; place-items: center; border-radius: 50%; color: var(--white); background: rgba(255,255,255,.13); }
.arrow-chip svg { width: 15px; height: 15px; }

/* Photo cards */
.photo-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.25rem; }
.photo-card-grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.photo-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: #303740;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  isolation: isolate;
  transition: transform var(--transition), box-shadow var(--transition);
}
.photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.photo-card-media, .photo-card-media img, .photo-card-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.photo-card-media img { object-fit: cover; transition: transform 500ms ease; }
.photo-card:hover .photo-card-media img { transform: scale(1.035); }
.photo-card-overlay { z-index: 1; background: linear-gradient(180deg, rgba(9,11,14,.08) 12%, rgba(9,11,14,.45) 50%, rgba(9,11,14,.96) 100%); }
.photo-card-content { position: absolute; z-index: 2; inset: auto 0 0; display: flex; flex-direction: column; align-items: flex-start; padding: 1.55rem; }
.photo-card-kicker { margin-bottom: .48rem; color: #f3a77f; font-size: .73rem; font-style: normal; font-weight: 880; letter-spacing: .11em; text-transform: uppercase; }
.photo-card-content strong { color: var(--white); font-size: 1.55rem; line-height: 1.15; }
.photo-card-content > span:not(.photo-card-kicker):not(.photo-card-action) { margin-top: .5rem; color: rgba(255,255,255,.79); line-height: 1.52; }
.photo-card-action { display: inline-flex; align-items: center; gap: .55rem; margin-top: 1rem; color: #f3a77f; font-size: .84rem; font-weight: 830; }

/* Process */
.process { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.process-step {
  position: relative;
  min-height: 230px;
  padding: 1.55rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.065);
}
.process-step::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 4px; background: var(--orange-500); }
.process-number { display: block; margin: .25rem 0 1.15rem; color: #f3a77f; font-size: .78rem; font-weight: 900; letter-spacing: .13em; }
.process-step h3 { color: var(--white); font-size: 1.32rem; }
.process-step p { margin: 0; color: rgba(255,255,255,.74); font-size: .94rem; line-height: 1.58; }
.section:not(.section-dark) .process-step { border-color: var(--slate-100); background: var(--white); box-shadow: var(--shadow-sm); }
.section:not(.section-dark) .process-step h3 { color: var(--ink-950); }
.section:not(.section-dark) .process-step p { color: var(--ink-700); }

/* Lists and tags */
.check-list { display: grid; gap: .72rem; margin: 1.3rem 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 2rem; color: var(--ink-700); }
.check-list li::before { content: ""; position: absolute; left: 0; top: .43rem; width: .85rem; height: .48rem; border-left: 2px solid var(--orange-600); border-bottom: 2px solid var(--orange-600); transform: rotate(-45deg); }
.section-dark .check-list li { color: rgba(255,255,255,.78); }
.tag-list, .country-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.2rem 0; }
.tag-list span, .country-tags span { padding: .5rem .72rem; border: 1px solid var(--slate-100); border-radius: 999px; color: var(--ink-700); background: var(--white); font-size: .8rem; font-weight: 700; }
.section-dark .tag-list span, .section-dark .country-tags span { border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.84); background: rgba(255,255,255,.06); }

/* Products and categories */
.product-grid { align-items: stretch; }
.product-group { min-height: 100%; }
.product-group .check-list { gap: .55rem; }
.product-group .check-list li { font-size: .9rem; }
.category-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .75rem; }
.category-card { display: grid; grid-template-columns: 45px 1fr; gap: .85rem; align-items: start; padding: 1.05rem; box-shadow: none; }
.category-index { display: grid; place-items: center; width: 42px; height: 42px; border-radius: .65rem; color: var(--orange-700); background: var(--orange-100); font-size: .75rem; font-weight: 900; }
.category-card p { margin: .35rem 0 0; color: var(--ink-800); font-weight: 700; line-height: 1.4; }

/* Insight cards */
.insights-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 1.25rem; }
.insight-card { grid-column: span 2; overflow: hidden; border: 1px solid var(--slate-100); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.insight-card:nth-last-child(2):nth-child(4), .insight-card:last-child:nth-child(5) { grid-column: span 3; }
.insight-thumb { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink-800); }
.insight-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.insight-thumb:hover img { transform: scale(1.035); }
.insight-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(12,14,17,.7)); }
.insight-category { position: absolute; z-index: 2; left: 1rem; bottom: 1rem; padding: .42rem .62rem; border-radius: 999px; color: var(--white); background: var(--orange-600); font-size: .72rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.insight-body { padding: 1.4rem; }
.insight-reading { display: block; margin-bottom: .7rem; color: var(--ink-600); font-size: .76rem; font-weight: 760; text-transform: uppercase; letter-spacing: .08em; }
.insight-body h3 { font-size: 1.35rem; }
.insight-body h3 a { text-decoration: none; }
.insight-body h3 a:hover { color: var(--orange-700); }
.insight-body p { color: var(--ink-700); }

/* FAQ, notices and callouts */
.faq-list { display: grid; gap: .75rem; }
.faq-list details { border: 1px solid var(--slate-100); border-radius: .8rem; background: var(--white); }
.faq-list summary { padding: 1rem 1.1rem; cursor: pointer; color: var(--ink-950); font-weight: 790; }
.faq-list details p { padding: 0 1.1rem 1rem; color: var(--ink-700); }
.notice { padding: 1rem 1.1rem; border-left: 4px solid var(--orange-500); border-radius: .55rem; color: var(--ink-800); background: var(--orange-100); }
.callout { padding: clamp(2rem, 4vw, 3.5rem); border-radius: var(--radius-xl); color: var(--white); background: linear-gradient(135deg, var(--ink-950), #2c3742); box-shadow: var(--shadow-md); }
.callout h2 { color: var(--white); font-size: clamp(1.9rem, 3vw, 3.05rem); }
.callout p { margin: 0; color: rgba(255,255,255,.76); }
.callout-grid { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 2rem; align-items: center; }
.callout-orange { color: var(--ink-950); background: linear-gradient(135deg, #efb391, #f7d8c4); }
.callout-orange h2, .callout-orange p { color: var(--ink-950); }

/* Contact and forms */
.contact-card { position: sticky; top: calc(var(--header-height) + 1rem); padding: 1.5rem; border: 1px solid var(--slate-100); border-radius: var(--radius-lg); background: var(--slate-50); }
.contact-card .contact-photo { min-height: 250px; margin: -1.5rem -1.5rem 1.5rem; border-radius: var(--radius-lg) var(--radius-lg) 0 0; box-shadow: none; }
.contact-card .card-icon { margin-top: -2.5rem; position: relative; z-index: 2; border: 4px solid var(--slate-50); }
.contact-item { display: grid; gap: .22rem; padding: .8rem 0; border-bottom: 1px solid var(--slate-100); }
.contact-item strong { color: var(--ink-950); font-size: .86rem; }
.contact-item span, .contact-item a { color: var(--ink-700); overflow-wrap: anywhere; }
.form-shell { padding: clamp(1.4rem, 3vw, 2.2rem); border: 1px solid var(--slate-100); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.form-field, fieldset.full { min-width: 0; margin: 0; }
.form-field.full, fieldset.full { grid-column: 1 / -1; }
.form-field label, .fieldset-label { display: block; margin-bottom: .42rem; color: var(--ink-900); font-size: .86rem; font-weight: 780; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  min-height: 50px;
  padding: .77rem .85rem;
  border: 1px solid #cbd0d4;
  border-radius: .65rem;
  color: var(--ink-950);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field :is(input,textarea,select):focus { outline: 0; border-color: var(--orange-500); box-shadow: 0 0 0 3px rgba(202,109,60,.16); }
.hint { display: block; margin-top: .35rem; color: var(--ink-600); font-size: .76rem; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .55rem; }
.checkbox-item, .privacy-check { display: flex; align-items: flex-start; gap: .65rem; color: var(--ink-700); font-size: .87rem; line-height: 1.45; }
.checkbox-item { padding: .72rem; border: 1px solid var(--slate-100); border-radius: .65rem; background: var(--slate-50); }
.checkbox-item input, .privacy-check input { margin-top: .2rem; accent-color: var(--orange-600); }
.privacy-check { margin: 1.25rem 0; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.form-status { display: none; margin-top: 1rem; padding: .9rem 1rem; border-radius: .65rem; }
.form-status.is-visible { display: block; }
.form-status.success { color: var(--success); background: #e8f5ee; }
.form-status.error { color: var(--danger); background: #fbeaec; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Articles and legal content */
.article-body { min-width: 0; }
.article-body > section { margin-bottom: 2.6rem; }
.article-body h2 { font-size: clamp(1.65rem, 2.7vw, 2.5rem); }
.article-body p, .legal-content p, .legal-content li { color: var(--ink-700); }
.article-aside { position: sticky; top: calc(var(--header-height) + 1rem); display: grid; gap: 1rem; }
.reference-list { margin-top: 2rem; padding: 1.25rem; border: 1px solid var(--slate-100); border-radius: var(--radius-md); background: var(--slate-50); }
.reference-list h3 { font-size: 1.1rem; }
.reference-list li + li { margin-top: .45rem; }
.legal-content { max-width: 900px; }
.legal-content h2 { margin-top: 2.5rem; font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
.legal-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--slate-100); color: var(--ink-600); font-size: .83rem; }

/* Footer */
.site-footer { padding-top: 4.5rem; color: rgba(255,255,255,.78); background: #17181a; }
.footer-main { display: grid; grid-template-columns: minmax(260px,1.3fr) minmax(160px,.72fr) minmax(180px,.8fr) minmax(260px,1.15fr); gap: clamp(2rem, 4vw, 4rem); padding-bottom: 3.2rem; }
.footer-main h3 { margin-bottom: 1rem; color: var(--white); font-size: 1rem; letter-spacing: -.01em; }
.footer-brand p { max-width: 470px; color: rgba(255,255,255,.72); }
.footer-lockup { margin-bottom: 1.45rem; }
.footer-lockup .brand-primary { gap: .8rem; }
.footer-lockup .brand-mark { width: 142px; }
.footer-lockup .brand-name { color: var(--white); font-size: 1.42rem; }
.footer-lockup .brand-tagline { border-top-color: rgba(255,255,255,.26); color: #e7a17b; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: .54rem; }
.footer-links a { color: rgba(255,255,255,.73); text-decoration: none; }
.footer-links a:hover { color: #f3a77f; }
.footer-contact { min-width: 0; }
.footer-contact-group { display: grid; gap: .2rem; margin-bottom: .85rem; }
.footer-contact-group strong, .footer-label { color: var(--white); font-size: .82rem; font-weight: 800; }
.footer-contact-group a { color: #f3a77f; text-decoration: none; overflow-wrap: anywhere; }
.footer-contact address { display: grid; gap: .2rem; margin: 1rem 0; color: rgba(255,255,255,.76); font-style: normal; line-height: 1.55; overflow-wrap: anywhere; }
.footer-registration { color: rgba(255,255,255,.72); font-size: .82rem; }
.footer-legal-links { margin-top: 1.25rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.15rem 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); font-size: .76rem; }
.footer-brand .tiny a { color: #f3a77f; }

/* Other */
.service-visual { position: relative; min-height: 420px; display: grid; place-items: center; overflow: hidden; border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--ink-950), #304051); }
.visual-core { width: 170px; height: 170px; display: grid; place-items: center; padding: 1.2rem; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--white); background: rgba(255,255,255,.08); text-align: center; font-weight: 850; }
.visual-core svg { width: 46px; height: 46px; margin: 0 auto .5rem; color: #f3a77f; }
.visual-label { position: absolute; padding: .5rem .7rem; border-radius: 999px; color: var(--white); background: rgba(255,255,255,.1); font-size: .76rem; }
.visual-label:nth-of-type(1) { top: 12%; left: 10%; }
.visual-label:nth-of-type(2) { top: 13%; right: 8%; }
.visual-label:nth-of-type(3) { bottom: 14%; left: 8%; }
.visual-label:nth-of-type(4) { bottom: 12%; right: 10%; }

/* Focus and motion */
:focus-visible { outline: 3px solid #f0a47c; outline-offset: 3px; }
.reveal { opacity: 1; transform: none; }

@media (max-width: 1160px) {
  :root { --header-height: 84px; }
  .hide-md { display: none; }
  .brand-mark { width: 92px; }
  .brand-name { font-size: 1.2rem; }
  .brand-tagline { font-size: .61rem; }
  .nav-toggle { display: grid; }
  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 1.25rem;
    right: 1.25rem;
    display: none;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: .75rem;
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }
  .primary-nav.is-open { display: grid; }
  .primary-nav a { justify-content: flex-start; padding: .8rem .9rem; }
  .primary-nav .header-cta { margin: .35rem 0 0; justify-content: center; }
  .hero-home-layout, .page-hero-grid { grid-template-columns: 1fr 430px; gap: 2.5rem; }
  .footer-main { grid-template-columns: 1.3fr .8fr .9fr; }
  .footer-contact { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem 1.5rem; }
  .footer-contact > h3 { grid-column: 1 / -1; }
  .footer-contact .footer-legal-links { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: .7rem 1.1rem; }
  .footer-links li + li { margin-top: 0; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .topbar .container { justify-content: center; }
  .topbar-meta:last-child { display: none; }
  .hero-home-layout, .page-hero-grid, .media-split, .split, .contact-grid, .article-layout { grid-template-columns: 1fr; }
  .hero-home-layout { gap: 2.25rem; }
  .hero-copy { max-width: 760px; }
  .hero-showcase-photo { min-height: 480px; }
  .page-hero-photo { min-height: 390px; }
  .media-split.reverse > :first-child, .media-split.reverse > :last-child { order: initial; }
  .photo-panel, .photo-panel-tall { min-height: 440px; }
  .contact-card, .article-aside { position: static; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sector-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sector-card, .sector-card:nth-last-child(2):nth-child(4), .sector-card:last-child:nth-child(5) { grid-column: auto; }
  .sector-card { min-height: 450px; }
  .photo-card-grid, .photo-card-grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .insights-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .insight-card, .insight-card:nth-last-child(2):nth-child(4), .insight-card:last-child:nth-child(5) { grid-column: auto; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--slate-100); }
  .footer-main { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-contact { grid-column: 1 / -1; grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 640px) {
  :root { --header-height: 76px; }
  body { font-size: .97rem; }
  .container { width: min(calc(100% - 1.4rem), var(--container)); }
  .section { padding: 4rem 0; }
  .section-sm { padding: 2.8rem 0; }
  .topbar { min-height: 34px; font-size: .7rem; text-align: center; }
  .topbar-dot { display: none; }
  .header-inner { gap: .65rem; }
  .brand-mark { width: 73px; }
  .brand-primary { gap: .55rem; }
  .brand-name { font-size: 1.02rem; }
  .brand-tagline { width: 100%; max-width: 180px; white-space: normal; font-size: .55rem; letter-spacing: .075em; }
  .nav-toggle { width: 42px; height: 42px; }
  .primary-nav { left: .7rem; right: .7rem; }
  h1 { font-size: clamp(2.45rem, 12vw, 3.45rem); }
  h2 { font-size: clamp(1.95rem, 9.5vw, 2.8rem); }
  .hero-home, .page-hero { padding: 3.7rem 0; }
  .hero-copy h1 { font-size: clamp(2.65rem, 13vw, 3.8rem); }
  .hero-home-layout, .page-hero-grid { grid-template-columns: minmax(0,1fr); }
  .hero-showcase-photo { min-height: 430px; }
  .hero-proof-grid { grid-template-columns: 1fr; }
  .page-hero-photo { min-height: 330px; }
  .button-row { align-items: stretch; }
  .button-row .btn { width: 100%; }
  .grid-2, .grid-3, .grid-4, .sector-grid, .photo-card-grid, .photo-card-grid-3, .process, .insights-grid, .category-list, .form-grid, .checkbox-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .sector-card { min-height: 470px; }
  .photo-card { min-height: 420px; }
  .photo-panel, .photo-panel-tall { min-height: 380px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { min-height: 108px; border-right: 0; border-bottom: 1px solid var(--slate-100); }
  .stat:last-child { border-bottom: 0; }
  .form-shell { padding: 1.15rem; }
  .callout-grid { grid-template-columns: 1fr; }
  .callout .btn { width: 100%; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-contact { grid-column: auto; display: block; }
  .footer-contact > h3 { grid-column: auto; }
  .footer-contact .footer-legal-links { display: block; }
  .footer-links li + li { margin-top: .54rem; }
  .footer-lockup .brand-mark { width: 105px; }
  .footer-lockup .brand-name { font-size: 1.18rem; }
  .footer-lockup .brand-tagline { max-width: 210px; color: #f3a77f; }
  .footer-bottom { flex-direction: column; }
}

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


/* Release 10 regional, contrast and responsive QA corrections */
.region-grid { align-items: stretch; }
.region-card { min-width: 0; }
.region-card-photo {
  position: relative; display: block; min-height: 430px; overflow: hidden; border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg); background: #20242a; color: var(--white); box-shadow: var(--shadow-sm); text-decoration: none;
}
.region-card-photo:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.region-card-media, .region-card-media img, .region-card-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.region-card-media img { object-fit: cover; transition: transform 500ms ease; }
.region-card-photo:hover .region-card-media img { transform: scale(1.035); }
.region-card-overlay { z-index: 1; background: linear-gradient(180deg, rgba(9,11,14,.10) 8%, rgba(9,11,14,.42) 45%, rgba(9,11,14,.97) 100%); }
.region-card-body { position: absolute; z-index: 2; inset: auto 0 0; display: flex; flex-direction: column; align-items: flex-start; padding: 1.6rem; }
.region-card-kicker { margin-bottom: .5rem; color: #f3a77f; font-size: .74rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.region-card-photo h3 { margin: 0; color: var(--white); font-size: clamp(1.55rem,2.3vw,2rem); line-height: 1.08; }
.region-card-photo p { margin: .72rem 0 0; color: rgba(255,255,255,.84); line-height: 1.55; }
.region-card-action { display: inline-flex; align-items: center; gap: .55rem; margin-top: 1rem; color: #f3a77f; font-size: .84rem; font-weight: 850; }
.region-card-detail { min-height: 540px; }
.region-card-detail .country-tags { margin-top: 1rem; }
.region-card-detail .country-tags span { border-color: rgba(255,255,255,.22); background: rgba(12,14,17,.52); color: var(--white); }
.section:not(.section-dark) .region-card:not(.region-card-photo) { background: var(--white); border-color: var(--slate-100); }
.section:not(.section-dark) .region-card:not(.region-card-photo) h3 { color: var(--ink-950); }
.section:not(.section-dark) .region-card:not(.region-card-photo) p { color: var(--ink-700); }
.section:not(.section-dark) .region-card:not(.region-card-photo) .card-icon { color: var(--orange-700); background: var(--orange-100); }
.site-footer :is(h3,.footer-label,.footer-contact-group strong) { color: #fff !important; }
.site-footer :is(p,address,.footer-registration) { color: rgba(255,255,255,.78); }
.site-footer a { overflow-wrap: anywhere; }
.card, .process-step, .photo-card, .sector-card, .region-card { overflow-wrap: anywhere; }
.card h3, .process-step h3, .sector-card h3, .photo-card strong { text-wrap: balance; }
@media (max-width: 1024px) { .region-card-detail { min-height: 500px; } }
@media (max-width: 760px) {
  .region-card-photo, .region-card-detail { min-height: 460px; }
  .region-card-body { padding: 1.35rem; }
  .region-card-photo h3 { font-size: 1.65rem; }
}

/* ========================================================================== 
   Release 11 — stock-only visual system and full editorial hierarchy rebuild
   ========================================================================== */

/* The V11 system separates photographs from text. Images provide evidence and
   atmosphere; headings and commercial copy remain in their own high-contrast
   content areas. This avoids hidden text, overlaid copy and brochure-like cards. */

.hero-home {
  padding: clamp(4.5rem, 7vw, 7.2rem) 0 2.2rem;
  background:
    radial-gradient(circle at 12% 15%, rgba(202,109,60,.20), transparent 29rem),
    linear-gradient(135deg, #151719 0%, #212a33 58%, #2a3844 100%);
}
.hero-home::after { opacity: .12; }
.hero-home-layout {
  grid-template-columns: minmax(0,.9fr) minmax(480px,1.1fr);
  gap: clamp(2.8rem,5vw,5.4rem);
  align-items: center;
}
.hero-copy h1 { max-width: 750px; font-size: clamp(3rem,5.1vw,5.35rem); }
.hero-showcase { display: grid; gap: 1rem; }
.hero-showcase-photo {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  border-radius: 1.45rem;
  background: #2c333a;
}
.hero-showcase-photo > img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  flex: 1 1 auto;
  min-height: 390px;
  object-fit: cover;
}
.hero-showcase-photo::after { display: none; }
.hero-showcase-photo figcaption {
  position: relative;
  inset: auto;
  display: grid;
  gap: .25rem;
  padding: 1rem 1.15rem 1.1rem;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.13);
  border-radius: 0;
  background: #20252b;
  backdrop-filter: none;
}
.hero-people-strip {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 1rem;
  background: rgba(255,255,255,.07);
}
.hero-people-strip figure { min-height: 118px; margin: 0; overflow: hidden; }
.hero-people-strip figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-people-strip > div { display: grid; align-content: center; gap: .25rem; padding: 1rem 1.2rem; }
.hero-people-strip span { color: #f2a47c; font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.hero-people-strip strong { color: #fff; font-size: 1rem; line-height: 1.35; }
.hero-trust-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  margin-top: clamp(2.4rem,4.5vw,4rem);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 1rem;
  background: rgba(255,255,255,.055);
}
.hero-trust-grid > div { min-height: 105px; display: grid; align-content: center; gap: .25rem; padding: 1rem 1.2rem; border-right: 1px solid rgba(255,255,255,.12); }
.hero-trust-grid > div:last-child { border-right: 0; }
.hero-trust-grid span { color: rgba(255,255,255,.58); font-size: .7rem; font-weight: 830; letter-spacing: .09em; text-transform: uppercase; }
.hero-trust-grid strong { color: #fff; font-size: 1rem; line-height: 1.35; }
.hero-home > .hero-proof-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: .8rem;
  margin-top: 1rem;
}
.hero-proof-item { min-height: 128px; background: rgba(255,255,255,.045); }

/* Page heroes: one purposeful stock image, no text overlay. */
.page-hero-grid { grid-template-columns: minmax(0,1.08fr) minmax(380px,.92fr); }
.page-hero-photo {
  min-height: 0;
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  background: #303740;
}
.page-hero-photo .photo-panel-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.page-hero-photo img { position: relative; inset: auto; width: 100%; height: 100%; object-fit: cover; }

/* Editorial photography blocks. Captions sit below images instead of covering
   meaningful photographic content. */
.photo-panel, .contact-photo {
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
}
.photo-panel-tall { min-height: 0; }
.photo-panel-media { display: block; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background: #dfe3e5; }
.photo-panel-tall .photo-panel-media { aspect-ratio: 4 / 5; }
.photo-panel img, .contact-photo img {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-panel figcaption {
  position: relative;
  inset: auto;
  padding: .95rem 1.05rem 1rem;
  border: 0;
  border-top: 1px solid var(--slate-100);
  border-radius: 0;
  color: var(--ink-700);
  background: var(--white);
  backdrop-filter: none;
}
.photo-panel-dark { background: #262b31; }
.photo-panel-dark figcaption { color: rgba(255,255,255,.82); border-top-color: rgba(255,255,255,.12); background: #202429; }

/* Sector cards */
.sector-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.25rem; }
.sector-card,
.sector-card:nth-last-child(2):nth-child(4),
.sector-card:last-child:nth-child(5) {
  grid-column: auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  color: var(--ink-950);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.sector-card-media { position: relative; inset: auto; display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.sector-card-media img { position: relative; inset: auto; width: 100%; height: 100%; object-fit: cover; }
.sector-card-overlay { display: none; }
.sector-card-body { position: relative; inset: auto; flex: 1; display: flex; flex-direction: column; align-items: flex-start; padding: 1.45rem; }
.sector-card-kicker { color: var(--orange-700); }
.sector-card h3 { color: var(--ink-950); font-size: 1.48rem; }
.sector-card p { color: var(--ink-700); font-size: .94rem; }
.sector-card-action { margin-top: auto; padding-top: .8rem; color: var(--orange-700); }

/* Photo cards and experience cards */
.photo-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  color: var(--ink-950);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.photo-card-media { position: relative; inset: auto; display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.photo-card-media img { position: relative; inset: auto; width: 100%; height: 100%; object-fit: cover; }
.photo-card-overlay { display: none; }
.photo-card-content { position: relative; inset: auto; flex: 1; display: flex; flex-direction: column; align-items: flex-start; padding: 1.45rem; }
.photo-card-content strong { color: var(--ink-950); font-size: 1.42rem; }
.photo-card-content > span:not(.photo-card-kicker):not(.photo-card-action) { color: var(--ink-700); }
.photo-card-action { margin-top: auto; padding-top: .9rem; color: var(--orange-700); font-style: normal; }

/* Regional cards */
.region-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.region-card-photo,
.region-card-detail {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: #24292f;
  box-shadow: none;
}
.region-card-media { position: relative; inset: auto; display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.region-card-media img { position: relative; inset: auto; width: 100%; height: 100%; object-fit: cover; }
.region-card-overlay { display: none; }
.region-card-body { position: relative; inset: auto; flex: 1; display: flex; flex-direction: column; align-items: flex-start; padding: 1.45rem; }
.region-card-photo h3 { color: #fff; }
.region-card-photo p { color: rgba(255,255,255,.78); }
.region-card-action { margin-top: auto; padding-top: .85rem; }

/* Insights */
.insights-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.insight-card,
.insight-card:nth-last-child(2):nth-child(4),
.insight-card:last-child:nth-child(5) { grid-column: auto; }
.insight-thumb::after { display: none; }
.insight-category {
  left: 1rem;
  top: 1rem;
  bottom: auto;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}

/* Process and card hierarchy */
.process { grid-template-columns: repeat(3,minmax(0,1fr)); }
.process-step { min-height: 0; }
.feature-card { min-height: 0; }
.card h3, .process-step h3, .sector-card h3, .photo-card strong, .insight-body h3 { text-wrap: balance; }
.card p, .process-step p, .sector-card p, .photo-card-content > span, .region-card p { text-wrap: pretty; }

/* Footer and contact contrast */
.site-footer :is(h3,.footer-label,.footer-contact-group strong) { color: #fff !important; }
.site-footer :is(p,address,.footer-registration) { color: rgba(255,255,255,.78) !important; }
.footer-contact-group a, .footer-links a { color: #f1a47b; }
.footer-contact-group a:hover, .footer-links a:hover { color: #fff; }
.footer-address { font-style: normal; }

@media (max-width: 1160px) {
  .hero-home-layout { grid-template-columns: minmax(0,.9fr) minmax(410px,1.1fr); }
  .hero-home > .hero-proof-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .hero-trust-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .hero-trust-grid > div:nth-child(2) { border-right: 0; }
  .hero-trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 900px) {
  .hero-home-layout, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-showcase-photo > img { min-height: 430px; }
  .sector-grid, .insights-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .photo-card-grid-3 { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 640px) {
  .hero-home { padding-top: 3.6rem; }
  .hero-showcase-photo > img { min-height: 310px; }
  .hero-people-strip { grid-template-columns: 110px 1fr; }
  .hero-people-strip figure { min-height: 105px; }
  .hero-trust-grid, .hero-home > .hero-proof-grid, .sector-grid, .insights-grid, .region-grid, .photo-card-grid-3 { grid-template-columns: 1fr; }
  .hero-trust-grid > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .hero-trust-grid > div:last-child { border-bottom: 0; }
  .photo-panel-media, .photo-panel-tall .photo-panel-media { aspect-ratio: 16 / 11; }
  .region-card-photo, .region-card-detail { min-height: 0; }
  .sector-card, .photo-card { min-height: 0; }
  .sector-card-media, .photo-card-media { aspect-ratio: 16 / 10; }
}
