/* ============================================================
   Whitfield & Crane PartG mbB — design system
   Clean-room rebuild using the CMS design language tokens.
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 300; font-display: swap; src: url("../assets/fonts/OpenSans-300.woff2") format("woff2"); }
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 400; font-display: swap; src: url("../assets/fonts/OpenSans-400.woff2") format("woff2"); }
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 600; font-display: swap; src: url("../assets/fonts/OpenSans-600.woff2") format("woff2"); }
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 700; font-display: swap; src: url("../assets/fonts/OpenSans-700.woff2") format("woff2"); }
@font-face { font-family: "PP Telegraf"; font-style: normal; font-weight: 300; font-display: swap; src: url("../assets/fonts/PPTelegraf-Light.woff2") format("woff2"); }
@font-face { font-family: "PP Telegraf"; font-style: normal; font-weight: 400; font-display: swap; src: url("../assets/fonts/PPTelegraf-Regular.woff2") format("woff2"); }
@font-face { font-family: "PP Telegraf"; font-style: normal; font-weight: 500; font-display: swap; src: url("../assets/fonts/PPTelegraf-Medium.woff2") format("woff2"); }
@font-face { font-family: "PP Telegraf"; font-style: normal; font-weight: 600; font-display: swap; src: url("../assets/fonts/PPTelegraf-Semibold.woff2") format("woff2"); }

/* ---------- Tokens ---------- */
:root {
  --orange: #ec6602;
  --orange-dark: #bd5202;
  --orange-soft: #fef7f3;
  --teal: #0d535f;
  --teal-300: #86a9af;
  --black: #000;
  --white: #fff;
  --gray: #999;
  --gray-dark: #4d4d4d;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --card-bg: #e6f1f4;
  --card-bg-hl: #cce4e9;
  --font-display: "PP Telegraf", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --radius-xl: 16px;
  --radius-pill: 100px;
  --container: 1360px;
  --page-pad: clamp(16px, 4.5vw, 80px);
  --shadow-sm: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);
  --shadow-lg: 0 12px 16px -4px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.03);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange-dark); }
h1, h2, h3, h4, p, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 4px solid rgba(236,102,2,.25); outline-offset: 2px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 9999; background: var(--orange);
  color: #fff; padding: 12px 20px; border-radius: var(--radius-pill); font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 16px; color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; }
.container-wide { max-width: 1440px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  letter-spacing: -.16px; line-height: 1; text-transform: uppercase;
  padding: 15px 24px; border: 1px solid transparent; border-radius: var(--radius-pill);
  transition: all .25s ease-in-out; white-space: nowrap;
}
.btn .arrow-wrap { display: inline-block; width: 1em; height: 1em; overflow: hidden; vertical-align: middle; }
.btn .arrow-wrap svg { width: 1em; height: 1em; fill: currentColor; }
.btn:hover .arrow-wrap svg { animation: arrow-slide .4s var(--ease) 1; }
@keyframes arrow-slide {
  0% { transform: translateX(0); } 49% { transform: translateX(1.1em); }
  50% { transform: translateX(-1.1em); } 100% { transform: translateX(0); }
}
.btn-primary { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #fff; }
.btn-outline-primary { background: transparent; border-color: var(--orange); color: var(--orange); }
.btn-outline-primary:hover { background: var(--orange); color: #fff; }
.btn-outline-primary:disabled { opacity: .4; pointer-events: none; }
.btn-ghost-light { background: transparent; color: var(--orange); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-ghost { background: transparent; color: currentColor; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-link { background: transparent; border: 0; color: var(--orange); padding-inline: 0; }
.btn-link:hover { color: var(--orange-dark); }
.btn-outline-light { background: transparent; border: 1px solid #fff; color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--teal); }
.btn-icon { width: 48px; height: 48px; padding: 0; border-radius: var(--radius-pill); flex: none; }
.btn-icon svg { width: 18px; height: 18px; fill: currentColor; }
.btn-sm { padding: 11px 18px; font-size: 14px; }
.btn-xs { padding: 9px 14px; font-size: 13px; }

/* ---------- Icons ---------- */
.icon { width: 1em; height: 1em; fill: currentColor; flex: none; }
.icon-pin { width: 13px; height: 13px; fill: var(--orange); }

/* ---------- Labels & badges ---------- */
.label {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: .7px; line-height: 20px; text-transform: uppercase; color: var(--gray);
}
.badge-alt {
  align-items: center; gap: 8px; display: inline-flex;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  letter-spacing: .7px; line-height: 20px; padding: 8px;
  border-radius: var(--radius); text-transform: uppercase;
  background: rgba(255,255,255,.2); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  color: #fff; transition: all .25s ease-in-out;
}
.badge-alt.primary { background: var(--orange-soft); color: var(--orange); }
.badge-alt.primary:hover { background: var(--orange); color: #fff; }
.badge-alt::before {
  content: ""; width: 15px; height: 15px; background: currentColor;
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 15 16'%3E%3Cpath d='m8.125 1.75-6.25 7.5H7.5l-.625 5 6.25-7.5H7.5l.625-5Z' stroke='currentColor' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
  mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 15 16'%3E%3Cpath d='m8.125 1.75-6.25 7.5H7.5l-.625 5 6.25-7.5H7.5l.625-5Z' stroke='currentColor' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
}
.badge {
  display: inline-flex; align-items: center; padding: 8px 12px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 14px; font-weight: 700; letter-spacing: .7px;
  text-transform: uppercase; color: #fff; background: rgba(255,255,255,.2);
  backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
}
.badge-secondary {
  display: inline-flex; background: #fff; color: var(--gray-dark); border-radius: var(--radius);
  padding: 4px 8px; font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: .55px; text-transform: uppercase;
}

/* ---------- Card link (animated underline) ---------- */
.card-link {
  display: inline-block; font-size: 14px; font-weight: 600; line-height: 16px;
  text-transform: uppercase; padding: 10px 0; color: var(--orange);
  background-image: linear-gradient(90deg, var(--orange), var(--orange));
  background-position: 0 100%; background-repeat: no-repeat; background-size: 0 1px;
  transition: background-size .2s ease-in-out, color .2s;
}
.card-link:hover { background-size: 100% 1px; color: var(--orange); }

/* ---------- Header ---------- */
.header-region { position: absolute; top: 0; left: 0; right: 0; z-index: 1100; pointer-events: none; }
.header { position: relative; color: #fff; padding: 16px 40px; height: 82px; pointer-events: auto; transition: all .25s ease-in-out; }
.header::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
  backdrop-filter: blur(100px); -webkit-backdrop-filter: blur(100px);
  background: rgba(13,83,95,.8); transition: opacity .25s ease-in-out;
}
.header.is-sticky { position: fixed; top: 0; left: 0; right: 0; }
.header.is-sticky::after { opacity: 1; }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 50px; }
.logo-link { display: inline-flex; align-items: baseline; gap: 12px; color: inherit; flex: none; }
.logo-link:hover { color: inherit; }
.logo-wordmark { font-weight: 600; font-size: 24px; letter-spacing: -.5px; line-height: 1; white-space: nowrap; }
.logo-wordmark .amp { color: var(--orange); font-weight: 300; }
.logo-subline {
  font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 2.2px;
  text-transform: uppercase; color: var(--orange); line-height: 1; white-space: nowrap;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-btn {
  display: inline-flex; align-items: center; gap: 6px; font-size: 18px; font-weight: 400;
  letter-spacing: -.16px; padding: 15px 16px; color: inherit; border-radius: var(--radius-pill);
  transition: background-color .2s;
}
.nav-btn:hover { background: rgba(255,255,255,.12); color: inherit; }
.nav-btn .chev { width: 12px; height: 12px; transition: transform .2s; }
.nav-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }
.header-actions { display: flex; align-items: center; gap: 4px; }
.btn-jurisdiction {
  display: inline-flex; align-items: center; gap: 4px; font-size: 18px; font-weight: 400;
  letter-spacing: -.16px; padding: 15px 16px; color: inherit; border-radius: var(--radius-pill);
  text-transform: uppercase; transition: background-color .2s;
}
.btn-jurisdiction:hover { background: rgba(255,255,255,.12); color: inherit; }
.btn-jurisdiction > span:not(:last-child)::after { content: "|"; margin-left: 4px; opacity: .6; }

/* ---------- Flyout menus ---------- */
.flyout {
  display: none; margin: 0 40px 16px;
  background: var(--teal); color: #fff; border-radius: var(--radius-xl);
  padding: 32px; box-shadow: var(--shadow-lg);
  pointer-events: auto;
}
.flyout.is-open { display: block; animation: flyout-in .25s var(--ease); }
@keyframes flyout-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.flyout-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.flyout-grid-2 { grid-template-columns: repeat(2, 1fr); }
.menu-link-list-title {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-family: var(--font-body); font-size: 16px; font-weight: 500; letter-spacing: .8px;
  text-transform: uppercase; color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.5); margin-bottom: 24px; padding-bottom: 8px;
}
.menu-link-list-title .view-all {
  display: inline-flex; align-items: center; gap: 6px; font-size: 14px; letter-spacing: .28px; color: #fff;
}
.menu-link-list ul { display: flex; flex-direction: column; gap: 4px; }
.menu-link-list a {
  display: inline-block; color: #fff; font-size: 20px; line-height: 1.4; padding: 2px 0;
  background-image: linear-gradient(90deg, var(--orange), var(--orange));
  background-position: 0 100%; background-repeat: no-repeat; background-size: 0 1px;
  transition: background-size .2s ease-in-out;
}
.menu-link-list a:hover { background-size: 100% 1px; color: #fff; }

/* ---------- Offcanvas ---------- */
.offcanvas {
  position: fixed; inset: 0; z-index: 2000; background: var(--teal); color: #fff;
  display: none; overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.offcanvas.is-open { display: block; animation: oc-in .25s var(--ease); }
@keyframes oc-in { from { opacity: 0; } to { opacity: 1; } }
.offcanvas-header {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 40px; height: 82px;
}
.btn-close {
  width: 48px; height: 48px; border-radius: var(--radius-pill); display: inline-flex;
  align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.4);
  color: #fff; font-size: 22px; line-height: 1; transition: all .2s;
}
.btn-close:hover { background: #fff; color: var(--teal); }
.offcanvas-body { padding: 24px 40px 80px; }
.offcanvas-footer { border-top: 1px solid rgba(255,255,255,.2); padding: 20px 40px; }
.jur-current { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); font-size: 18px; }
.jur-current .icon-pin { fill: var(--orange); }

/* Burger nav */
.burger-nav { padding-top: 16px; }
.burger-nav-level {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  color: #fff; font-size: 32px; font-weight: 300; padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.burger-nav-level .plus { margin-left: auto; color: var(--orange); transition: transform .2s; }
.burger-nav-level[aria-expanded="true"] .plus { transform: rotate(45deg); }
.burger-sub { display: none; padding: 16px 0 24px; border-bottom: 1px solid rgba(255,255,255,.25); }
.burger-sub.is-open { display: block; }
.burger-sub .menu-link-list-title { margin-top: 16px; }
.burger-sub a { font-size: 18px; }

/* Jurisdiction selector */
.jurisdiction-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.jurisdiction-tile {
  display: flex; align-items: center; justify-content: center; padding: 20px 16px;
  border: 1px solid rgba(255,255,255,.35); border-radius: var(--radius-lg); color: #fff;
  font-size: 20px; text-align: center; transition: all .2s;
}
.jurisdiction-tile:hover { background: rgba(255,255,255,.12); color: #fff; }
.region-back { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: 18px; }
.region-back:hover { color: var(--orange); }
.region-title { font-size: 32px; font-weight: 300; margin: 24px 0 8px; }
.jur-accordion .accordion-head {
  color: #fff; font-size: 20px; border-top: 1px solid rgba(255,255,255,.25); padding: 18px 0; width: 100%;
  display: flex; align-items: center; justify-content: space-between; text-align: left;
}
.jur-accordion .accordion-head:hover { color: var(--orange); }
.jur-accordion .accordion-head .plus { color: var(--orange); transition: transform .2s; }
.jur-accordion .accordion-head[aria-expanded="true"] .plus { transform: rotate(45deg); }
.jur-accordion .accordion-body { display: none; padding: 4px 0 24px; }
.jur-accordion .accordion-body.is-open { display: block; }
.lang-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.lang-pills .btn { font-size: 14px; padding: 10px 18px; }
.lang-pills .btn.is-active { background: #fff; border-color: #fff; color: var(--teal); }

/* Search offcanvas */
.search-form { display: flex; gap: 16px; align-items: center; max-width: 720px; }
.search-input {
  flex: 1; background: transparent; border: 0; border-bottom: 2px solid rgba(255,255,255,.5);
  color: #fff; font-size: 32px; font-weight: 300; padding: 12px 0; outline: none;
}
.search-input::placeholder { color: rgba(255,255,255,.5); }
.search-results { margin-top: 24px; }
.search-results a { display: block; color: #fff; font-size: 20px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.search-results a:hover { color: var(--orange); }

/* ---------- Stage / hero ---------- */
.stage { position: relative; overflow: hidden; background: var(--teal); }
.stage--fullscreen { min-height: max(600px, 100dvh); }
.stage__background {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.stage__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,83,95,.55) 0%, rgba(13,83,95,.25) 100%);
}
.stage__wrapper { position: relative; z-index: 2; display: flex; flex-direction: column; padding: 142px var(--page-pad); min-height: inherit; }
.stage__container { width: 100%; max-width: 1280px; margin-inline: auto; }

/* home hero */
.stage-home .stage__container { flex: 1; display: flex; flex-direction: column; }
.stage-home__inner { display: flex; align-items: flex-end; justify-content: center; gap: 80px 32px; flex: 1; }
.stage-home__title {
  flex: 1; align-self: center; display: flex; flex-direction: column;
  font-weight: 400; font-size: clamp(56px, 9.5vw, 160px); line-height: 1.15;
  letter-spacing: -.02em; color: #fff;
}
.stage-home__title span { display: block; margin-top: -.25em; }
.stage-home__title span:first-child { margin-top: 0; }
.stage-home__title span:nth-child(3n+1) { text-indent: .6625em; }
.stage-home__text { max-width: 624px; color: #fff; font-size: 24px; line-height: 1.5; }
.stage-home__text p { margin: 0; }

/* default subpage stage */
.stage--default .stage__wrapper { padding-top: 176px; padding-bottom: 96px; min-height: 600px; }
.stage--default h1 {
  font-weight: 300; font-size: clamp(44px, 6vw, 96px); line-height: 1.05;
  letter-spacing: -.01em; color: #fff; max-width: 900px;
}
.stage-sub { color: rgba(255,255,255,.85); font-size: 20px; line-height: 1.5; max-width: 640px; margin-top: 24px; }
.stage-cta { margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap; }
.stage-kicker {
  font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: .7px;
  text-transform: uppercase; color: var(--teal-300); margin-bottom: 12px;
}

/* article stage */
.stage-article h1 { font-size: 48px; line-height: 58px; letter-spacing: normal; margin: 0 0 32px; max-width: 860px; }
.stage-article .badge-alt { margin-bottom: 32px; }
.stage-article .stage__wrapper { padding-top: 176px; padding-bottom: 64px; min-height: 600px; }
.article-details { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.article-details .label { color: #fff; }
.article-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; align-items: center; }

/* breadcrumb */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 4px; font-family: var(--font-body); font-size: 12px; color: #fff; margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li::after { content: "/"; margin-inline: 8px; color: rgba(255,255,255,.5); }
.breadcrumb li:last-child::after { display: none; }

/* ---------- Section heads ---------- */
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; }
.section-head h2 { font-size: clamp(40px, 4.2vw, 64px); font-weight: 300; line-height: 1.12; letter-spacing: 1.28px; }
.section-head h2.display-2 { letter-spacing: -1.28px; }
.divider-line { height: 1px; background: var(--gray-200); margin: 16px 0 40px; position: relative; }
.divider-line::after {
  content: ""; position: absolute; left: 0; top: -1px; height: 1px; width: 0;
  background: var(--orange); transition: width 1.4s var(--ease);
}
.in-view .divider-line::after { width: 100%; }

/* ---------- Teaser gallery (insights mosaic) ---------- */
.teaser-gallery { padding: clamp(40px, 6vw, 96px) var(--page-pad); }
.teaser-gallery__grid {
  display: grid; grid-template-columns: 1fr; column-gap: 32px; row-gap: 40px;
  padding-top: 40px; max-width: 1280px; margin-inline: auto;
}
.teaser-card { display: flex; flex-direction: column; align-self: start; }
.teaser-card__image { overflow: hidden; background: var(--gray-100); }
.teaser-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.teaser-card:hover .teaser-card__image img { transform: scale(1.04); }
.teaser-card .card-body { display: flex; flex-direction: column; gap: 8px; padding-top: 12px; }
.teaser-card .card-meta__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.teaser-card .card-title { font-size: 32px; font-weight: 400; line-height: 35px; letter-spacing: .32px; margin: 0; }
.teaser-card .card-title a { color: inherit; }
.teaser-card .card-title a:hover { color: var(--orange); }
.teaser-card .card-meta__bottom { display: flex; gap: 12px; margin-top: 12px; }
.teaser-card .card-meta__bottom .label:not(:last-child)::after { content: "·"; margin-left: 12px; }

@media (min-width: 1200px) {
  .teaser-gallery-home .teaser-gallery__grid {
    grid-template-columns: 512px 352px 352px;
    grid-template-rows: 584px 155px 149px 149px 149px;
  }
  .teaser-gallery-home .teaser-card:nth-child(1) { grid-row: 1 / 6; grid-column: 1; }
  .teaser-gallery-home .teaser-card:nth-child(2) { grid-row: 1 / 2; grid-column: 2; }
  .teaser-gallery-home .teaser-card:nth-child(3) { grid-row: 1 / 3; grid-column: 3; }
  .teaser-gallery-home .teaser-card:nth-child(4) { grid-row: 2 / 6; grid-column: 2; }
  .teaser-gallery-home .teaser-card:nth-child(5) { grid-row: 3 / 6; grid-column: 3; }
  .teaser-gallery-home .teaser-card:nth-child(1) .teaser-card__image img { aspect-ratio: 1.453; }
  .teaser-gallery-home .teaser-card:nth-child(2) .teaser-card__image img { aspect-ratio: 1; }
  .teaser-gallery-home .teaser-card:nth-child(3) .teaser-card__image img { aspect-ratio: .678; }
  .teaser-gallery-home .teaser-card:nth-child(4) .teaser-card__image img { aspect-ratio: .678; }
  .teaser-gallery-home .teaser-card:nth-child(5) .teaser-card__image img { aspect-ratio: 1; }
  .teaser-gallery-home .teaser-card:not(:first-child) .card-title { font-size: 24px; line-height: 28px; letter-spacing: normal; }
}

/* ---------- In Focus (insight topic list) ---------- */
.insight-topic-list { position: relative; background-size: cover; background-position: center; color: #fff; }
.insight-topic-list::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,83,95,.92) 0%, rgba(13,83,95,.55) 55%, rgba(13,83,95,.25) 100%);
}
.insight-topic-list .container { position: relative; z-index: 1; padding-block: clamp(56px, 6vw, 96px); }
.insight-topic-list .row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.itl-desktop-title { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.itl-desktop-title h3 { font-size: clamp(40px, 3.4vw, 48px); font-weight: 300; line-height: 1.12; color: #fff; }
.itl-links { display: flex; flex-direction: column; }
.itl-link {
  display: block; font-size: clamp(36px, 3.2vw, 48px); font-weight: 300; line-height: 1.35;
  color: var(--teal-300); padding: 4px 0; transition: color .2s;
}
.itl-link:hover { color: #fff; }

/* ---------- Teaser list slider (events) ---------- */
.teaser-list-slider { padding: clamp(56px, 7.5vw, 120px) var(--page-pad); }
.teaser-list-slider .section-head { margin-bottom: 32px; }
.slider-arrows { display: flex; gap: 12px; align-items: center; }
.slider-track-wrap { overflow: hidden; }
.slider-track { display: flex; gap: 32px; transition: transform .45s var(--ease); }
.slider-slide { flex: 0 0 calc(33.3333% - 21.34px); min-width: 300px; }
.event-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 420px;
  display: flex; flex-direction: column; justify-content: space-between; color: #fff;
}
.event-card .card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.event-card .card-img-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between;
  padding: 32px; background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 100%);
}
.event-card .card-header .label { color: #fff; }
.event-card .card-title { font-size: 40px; font-weight: 300; line-height: 46.88px; margin: 0; max-width: 420px; }
.event-card .card-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.event-card .card-tags { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------- CTA teaser group ---------- */
.cta-teaser-group { padding: 0 var(--page-pad); }
.cta-teaser-group .container { max-width: 1440px; }
.cta-group-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cta-teaser { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 380px; color: #fff; display: block; }
.cta-teaser--full { grid-column: 1 / -1; height: 600px; }
.cta-teaser .card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cta-teaser:hover .card-img { transform: scale(1.03); }
.cta-teaser .cta-teaser-content {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(32px, 4vw, 80px); background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 100%);
}
.cta-teaser .cta-teaser-header {
  font-size: clamp(24px, 2.6vw, 48px); font-weight: 400; letter-spacing: .32px;
  line-height: 1.15; color: #fff; max-width: 720px;
}
.cta-teaser .card-footer { display: flex; justify-content: flex-end; }

/* ---------- Firm statistics ---------- */
.firm-statistics { padding: clamp(56px, 7.5vw, 120px) var(--page-pad); }
.firm-statistics h2 { font-size: clamp(32px, 3vw, 48px); font-weight: 300; letter-spacing: .32px; line-height: 1.12; margin-bottom: 48px; max-width: 800px; }
.firm-statistics__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px 96px; align-items: start; }
.firm-statistics__info p { font-family: var(--font-body); font-size: 18px; line-height: 1.55; color: var(--gray-dark); margin-bottom: 32px; }
.statistics-block { margin-bottom: 56px; }
.statistics-block:last-child { margin-bottom: 0; }
.statistics-block__header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--gray-200); }
.statistics-block__header .text-uppercase { font-family: var(--font-body); font-size: 16px; font-weight: 500; letter-spacing: .8px; text-transform: uppercase; color: var(--gray-dark); }
.statistics-block__items { display: flex; flex-wrap: wrap; gap: 16px 48px; }
.statistics-item { display: flex; align-items: baseline; gap: 10px; }
.statistics-item .count { font-size: 48px; font-weight: 300; line-height: 54px; }
.statistics-item .label { font-size: 48px; font-weight: 300; line-height: 54px; letter-spacing: .32px; color: var(--gray); text-transform: none; font-family: var(--font-display); }

/* ---------- Search / filter sections ---------- */
.section-search { padding: 32px var(--page-pad); }
.section-search .container { max-width: 1280px; }
.search-box { display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--gray); padding: 8px 0; max-width: 720px; }
.search-box .icon { width: 24px; height: 24px; fill: var(--gray); }
.search-box input { flex: 1; border: 0; outline: none; font-size: 20px; padding: 8px 0; font-family: var(--font-display); }
.search-box input::placeholder { color: var(--gray); }
.filter-head { font-size: 20px; font-weight: 400; margin: 32px 0 16px; }
.filter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); gap: 8px 16px; }
.filter-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.filter-field label { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--gray-dark); }
.filter-field select {
  width: 100%; height: 44px; border: 1px solid var(--gray); border-radius: var(--radius-lg);
  padding: 10px 14px; font: inherit; font-size: 14px; background: #fff; color: var(--black);
}
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 20px 0 0; min-height: 46px; }
.active-filter-tag {
  display: inline-flex; align-items: center; gap: 8px; background: var(--orange-soft); color: var(--orange);
  font-family: var(--font-body); font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: var(--radius-pill);
}
.active-filter-tag button { color: inherit; font-size: 15px; line-height: 1; padding: 0; }
.clear-filters { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--orange); }
.clear-filters:hover { text-decoration: underline; }
.search-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin: 24px 0; }
.search-toolbar .showing { font-size: 18px; color: var(--gray-dark); }
.sort-select { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-body); font-size: 14px; color: var(--gray-dark); }
.sort-select select { height: 44px; border: 1px solid var(--gray); border-radius: var(--radius-pill); padding: 10px 16px; font: inherit; background: #fff; }

/* ---------- Expert cards (people) ---------- */
.search__results-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.expert-card { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--card-bg); border-radius: var(--radius-xl); }
.expert-card--highlighted { background: var(--card-bg-hl); }
.expert-card__image { flex: none; width: 114px; height: 114px; border-radius: 6px; overflow: hidden; }
.expert-card__image img { width: 100%; height: 100%; object-fit: cover; }
.expert-ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: rgba(13,83,95,.15); color: var(--teal); font-size: 32px; font-weight: 300;
}
.expert-card__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.expert-card__title { display: flex; flex-direction: column; gap: 4px; }
.expert-role { font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: .7px; text-transform: uppercase; color: var(--orange); }
.expert-name { font-size: 24px; font-weight: 500; line-height: 1.2; }
.expert-subrole { font-size: 14px; color: var(--gray-dark); }
.expert-location { display: flex; align-items: flex-start; gap: 6px; font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: .6px; text-transform: uppercase; color: var(--gray-dark); line-height: 1.5; }
.expert-location .icon-pin { margin-top: 2px; }
.expert-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.expert-card__footer { align-self: flex-end; margin-left: auto; flex: none; }

/* ---------- Expertise A-Z list ---------- */
.expertise-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; margin-top: 32px; }
.expertise-group { border-bottom: 1px solid var(--gray-200); }
.expertise-group-head { display: flex; align-items: baseline; gap: 24px; padding: 24px 0; }
.expertise-group-head .letter { font-size: 48px; font-weight: 300; color: var(--orange); min-width: 56px; }
.expertise-group-head .name { font-size: 28px; font-weight: 400; color: var(--black); }
.expertise-sublinks { padding: 0 0 24px 80px; display: flex; flex-direction: column; gap: 4px; }
.expertise-sublinks a { color: var(--gray-dark); font-size: 16px; padding: 6px 0; }
.expertise-sublinks a:hover { color: var(--orange); }

/* ---------- People result rows (expert list) ---------- */
.people-list-grid { display: grid; gap: 24px; }

/* ---------- Insight rows ---------- */
.insight-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.insight-row { display: flex; flex-direction: column; gap: 8px; padding: 28px 0; border-bottom: 1px solid var(--gray-200); }
.insight-row .meta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.insight-row .title { font-size: 28px; font-weight: 400; line-height: 1.25; }
.insight-row .title a { color: inherit; }
.insight-row .title a:hover { color: var(--orange); }
.insight-row .excerpt { font-size: 16px; color: var(--gray-dark); line-height: 1.6; }

/* ---------- Newsletter / contact bands ---------- */
.newsletter-teaser { padding: 40px var(--page-pad); }
.newsletter-box { background: var(--gray-100); border-radius: var(--radius-xl); padding: clamp(32px, 4vw, 64px); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.newsletter-box h2 { font-size: clamp(32px, 3vw, 48px); font-weight: 300; line-height: 1.12; margin-bottom: 12px; }
.newsletter-box p { font-size: 20px; line-height: 1.5; color: var(--gray-dark); max-width: 560px; }
.contact-us { padding: 40px var(--page-pad) 80px; }
.contact-us-box { background: var(--gray-100); border-radius: var(--radius-xl); padding: clamp(32px, 4vw, 56px); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.contact-us-box h2 { font-size: clamp(32px, 3vw, 48px); font-weight: 300; margin-bottom: 12px; }
.contact-us-box p { font-size: 18px; color: var(--gray-dark); }
.jurisdiction-navigation { padding: 80px var(--page-pad); }
.jurisdiction-nav-box { background: var(--teal); color: #fff; border-radius: var(--radius-xl); padding: clamp(40px, 4vw, 64px); display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.jurisdiction-nav-box h2 { font-size: clamp(32px, 3vw, 48px); font-weight: 300; line-height: 1.12; margin-bottom: 16px; }
.jurisdiction-nav-box p { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,.85); max-width: 620px; }

/* ---------- Dive deeper accordions ---------- */
.dive-deeper { padding: clamp(40px, 7vw, 112px) var(--page-pad) 48px; }
.dive-deeper h2 { font-size: clamp(32px, 3vw, 48px); font-weight: 300; margin-bottom: 32px; }
.accordion { border-bottom: 1px solid var(--gray-200); }
.accordion-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 24px 0; font-size: 24px; font-weight: 400; text-align: left; }
.accordion-head .plus { font-size: 28px; font-weight: 300; color: var(--orange); transition: transform .25s; }
.accordion-head[aria-expanded="true"] .plus { transform: rotate(45deg); }
.accordion-body { display: none; padding: 8px 0 32px; }
.accordion-body.is-open { display: block; }
.accordion-body .link-list { display: flex; flex-wrap: wrap; }
.accordion-body .link-list li { flex: 0 0 33.333%; }
.accordion-body .link-list a { color: var(--black); font-size: 18px; padding: 8px 0; display: inline-block; }
.accordion-body .link-list a:hover { color: var(--orange); }

/* ---------- Content body ---------- */
.content-head { padding: 40px var(--page-pad) 0; }
.content-body { padding: clamp(40px, 5vw, 80px) var(--page-pad); }
.content-body .container { max-width: 960px; margin-inline: auto; }
.richtext { font-family: var(--font-body); font-size: 16px; line-height: 1.75; }
.richtext h3 { font-family: var(--font-display); font-size: 28px; font-weight: 400; margin: 40px 0 16px; }
.richtext p { margin-bottom: 20px; }
.richtext a { text-decoration: underline; }
.authors-block { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; margin-top: 24px; }
.person-meta { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; }
.person-meta .locations { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: .6px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.person-meta .name { font-size: 24px; font-weight: 400; margin-bottom: 4px; }
.person-meta .position { font-size: 14px; color: var(--gray-dark); }
.share-dropdown { position: relative; }
.share-menu { position: absolute; top: calc(100% + 8px); left: 0; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); min-width: 180px; display: none; z-index: 50; }
.share-menu.is-open { display: block; }
.share-menu a { display: flex; gap: 10px; align-items: center; padding: 12px 16px; color: var(--black); font-size: 14px; }
.share-menu a:hover { background: var(--gray-100); color: var(--orange); }

/* ---------- Global reach facts ---------- */
.global-reach-facts { padding: 48px var(--page-pad); }
.facts-head { font-size: 32px; font-weight: 300; margin-bottom: 32px; }
.facts-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; }
.fact-item .count { font-size: 48px; font-weight: 300; line-height: 54px; }
.fact-item .label { color: var(--gray); text-transform: none; font-size: 14px; font-family: var(--font-body); }

/* ---------- Subpage navigation / links list ---------- */
.subpage-navigation { padding: 40px var(--page-pad); }
.subpage-nav-box { background: var(--teal); color: #fff; border-radius: var(--radius-xl); padding: clamp(32px, 4vw, 56px); }
.subpage-nav-box h2 { font-size: clamp(32px, 3vw, 48px); font-weight: 300; margin-bottom: 24px; }
.subpage-nav-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 32px; }
.subpage-nav-links a { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #fff; font-size: 20px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.25); }
.subpage-nav-links a:hover { color: var(--orange); }
.links-list { padding: 24px var(--page-pad) 64px; }
.links-list-head { margin-bottom: 32px; max-width: 720px; }
.links-list-head h2 { font-size: clamp(32px, 3vw, 48px); font-weight: 300; margin-bottom: 16px; }
.links-list-head p { font-size: 18px; line-height: 1.55; color: var(--gray-dark); }
.links-list-items { display: flex; flex-direction: column; }
.links-list-items a { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--black); font-size: 28px; padding: 20px 0; border-bottom: 1px solid var(--gray-200); }
.links-list-items a:hover { color: var(--orange); }
.subscription-box { background: var(--gray-100); border-radius: var(--radius-xl); padding: clamp(32px, 4vw, 56px); max-width: 860px; }
.subscription-box h2 { font-size: clamp(32px, 3vw, 48px); font-weight: 300; margin-bottom: 16px; }
.subscription-box p { font-size: 18px; line-height: 1.55; color: var(--gray-dark); margin-bottom: 32px; }
.subscription-box .btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ---------- Key contact card ---------- */
.jurisdiction-people-list { padding: 40px var(--page-pad) 8px; }
.key-contact-card { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; max-width: 340px; }
.kc-label { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.key-contact-card .name { font-size: 24px; font-weight: 400; }
.key-contact-card .position { font-size: 14px; color: var(--gray-dark); margin-top: 4px; }
.key-contact-card .locations { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: .6px; text-transform: uppercase; color: var(--gray); margin-top: 12px; }

/* ---------- Event details ---------- */
.event-details { padding: 24px var(--page-pad) 48px; }
.event-details h2 { font-size: 32px; font-weight: 300; margin-bottom: 24px; }
.programme-row { display: grid; grid-template-columns: 200px 1fr; gap: 24px; padding: 20px 0; border-top: 1px solid var(--gray-200); }
.programme-row .when { font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: .7px; text-transform: uppercase; color: var(--gray); }
.programme-row .what { font-size: 20px; font-weight: 400; }

/* ---------- Sitemap ---------- */
.content-sitemap { padding: 24px var(--page-pad) 80px; }
.sitemap-cols { display: grid; grid-template-columns: 220px 1fr; gap: 48px; }
.on-this-page h3 { font-family: var(--font-body); font-size: 14px; font-weight: 700; letter-spacing: .7px; text-transform: uppercase; color: var(--gray); margin-bottom: 16px; }
.on-this-page ul { display: flex; flex-direction: column; gap: 8px; position: sticky; top: 120px; }
.on-this-page a { color: var(--gray-dark); font-size: 16px; }
.on-this-page a:hover { color: var(--orange); }
.sitemap-content h2 { font-size: 32px; font-weight: 300; margin: 40px 0 16px; }
.sitemap-content h3 { font-size: 24px; font-weight: 400; margin: 24px 0 8px; }
.sitemap-content a { color: var(--black); font-size: 16px; padding: 4px 0; display: inline-block; }
.sitemap-content a:hover { color: var(--orange); }
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 32px; }

/* ---------- Contact form ---------- */
.contact-form { padding: 24px var(--page-pad) 64px; }
.form-card { max-width: 860px; }
.form-card .note { font-size: 14px; color: var(--gray-dark); margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-body); font-size: 14px; font-weight: 600; }
.form-field input, .form-field select, .form-field textarea { border: 1px solid var(--gray); border-radius: var(--radius-lg); padding: 14px 16px; font: inherit; font-size: 16px; outline: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--orange); }
.form-field .required { color: var(--orange); }
.form-note { font-size: 13px; color: var(--gray-dark); margin-top: 16px; }


.form-status { display: none; margin-top: 20px; padding: 14px 18px; border-radius: var(--radius-lg); font-size: 15px; line-height: 1.5; }
.form-status.is-open { display: block; }
.form-status.ok { background: #e7f6ec; color: #146c2e; border: 1px solid #b5e3c3; }
.form-status.err { background: #fdecec; color: #a12622; border: 1px solid #f3c1c1; }


.contact-details { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.cd-row { display: flex; flex-direction: column; gap: 2px; padding-bottom: 14px; border-bottom: 1px solid var(--gray-200); }
.cd-row:last-child { border-bottom: 0; }
.cd-label { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--orange); }
.cd-value { font-size: 16px; line-height: 1.55; color: var(--black); overflow-wrap: anywhere; }
.cd-value a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }
.cd-value a:hover { color: var(--orange); }
.key-contact-card .expert-card__image { border-radius: 6px; overflow: hidden; }

/* ---------- Footer ---------- */
.footer { background: var(--teal); color: #fff; padding: 56px 0 0; }
.footer .container { max-width: 1140px; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px 80px; padding-bottom: 48px; }
.footer-logo { display: inline-flex; align-items: baseline; gap: 12px; color: #fff; margin-bottom: 32px; }
.footer-logo .logo-wordmark { font-size: 20px; }
.footer h2.display-5 { font-size: 48px; font-weight: 300; line-height: 54px; margin-bottom: 16px; }
.footer .fs-2 { font-size: 20px; line-height: 1.5; margin-bottom: 24px; }
.footer-social { display: flex; gap: 24px; margin-top: 24px; }
.footer-social a { color: #fff; font-size: 18px; }
.footer-social a:hover { color: var(--orange); }
.footer-nav { display: flex; flex-direction: column; }
.footer-nav a { color: #fff; font-size: 32px; font-weight: 300; line-height: 1.35; padding: 6px 0; }
.footer-nav a:hover { color: var(--orange); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.2); padding: 24px 0 32px; }
.footer-bottom .copyright { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,.75); }
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-bottom a { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,.75); }
.footer-bottom a:hover { color: #fff; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 3000;
  background: #f2f2f2; color: var(--black); border-radius: var(--radius-lg);
  padding: 16px; display: none; box-shadow: var(--shadow-lg); max-width: 1350px; margin-inline: auto;
}
.cookie-banner.is-open { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; animation: oc-in .3s var(--ease); }
.cookie-banner p { font-size: 14px; line-height: 1.6; color: #333; flex: 1; min-width: 240px; }
.cookie-banner a { color: var(--orange); text-decoration: underline; }
.cookie-banner .btn-row { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------- Pagination ---------- */
.pagination { display: flex; justify-content: center; gap: 8px; margin: 48px 0; }
.pagination button { min-width: 44px; height: 44px; border: 1px solid var(--gray-200); border-radius: var(--radius-pill); font-family: var(--font-body); font-weight: 600; transition: all .2s; }
.pagination button:hover { border-color: var(--orange); color: var(--orange); }
.pagination button.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.pagination button:disabled { opacity: .4; }

/* ---------- Reveal animations ---------- */
[data-anim] { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s var(--ease); }
[data-anim].in-view { opacity: 1; transform: translateY(0); }
[data-anim-delay="1"] { transition-delay: .15s; }
[data-anim-delay="2"] { transition-delay: .3s; }
[data-anim-delay="3"] { transition-delay: .45s; }
[data-anim="fade"] { transform: none; transition: opacity 1s ease; }

/* ---------- Language switch ---------- */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 18px; font-weight: 400; letter-spacing: -.16px;
  padding: 15px 16px; color: inherit; border-radius: var(--radius-pill);
  transition: background-color .2s, color .2s;
}
.lang-btn:hover { background: rgba(255,255,255,.14); }
.lang-btn .globe { width: 18px; height: 18px; }
.lang-btn .chev { width: 12px; height: 12px; transition: transform .25s var(--ease); }
.lang-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }
.lang-code { font-weight: 600; }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 60;
  min-width: 224px; background: #fff; color: var(--black);
  border-radius: 12px; box-shadow: 0 16px 40px rgba(0,0,0,.18);
  padding: 8px; display: none;
}
.lang-menu.is-open { display: block; animation: flyout-in .22s var(--ease); }
.lang-menu button {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; text-align: left; padding: 11px 14px; border-radius: 8px;
  font-size: 15px; color: var(--black); transition: background-color .15s, color .15s;
}
.lang-menu button:hover { background: var(--orange-soft); color: var(--orange); }
.lang-menu button .code { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: .8px; color: var(--gray); }
.lang-menu button.is-active { background: var(--orange-soft); color: var(--orange); font-weight: 600; }
.lang-menu button.is-active .code { color: var(--orange); }
@media (max-width: 767.98px) {
  .lang-btn { padding: 15px 10px; }
  .lang-btn .lang-label { display: none; }
  .lang-menu { position: fixed; top: 72px; right: 16px; left: 16px; min-width: 0; }
}

/* ---------- Split blocks (alternating text / image) ---------- */
.split-section { padding: clamp(48px, 5vw, 80px) var(--page-pad); }
.split-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px);
  align-items: center; padding: clamp(24px, 3vw, 48px) 0;
}
.split-block + .split-block { border-top: 1px solid var(--gray-200); }
.split-block--reverse .split-media { order: 2; }
.split-block--reverse .split-copy { order: 1; }
.split-media { border-radius: var(--radius-xl); overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; transition: transform .5s var(--ease); }
.split-block:hover .split-media img { transform: scale(1.03); }
.split-copy .kicker {
  font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: .7px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.split-copy h3 { font-size: clamp(28px, 2.6vw, 40px); font-weight: 300; line-height: 1.15; margin-bottom: 16px; }
.split-copy p { font-family: var(--font-body); font-size: 17px; line-height: 1.7; color: var(--gray-dark); margin-bottom: 16px; }
.split-copy p:last-child { margin-bottom: 0; }
@media (max-width: 767.98px) {
  .split-block { grid-template-columns: 1fr; }
  .split-block--reverse .split-media { order: 1; }
  .split-block--reverse .split-copy { order: 2; }
}

/* ---------- Utilities ---------- */
.text-uppercase { text-transform: uppercase; }
.text-end { text-align: right; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 40px; }
.muted { color: var(--gray-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
  .main-nav { display: none; }
  .flyout { display: none !important; }
  .teaser-gallery__grid { grid-template-columns: 1fr 1fr; }
  .teaser-gallery__grid .teaser-card:first-child { grid-column: 1 / -1; }
  .insight-list-grid { grid-template-columns: 1fr 1fr; }
  .firm-statistics__grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stage-home__inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .stage-home__text { max-width: 100%; }
  .facts-grid { grid-template-columns: repeat(3, 1fr); }
  .expertise-groups { grid-template-columns: 1fr; }
  .jurisdiction-tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767.98px) {
  .header { padding: 16px 20px; }
  .header-actions .btn-jurisdiction { display: none; }
  .subscribe-btn { display: none; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer { padding-inline: 20px; }
  .footer-bottom { padding-inline: 20px; }
  .footer-bottom ul { justify-content: center; }
  .facts-grid { gap: 16px; }
  .facts-grid .count { font-size: 32px; line-height: 38px; }
  .logo-subline { display: none; }
  .logo-wordmark { font-size: 16px; }
  .header .container { gap: 8px; }
  .header-actions { gap: 0; }
  .lang-btn { padding: 15px 8px; }
  .teaser-gallery__grid { grid-template-columns: 1fr; }
  .teaser-gallery__grid .teaser-card:first-child { grid-column: auto; }
  .cta-group-grid { grid-template-columns: 1fr; }
  .cta-teaser--full { height: 380px; }
  .search__results-grid { grid-template-columns: 1fr; }
  .insight-list-grid { grid-template-columns: 1fr; }
  .insight-topic-list .row { grid-template-columns: 1fr; }
  .slider-slide { flex-basis: 85%; }
  .statistics-item { width: 100%; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .offcanvas-header, .offcanvas-body, .offcanvas-footer { padding-inline: 20px; }
  .burger-nav-level { font-size: 26px; }
  .footer-nav a { font-size: 26px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .stage-home__title { font-size: clamp(48px, 14vw, 96px); }
  .event-card .card-title { font-size: 30px; line-height: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .sitemap-cols { grid-template-columns: 1fr; }
  .on-this-page { display: none; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .programme-row { grid-template-columns: 1fr; gap: 8px; }
  .subpage-nav-links { grid-template-columns: 1fr; }
  .expert-card { flex-wrap: wrap; }
  .expert-card__image { width: 72px; height: 72px; }
  .jurisdiction-tiles { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-anim] { opacity: 1; transform: none; }
}
