/* Golden Marketing Uganda — Redesign v3.0 */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-ui:      'Poppins', system-ui, sans-serif;

  --text-hero: clamp(2.6rem, 5vw, 5.6rem);
  --text-h2:   clamp(2rem, 4vw, 3.5rem);
  --text-h3:   clamp(1.25rem, 2vw, 1.6rem);
  --text-body: 1rem;
  --text-sm:   0.875rem;
  --text-xs:   0.75rem;

  --white:      #FFFFFF;
  --surface:    #F5F6FF;
  --surface-2:  #ECEEF8;
  --ink:        #1E1E2E;
  --ink-light:  #2A2A3E;

  --gold:         #B8922A;
  --gold-light:   #D4AF6A;
  --gold-subtle:  #F5EDD9;
  --gold-on-dark: #E8C97A;

  --text-primary:   #1E1E2E;
  --text-secondary: #4A5080;
  --text-tertiary:  #8890B8;
  --text-on-dark:   #FFFFFF;
  --text-muted-dark: rgba(255,255,255,0.55);

  --border:        rgba(0,0,0,0.14);
  --border-strong: rgba(0,0,0,0.24);
  --border-dark:   rgba(255,255,255,0.12);

  --green:       #1A7A4A;
  --green-light: #E8F5EE;

  --max-w:           1440px;
  --pad-section:     clamp(72px, 10vw, 130px);
  --pad-section-sm:  clamp(48px, 7vw, 80px);
  --pad-x:           clamp(20px, 4vw, 40px);
  --gap:             24px;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07), 0 8px 32px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 180ms;
  --duration-med:  320ms;
  --duration-slow: 500ms;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Hide the scrollbar while keeping scroll functionality (Firefox / legacy Edge) */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
/* Hide the scrollbar in WebKit/Blink browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar { width: 0; height: 0; display: none; }

body {
  font-family: var(--font-ui);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}

.section         { padding: var(--pad-section) 0; }
.section-sm      { padding: var(--pad-section-sm) 0; }
.section-dark    { background: var(--ink); }
.section-surface { background: var(--surface); }

.rule { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-ui); font-weight: 700; line-height: 1.15; color: var(--text-primary); letter-spacing: -0.01em; }

.section-title {
  font-family: var(--font-ui);
  font-size: var(--text-h2);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 12px;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
}
.label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--text-sm);
  border: none;
  cursor: pointer;
  border-radius: var(--r-pill);
  transition:
    background var(--duration-fast),
    border-color var(--duration-fast),
    color var(--duration-fast),
    box-shadow var(--duration-fast),
    transform 140ms var(--ease-out);
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.btn:active { transform: scale(0.97); }
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  padding: 12px 24px;
  border: 1.5px solid var(--ink);
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: #111120; box-shadow: var(--shadow-md); color: var(--white); }
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 12px 24px;
  border: 1.5px solid var(--gold);
}
@media (hover: hover) and (pointer: fine) {
  .btn-gold:hover { background: #9A7822; box-shadow: 0 8px 24px rgba(184,146,42,0.3); color: var(--white); }
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  padding: 11px 22px;
  border: 1.5px solid var(--border-strong);
}
@media (hover: hover) and (pointer: fine) {
  .btn-ghost:hover { border-color: var(--text-primary); background: var(--surface); }
}

.btn-ghost-dark {
  background: transparent;
  color: var(--white);
  padding: 11px 22px;
  border: 1.5px solid rgba(255,255,255,0.2);
}
@media (hover: hover) and (pointer: fine) {
  .btn-ghost-dark:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); color: var(--white); }
}

.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast);
}
@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-strong);
  }
}
.card:active { transform: scale(0.98); }

/* ============================================================
   NAVBAR
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.09);
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-logo img { display: block; height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: all var(--duration-fast) var(--ease-out);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.07); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.desktop-only-cta {
  display: inline-flex;
}
.mobile-only-cta {
  display: none;
}

/* Gold CTA button on dark navbar */
.site-nav .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
@media (hover: hover) and (pointer: fine) {
  .site-nav .btn-primary:hover {
    background: #9A7822;
    border-color: #9A7822;
    box-shadow: 0 8px 24px rgba(184,146,42,0.35);
    color: var(--white);
  }
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: all var(--duration-med) var(--ease-out);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px) scale(0.97);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 8px;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform-origin: top center;
  transition:
    opacity 180ms var(--ease-out),
    transform 180ms var(--ease-out);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel,
.nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.nav-dropdown-panel a {
  display: block;
  padding: 9px 14px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--r-sm);
  transition: background var(--duration-fast), color var(--duration-fast);
}
.nav-dropdown-panel a:hover { background: var(--surface); color: var(--text-primary); }
.nav-dropdown-panel a:active { transform: scale(0.98); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { margin-bottom: 56px; }
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
/* Hero stagger — each element enters independently on page load */
.hero-stagger-2,
.hero-stagger-3,
.hero-stagger-4,
.hero-stagger-5 {
  animation: heroEnter 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-stagger-2 { animation-delay: 0.15s; }
.hero-stagger-3 { animation-delay: 0.28s; }
.hero-stagger-4 { animation-delay: 0.42s; }
.hero-stagger-5 { animation-delay: 0.56s; }

@keyframes heroEnter {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes phraseOut {
  from { opacity: 1; transform: translateY(0px); }
  to   { opacity: 0; transform: translateY(-10px); }
}
@keyframes phraseIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0px); }
}
.hero-title em,
.page-hero-title em {
  display: inline-block;
  white-space: nowrap;
}
.hero-title em.phrase-out,
.page-hero-title em.phrase-out {
  animation: phraseOut 300ms cubic-bezier(0.4, 0, 1, 1) forwards;
  pointer-events: none;
}
.hero-title em.phrase-in,
.page-hero-title em.phrase-in {
  animation: phraseIn 420ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
  background: 
    radial-gradient(ellipse 55% 85% at 0% 52%, rgba(184, 146, 42, 0.08) 0%, transparent 58%),
    radial-gradient(circle 350px at 85% 50%, rgba(184, 146, 42, 0.04) 0%, transparent 100%);
}

/* Subtle diagonal grain — adds texture without competing with content */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 3px,
      rgba(184, 146, 42, 0.018) 3px,
      rgba(184, 146, 42, 0.018) 4px
    );
  pointer-events: none;
  z-index: 0;
  }
.hero .container { position: relative; z-index: 1; max-width: var(--max-w); }

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: clamp(32px, 5vh, 72px) 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-title em { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-micro-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.micro-stat { text-align: left; }
.micro-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.micro-label {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}
.micro-divider { width: 1px; height: 42px; background: var(--border); flex-shrink: 0; }

.hero-visual {
  /* Fill most of the viewport height while never running off the bottom */
  height: min(840px, calc(100vh - 110px));
  width: 100%;
  max-width: none;
  margin-right: clamp(0px, 1vw, 24px);
  position: relative;
  overflow: visible;
}

.hero-animated-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 12px;
  height: 100%;
  width: 100%;
  max-width: 100%;
  transform: skewX(-6deg) scale(1.02); /* Skew the container to create diagonal cells */
  transform-origin: center;
  position: relative;
}

/* Containment safety: the mosaic must never exceed its column or the viewport.
   min-width:0 stops the grid tracks from blowing out their container, and the
   large-screen cap keeps the un-zoomed (>1750px) layout from running off-screen. */
.hero-content,
.hero-visual { min-width: 0; }

@media (min-width: 1751px) {
  /* Grow the whole page frame together on ultra-wide screens so the nav,
     hero, and every section keep the same edges and fill the space premium-ly. */
  :root { --max-w: 1520px; }

  /* Past 1750px the zoom-scaling stops, so the un-zoomed mosaic and rotating
     headline balloon and the title overflows into the grid. Cap the mosaic and
     ease the headline so the hero keeps the same balanced proportions it has
     on a laptop. */
  .hero-layout { grid-template-columns: 1.05fr 1fr; }
  .hero-title { font-size: clamp(3.2rem, 5.4vw, 6rem); }
  .hero-visual {
    height: min(640px, calc(100vh - 190px));
    max-width: 660px;
    margin-left: auto;
    margin-right: 0;
  }
}

.hero-grid-cell {
  border-radius: 16px;
  overflow: hidden;
  background-color: #0b0b10;
  opacity: 0;
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    inset 0 -1px 2px rgba(0, 0, 0, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.15);
  will-change: transform;
}
.hero-grid-cell.active { opacity: 1; }

@media (hover: hover) and (pointer: fine) {
  .hero-grid-cell:hover {
    transform: scale(1.045);
    box-shadow:
      inset 0 1px 2px rgba(255, 255, 255, 0.25),
      inset 0 -1px 2px rgba(0, 0, 0, 0.4),
      0 8px 22px rgba(0, 0, 0, 0.25);
    z-index: 10;
  }
}

.hero-grid-img-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: -15%;
  transform: skewX(7deg);
  overflow: hidden;
}

/* Floating live-activity badge */
.hero-float-card {
  position: absolute;
  bottom: 36px;
  left: -24px;
  z-index: 20;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    0 16px 36px rgba(10, 10, 18, 0.12),
    0 1px 3px rgba(0, 0, 0, 0.04);
  animation: heroEnter 0.7s 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-float-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.22);
  flex-shrink: 0;
  animation: liveGlow 2.4s ease infinite;
}
@keyframes liveGlow {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.22); }
  50%      { box-shadow: 0 0 0 7px rgba(34,197,94,0.10); }
}
.hero-float-content { display: flex; flex-direction: column; gap: 2px; }
.hero-float-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-float-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 1;
  margin-top: 3px;
}

/* Inner image div — spans full wrap wrapper */
.hero-grid-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: both;
}

/* Ken Burns pan variants */
.hero-grid-img.kb-0 { animation-name: kb0; }
.hero-grid-img.kb-1 { animation-name: kb1; }
.hero-grid-img.kb-2 { animation-name: kb2; }
.hero-grid-img.kb-3 { animation-name: kb3; }

@keyframes kb0 {
  from { transform: scale(1.00) translate(0%,  0%); }
  to   { transform: scale(1.07) translate(1%,  1%); }
}
@keyframes kb1 {
  from { transform: scale(1.07) translate(1%,  0%); }
  to   { transform: scale(1.00) translate(0%,  1%); }
}
@keyframes kb2 {
  from { transform: scale(1.00) translate(1%, -1%); }
  to   { transform: scale(1.07) translate(0%,  0%); }
}
@keyframes kb3 {
  from { transform: scale(1.07) translate(0%,  1%); }
  to   { transform: scale(1.00) translate(1%,  0%); }
}

/* ============================================================
   PROOF STRIP — MARQUEE
   ============================================================ */
.proof-strip { padding-top: 32px; padding-bottom: 32px; }
.proof-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  text-align: center;
  margin-bottom: 28px;
}

.marquee-track { overflow: hidden; position: relative; }
.marquee-track::before,
.marquee-track::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-track::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.marquee-track::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }


.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  animation: marquee 28s linear infinite;
  width: max-content;
  will-change: transform;
}
.marquee-content:hover { animation-play-state: paused; }
.marquee-content img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.4;
  transition: opacity var(--duration-fast), filter var(--duration-fast);
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  .marquee-content img:hover { opacity: 0.85; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   THREE PILLARS
   ============================================================ */
.pillars-section { position: relative; overflow: hidden; }
.pillars-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,146,42,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.pillars-intro {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 64px;
}
.pillars-eyebrow {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 4px;
}
.pillars-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.pillars-heading {
  grid-column: 1 / 3;
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
}
.pillars-sub {
  grid-column: 3 / 4;
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  align-self: end;
  padding-bottom: 6px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.pillar {
  position: relative;
  padding: 40px 36px 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--gold);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: background var(--duration-med) var(--ease-out),
              border-top-color var(--duration-med) var(--ease-out),
              transform var(--duration-med) var(--ease-out);
}
.pillar:hover {
  background: rgba(255,255,255,0.07);
  border-top-color: var(--gold-light);
  transform: translateY(-4px);
}
.pillar-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.045);
  user-select: none;
  pointer-events: none;
}
.pillar-icon {
  width: 48px; height: 48px;
  background: rgba(184,146,42,0.12);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  color: var(--gold);
  transition: background var(--duration-med) var(--ease-out);
}
.pillar:hover .pillar-icon { background: rgba(184,146,42,0.2); }
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.pillar p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 32px;
}
.pillar-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.pillar-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pillar-stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap); }

.service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--duration-med) var(--ease-out),
    box-shadow var(--duration-med) var(--ease-out),
    border-color var(--duration-med) var(--ease-out);
}

.service-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--surface-2);
}
.service-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform var(--duration-slow) var(--ease-out);
  will-change: transform;
}
/* depth scrim — anchors the index badge and adds a premium falloff */
.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20,20,30,0.30) 0%, rgba(20,20,30,0) 38%, rgba(20,20,30,0) 70%, rgba(20,20,30,0.30) 100%);
  opacity: 0.85;
  transition: opacity var(--duration-med) var(--ease-out);
}
.service-index {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: rgba(20,20,30,0.42);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.service-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.service-tag {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--text-primary);
  margin: 0;
  transition: color var(--duration-fast);
}
.service-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 2px 0 0;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-tertiary);
  transition: color var(--duration-fast);
}
.service-arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1;
  transition:
    background var(--duration-med) var(--ease-out),
    border-color var(--duration-med) var(--ease-out),
    color var(--duration-med) var(--ease-out),
    transform var(--duration-med) var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(184,146,42,0.45);
  }
  .service-card:hover .service-card-img { transform: scale(1.07); }
  .service-card:hover .service-card-media::after { opacity: 1; }
  .service-card:hover h3 { color: var(--gold); }
  .service-card:hover .service-link { color: var(--text-primary); }
  .service-card:hover .service-arrow-circle {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateX(3px);
  }
}
.service-card:active { transform: scale(0.985); }

/* ============================================================
   OUR WORK GRID — HOMEPAGE PREVIEW
   ============================================================ */
.work-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }

.work-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--duration-med) var(--ease-out),
    box-shadow var(--duration-med) var(--ease-out),
    border-color var(--duration-med) var(--ease-out);
}

.work-card-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: var(--surface-2);
}
.work-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform var(--duration-slow) var(--ease-out);
  will-change: transform;
}
.work-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,30,0.34) 0%, rgba(20,20,30,0) 30%, rgba(20,20,30,0) 100%);
  transition: opacity var(--duration-med) var(--ease-out);
}
.work-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-on-dark);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(20,20,30,0.46);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.work-year {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.work-card-body {
  padding: 22px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.work-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0 0 8px;
  transition: color var(--duration-fast);
}
.work-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.work-card .service-link { margin-top: 18px; }

@media (hover: hover) and (pointer: fine) {
  .work-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(184,146,42,0.45);
  }
  .work-card:hover .work-card-img { transform: scale(1.07); }
  .work-card:hover .work-card-media::after { opacity: 0.7; }
  .work-card:hover h3 { color: var(--gold); }
  .work-card:hover .service-link { color: var(--text-primary); }
  .work-card:hover .service-arrow-circle {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateX(3px);
  }
}
.work-card:active { transform: scale(0.985); }

/* ============================================================
   IMPACT NUMBERS — DARK SECTION
   ============================================================ */
.impact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.impact-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.impact-stat { padding: 36px; border: 1px solid var(--border-dark); }
.impact-stat:nth-child(1) { border-radius: var(--r-lg) 0 0 0; }
.impact-stat:nth-child(2) { border-radius: 0 var(--r-lg) 0 0; }
.impact-stat:nth-child(3) { border-radius: 0 0 0 var(--r-lg); }
.impact-stat:nth-child(4) { border-radius: 0 0 var(--r-lg) 0; }
.impact-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--gold-on-dark);
  line-height: 1;
  margin-bottom: 10px;
}
.impact-label { font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted-dark); }
.counter-value { font-family: var(--font-display); }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-single {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 10rem);
  font-style: italic;
  color: var(--gold);
  line-height: 0.7;
  display: block;
  margin-bottom: 16px;
  user-select: none;
  opacity: 0.18;
  /* anchor to left so the quote feels grounded, not floating */
}
blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  color: var(--text-primary);
  line-height: 1.45;
  font-style: italic;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
  border: none;
  padding: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.author-avatar-sm {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid rgba(184,146,42,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs); font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
}
.author-name-sm { font-weight: 600; font-size: var(--text-sm); color: var(--text-primary); }
.author-role-sm { font-size: var(--text-xs); color: var(--text-tertiary); margin-top: 2px; }

/* ============================================================
   CTA BAND — light (service pages)
   ============================================================ */
.cta-band { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: var(--pad-section) 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.cta-band-text { flex: 1; min-width: 260px; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   CTA BAND — dark feature (our-work closing CTA)
   ============================================================ */
.cta-band--dark {
  background: var(--ink);
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: clamp(96px, 13vw, 156px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band--dark::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 72px;
  background: var(--gold-on-dark);
  opacity: 0.45;
}
.cta-band--dark .cta-band-inner {
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-on-dark);
  margin-bottom: 28px;
}
.cta-band--dark .cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.cta-band--dark .cta-band-title em {
  font-style: italic;
  color: var(--gold-on-dark);
}
.cta-band--dark .cta-band-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
  max-width: 50ch;
  margin: 0 auto;
}
.cta-band--dark .cta-band-actions {
  margin-top: 48px;
  gap: 16px;
  justify-content: center;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  padding: 80px 0 64px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 560px; }

/* ============================================================
   SERVICE PAGE TEMPLATE
   ============================================================ */
.service-page-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: start; }
.service-includes .eyebrow { margin-bottom: 0; }
/* ============================================================
   OUR WORK PAGE
   ============================================================ */
.filter-bar { display: flex; justify-content: center; gap: 8px; margin-bottom: 56px; flex-wrap: wrap; }
.filter-btn {
  padding: 9px 20px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}
.filter-btn:hover { border-color: var(--border-strong); color: var(--text-primary); background: var(--surface); }
.filter-btn.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

.brand-section { margin-bottom: 72px; }
.brand-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap; gap: 12px;
}
.brand-title-wrap { display: flex; align-items: center; gap: 14px; }
.brand-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.brand-name { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text-primary); }
.brand-count {
  font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-secondary); padding: 3px 10px; background: var(--surface-2); border-radius: var(--r-pill);
}

.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.gallery-item {
  border-radius: var(--r-lg); overflow: hidden; position: relative; cursor: pointer;
  border: 1px solid var(--border); background: var(--surface-2);
  transition: transform var(--duration-med) var(--ease-out), box-shadow var(--duration-med) var(--ease-out);
  aspect-ratio: 4/3;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
  opacity: 0; transition: opacity var(--duration-med) var(--ease-out);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.overlay-tag {
  display: inline-block; padding: 3px 10px; background: var(--gold); color: var(--white);
  border-radius: var(--r-pill); font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 6px; align-self: flex-start;
}
.overlay-label { color: var(--white); font-weight: 600; font-size: var(--text-sm); line-height: 1.3; }

.brand-section.hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95); backdrop-filter: blur(12px);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity var(--duration-med) var(--ease-out);
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 88vw; max-height: 88vh; border-radius: var(--r-lg);
  box-shadow: 0 40px 80px rgba(0,0,0,0.7); transform: scale(0.95);
  transition: transform var(--duration-slow) var(--ease-out);
}
.lightbox.active img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 24px; right: 24px; width: 48px; height: 48px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; color: var(--white); font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}
.lightbox-close:hover { background: var(--gold); color: var(--white); transform: rotate(90deg); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.timeline-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap); }
.timeline-card { padding: 28px 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); }
.timeline-year { font-family: var(--font-display); font-size: 2rem; color: var(--gold); line-height: 1; margin-bottom: 12px; }
.timeline-card h4 { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.timeline-card p { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.65; }

.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap); }
.value-card { padding: 28px; background: var(--surface); border-radius: var(--r-lg); border: 1px solid var(--border); }
.value-card h4 { font-weight: 700; font-size: 1rem; color: var(--text-primary); margin-bottom: 8px; }
.value-card p { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.65; }

.country-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.country-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-pill);
  font-size: var(--text-sm); font-weight: 500; color: var(--text-primary);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: var(--text-sm); font-weight: 500; color: var(--text-primary); margin-bottom: 6px; }

/* ============================================================
   CAREERS PAGE
   ============================================================ */

/* ============================================================
   NEWS PAGE
   ============================================================ */

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer-logo { height: 36px; width: auto; opacity: 0.85; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: var(--text-sm); color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-socials a { font-size: var(--text-xs); font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; transition: color var(--duration-fast); }
.footer-socials a:hover { color: var(--gold-on-dark); }
.footer-col h5 { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: var(--text-sm); color: rgba(255,255,255,0.55); transition: color var(--duration-fast); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom span, .footer-bottom a { font-size: var(--text-xs); color: rgba(255,255,255,0.25); }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast);
  animation: waPulse 3s ease 3s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  animation: none;
  color: white;
}
.wa-float:active {
  transform: scale(0.95);
  box-shadow: 0 2px 8px rgba(37,211,102,0.25);
  animation: none;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
  50%      { box-shadow: 0 4px 24px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.08); }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }

/* ============================================================
   SHARED TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 54ch;
  margin-top: 8px;
}
.body-lg {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* ============================================================
   PAGE HERO — INNER CONTENT
   ============================================================ */
.page-hero { padding: var(--pad-section-sm) 0; }
.page-hero-inner { max-width: 680px; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 56ch;
}

/* Image-based page hero (our-work.html) — section uses background-image */
section.page-hero-image,
.page-hero.page-hero-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,12,12,0.75) 0%, rgba(12,12,12,0.35) 100%);
  z-index: 1;
}
.page-hero-inner-light { position: relative; z-index: 2; }
.page-hero-inner-light .eyebrow { color: var(--gold-on-dark); }
.page-hero-inner-light .page-hero-title { color: var(--white); }
.page-hero-inner-light .page-hero-subtitle { color: rgba(255,255,255,0.78); }

/* ============================================================
   CTA BAND — title/sub (used in service pages on section-surface)
   ============================================================ */
.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}
.cta-band-title em { font-style: italic; color: var(--gold); }
.cta-band-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 52ch;
}

/* ============================================================
   SERVICE PAGE — INCLUDES + SIDEBAR
   ============================================================ */
.service-includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  padding: 0;
}
.service-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: padding-left var(--duration-fast) var(--ease-out);
}
.service-includes-list li:first-child { border-top: 1px solid var(--border); }
.service-includes-list li:hover { padding-left: 8px; }
.service-includes-list li svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  padding: 9px;
  box-sizing: content-box;
  border-radius: 50%;
  background: var(--gold-subtle);
  color: var(--gold);
  transition: background var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
}
.service-includes-list li:hover svg { background: var(--gold); color: var(--white); }
.service-includes-list li span { flex: 1; padding-top: 6px; }

.service-sidebar { display: flex; flex-direction: column; gap: 24px; }
.service-cta-card {
  position: sticky;
  top: 100px;
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.service-cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,42,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.service-cta-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.01em;
  position: relative;
}
.service-cta-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  margin-bottom: 6px;
  position: relative;
}
.service-cta-card .btn { width: 100%; justify-content: center; text-align: center; position: relative; }
.service-cta-card .btn-primary { background: var(--gold); border-color: var(--gold); }
.service-cta-card .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.service-cta-card .btn-ghost { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.75); }
.service-cta-card .btn-ghost:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.06); }

/* ============================================================
   SERVICE PAGE — PROCESS STEPS
   ============================================================ */
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:first-child { border-top: 1px solid var(--border); }
.process-step:last-child  { border-bottom: none; }
.process-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}
.process-content { display: flex; flex-direction: column; gap: 8px; }
.process-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.process-content p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   SERVICE PAGE — PHOTO GALLERY
   ============================================================ */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.photo-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--duration-med) var(--ease-out),
    box-shadow var(--duration-med) var(--ease-out),
    border-color var(--duration-med) var(--ease-out);
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform var(--duration-slow) var(--ease-out);
  will-change: transform;
}
/* permanent depth scrim, intensifies on hover */
.photo-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,22,0.78) 0%, rgba(15,15,22,0.18) 42%, transparent 70%);
  opacity: 0.85;
  transition: opacity var(--duration-med) var(--ease-out);
  pointer-events: none;
}
.photo-cap {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 15px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  transform: translateY(0);
  transition: transform var(--duration-med) var(--ease-out);
}
/* small gold accent above the caption */
.photo-cap::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-on-dark);
  margin-bottom: 8px;
  transition: width var(--duration-med) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .photo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-strong);
  }
  .photo-item:hover img { transform: scale(1.06); }
  .photo-item:hover::after { opacity: 1; }
  .photo-item:hover .photo-cap { transform: translateY(-2px); }
  .photo-item:hover .photo-cap::before { width: 40px; }
}

/* ============================================================
   SERVICE PAGE — RELATED SERVICES
   ============================================================ */
.related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.related-service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast), transform var(--duration-fast) var(--ease-out);
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .related-service-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
  }
}
.related-service-card:active { transform: scale(0.97); }
.related-service-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--duration-fast);
}
.related-service-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}
.related-service-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--text-tertiary);
  transition: color var(--duration-fast), transform var(--duration-fast) var(--ease-out);
  margin-top: auto;
}
@media (hover: hover) and (pointer: fine) {
  .related-service-card:hover .related-service-title { color: var(--gold); }
  .related-service-card:hover .related-service-arrow {
    color: var(--gold);
    transform: translateX(4px);
  }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.about-intro-text { display: flex; flex-direction: column; gap: 16px; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
}

.timeline-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.value-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.presence-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.contact-form-col { display: flex; flex-direction: column; }
.contact-info-col {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info-block { display: flex; flex-direction: column; gap: 24px; }
.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 4px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  margin-bottom: 3px;
}
.contact-detail-value {
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: 500;
  display: block;
}
a.contact-detail-value:hover { color: var(--gold); }

.contact-markets { margin-top: 8px; }
.contact-markets-title {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}
.country-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Form aliases */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,42,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; }
.form-note {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 10px;
}
.form-submit { width: 100%; justify-content: center; gap: 8px; }
.btn-label { flex: 1; }

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.career-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast), transform var(--duration-fast) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .career-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-sm);
  }
}
.career-card:active { transform: scale(0.99); }
.career-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.career-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 4px;
}
.career-meta {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}
.career-badge {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: var(--gold-subtle);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  flex-shrink: 0;
}
.career-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}
.career-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.career-tag {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: var(--r-pill);
}
.career-apply { align-self: flex-start; margin-top: 4px; }

.careers-open-apply {
  margin-top: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 40px;
}
.careers-open-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.careers-open-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 6px;
}

/* ============================================================
   FOOTER — additional aliases
   ============================================================ */
.footer-brand img {
  height: 34px;
  width: auto;

  opacity: 0.85;
  display: block;
  margin-bottom: 4px;
}
.footer-brand > a { display: inline-block; }

/* ============================================================
   FEATURED WORK SECTION (KFC/KCB/Wave Grid Style)
   ============================================================ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}

.featured-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(12, 12, 20, 0.08);
  background-color: var(--ink);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
  cursor: pointer;
  display: block;
}

.featured-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.featured-card:hover .featured-card-img {
  transform: scale(1.08);
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(12, 12, 20, 0.35), 0 0 0 1px rgba(197, 160, 89, 0.25);
  border-color: var(--gold);
}

/* Translucent bottom overlay */
.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.98) 0%, rgba(10, 10, 15, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  z-index: 3;
  transition: background 0.3s var(--ease-out);
}

.featured-card:hover .featured-overlay {
  background: linear-gradient(to top, rgba(10, 10, 15, 1.0) 0%, rgba(10, 10, 15, 0.5) 50%, transparent 100%);
}

.featured-client {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  transform: translateY(2px);
  transition: transform 0.3s var(--ease-out);
}

.featured-tagline {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
  transform: translateY(2px);
  transition: transform 0.3s var(--ease-out), color 0.3s;
}

.featured-card:hover .featured-client,
.featured-card:hover .featured-tagline {
  transform: translateY(0);
}

.featured-card:hover .featured-tagline {
  color: var(--white);
}

/* ============================================================
   CAREERS PAGE — redesign v3.6
   ============================================================ */
/* Hero stat chips */
.careers-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.careers-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 13px 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.careers-hero-stat b {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.careers-hero-stat span {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.72);
}

/* Why-join benefit cards */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.benefit-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 34px 30px 30px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--duration-med) var(--ease-out),
    box-shadow var(--duration-med) var(--ease-out),
    border-color var(--duration-med) var(--ease-out);
}
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-med) var(--ease-out);
}
.benefit-num {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--surface-2);
  user-select: none;
}
.benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-subtle);
  color: var(--gold);
  margin-bottom: 24px;
  transition: background var(--duration-med) var(--ease-out), color var(--duration-med) var(--ease-out);
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.benefit-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}
@media (hover: hover) and (pointer: fine) {
  .benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(184,146,42,0.4);
  }
  .benefit-card:hover::before { transform: scaleX(1); }
  .benefit-card:hover .benefit-icon { background: var(--gold); color: #fff; }
}

/* Open roles — premium card override */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.career-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform var(--duration-med) var(--ease-out),
    box-shadow var(--duration-med) var(--ease-out),
    border-color var(--duration-med) var(--ease-out);
}
.career-card::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--duration-med) var(--ease-out);
}
.career-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 6px;
  transition: color var(--duration-fast);
}
.career-meta {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-tertiary);
}
.career-badge {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: var(--gold-subtle);
  border: 1px solid rgba(184,146,42,0.22);
  padding: 5px 11px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  flex-shrink: 0;
}
.career-apply {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 2px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color var(--duration-fast);
}
.career-apply .career-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1;
  transition: background var(--duration-med) var(--ease-out), border-color var(--duration-med), color var(--duration-med), transform var(--duration-med) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .career-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(184,146,42,0.4);
  }
  .career-card:hover::before { transform: scaleY(1); }
  .career-card:hover .career-title { color: var(--gold); }
  .career-card:hover .career-apply { color: var(--text-primary); }
  .career-card:hover .career-arrow { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateX(3px); }
}

/* Speculative-application CTA band */
.careers-open-apply {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--ink) 0%, #14141f 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
}
.careers-open-apply::after {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(184,146,42,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.careers-open-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.careers-open-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
}
.careers-open-inner p {
  color: rgba(255,255,255,0.62);
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 440px;
}

@media (max-width: 820px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .careers-open-apply { padding: 34px 28px; }
}

/* ============================================================
   ABOUT PAGE — redesign v3.7
   ============================================================ */
/* Intro impact stats — premium bordered card on light bg */
.about-intro-text .impact-stats {
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.about-intro-text .impact-stat {
  padding: 28px 26px;
  border: none;
  border-radius: 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-intro-text .impact-stat:nth-child(2n) { border-right: none; }
.about-intro-text .impact-stat:nth-child(n+3) { border-bottom: none; }
.stat-number {
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}

/* Timeline cards — premium */
.timeline-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform var(--duration-med) var(--ease-out),
    box-shadow var(--duration-med) var(--ease-out),
    border-color var(--duration-med) var(--ease-out);
}
.timeline-card > img {
  transition: transform var(--duration-slow) var(--ease-out);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.timeline-heading {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 8px;
}
@media (hover: hover) and (pointer: fine) {
  .timeline-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(184,146,42,0.4);
  }
  .timeline-card:hover > img { transform: scale(1.05); }
}

/* Value cards — premium */
.value-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--duration-med) var(--ease-out),
    box-shadow var(--duration-med) var(--ease-out),
    border-color var(--duration-med) var(--ease-out);
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-med) var(--ease-out);
}
.value-icon {
  transition: background var(--duration-med) var(--ease-out), color var(--duration-med) var(--ease-out);
}
.value-title {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 10px;
}
@media (hover: hover) and (pointer: fine) {
  .value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(184,146,42,0.4);
  }
  .value-card:hover::before { transform: scaleX(1); }
  .value-card:hover .value-icon { background: var(--gold); color: #fff; }
}

/* Country pills — refined */
.country-pill {
  transition: transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast), color var(--duration-fast);
}
@media (hover: hover) and (pointer: fine) {
  .country-pill:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    color: var(--gold);
  }
}

/* ============================================================
   CONTACT PAGE — redesign v3.8
   ============================================================ */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 42px;
  box-shadow: var(--shadow-sm);
}
.contact-form-head { margin-bottom: 30px; }
.contact-form-eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.15;
}
.contact-form .form-label {
  font-weight: 600;
}
.contact-form .form-input {
  padding: 13px 16px;
  border-radius: var(--r-md);
  border-color: var(--border);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast), background var(--duration-fast);
}
.contact-form .form-input:hover { border-color: var(--border-strong); }
.contact-form .form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,42,0.14);
}
.contact-form .form-submit { margin-top: 6px; }

/* Contact info card — detail icons as frosted tiles */
.contact-info-col .contact-detail-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  margin-top: 0 !important;
}

@media (max-width: 820px) {
  .contact-form { padding: 30px 24px; }
}


