/* East Midlands Capital Partners - shared stylesheet */

:root {
  --navy: #1A1A1A;
  --navy-light: #2E2E2E;
  --maroon: #A6293D;
  --maroon-light: #c33249;
  --bg-light: #FBF7ED;
}

/* Logo lockup - plain CSS, not Tailwind arbitrary classes, so it always renders correctly */
.logo-chip {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 2px;
  padding: 8px 12px;
  line-height: 0;
}
.logo-crop {
  display: block;
  height: 32px;
  width: 102px;
  overflow: hidden;
  line-height: 0;
}
.logo-crop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
@media (min-width: 640px) {
  .logo-crop { height: 36px; width: 115px; }
}
.logo-crop-sm {
  display: block;
  height: 32px;
  width: 102px;
  overflow: hidden;
  line-height: 0;
}
.logo-crop-sm img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

/* Larger centered logo lockup for the header top row */
.logo-chip-header {
  display: inline-flex;
  align-items: center;
  background: var(--bg-light);
  border-radius: 4px;
  padding: 5px 10px;
  line-height: 0;
}
.logo-crop-header {
  display: block;
  height: 92px;
  width: 343px;
  overflow: hidden;
  line-height: 0;
}
.logo-crop-header img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}
@media (min-width: 640px) {
  .logo-crop-header { height: 116px; width: 432px; }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--navy);
  background-color: #FFFDF7;
}

h1, h2, h3, h4, .font-display {
  font-family: 'Fraunces', Georgia, serif;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--maroon);
}

.section-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--maroon);
  font-weight: 600;
}

.rule {
  width: 56px;
  height: 3px;
  background: var(--maroon);
  border-radius: 2px;
}

/* Reveal-on-scroll animation - visible by default so content never depends on JS running.
   JS only ADDS the .will-animate class when it successfully initializes, making the
   fade-in purely a progressive enhancement rather than a requirement for visibility. */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.will-animate {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.will-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header shrink */
#site-header {
  transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 1px 0 rgba(21, 34, 56, 0.06);
  background-color: #FFFDF7;
}
#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(21, 34, 56, 0.1);
}

.nav-link {
  position: relative;
  color: var(--navy);
  opacity: 0.7;
}
.nav-link.active,
.nav-link:hover {
  opacity: 1;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--maroon);
}

/* Bridge diagram connector */
.flow-arrow {
  color: var(--maroon);
}

/* Card hover lift */
.lift {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(21, 34, 56, 0.12);
}

/* Stepper */
.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  border: 3px solid var(--navy);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.step-item.is-active .step-dot {
  background: var(--maroon);
  border-color: var(--maroon);
  transform: scale(1.2);
}
.step-line {
  background: #d8dce4;
}

/* Hero background */
.hero-bg {
  background: radial-gradient(ellipse at top right, rgba(166,41,61,0.18), transparent 55%),
              radial-gradient(ellipse at bottom left, rgba(255,255,255,0.06), transparent 45%),
              linear-gradient(160deg, #1A1A1A 0%, #0D0D0D 100%);
}

/* Warm ember-glow effect for dark sections (footer, closing CTAs) */
.ember-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 50% 0%, rgba(230,126,34,0.16), transparent 60%),
              radial-gradient(ellipse 45% 40% at 85% 100%, rgba(212,90,40,0.14), transparent 55%),
              radial-gradient(ellipse 35% 35% at 10% 100%, rgba(166,41,61,0.12), transparent 55%);
  pointer-events: none;
}

/* Warm glow on primary buttons, echoing the ember theme */
.btn-ember {
  box-shadow: 0 0 24px rgba(230,126,34,0.35), 0 4px 14px rgba(0,0,0,0.25);
  transition: box-shadow 0.3s ease, transform 0.2s ease, background 0.2s ease;
}
.btn-ember:hover {
  box-shadow: 0 0 34px rgba(230,126,34,0.55), 0 6px 18px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}


.map-lines {
  stroke: rgba(255,255,255,0.35);
  stroke-dasharray: 6 6;
}

/* Language toggle */
.lang-toggle {
  color: rgba(21,34,56,0.45);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 2px;
  transition: color 0.2s ease, background 0.2s ease;
}
.lang-toggle:hover {
  color: var(--navy);
}
.lang-toggle.is-active-lang {
  color: var(--navy);
  background: rgba(21,34,56,0.08);
}

/* Mobile menu */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #FFFDF7;
}
#mobile-menu.open {
  max-height: 640px;
}

::selection {
  background: var(--maroon);
  color: #fff;
}

.scrollbar-thin::-webkit-scrollbar {
  height: 6px;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
  background: var(--maroon);
  border-radius: 999px;
}

/* ============ 2026 Visual Redesign Theme ============ */
:root {
  --navy: #10231F;
  --navy-light: #18352F;
  --maroon: #B7893F;
  --maroon-light: #D1A85D;
  --bg-light: #F4EFE3;
  --forest: #10231F;
  --sage: #DDE7D7;
  --gold: #B7893F;
  --copper: #9A4F34;
  --paper: #FFFDF7;
  --line-soft: rgba(16,35,31,0.12);
  --shadow-soft: 0 24px 70px rgba(16,35,31,0.14);
}

body {
  background:
    radial-gradient(circle at 8% 6%, rgba(183,137,63,0.10), transparent 26rem),
    radial-gradient(circle at 92% 18%, rgba(16,35,31,0.10), transparent 30rem),
    linear-gradient(180deg, #fffdf7 0%, #f7f2e8 48%, #fffdf7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(16,35,31,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,35,31,0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.72), transparent 78%);
}

#site-header {
  background: rgba(255,253,247,0.94) !important;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}

#site-header > div:first-child {
  background: linear-gradient(90deg, rgba(16,35,31,0.04), rgba(183,137,63,0.10), rgba(16,35,31,0.04));
}

.logo-crop-header {
  height: 76px;
  width: 330px;
  filter: drop-shadow(0 12px 24px rgba(16,35,31,0.12));
}

@media (min-width: 640px) {
  .logo-crop-header { height: 92px; width: 400px; }
}

.nav-link.active::after {
  background: linear-gradient(90deg, var(--gold), var(--copper));
}

.btn-ember,
a.bg-maroon,
button.bg-maroon {
  background: linear-gradient(135deg, var(--forest), #1c4038) !important;
  border: 1px solid rgba(183,137,63,0.36) !important;
  box-shadow: 0 14px 34px rgba(16,35,31,0.22), inset 0 1px 0 rgba(255,255,255,0.15) !important;
}

.btn-ember:hover,
a.bg-maroon:hover,
button.bg-maroon:hover {
  background: linear-gradient(135deg, #1b3b34, #10231f) !important;
  box-shadow: 0 18px 44px rgba(16,35,31,0.28), 0 0 0 3px rgba(183,137,63,0.12) !important;
}

.bg-bglight {
  background-color: var(--bg-light) !important;
}

.text-maroon { color: var(--gold) !important; }
.border-maroon { border-color: var(--gold) !important; }
.bg-maroon { background-color: var(--gold) !important; }
.stroke-maroon { stroke: var(--gold) !important; }

section.relative.overflow-hidden.bg-bglight,
section.bg-bglight.pt-52,
section.relative.overflow-hidden.bg-bglight.pt-52 {
  background:
    linear-gradient(135deg, rgba(244,239,227,0.96), rgba(221,231,215,0.86)),
    radial-gradient(circle at 82% 22%, rgba(183,137,63,0.18), transparent 22rem) !important;
}

section.relative.overflow-hidden.bg-bglight::after,
section.bg-bglight.pt-52::after {
  content: "";
  position: absolute;
  right: clamp(18px, 8vw, 120px);
  bottom: 22px;
  width: clamp(120px, 18vw, 260px);
  aspect-ratio: 1;
  background: url('../assets/mark.svg') center/contain no-repeat;
  opacity: 0.075;
  pointer-events: none;
}

.lift,
.bg-white.border,
.bg-bglight.border,
blockquote,
.step-panel,
form {
  border-radius: 8px !important;
  box-shadow: 0 16px 42px rgba(16,35,31,0.08);
}

.lift {
  position: relative;
  overflow: hidden;
}

.lift::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  background: url('../assets/mark.svg') center/contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

.eyebrow,
.section-number {
  color: var(--gold) !important;
  letter-spacing: 0.2em;
}

.visual-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.visual-capital-map {
  position: relative;
  min-height: 470px;
  border-radius: 8px;
  border: 1px solid var(--line-soft);
  background: rgba(255,253,247,0.78);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.visual-capital-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16,35,31,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,35,31,0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 45%, black, transparent 76%);
}

.map-pill {
  position: absolute;
  padding: 13px 15px;
  background: #fffdf7;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(16,35,31,0.12);
  font-weight: 800;
  font-size: 0.88rem;
  z-index: 2;
}

.map-pill small {
  display: block;
  color: rgba(16,35,31,0.58);
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 3px;
}

.map-pill.uk { left: 26px; bottom: 44px; }
.map-pill.capital { right: 24px; top: 38px; }
.map-pill.center {
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  background: var(--forest);
  color: #fff;
  text-align: center;
}
.map-pill.center small { color: rgba(255,255,255,0.64); }

.visual-brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(183,137,63,0.34);
  border-radius: 8px;
}

.visual-brand-badge img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.visual-strip {
  border-block: 1px solid var(--line-soft);
  background: var(--forest);
  color: #fff;
}

.visual-strip-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.visual-metric {
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.13);
}

.visual-metric:last-child { border-right: 0; }
.visual-metric strong { display: block; font-family: Fraunces, Georgia, serif; font-size: 2.2rem; font-weight: 500; }
.visual-metric span { color: rgba(255,255,255,0.66); font-size: 0.85rem; }

.visual-diagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.visual-node {
  position: relative;
  min-height: 250px;
  padding: 28px;
  background: #fffdf7;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  overflow: hidden;
}

.visual-node.dark {
  background: var(--forest);
  color: #fff;
}

.visual-node p { color: rgba(16,35,31,0.64); }
.visual-node.dark p { color: rgba(255,255,255,0.68); }

.visual-node::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -46px;
  width: 170px;
  height: 170px;
  background: url('../assets/mark.svg') center/contain no-repeat;
  opacity: 0.06;
}

.visual-node.dark::after { opacity: 0.12; filter: brightness(2); }

.city-illustration {
  height: 170px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(221,231,215,0.95), rgba(244,239,227,0.95));
  border-bottom: 1px solid var(--line-soft);
}

.logo-ribbon {
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  background: rgba(255,253,247,0.88);
  padding: 17px 0;
}

.logo-ribbon-track {
  display: flex;
  width: max-content;
  gap: 38px;
  white-space: nowrap;
  color: rgba(16,35,31,0.44);
  font-weight: 800;
  animation: logoDrift 28s linear infinite;
}

@keyframes logoDrift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

footer.bg-navy,
.ember-glow.bg-navy {
  background:
    radial-gradient(circle at 22% 0%, rgba(183,137,63,0.18), transparent 22rem),
    linear-gradient(135deg, #10231f, #071311) !important;
}

@media (max-width: 1024px) {
  .visual-hero-grid,
  .visual-diagram-grid,
  .visual-strip-inner { grid-template-columns: 1fr; }
  .visual-metric { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.13); }
  .visual-capital-map { min-height: 390px; }
}

@media (max-width: 640px) {
  .logo-crop-header { height: 60px; width: 270px; }
  .visual-capital-map { min-height: 350px; }
  .map-pill { font-size: 0.78rem; max-width: 160px; }
}

/* Cross-page visual story band */
.page-visual-band {
  padding: 34px 1.5rem;
  background: linear-gradient(135deg, rgba(16,35,31,0.96), rgba(24,53,47,0.96));
  color: #fff;
  border-block: 1px solid rgba(183,137,63,0.28);
}

.page-visual-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}

.page-visual-step {
  min-height: 110px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}

.page-visual-step::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -30px;
  width: 96px;
  height: 96px;
  background: url('../assets/mark.svg') center/contain no-repeat;
  opacity: 0.12;
  filter: brightness(2);
}

.page-visual-step strong {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.page-visual-step span {
  display: block;
  color: rgba(255,255,255,0.64);
  font-size: 0.84rem;
}

.page-visual-arrow {
  color: var(--gold);
  font-size: 1.8rem;
  font-family: Fraunces, Georgia, serif;
}

@media (max-width: 820px) {
  .page-visual-inner { grid-template-columns: 1fr; }
  .page-visual-arrow { display: none; }
}


/* Final polish: denser sector controls and calmer premium surfaces */
.sector-tab {
  border: 1px solid rgba(16,35,31,0.10);
}
.sector-tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(16,35,31,0.10);
}
.visual-metric strong,
.page-visual-step strong {
  letter-spacing: 0;
}
@media (max-width: 640px) {
  .sector-tab {
    flex: 1 1 calc(50% - 0.5rem);
    text-align: center;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .visual-strip-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}



/* Regional intelligence cards */
.intelligence-card {
  display: block;
  min-height: 142px;
  padding: 1.35rem;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #fffdf7;
  box-shadow: 0 16px 42px rgba(16,35,31,0.08);
}
.intelligence-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
}
.intelligence-card span {
  display: block;
  color: rgba(16,35,31,0.64);
  font-size: 0.9rem;
  line-height: 1.55;
}


/* Turkish investor gateway */
.turkish-card,
.investor-theme-card {
  display: block;
  min-height: 148px;
  padding: 1.35rem;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #fffdf7;
  box-shadow: 0 16px 42px rgba(16,35,31,0.08);
}
.investor-theme-card {
  background: linear-gradient(180deg, #fffdf7, #f8f2e7);
}
.turkish-card strong,
.investor-theme-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
}
.turkish-card span,
.investor-theme-card span {
  display: block;
  color: rgba(16,35,31,0.64);
  font-size: 0.9rem;
  line-height: 1.55;
}


/* Cinematic visual upgrade */
.cinematic-showcase {
  padding: 0;
  background: #10231f;
}
.cinematic-panel {
  position: relative;
  min-height: clamp(520px, 76vh, 780px);
  overflow: hidden;
  isolation: isolate;
}
.cinematic-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: cinematicDrift 18s ease-in-out infinite alternate;
}
.cinematic-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,35,31,0.88), rgba(16,35,31,0.46), rgba(16,35,31,0.12));
  z-index: 1;
}
.cinematic-overlay {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: clamp(54px, 9vw, 118px) clamp(22px, 8vw, 110px);
  color: #fff;
}
.cinematic-overlay h2 {
  max-width: 720px;
  margin: 0.8rem 0 1rem;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 1.03;
}
.cinematic-overlay p:last-child {
  max-width: 600px;
  color: rgba(255,255,255,0.74);
  font-size: 1.05rem;
  line-height: 1.75;
}
@keyframes cinematicDrift {
  from { transform: scale(1.03) translate3d(0,0,0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

.visual-story-section {
  padding: 5.5rem 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(183,137,63,0.12), transparent 26rem),
    linear-gradient(180deg, #fffdf7, #f4efe3);
}
.visual-story-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
.visual-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.visual-story-card {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #fffdf7;
  box-shadow: 0 20px 54px rgba(16,35,31,0.12);
}
.visual-story-media {
  position: relative;
  height: clamp(210px, 24vw, 330px);
  overflow: hidden;
  background: #10231f;
}
.visual-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}
.visual-story-card:hover .visual-story-media img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.03);
}
.visual-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(16,35,31,0.72));
}
.visual-story-copy {
  padding: 1.45rem;
}
.visual-story-copy h3 {
  margin: 0 0 0.45rem;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest);
}
.visual-story-copy p {
  margin: 0;
  color: rgba(16,35,31,0.64);
  font-size: 0.92rem;
  line-height: 1.6;
}
@media (max-width: 960px) {
  .visual-story-head,
  .visual-story-grid { grid-template-columns: 1fr; }
  .cinematic-panel { min-height: 560px; }
}


/* Distinct visual section system */
.emcp-fullbleed {
  position: relative;
  min-height: clamp(620px, 82vh, 900px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(5,16,24,0.92), rgba(5,16,24,0.38), rgba(5,16,24,0.74)), var(--visual-image);
  background-size: cover;
  background-position: center;
}
.emcp-fullbleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 18%, rgba(183,137,63,0.16), transparent 24rem);
}
.emcp-fullbleed-copy {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 36px));
  text-align: center;
}
.emcp-fullbleed-copy h2 {
  font-size: clamp(2.4rem, 5.4vw, 5.4rem);
  line-height: 1.08;
  margin: 0.8rem auto 1.4rem;
}
.emcp-fullbleed-copy p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.75;
}
.emcp-fullbleed-copy blockquote {
  display: inline-block;
  margin: 2rem 0 0;
  color: var(--gold);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-style: italic;
}
.visual-feature-stack {
  background: #071311;
}
.visual-feature-panel {
  min-height: clamp(560px, 76vh, 820px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(7,19,17,0.92), rgba(7,19,17,0.58), rgba(7,19,17,0.06)), var(--visual-image);
  background-size: cover;
  background-position: center;
}
.visual-feature-panel.right {
  justify-content: flex-end;
  background-image: linear-gradient(270deg, rgba(7,19,17,0.92), rgba(7,19,17,0.58), rgba(7,19,17,0.06)), var(--visual-image);
}
.visual-feature-copy {
  width: min(620px, calc(100% - 36px));
  margin: clamp(28px, 7vw, 96px);
  color: #fff;
}
.visual-icon {
  display: block;
  color: var(--gold);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.visual-feature-copy h2 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.98;
  margin: 0 0 1.6rem;
}
.visual-feature-copy p {
  max-width: 510px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.55;
}
.visual-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(183,137,63,0.46);
}
.visual-tags span {
  color: rgba(255,255,255,0.82);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
@media (max-width: 820px) {
  .visual-feature-panel,
  .visual-feature-panel.right {
    justify-content: flex-start;
    background-image: linear-gradient(90deg, rgba(7,19,17,0.94), rgba(7,19,17,0.68), rgba(7,19,17,0.22)), var(--visual-image);
  }
  .visual-tags { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* EMCP final single-file theme: clean photos, no doubled image text */
#site-header {
  background: linear-gradient(180deg, rgba(5, 15, 22, 0.92), rgba(5, 15, 22, 0.70)) !important;
  border-bottom: 1px solid rgba(220, 186, 126, 0.22) !important;
  backdrop-filter: blur(18px);
}
#site-header > div:first-child {
  background: transparent !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}
#site-header .nav-link,
#site-header .mobile-nav-link,
#site-header .lang-toggle {
  color: rgba(255, 255, 255, 0.86) !important;
}
#site-header .nav-link.active,
#site-header .nav-link:hover,
#site-header .mobile-nav-link:hover {
  color: #ffffff !important;
}
#site-header #menu-toggle {
  color: #ffffff !important;
}
.logo-crop-header,
.logo-crop-sm {
  overflow: visible !important;
}
.logo-crop-header {
  width: min(500px, 72vw) !important;
  height: 92px !important;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.48));
}
.logo-crop-header img,
.logo-crop-sm img {
  object-fit: contain !important;
  object-position: center center !important;
}
@media (max-width: 640px) {
  .logo-crop-header {
    width: min(330px, 82vw) !important;
    height: 68px !important;
  }
}
.hero-slogan {
  color: #d9b875;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: -1.2rem 0 2rem;
  font-size: 0.82rem;
}
section#top {
  background: #071311 !important;
  color: #fff;
}
section#top h1,
section#top p {
  color: #fff !important;
}
section#top .absolute.inset-0 img {
  opacity: 0.92 !important;
}
section#top .absolute.inset-0 > div {
  background:
    linear-gradient(90deg, rgba(5,15,22,0.94) 0%, rgba(5,15,22,0.70) 42%, rgba(5,15,22,0.20) 72%, rgba(183,137,63,0.18) 100%) !important;
}
.visual-capital-map {
  border-color: rgba(217, 184, 117, 0.32) !important;
  background: rgba(5, 15, 22, 0.48) !important;
}
.emcp-fullbleed,
.visual-feature-panel,
.visual-feature-panel.right {
  --clean-image: url('../assets/photos/hero.jpg');
  background-image:
    linear-gradient(90deg, rgba(5,15,22,0.94) 0%, rgba(5,15,22,0.78) 40%, rgba(5,15,22,0.18) 78%, rgba(183,137,63,0.16) 100%),
    var(--clean-image) !important;
  background-size: cover !important;
  background-position: center !important;
}
.emcp-fullbleed::before,
.visual-feature-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.30)),
    radial-gradient(circle at 78% 18%, rgba(217,184,117,0.24), transparent 22rem);
  pointer-events: none;
}
.emcp-fullbleed-copy,
.visual-feature-copy {
  z-index: 2;
}
.visual-feature-panel:nth-child(2),
.visual-feature-panel:nth-child(4) {
  --clean-image: url('../assets/photos/broad-marsh.jpg');
}
.visual-feature-copy h2,
.emcp-fullbleed-copy h2 {
  color: #fff;
  text-shadow: 0 8px 30px rgba(0,0,0,0.46);
}
.visual-tags span {
  color: rgba(255,255,255,0.88) !important;
}

/* EMCP final header and palette refinement */
:root {
  --navy: #0b1f33;
  --maroon: #9f2438;
  --gold: #b7893f;
  --copper: #9a4f34;
  --bg-light: #f7f3ea;
}
#site-header {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(11, 31, 51, 0.10) !important;
  box-shadow: 0 14px 40px rgba(11, 31, 51, 0.10);
  backdrop-filter: blur(18px);
}
#site-header > div:first-child {
  background: linear-gradient(180deg, #ffffff, #f8f4ec) !important;
  border-bottom-color: rgba(183, 137, 63, 0.20) !important;
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}
#site-header .nav-link,
#site-header .mobile-nav-link,
#site-header .lang-toggle {
  color: rgba(11, 31, 51, 0.82) !important;
}
#site-header .nav-link.active,
#site-header .nav-link:hover,
#site-header .mobile-nav-link:hover {
  color: #9f2438 !important;
}
#site-header #menu-toggle {
  color: #0b1f33 !important;
}
.logo-crop-header {
  width: min(620px, 78vw) !important;
  height: 132px !important;
  overflow: visible !important;
  filter: drop-shadow(0 10px 18px rgba(11,31,51,0.14));
}
.logo-crop-header img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}
.logo-crop-sm {
  overflow: visible !important;
}
.logo-crop-sm img {
  object-fit: contain !important;
}
@media (max-width: 640px) {
  .logo-crop-header {
    width: min(420px, 88vw) !important;
    height: 92px !important;
  }
}
.btn-ember,
a.bg-maroon,
button.bg-maroon {
  background: linear-gradient(135deg, #9f2438, #6f1727) !important;
  border: 1px solid rgba(183,137,63,0.34) !important;
  box-shadow: 0 14px 34px rgba(111,23,39,0.24), inset 0 1px 0 rgba(255,255,255,0.16) !important;
}
section#top {
  background: #0b1f33 !important;
}
section#top .absolute.inset-0 > div {
  background:
    linear-gradient(90deg, rgba(11,31,51,0.94) 0%, rgba(11,31,51,0.72) 42%, rgba(11,31,51,0.22) 74%, rgba(159,36,56,0.18) 100%) !important;
}
.hero-slogan {
  color: #d7b56c;
}
.visual-capital-map {
  background: rgba(11, 31, 51, 0.50) !important;
  border-color: rgba(183, 137, 63, 0.34) !important;
}
.emcp-fullbleed,
.visual-feature-panel,
.visual-feature-panel.right {
  background-image:
    linear-gradient(90deg, rgba(11,31,51,0.94) 0%, rgba(11,31,51,0.76) 42%, rgba(11,31,51,0.18) 78%, rgba(159,36,56,0.18) 100%),
    var(--clean-image) !important;
}
.visual-feature-stack,
footer.bg-navy,
.bg-navy {
  background-color: #0b1f33 !important;
}
.text-maroon {
  color: #9f2438 !important;
}
.bg-maroon {
  background-color: #9f2438 !important;
}

/* EMCP logo scale refinement */
#site-header > div:first-child {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.logo-crop-header {
  width: min(1820px, 98vw) !important;
  height: 380px !important;
  overflow: visible !important;
  filter: drop-shadow(0 12px 22px rgba(11,31,51,0.16));
}
.logo-crop-header img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}
#site-header .max-w-7xl {
  padding-top: 0 !important;
  padding-bottom: 10px !important;
}
@media (max-width: 900px) {
  .logo-crop-header {
    width: min(1320px, 98vw) !important;
    height: 280px !important;
  }
}
@media (max-width: 640px) {
  #site-header > div:first-child {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .logo-crop-header {
    width: min(980px, 98vw) !important;
    height: 220px !important;
  }
}

/* EMCP tight cropped-logo header */
#site-header > div:first-child {
  height: 150px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
}
.logo-crop-header {
  width: min(900px, 92vw) !important;
  height: 136px !important;
  overflow: visible !important;
  display: block !important;
  filter: drop-shadow(0 8px 16px rgba(11,31,51,0.12));
}
.logo-crop-header img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}
#site-header .max-w-7xl {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}
section, footer {
  scroll-margin-top: 205px !important;
}
@media (max-width: 900px) {
  #site-header > div:first-child {
    height: 118px !important;
  }
  .logo-crop-header {
    width: min(680px, 94vw) !important;
    height: 106px !important;
  }
}
@media (max-width: 640px) {
  #site-header > div:first-child {
    height: 86px !important;
  }
  .logo-crop-header {
    width: min(470px, 94vw) !important;
    height: 78px !important;
  }
}

/* EMCP navy navigation row */
#site-header .max-w-7xl {
  background: #0b1f33 !important;
  max-width: none !important;
  padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px)) !important;
  padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px)) !important;
  border-top: 1px solid rgba(183, 137, 63, 0.22);
  border-bottom: 1px solid rgba(183, 137, 63, 0.22);
}
#site-header .nav-link,
#site-header .mobile-nav-link,
#site-header .lang-toggle {
  color: rgba(255, 255, 255, 0.88) !important;
}
#site-header .nav-link.active,
#site-header .nav-link:hover,
#site-header .mobile-nav-link:hover {
  color: #ffffff !important;
}
#site-header .nav-link.active::after {
  background: #b7893f !important;
}
#site-header .text-navy\/20 {
  color: rgba(255, 255, 255, 0.32) !important;
}
#site-header .is-active-lang {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
}
#site-header #menu-toggle {
  color: #ffffff !important;
}
#mobile-menu {
  background: #0b1f33 !important;
  border-top-color: rgba(183, 137, 63, 0.22) !important;
}

/* EMCP forced navy menu row */
#site-header > div:nth-child(2),
header#site-header > div:nth-child(2) {
  background: #0b1f33 !important;
  color: #ffffff !important;
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px)) !important;
  padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px)) !important;
  border-top: 1px solid rgba(183, 137, 63, 0.22) !important;
  border-bottom: 1px solid rgba(183, 137, 63, 0.22) !important;
}
#site-header > div:nth-child(2) a,
#site-header > div:nth-child(2) button,
#site-header > div:nth-child(2) span,
#site-header > div:nth-child(2) .nav-link,
#site-header > div:nth-child(2) .lang-toggle {
  color: #ffffff !important;
}
#site-header > div:nth-child(2) .nav-link.active::after,
#site-header > div:nth-child(2) .nav-link:hover::after {
  background: #b7893f !important;
}
#site-header > div:nth-child(2) .is-active-lang {
  background: rgba(255, 255, 255, 0.16) !important;
}

/* EMCP enforced navy section theme */
#uk-turkey-bridge,
#services,
#sectors,
#case-study {
  background:
    radial-gradient(circle at 78% 18%, rgba(183, 137, 63, 0.18), transparent 24rem),
    linear-gradient(135deg, #0b1f33 0%, #071827 48%, #102b46 100%) !important;
  color: #ffffff !important;
}
#uk-turkey-bridge *,
#services *,
#sectors *,
#case-study * {
  border-color: rgba(183, 137, 63, 0.24) !important;
}
#uk-turkey-bridge h1,
#uk-turkey-bridge h2,
#uk-turkey-bridge h3,
#services h1,
#services h2,
#services h3,
#sectors h1,
#sectors h2,
#sectors h3,
#case-study h1,
#case-study h2,
#case-study h3 {
  color: #ffffff !important;
}
#uk-turkey-bridge p,
#services p,
#sectors p,
#case-study p {
  color: rgba(255, 255, 255, 0.76) !important;
}
#uk-turkey-bridge .section-number,
#services .section-number,
#services .eyebrow,
#sectors .section-number,
#case-study .section-number {
  color: #d7b56c !important;
}
#uk-turkey-bridge .visual-node,
#services .lift,
#sectors .lift,
#case-study .rounded-sm {
  background: rgba(255, 255, 255, 0.075) !important;
  border: 1px solid rgba(183, 137, 63, 0.26) !important;
  color: #ffffff !important;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22) !important;
}
#uk-turkey-bridge .visual-node.dark {
  background: linear-gradient(145deg, rgba(159, 36, 56, 0.94), rgba(91, 22, 37, 0.94)) !important;
}
#services .lift h3,
#sectors .lift h3,
#case-study .rounded-sm h3 {
  color: #ffffff !important;
}
#services .lift p,
#sectors .lift p,
#uk-turkey-bridge .visual-node p {
  color: rgba(255, 255, 255, 0.72) !important;
}
#services .lift > div:first-child,
#uk-turkey-bridge .visual-node > div:first-child {
  background: rgba(215, 181, 108, 0.14) !important;
}
#sectors .lift .h-32 {
  background: linear-gradient(135deg, #102b46, #9f2438) !important;
}
#sectors .lift .p-5 {
  background: rgba(255, 255, 255, 0.06) !important;
}
#case-study a,
#services a,
#uk-turkey-bridge a {
  color: #d7b56c !important;
}

/* EMCP enforced non-green metric strip */
.visual-strip {
  background:
    linear-gradient(90deg, rgba(159,36,56,0.18), transparent 28%, rgba(183,137,63,0.12)),
    linear-gradient(135deg, #081a2d 0%, #0b1f33 54%, #101f3a 100%) !important;
  border-top: 1px solid rgba(183,137,63,0.24) !important;
  border-bottom: 1px solid rgba(183,137,63,0.24) !important;
}
.visual-strip-inner {
  background: transparent !important;
}
.visual-metric {
  background: transparent !important;
  border-right-color: rgba(183,137,63,0.22) !important;
}
.visual-metric strong {
  color: #ffffff !important;
  text-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
.visual-metric span {
  color: rgba(255,255,255,0.72) !important;
}
.visual-metric:hover {
  background: rgba(255,255,255,0.035) !important;
}

/* EMCP final polish: no white body sections, clearer imagery */
body {
  background: #081a2d !important;
}
section.bg-white,
section.bg-bglight,
section.py-20,
section.py-24 {
  background:
    radial-gradient(circle at 84% 10%, rgba(183, 137, 63, 0.16), transparent 24rem),
    linear-gradient(135deg, #081a2d 0%, #0b1f33 52%, #152947 100%) !important;
  color: #ffffff !important;
}
section#top,
section.visual-strip,
section.cinematic-showcase,
section.logo-ribbon,
section.emcp-fullbleed,
section.visual-feature-stack,
section#contact {
  color: inherit;
}
section.py-20 h1,
section.py-20 h2,
section.py-20 h3,
section.py-24 h1,
section.py-24 h2,
section.py-24 h3,
section.bg-white h1,
section.bg-white h2,
section.bg-white h3,
section.bg-bglight h1,
section.bg-bglight h2,
section.bg-bglight h3 {
  color: #ffffff !important;
}
section.py-20 p,
section.py-24 p,
section.bg-white p,
section.bg-bglight p {
  color: rgba(255, 255, 255, 0.76) !important;
}
.intelligence-card,
.turkish-card,
section.py-20 .reveal.lift,
section.py-24 .reveal.lift,
section.py-24 .bg-white,
section.py-20 .bg-white {
  background: rgba(255, 255, 255, 0.075) !important;
  border: 1px solid rgba(183, 137, 63, 0.26) !important;
  color: #ffffff !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24) !important;
  backdrop-filter: blur(14px);
}
.intelligence-card strong,
.turkish-card strong,
section.py-20 .reveal.lift h3,
section.py-24 .reveal.lift h3 {
  color: #ffffff !important;
}
.intelligence-card span,
.turkish-card span {
  color: rgba(255, 255, 255, 0.72) !important;
}
.section-number,
.eyebrow {
  color: #d7b56c !important;
}
section#top .absolute.inset-0 img,
.cinematic-panel img,
section#contact img {
  opacity: 1 !important;
  filter: saturate(1.16) contrast(1.08) brightness(1.04) !important;
}
section#top .absolute.inset-0 > div {
  background:
    linear-gradient(90deg, rgba(8, 26, 45, 0.78) 0%, rgba(8, 26, 45, 0.48) 42%, rgba(8, 26, 45, 0.08) 72%, rgba(159, 36, 56, 0.08) 100%) !important;
}
.cinematic-panel::after {
  background:
    linear-gradient(90deg, rgba(8,26,45,0.74), rgba(8,26,45,0.30) 48%, rgba(8,26,45,0.10)) !important;
}
.emcp-fullbleed,
.visual-feature-panel,
.visual-feature-panel.right {
  background-image:
    linear-gradient(90deg, rgba(8,26,45,0.72) 0%, rgba(8,26,45,0.42) 42%, rgba(8,26,45,0.08) 78%, rgba(159,36,56,0.08) 100%),
    var(--clean-image) !important;
}
.emcp-fullbleed::before,
.visual-feature-panel::before {
  background:
    radial-gradient(circle at 78% 18%, rgba(215,184,117,0.14), transparent 21rem) !important;
}
.emcp-fullbleed-copy,
.visual-feature-copy,
.cinematic-overlay {
  background: linear-gradient(135deg, rgba(8,26,45,0.42), rgba(8,26,45,0.16)) !important;
  border: 1px solid rgba(183,137,63,0.18);
  box-shadow: 0 26px 70px rgba(0,0,0,0.22);
  backdrop-filter: blur(5px);
}
.visual-feature-copy,
.cinematic-overlay {
  padding: clamp(24px, 4vw, 48px);
}
.emcp-fullbleed-copy {
  padding: clamp(28px, 5vw, 56px);
}
.visual-strip {
  background:
    linear-gradient(90deg, rgba(159,36,56,0.18), transparent 28%, rgba(183,137,63,0.14)),
    linear-gradient(135deg, #081a2d 0%, #0b1f33 58%, #14294a 100%) !important;
}

/* EMCP remove hero map panel and tighten hero layout */
.visual-capital-map {
  display: none !important;
}
.visual-hero-grid {
  grid-template-columns: minmax(0, 920px) !important;
  justify-content: start !important;
}
section#top .text-left,
section.relative .text-left {
  max-width: 920px !important;
}

/* EMCP clear final Partners/Contact photo */
#contact img,
section#contact img {
  opacity: 1 !important;
  filter: saturate(1.2) contrast(1.08) brightness(1.08) !important;
}
#contact .absolute.inset-0 > div,
section#contact .absolute.inset-0 > div {
  background: linear-gradient(180deg, rgba(11,31,51,0.08), rgba(11,31,51,0.46) 70%, rgba(11,31,51,0.72)) !important;
}
#contact .relative.max-w-4xl,
section#contact .relative.max-w-4xl {
  background: rgba(11, 31, 51, 0.34) !important;
  border: 1px solid rgba(183, 137, 63, 0.22) !important;
  padding: clamp(28px, 5vw, 58px) !important;
  backdrop-filter: blur(4px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.24);
}

/* EMCP remove blur/glass text panels */
.cinematic-overlay,
.emcp-fullbleed-copy,
.visual-feature-copy,
#contact .relative.max-w-4xl,
section#contact .relative.max-w-4xl {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.cinematic-overlay {
  padding: clamp(28px, 5vw, 72px) !important;
}
.emcp-fullbleed-copy,
.visual-feature-copy {
  padding: 0 !important;
}
.cinematic-panel::after {
  background:
    linear-gradient(90deg, rgba(8,26,45,0.72), rgba(8,26,45,0.28) 44%, rgba(8,26,45,0.00) 78%) !important;
}
.emcp-fullbleed,
.visual-feature-panel,
.visual-feature-panel.right {
  background-image:
    linear-gradient(90deg, rgba(8,26,45,0.70) 0%, rgba(8,26,45,0.34) 40%, rgba(8,26,45,0.00) 78%),
    var(--clean-image) !important;
}
.visual-feature-panel.right {
  background-image:
    linear-gradient(270deg, rgba(8,26,45,0.70) 0%, rgba(8,26,45,0.34) 40%, rgba(8,26,45,0.00) 78%),
    var(--clean-image) !important;
}
.emcp-fullbleed::before,
.visual-feature-panel::before {
  display: none !important;
}
.cinematic-overlay h2,
.emcp-fullbleed-copy h2,
.visual-feature-copy h2,
#contact h2 {
  text-shadow: 0 4px 18px rgba(0,0,0,0.42) !important;
}
.cinematic-overlay p,
.emcp-fullbleed-copy p,
.visual-feature-copy p,
#contact p {
  text-shadow: 0 2px 10px rgba(0,0,0,0.40) !important;
}

/* EMCP regional image clarity pass */
section#top .absolute.inset-0 img,
.cinematic-panel img,
section#contact img,
#case-study img {
  opacity: 1 !important;
  filter: saturate(1.2) contrast(1.1) brightness(1.06) !important;
}
section#top .absolute.inset-0 > div {
  background:
    linear-gradient(90deg, rgba(8,26,45,0.58) 0%, rgba(8,26,45,0.28) 42%, rgba(8,26,45,0.03) 78%) !important;
}
.cinematic-panel::after {
  background: linear-gradient(90deg, rgba(8,26,45,0.52), rgba(8,26,45,0.12) 48%, transparent 82%) !important;
}
.emcp-fullbleed,
.visual-feature-panel,
.visual-feature-panel.right {
  background-image:
    linear-gradient(90deg, rgba(8,26,45,0.56) 0%, rgba(8,26,45,0.22) 42%, rgba(8,26,45,0.00) 80%),
    var(--visual-image) !important;
}
.visual-feature-panel.right {
  background-image:
    linear-gradient(270deg, rgba(8,26,45,0.56) 0%, rgba(8,26,45,0.22) 42%, rgba(8,26,45,0.00) 80%),
    var(--visual-image) !important;
}
.emcp-fullbleed::before,
.visual-feature-panel::before {
  display: none !important;
}
.cinematic-overlay,
.emcp-fullbleed-copy,
.visual-feature-copy {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* EMCP free Wikimedia regional photography */
section#top .absolute.inset-0 > div {
  background: linear-gradient(90deg, rgba(8,26,45,0.50) 0%, rgba(8,26,45,0.22) 44%, rgba(8,26,45,0.02) 78%) !important;
}
section#top .absolute.inset-0 img,
.cinematic-panel img,
#case-study img,
section#contact img {
  opacity: 1 !important;
  filter: saturate(1.12) contrast(1.06) brightness(1.04) !important;
}
.cinematic-panel::after {
  background: linear-gradient(90deg, rgba(8,26,45,0.46), rgba(8,26,45,0.12) 45%, transparent 80%) !important;
}
.emcp-fullbleed,
.visual-feature-panel,
.visual-feature-panel.right {
  background-image:
    linear-gradient(90deg, rgba(8,26,45,0.52) 0%, rgba(8,26,45,0.18) 42%, rgba(8,26,45,0.00) 82%),
    var(--visual-image) !important;
}
.visual-feature-panel.right {
  background-image:
    linear-gradient(270deg, rgba(8,26,45,0.52) 0%, rgba(8,26,45,0.18) 42%, rgba(8,26,45,0.00) 82%),
    var(--visual-image) !important;
}
.image-credit-line {
  color: rgba(255,255,255,0.42);
  font-size: 0.72rem;
  line-height: 1.5;
  margin-top: 0.7rem;
}

/* Shared Home-page footer used across all primary site pages. */
.emcp-site-footer {
  position: relative;
  isolation: isolate;
  min-height: 350px;
  overflow: hidden;
  padding: 44px 7vw 28px;
  background: #082443 !important;
  color: rgba(255,255,255,.88);
}
.emcp-site-footer > .absolute,
.emcp-site-footer > .max-w-7xl { display: none !important; }
.footer-logo-wave {
  position: absolute;
  z-index: 0;
  display: block !important;
  opacity: 1 !important;
  left: 0;
  top: 0;
  width: 58%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.emcp-footer__contours { position: absolute; z-index: 0; pointer-events: none; fill: none; stroke-width: 1; vector-effect: non-scaling-stroke; }
.emcp-footer__contours path { fill: none; stroke: inherit; vector-effect: non-scaling-stroke; }
.emcp-footer__contours--left { left: -1%; bottom: -4%; width: 22%; height: 104%; stroke: rgba(73,101,128,.08); }
.emcp-footer__contours--right { right: -1%; bottom: -2%; width: 20%; height: 104%; stroke: rgba(172,48,58,.11); }
.emcp-footer__inner { position: relative; z-index: 2; max-width: 1440px; margin: 0 auto; }
.emcp-footer__grid { display: grid; grid-template-columns: 1.55fr .78fr .78fr 1.35fr; gap: 36px; align-items: start; }
.emcp-footer__brand { min-height: 274px; display: flex; align-items: center; padding-right: 34px; background: transparent; border: 0; box-shadow: none; }
.emcp-footer__logo { position: relative; display: block; width: min(100%,390px); height: 210px; overflow: hidden; }
.emcp-footer__logo img { position: absolute; left: 50%; top: 50%; width: 480px; max-width: none; height: auto; transform: translate(-50%,-50%); filter: none !important; }
.emcp-footer__column { padding-left: 36px; border-left: 1px solid rgba(255,255,255,.52); }
.emcp-footer__brand + .emcp-footer__column { border-left: 0; }
.emcp-footer__column h2 { margin: 0; color: #F3F4F6 !important; font-family: Inter,system-ui,sans-serif !important; font-size: 14px !important; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; }
.emcp-footer__column > i { display: block; width: 28px; height: 2px; margin: 12px 0 14px; background: #C71F25; }
.emcp-footer__column ul { margin: 0; padding: 0; list-style: none; }
.emcp-footer__column li { margin: 0; color: rgba(255,255,255,.88); font-family: Inter,system-ui,sans-serif; font-size: 15px; line-height: 1.85; }
.emcp-footer__column a { color: inherit; text-decoration: none; transition: color 220ms ease,transform 220ms ease; }
.emcp-footer__column nav a,
.emcp-footer__column li a { display: inline-block; }
.emcp-footer__column a:hover { color: #fff; transform: translateX(3px); }
.emcp-footer__column a:focus-visible { outline: 1px solid #fff; outline-offset: 3px; }
.emcp-footer__contact li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; line-height: 1.55; }
.emcp-footer__contact li svg { flex: 0 0 22px; width: 22px; height: 22px; margin-top: 1px; fill: none; stroke: #fff; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.emcp-footer__contact li:nth-child(2) a { overflow-wrap: anywhere; }
.emcp-footer__disclaimer { max-width: 420px; margin: 34px 0 0; color: rgba(255,255,255,.74) !important; font-family: Inter,system-ui,sans-serif; font-size: 13px !important; line-height: 1.55 !important; }
.emcp-footer__bottom { margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.10); }
.emcp-footer__bottom p { margin: 0; color: #40566b !important; font-family: Inter,system-ui,sans-serif; font-size: 13px !important; }
@media (max-width: 1050px) {
  .emcp-site-footer { padding: 48px 6vw 28px; background: #082443 !important; }
  .footer-logo-wave { width: 82%; height: 320px; }
  .emcp-footer__grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 38px 28px; }
  .emcp-footer__brand { grid-column: 1/-1; min-height: 220px; padding: 0; }
  .emcp-footer__contact { grid-column: 1/-1; }
}
@media (max-width: 720px) {
  .emcp-site-footer { padding: 50px 22px 28px; background: #082443 !important; }
  .footer-logo-wave { width: 125%; height: 270px; transform: translateX(-18%); }
  .emcp-footer__grid { grid-template-columns: minmax(0,1fr); gap: 0; }
  .emcp-footer__brand { grid-column: auto; min-height: 210px; border-bottom: 1px solid rgba(255,255,255,.14); }
  .emcp-footer__logo { width: 320px; max-width: 100%; height: 190px; }
  .emcp-footer__logo img { width: 420px; }
  .emcp-footer__column,
  .emcp-footer__contact { grid-column: auto; padding: 30px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .emcp-footer__contact { border-bottom: 0; }
  .emcp-footer__bottom { margin-top: 6px; }
  .emcp-footer__contours { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .emcp-site-footer * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Shared image-only band immediately above selected internal-page footers. */
.emcp-prefooter-image {
  position: relative;
  width: 100%;
  height: 460px;
  min-height: 400px;
  overflow: hidden;
  background: #071d3a;
}
.emcp-prefooter-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.emcp-prefooter-image--opportunity img { object-position: center 55%; }
.emcp-prefooter-image--services img { object-position: center 47%; }
.emcp-prefooter-image--sectors img { object-position: center 58%; }
.emcp-prefooter-image--bridge img { object-position: center 52%; }
.emcp-prefooter-image--partners img { object-position: center 45%; }
.emcp-prefooter-image--case-study img { object-position: center 52%; }
.emcp-prefooter-image-overlay {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(180deg, rgba(7,29,58,.04) 45%, rgba(7,29,58,.28) 75%, #082443 100%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .emcp-prefooter-image {
    height: 340px;
    min-height: 0;
  }
}
@media (max-width: 600px) {
  .emcp-prefooter-image { height: 240px; }
}

/* Opportunity page hero only */
.opportunity-hero {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-height: clamp(430px, 34vw, 500px);
  overflow: hidden;
  background: #071d3a;
}

.opportunity-hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.opportunity-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.opportunity-hero-overlay-horizontal,
.opportunity-hero-overlay-vertical {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.opportunity-hero-overlay-horizontal {
  background: linear-gradient(
    90deg,
    rgba(3, 17, 40, 0.95) 0%,
    rgba(4, 22, 52, 0.88) 28%,
    rgba(5, 27, 61, 0.68) 48%,
    rgba(6, 25, 54, 0.32) 70%,
    rgba(4, 16, 34, 0.08) 100%
  );
}

.opportunity-hero-overlay-vertical {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(4, 16, 38, 0.18) 58%,
    rgba(4, 16, 38, 0.55) 100%
  );
}

.opportunity-hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  min-height: inherit;
  margin: 0;
  padding: 30px clamp(36px, 4vw, 70px) 0 calc(max(5vw, 50vw - 830px) + 24px);
}

.opportunity-hero-content {
  position: relative;
  width: min(850px, 68vw);
  padding: 12px 0 12px 58px;
  color: #ffffff;
  text-align: left;
}

.opportunity-hero-frame {
  position: absolute;
  top: 45px;
  bottom: auto;
  left: -24px;
  width: 700px;
  height: calc(100% - 90px);
  max-height: 390px;
  border-left: 1px solid rgba(214, 181, 95, 0.9);
  background: transparent;
  box-shadow: 0 0 18px rgba(214, 181, 95, 0.18);
  transform: scaleY(0);
  transform-origin: top;
  animation: opportunity-hero-frame-vertical 800ms cubic-bezier(0.22, 1, 0.36, 1) 80ms forwards;
}

.opportunity-hero-frame::before,
.opportunity-hero-frame::after {
  content: "";
  position: absolute;
  left: 0;
  width: 188px;
  height: 1px;
  background: rgba(214, 181, 95, 0.9);
  box-shadow: 0 0 18px rgba(214, 181, 95, 0.18);
  transform: scaleX(0);
  transform-origin: left;
  animation: opportunity-hero-frame-horizontal 700ms cubic-bezier(0.22, 1, 0.36, 1) 600ms forwards;
}

.opportunity-hero-frame::before { top: 0; }
.opportunity-hero-frame::after { bottom: 0; }

.opportunity-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 20px;
  color: #d6b55f;
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  animation: opportunity-hero-reveal 760ms cubic-bezier(0.22, 1, 0.36, 1) 260ms forwards;
}

.opportunity-hero-eyebrow > span {
  flex: 0 0 54px;
  width: 54px;
  height: 1.5px;
  background: #d6b55f;
}

.opportunity-hero-heading {
  margin: 0;
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  font-size: clamp(68px, 5.8vw, 96px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.opportunity-hero-heading-white,
.opportunity-hero-heading-blue {
  display: block;
  opacity: 0;
  transform: translateY(34px);
  animation: opportunity-hero-reveal 820ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.opportunity-hero-heading-white {
  color: #ffffff;
  animation-delay: 390ms;
}

.opportunity-hero-heading-blue {
  margin-top: 2px;
  padding-bottom: 0.08em;
  background: linear-gradient(180deg, #b8d0ed 0%, #83a9d9 48%, #577ba9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: #7fa6d9;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 8px 25px rgba(0, 0, 0, 0.28);
  animation-delay: 520ms;
}

.opportunity-hero-description {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(22px);
  animation: opportunity-hero-reveal 780ms cubic-bezier(0.22, 1, 0.36, 1) 660ms forwards;
}

.opportunity-hero-label {
  max-width: 620px;
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid rgba(214, 181, 95, 0.28);
  opacity: 0;
  transform: translateY(16px);
  animation: opportunity-hero-reveal 760ms cubic-bezier(0.22, 1, 0.36, 1) 790ms forwards;
}

.opportunity-hero-label-line {
  display: none;
}

.opportunity-hero-label p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.opportunity-hero-label i {
  margin: 0 10px;
  font-style: normal;
}

@keyframes opportunity-hero-frame-vertical {
  to { transform: scaleY(1); }
}

@keyframes opportunity-hero-frame-horizontal {
  to { transform: scaleX(1); }
}

@keyframes opportunity-hero-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .opportunity-hero {
    min-height: 400px;
  }

  .opportunity-hero-container {
    padding: 24px 60px 24px calc(7vw + 24px);
  }

  .opportunity-hero-content {
    width: min(100%, 640px);
  }

  .opportunity-hero-heading {
    font-size: clamp(52px, 7vw, 70px);
  }

  .opportunity-hero-description {
    margin-top: 20px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .opportunity-hero {
    min-height: 460px;
  }

  .opportunity-hero-image {
    object-position: 62% center;
  }

  .opportunity-hero-overlay-horizontal {
    background: linear-gradient(
      90deg,
      rgba(3, 18, 45, 0.96) 0%,
      rgba(6, 28, 62, 0.86) 54%,
      rgba(8, 36, 75, 0.48) 82%,
      rgba(8, 36, 75, 0.16) 100%
    );
  }

  .opportunity-hero-container {
    align-items: center;
    padding: 38px 24px 38px calc(7vw + 24px);
  }

  .opportunity-hero-content {
    width: 100%;
    padding: 16px 0 16px 24px;
  }

  .opportunity-hero-frame::before,
  .opportunity-hero-frame::after {
    width: 82px;
  }

  .opportunity-hero-eyebrow {
    gap: 12px;
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 0.24em;
  }

  .opportunity-hero-eyebrow > span {
    flex-basis: 30px;
    width: 30px;
  }

  .opportunity-hero-heading {
    font-size: clamp(40px, 11vw, 54px);
    line-height: 0.94;
  }

  .opportunity-hero-description {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.55;
  }

  .opportunity-hero-label {
    margin-top: 22px;
  }

  .opportunity-hero-label-line {
    margin-bottom: 14px;
  }

  .opportunity-hero-label p {
    font-size: 9px;
    line-height: 1.8;
    letter-spacing: 0.2em;
  }

  .opportunity-hero-label i {
    margin: 0 5px;
  }
}

@media (max-width: 699px) {
  .opportunity-hero-container {
    padding-left: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .opportunity-hero-frame,
  .opportunity-hero-frame::before,
  .opportunity-hero-frame::after,
  .opportunity-hero-eyebrow,
  .opportunity-hero-heading-white,
  .opportunity-hero-heading-blue,
  .opportunity-hero-description,
  .opportunity-hero-label {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Opportunity page: three-card investment context only */
.opportunity-context {
  position: relative;
  width: 100%;
  padding: 58px 5vw 64px;
  overflow: hidden;
  background-color: #071d3a;
}

.opportunity-context::before,
.opportunity-context::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.opportunity-context::before {
  background:
    radial-gradient(ellipse at 8% 0%, rgba(153, 196, 239, 0.22), transparent 34%),
    radial-gradient(ellipse at 88% 88%, rgba(102, 157, 215, 0.18), transparent 34%),
    radial-gradient(ellipse at 50% 45%, rgba(25, 72, 119, 0.24), transparent 58%);
}

.opportunity-context::after {
  inset: auto -8% -22% 34%;
  height: 52%;
  border-radius: 50%;
  border-top: 1px solid rgba(184, 216, 248, 0.12);
  box-shadow: 0 -22px 70px rgba(126, 177, 226, 0.08);
  transform: rotate(-7deg);
}

.opportunity-context-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1660px);
  margin: 0 auto;
}

.opportunity-context-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 66px minmax(0, 1fr) 66px minmax(0, 1fr);
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 20px;
}

.opportunity-context-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  align-content: center;
  column-gap: 22px;
  min-width: 0;
  height: 100%;
  min-height: 240px;
  padding: 24px 30px;
  overflow: hidden;
  border: 1px solid rgba(218, 176, 98, 0.82);
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 52% 108%, rgba(217, 169, 76, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(24, 59, 96, 0.94), rgba(6, 30, 58, 0.98) 62%, rgba(4, 24, 49, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(229, 181, 87, 0.32),
    0 18px 45px rgba(0, 8, 24, 0.28);
  color: #ffffff;
  transition:
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 450ms ease,
    box-shadow 450ms ease,
    background-color 450ms ease;
}

.opportunity-context-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -34%;
  left: -16%;
  width: 94%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(219, 236, 252, 0.13), transparent 68%);
  pointer-events: none;
}

.opportunity-context-card::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: -20%;
  bottom: -20%;
  left: -52%;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(255, 244, 211, 0.09), transparent);
  transform: translateX(-160%) skewX(-16deg);
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.opportunity-context-icon {
  display: grid;
  place-items: center;
  grid-column: 1;
  grid-row: 1;
  width: 64px;
  height: 64px;
  margin: 0;
  border: 1px solid rgba(221, 176, 91, 0.88);
  border-radius: 50%;
  color: #e0ad52;
  background: rgba(5, 29, 57, 0.48);
  box-shadow:
    inset 0 0 22px rgba(220, 170, 76, 0.05),
    0 8px 24px rgba(218, 166, 65, 0.16);
  transition:
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
    color 450ms ease,
    box-shadow 450ms ease;
}

.opportunity-context-icon svg {
  width: 38px;
  height: 38px;
  overflow: visible;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.opportunity-context-card h2 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin: 0;
  color: #ffffff;
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  font-size: clamp(27px, 1.8vw, 36px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.opportunity-context-divider {
  grid-column: 1 / -1;
  grid-row: 2;
  position: relative;
  display: block;
  width: 112px;
  height: 14px;
  margin: 16px 0 14px;
}

.opportunity-context-divider::before,
.opportunity-context-divider::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, #dda943, rgba(221, 169, 67, 0.42));
}

.opportunity-context-divider::before { left: 0; }
.opportunity-context-divider::after { right: 0; transform: scaleX(-1); }

.opportunity-context-divider i {
  position: absolute;
  top: 3px;
  left: 53px;
  width: 7px;
  height: 7px;
  border: 1px solid #dda943;
  transform: rotate(45deg);
}

.opportunity-context-card p {
  grid-column: 1 / -1;
  grid-row: 3;
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.91);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 400;
  line-height: 1.5;
}

.opportunity-context-arrow {
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  width: 100%;
  color: #dda943;
}

.opportunity-context-arrow span {
  flex: 1 1 auto;
  min-width: 10px;
  border-top: 3px dotted currentColor;
}

.opportunity-context-arrow svg {
  flex: 0 0 38px;
  width: 38px;
  height: 24px;
  margin-left: -2px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.opportunity-context.is-reveal-ready .opportunity-context-shell,
.opportunity-context.is-reveal-ready .opportunity-context-card,
.opportunity-context.is-reveal-ready .opportunity-context-arrow {
  opacity: 0;
}

.opportunity-context.is-reveal-ready .opportunity-context-shell {
  transition: opacity 700ms ease;
}

.opportunity-context.is-reveal-ready .opportunity-context-card {
  transform: translateY(35px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 450ms ease,
    box-shadow 450ms ease;
}

.opportunity-context.is-visible .opportunity-context-shell,
.opportunity-context.is-visible .opportunity-context-card,
.opportunity-context.is-visible .opportunity-context-arrow {
  opacity: 1;
}

.opportunity-context.is-visible .opportunity-context-card {
  transform: translateY(0);
}

.opportunity-context.is-visible .opportunity-context-card:nth-of-type(1) { transition-delay: 0ms; }
.opportunity-context.is-visible .opportunity-context-card:nth-of-type(2) { transition-delay: 160ms; }
.opportunity-context.is-visible .opportunity-context-card:nth-of-type(3) { transition-delay: 320ms; }

.opportunity-context.is-reveal-ready .opportunity-context-arrow {
  transform: translateX(-12px);
  transition:
    opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.opportunity-context.is-visible .opportunity-context-arrow {
  transform: translateX(0);
  transition-delay: 480ms;
}

@media (hover: hover) and (pointer: fine) {
  .opportunity-context-card:hover {
    z-index: 2;
    transform: translateY(-8px);
    border-color: rgba(242, 196, 105, 1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.10),
      inset 0 -1px 0 rgba(243, 194, 95, 0.62),
      0 22px 52px rgba(0, 8, 24, 0.34),
      0 0 24px rgba(220, 169, 72, 0.12);
  }

  .opportunity-context-card:hover::after {
    transform: translateX(610%) skewX(-16deg);
  }

  .opportunity-context-card:hover .opportunity-context-icon {
    color: #f0bd5f;
    transform: scale(1.035);
    box-shadow:
      inset 0 0 24px rgba(229, 180, 86, 0.08),
      0 10px 28px rgba(226, 174, 74, 0.22);
  }
}

@media (max-width: 1099px) {
  .opportunity-context {
    padding: 52px 7vw 58px;
  }

  .opportunity-context-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .opportunity-context-card {
    min-height: 220px;
    padding: 24px 30px;
  }

  .opportunity-context-arrow {
    display: none;
  }
}

@media (max-width: 699px) {
  .opportunity-context {
    padding: 44px 22px 50px;
  }

  .opportunity-context-grid {
    gap: 22px;
  }

  .opportunity-context-card {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 16px;
    min-height: 210px;
    padding: 22px 22px 24px;
    border-radius: 18px;
  }

  .opportunity-context-icon {
    width: 54px;
    height: 54px;
  }

  .opportunity-context-icon svg {
    width: 32px;
    height: 32px;
  }

  .opportunity-context-card h2 {
    font-size: clamp(25px, 7vw, 32px);
  }

  .opportunity-context-divider {
    margin: 14px 0 12px;
  }

  .opportunity-context-card p {
    font-size: 15px;
    line-height: 1.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .opportunity-context.is-reveal-ready .opportunity-context-shell,
  .opportunity-context.is-reveal-ready .opportunity-context-card,
  .opportunity-context.is-reveal-ready .opportunity-context-arrow,
  .opportunity-context.is-visible .opportunity-context-shell,
  .opportunity-context.is-visible .opportunity-context-card,
  .opportunity-context.is-visible .opportunity-context-arrow {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .opportunity-context-card:hover,
  .opportunity-context-card:hover .opportunity-context-icon,
  .opportunity-context-card:hover::after {
    transform: none;
  }
}
/* Accessibility and production readability */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:focus-visible {
  outline: 3px solid #d6a84f;
  outline-offset: 4px;
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  main p:not(.eyebrow), main li, main label, main input, main textarea,
  main button, main a:not(.eyebrow) {
    font-size: max(0.875rem, 14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
