/* ═══════════════════════════════════════════
   Quantum Finance Advisory — Shared Styles
   ═══════════════════════════════════════════ */

/* ── Fonts ──
   Headings: Apfel Grotezk (free, from Collletttivo — collletttivo.it).
   Not on Google Fonts, so it must be self-hosted: drop the .woff2 files
   into this /fonts/ folder. Until then, Space Grotesk (Google Fonts) is
   used as a near-match fallback.
   Body: IBM Plex Sans — loaded directly from Google Fonts, works as-is. */
@font-face {
  font-family: 'Apfel Grotezk';
  src: url('fonts/ApfelGrotezk-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Apfel Grotezk';
  src: url('fonts/ApfelGrotezk-Mittel.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Apfel Grotezk';
  src: url('fonts/ApfelGrotezk-Fett.woff2') format('woff2');
  font-weight: 600 700; font-style: normal; font-display: swap;
}

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

/* ── Variables ── */
:root {
  --navy: #0B1D3A;
  --navy-mid: #0F2547;
  --navy-light: #152D52;
  --gold: #B8965A;
  --gold-hover: #CBA76B;
  --gold-dim: rgba(184, 150, 90, 0.12);
  --cream: #F7F5F0;
  --cream-dark: #EDE9E0;
  --blue-mist: #EAF1F7;
  --white: #FFFFFF;
  --text-dark: #1A1D2B;
  --text-body: #3D4150;
  --text-muted: #6B7084;
  --border-light: #DDD8CE;
  --border-dark: rgba(255,255,255,0.08);
  --font-serif: 'Apfel Grotezk', 'Space Grotesk', -apple-system, sans-serif;
  --font-sans: 'IBM Plex Sans', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy);
  transition: background 0.25s ease;
}
.btn-primary:hover { background: var(--gold-hover); }

.btn-outline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  background: var(--navy);
  color: var(--white);
  transition: background 0.25s ease;
}
.btn-dark:hover { background: var(--navy-mid); }

.btn-gold-outline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-gold-outline:hover { background: var(--gold); color: var(--navy); }


/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: var(--navy);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border-dark);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.nav-logo-mark {
  width: 52px;
  height: 52px;
  display: block;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-main {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.nav-logo-sub {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.2em;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 24px;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  transition: color 0.2s ease;
}
.mobile-menu a:hover { color: var(--gold); }


/* ═══ GLOBE (Rotating Earth) ═══ */
@keyframes earthRotate {
  0% { background-position: 0 0; }
  100% { background-position: 400px 0; }
}
@keyframes twinkle1 { 0%,100% { opacity: 0.08; } 50% { opacity: 0.9; } }
@keyframes twinkle2 { 0%,100% { opacity: 0.05; } 50% { opacity: 0.7; } }
@keyframes twinkle3 { 0%,100% { opacity: 0.1; } 50% { opacity: 1; } }

.globe-fixed {
  position: fixed;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  transition: transform 1400ms cubic-bezier(0.23, 1, 0.32, 1),
              opacity 1400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.globe-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.globe-sphere {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background-image: url('https://pub-940ccf6255b54fa799a9b01050e6c227.r2.dev/globe.jpeg');
  background-size: cover;
  background-position: left;
  animation: earthRotate 30s linear infinite;
  box-shadow:
    0 0 20px rgba(255,255,255,0.15),
    -5px 0 8px #c3f4ff inset,
    15px 2px 25px #000 inset,
    -24px -2px 34px rgba(195,244,255,0.5) inset,
    280px 0 44px rgba(0,0,0,0.4) inset,
    170px 0 38px rgba(0,0,0,0.6) inset;
}
.globe-star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
}


/* ═══ HERO (Home) ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
/* Animated background image (ken-burns drift) */
.hero::before {
  content: '';
  position: absolute;
  inset: -8%;
  z-index: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&h=1000&fit=crop') center/cover no-repeat;
  animation: heroKenBurns 26s ease-in-out infinite alternate;
  will-change: transform;
}
/* Navy overlay (30% heavier than before) */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(100deg, rgba(11,29,58,0.99) 0%, rgba(11,29,58,0.97) 45%, rgba(11,29,58,0.90) 100%);
}
@keyframes heroKenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.14) translate(-2.5%, -1.5%); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 0 80px;
}
.hero h1 { max-width: 700px; }
.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.175rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ═══ PAGE HEADER (Non-home pages) ═══ */
.page-header {
  background: var(--navy);
  padding: 160px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-header .container { position: relative; z-index: 2; }
.page-header-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header p {
  color: rgba(255,255,255,0.5);
  font-size: 1.125rem;
  max-width: 520px;
  line-height: 1.7;
}
/* Small static globe decoration for non-home pages */
.page-header-globe {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.15;
  pointer-events: none;
}
.page-header-globe .globe-sphere {
  width: 320px;
  height: 320px;
  box-shadow:
    0 0 20px rgba(255,255,255,0.1),
    -5px 0 8px rgba(195,244,255,0.3) inset,
    15px 2px 25px #000 inset,
    -24px -2px 34px rgba(195,244,255,0.3) inset,
    320px 0 44px rgba(0,0,0,0.4) inset,
    200px 0 38px rgba(0,0,0,0.6) inset;
}


/* ═══ SECTIONS ═══ */
.section { padding: 100px 0; }
.section-light { background: var(--white); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--navy); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.6); }

.section-header {
  max-width: 560px;
  margin-bottom: 60px;
}
.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.075rem; line-height: 1.7; }


/* ═══ PILLARS ═══ */
.pillars {
  background: var(--cream);
  padding: 72px 0;
  position: relative;
  z-index: 2;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
}
.pillar {
  background: var(--cream);
  padding: 32px 28px;
  text-align: center;
}
.pillar-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  margin: 0 auto 16px;
}
.pillar h4 { font-size: 1.1rem; margin-bottom: 10px; }
.pillar p {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ═══ SERVICES OVERVIEW ═══ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.service-card {
  background: var(--white);
  padding: 48px 40px;
  transition: background 0.3s ease;
}
.service-card:hover { background: var(--cream); }
.service-card-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  margin-bottom: 24px;
}
.service-card h3 { margin-bottom: 14px; }
.service-card p {
  font-size: 1.025rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-card-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s ease;
}
.service-card-link:hover { gap: 12px; }
.service-card-link svg { width: 14px; height: 14px; }


/* ═══ WHY US ═══ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.why-item-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: rgba(184, 150, 90, 0.25);
  line-height: 1;
  margin-bottom: 20px;
}
.why-item h3 { color: var(--white); margin-bottom: 14px; }
.why-item p { font-size: 1.025rem; line-height: 1.7; }


/* ═══ CTA BANNER ═══ */
.cta-banner {
  background: var(--blue-mist);
  padding: clamp(72px, 9vw, 120px) 0;
  border-top: 1px solid var(--border-light);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.cta-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(56px, 8vw, 112px);
}
.cta-banner-copy { max-width: 520px; }
.cta-banner h2 {
  color: var(--text-dark);
  max-width: 520px;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}
.cta-banner p {
  color: var(--text-muted);
  margin-top: 24px;
  font-size: 1.075rem;
  line-height: 1.75;
  max-width: 470px;
}
.cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.cta-banner-actions .btn-primary,
.cta-banner-actions .btn-dark {
  min-height: 48px;
}
.cta-image-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  grid-template-rows: repeat(2, minmax(170px, 1fr));
  gap: 16px;
  height: clamp(430px, 42vw, 560px);
  position: relative;
}
.cta-image-grid::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  right: -44px;
  top: -44px;
  border: 1px solid rgba(184, 150, 90, 0.35);
  border-radius: 50%;
  z-index: -1;
}
.cta-image {
  overflow: hidden;
  background: var(--cream-dark);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.75s cubic-bezier(0.23, 1, 0.32, 1);
}
.cta-image-grid.visible .cta-image { opacity: 1; transform: translateY(0); }
.cta-image-grid.visible .cta-image:nth-child(1) { transition-delay: 0.08s; }
.cta-image-grid.visible .cta-image:nth-child(2) { transition-delay: 0.2s; }
.cta-image-grid.visible .cta-image:nth-child(3) { transition-delay: 0.32s; }
.cta-image:first-child { grid-column: 1; grid-row: 1; }
.cta-image:nth-child(2) { grid-column: 2; grid-row: 1 / span 2; }
.cta-image:nth-child(3) { grid-column: 1; grid-row: 2; }
.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.35s ease;
}
.cta-image:nth-child(2) img { object-position: 58% center; }
.cta-image:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}


/* ═══ ABOUT ═══ */
.about-image-banner {
  height: 360px;
  overflow: hidden;
}
.about-image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { margin-bottom: 18px; font-size: 1.075rem; }
.about-sidebar {
  border-left: 1px solid var(--border-light);
  padding-left: 48px;
}
.about-stat {
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
}
.about-stat:first-child { padding-top: 0; }
.about-stat:last-child { border-bottom: none; }
.about-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.about-stat-value {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-dark);
}


/* ═══ VALUES ═══ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.value-card {
  background: var(--cream);
  padding: 44px 36px;
}
.value-card-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  margin-bottom: 20px;
}
.value-card h3 { margin-bottom: 12px; }
.value-card p {
  font-size: 1.005rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ═══ LEADERSHIP ═══ */
.leader {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}
.leader-portrait {
  position: sticky;
  top: 110px;
}
.leader-portrait picture { display: block; }
.leader-portrait img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(12%) contrast(1.02);
}
.leader-portrait-caption {
  background: var(--navy);
  padding: 24px 28px;
  border-bottom: 2px solid var(--gold);
}
.leader-portrait-caption h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}
.leader-role {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.leader-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}
.leader-stat-figure {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 8px;
}
.leader-stat-label {
  display: block;
  font-size: 1.075rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.leader-body p {
  font-size: 1.075rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.leader-credentials {
  display: grid;
  gap: 28px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border-light);
}
.cred-group h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.cred-icon {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex-shrink: 0;
}
.cred-group ul { list-style: none; }
.cred-group li {
  position: relative;
  padding-left: 18px;
  font-size: 1.005rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 6px;
}
.cred-group li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.leader-expertise {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border-light);
}
.expertise-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.expertise-tags span {
  font-size: 1.075rem;
  color: var(--text-body);
  padding: 7px 15px;
  border: 1px solid var(--border-light);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.expertise-tags span:hover {
  border-color: var(--gold);
  color: var(--navy);
}


/* ═══ SERVICES DETAIL ═══ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .service-detail-content { order: 2; }
.service-detail.reverse .service-detail-visual { order: 1; }
.service-detail-content h3 { font-size: 1.6rem; margin-bottom: 20px; }
.service-detail-content p {
  font-size: 1.075rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.service-detail-content ul {
  list-style: none;
  margin-top: 20px;
}
.service-detail-content li {
  font-size: 1.025rem;
  color: var(--text-body);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}
.service-detail-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}
.service-detail-visual {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.service-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) contrast(1.02);
}


/* ═══ BLOG ═══ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  border: 1px solid var(--border-light);
  transition: border-color 0.3s ease;
}
.blog-card:hover { border-color: var(--gold); }
.blog-card-image {
  display: block;
  height: 200px;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.02);
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.03); }
.blog-card-body { padding: 28px 24px; }
.blog-card-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 1.2rem; margin-bottom: 12px; line-height: 1.35; }
.blog-card p {
  font-size: 0.995rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.blog-card-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card-link svg { width: 14px; height: 14px; }


/* ═══ CONTACT ═══ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.contact-info h2 { color: var(--white); margin-bottom: 24px; }
.contact-info > p {
  color: rgba(255,255,255,0.5);
  font-size: 1.045rem;
  margin-bottom: 48px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border-dark);
}
.contact-detail:last-of-type { border-bottom: 1px solid var(--border-dark); }
.contact-detail-icon {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-detail-text {
  font-size: 1.025rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}


/* ═══ FORM ═══ */
.booking-form {
  background: var(--navy-mid);
  padding: 48px;
  border: 1px solid var(--border-dark);
}
.booking-form h3 { color: var(--white); margin-bottom: 8px; }
.booking-form > p {
  color: rgba(255,255,255,0.4);
  font-size: 0.975rem;
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  transition: border-color 0.25s ease;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.25s ease;
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold-hover); }
.form-success { display: none; text-align: center; padding: 60px 20px; }
.form-success-icon { width: 40px; height: 40px; color: var(--gold); margin: 0 auto 20px; }
.form-success h3 { color: var(--white); margin-bottom: 12px; }
.form-success p { color: rgba(255,255,255,0.5); font-size: 1.025rem; }


/* ═══ FOOTER ═══ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border-dark);
}
.footer-main {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.975rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-legal {
  padding: 28px 0;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s ease;
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.6); }


/* ═══ MODALS ═══ */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11, 29, 58, 0.85);
  z-index: 200;
  overflow-y: auto;
  padding: 60px 24px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: block; }
.modal {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 56px 52px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.modal-close:hover { color: var(--text-dark); }
.modal-close svg { width: 20px; height: 20px; }
.modal h2 { font-size: 1.8rem; margin-bottom: 8px; }
.modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.modal p {
  font-size: 1.025rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text-body);
}
.modal h3 { font-size: 1.15rem; margin-top: 28px; margin-bottom: 12px; }
.modal ul { list-style: none; margin-bottom: 16px; }
.modal li {
  font-size: 1.025rem;
  line-height: 1.8;
  color: var(--text-body);
  padding-left: 18px;
  position: relative;
}
.modal li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 1px;
  background: var(--gold);
}


/* ═══ PAGE HEADER CONTENT ═══ */
.page-header-content { max-width: 560px; }

/* ═══ ABOUT SPLIT LAYOUT ═══ */
.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.about-split-text h2 { margin-bottom: 24px; }
.about-split-text p { font-size: 1.075rem; line-height: 1.8; margin-bottom: 16px; }
.about-split-image { overflow: hidden; }
.about-split-image img {
  width: 100%;
  display: block;
  filter: grayscale(15%) contrast(1.02);
}

/* ═══ VALUE ICON ═══ */
.value-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-dark .value-card {
  background: var(--navy-mid);
  border: 1px solid var(--border-dark);
}
.section-dark .values-grid {
  background: transparent;
  border: none;
  gap: 24px;
}
.section-dark .value-card h3 { color: var(--white); }
.section-dark .value-card p { color: rgba(255,255,255,0.55); }

/* ═══ VALUES — QUANTUM COMPASS ═══ */
.values-section {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 10vw, 148px) 0;
}
.values-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 430px);
  align-items: end;
  gap: 64px;
}
.values-heading h2 {
  color: var(--white);
  font-size: clamp(3rem, 5.8vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin-top: 18px;
}
.values-heading > p {
  color: rgba(255,255,255,0.6);
  font-size: 1.075rem;
  line-height: 1.75;
}
.values-experience {
  position: relative;
  display: grid;
  grid-template-columns: minmax(500px, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: clamp(70px, 9vw, 132px);
  padding-top: clamp(64px, 8vw, 104px);
}
.values-compass {
  --needle-angle: 0deg;
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1;
  margin: 0 auto;
  isolation: isolate;
}
.values-compass[data-active="partnership"] { --needle-angle: 90deg; }
.values-compass[data-active="transparency"] { --needle-angle: 180deg; }
.values-compass[data-active="knowledge"] { --needle-angle: 270deg; }
.compass-orbit,
.compass-needle,
.compass-centre {
  position: absolute;
}
.compass-orbit {
  border-radius: 50%;
  pointer-events: none;
}
.compass-orbit-outer {
  inset: 8%;
  border: 1px solid rgba(255,255,255,0.18);
}
.compass-needle {
  inset: 19%;
  z-index: 0;
  transform: rotate(var(--needle-angle));
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}
.compass-needle span {
  position: absolute;
  top: 0;
  left: calc(50% - 7px);
  width: 14px;
  height: 40%;
  background: linear-gradient(to top, rgba(184,150,90,0), var(--gold));
  clip-path: polygon(50% 0, 100% 100%, 50% 82%, 0 100%);
  opacity: 0.9;
}
.compass-centre {
  inset: 37%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 18px 50px rgba(0,0,0,0.24);
}
.compass-centre img { width: 42%; max-width: 54px; margin-bottom: 7px; }
.compass-centre span {
  font-family: var(--font-serif);
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.compass-centre small {
  color: rgba(255,255,255,0.35);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 3px;
}
.compass-point {
  position: absolute;
  z-index: 3;
  width: 142px;
  color: rgba(255,255,255,0.52);
  text-align: center;
  transition: color 0.25s ease, transform 0.3s ease;
}
.compass-point:hover,
.compass-point:focus-visible,
.compass-point.active { color: var(--white); }
.compass-point:focus-visible { outline: 1px solid var(--gold); outline-offset: 8px; }
.compass-point-north { top: 0; left: 50%; transform: translateX(-50%); }
.compass-point-north:hover,
.compass-point-north.active { transform: translateX(-50%) translateY(-4px); }
.compass-point-east { right: -2%; top: 50%; transform: translateY(-50%); }
.compass-point-east:hover,
.compass-point-east.active { transform: translateY(-50%) translateX(4px); }
.compass-point-south { bottom: 0; left: 50%; transform: translateX(-50%); }
.compass-point-south:hover,
.compass-point-south.active { transform: translateX(-50%) translateY(4px); }
.compass-point-west { left: -2%; top: 50%; transform: translateY(-50%); }
.compass-point-west:hover,
.compass-point-west.active { transform: translateY(-50%) translateX(-4px); }
.compass-point-number {
  display: block;
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  margin-bottom: 5px;
}
.compass-point-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  background: var(--navy);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.compass-point.active .compass-point-icon {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}
.compass-point-icon svg { width: 17px; height: 17px; stroke-width: 1.7; }
.compass-point-label {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.84rem;
  margin-top: 7px;
}
.value-detail {
  position: relative;
  min-height: 520px;
  padding-top: 44px;
}
.value-panel[hidden] { display: none; }
.value-panel.active { animation: valuePanelIn 0.45s cubic-bezier(0.23, 1, 0.32, 1) both; }
@keyframes valuePanelIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .compass-needle { transition: none; }
  .value-panel.active { animation: none; }
  .service-detail .fade-left,
  .service-detail .fade-right,
  .cta-banner .fade-left,
  .cta-banner .fade-right,
  .cta-image {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.value-panel-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold);
}
.value-panel-meta span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.value-panel-meta svg { width: 24px; height: 24px; stroke-width: 1.5; }
.value-panel h3 {
  color: var(--white);
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  letter-spacing: -0.04em;
  margin-top: 40px;
}
.value-panel > p {
  color: rgba(255,255,255,0.6);
  font-size: 1.075rem;
  line-height: 1.8;
  margin-top: 24px;
}
.value-panel-proof {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 52px;
}
.value-panel-proof span {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.value-panel-proof strong {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.35;
}
/* ═══ SERVICE DETAIL (enhanced) ═══ */
.service-detail-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-detail-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}
.service-detail-image {
  overflow: hidden;
}
.service-detail-image img {
  width: 100%;
  display: block;
  filter: grayscale(15%) contrast(1.02);
}
.service-detail-list {
  list-style: none;
  margin: 24px 0 32px;
}
.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.025rem;
  color: var(--text-body);
  padding: 8px 0;
}
.service-detail-list li::before { display: none; }
.service-detail-list svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.service-detail h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 20px; }
.service-detail h3 { font-size: 1.1rem; margin-top: 28px; margin-bottom: 16px; color: var(--text-dark); }
.service-detail .btn-primary { margin-top: 8px; }
.service-detail.reverse .service-detail-image { order: 1; }
.service-detail.reverse .service-detail-content { order: 2; }

.section-offwhite { background: var(--cream); }

/* ═══ BLOG CARD META ═══ */
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.blog-card-category {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ═══ NEWSLETTER ═══ */
.newsletter-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.newsletter-text h2 { margin-bottom: 10px; }
.newsletter-text p {
  color: rgba(255,255,255,0.5);
  font-size: 1.045rem;
}
.newsletter-form {
  display: flex;
  gap: 0;
  min-width: 380px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  border-right: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.25); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form .btn-primary { white-space: nowrap; }

/* ═══ CONTACT LAYOUT ═══ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p {
  font-size: 1.045rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--border-light);
}
.contact-info-item:last-child { border-bottom: 1px solid var(--border-light); }
.contact-info-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-info-item h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-info-item p { font-size: 1.025rem; }
.contact-info-item a { color: var(--text-body); transition: color 0.2s ease; }
.contact-info-item a:hover { color: var(--gold); }

.contact-form-wrap h2 { margin-bottom: 12px; }
.contact-form-wrap > p {
  font-size: 1.025rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.contact-form .form-group label {
  color: var(--text-muted);
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder { color: var(--text-muted); }
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus { border-color: var(--gold); }
.contact-form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7084' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  background-color: var(--white);
}
.contact-form .form-group select option { background: var(--white); color: var(--text-dark); }

.btn-full { width: 100%; text-align: center; }

.contact-form-wrap .form-success {
  text-align: center;
  padding: 60px 20px;
}
.contact-form-wrap .form-success h3 { color: var(--text-dark); margin-bottom: 12px; }
.contact-form-wrap .form-success p { color: var(--text-muted); font-size: 1.025rem; }


/* ═══ HERO GLOBE (larger) ═══ */
.globe-fixed .globe-sphere {
  width: 560px;
  height: 560px;
  box-shadow:
    0 0 39px rgba(255,255,255,0.15),
    -10px 0 15px #c3f4ff inset,
    29px 4px 49px #000 inset,
    -48px -4px 67px rgba(195,244,255,0.5) inset,
    560px 0 88px rgba(0,0,0,0.4) inset,
    340px 0 76px rgba(0,0,0,0.6) inset;
}

/* ═══ BUTTON ARROW EFFECT ═══ */
.btn-primary,
.btn-outline,
.btn-dark {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.has-arrow { padding: 14px 56px 14px 28px; }
.btn-text {
  position: relative;
  z-index: 1;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.has-arrow:hover .btn-text { opacity: 0; }
.btn-arrow {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn-primary .btn-arrow { background: rgba(0,0,0,0.12); color: var(--navy); }
.btn-outline .btn-arrow { background: rgba(255,255,255,0.1); color: var(--white); }
.btn-dark .btn-arrow { background: rgba(255,255,255,0.1); color: var(--white); }
.has-arrow:hover .btn-arrow { width: calc(100% - 8px); }
.btn-outline:hover .btn-arrow { color: var(--gold); }
.btn-arrow svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-full { width: 100%; display: flex; justify-content: center; text-align: center; }

/* ═══ HERO LOAD ANIMATION ═══ */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .hero-label {
  opacity: 0;
  animation: heroReveal 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}
.hero h1 {
  opacity: 0;
  animation: heroReveal 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
}
.hero p {
  opacity: 0;
  animation: heroReveal 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.55s forwards;
}
.hero .hero-actions {
  opacity: 0;
  animation: heroReveal 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.7s forwards;
}

/* ═══ NAV ANIMATION ═══ */
@keyframes navFadeIn { from { opacity: 0; } to { opacity: 1; } }
.navbar { opacity: 0; animation: navFadeIn 0.5s ease 0.1s forwards; }

/* ═══ STAGGER DELAYS ═══ */
.stagger > .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger > .fade-up:nth-child(2) { transition-delay: 0.12s; }
.stagger > .fade-up:nth-child(3) { transition-delay: 0.24s; }
.stagger > .fade-up:nth-child(4) { transition-delay: 0.36s; }
.stagger > .fade-up:nth-child(5) { transition-delay: 0.48s; }
.stagger > .fade-up:nth-child(6) { transition-delay: 0.6s; }

/* ═══ MODERN EFFECTS ═══ */
.hover-lift {
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
}
.service-card {
  transition: background 0.3s ease, transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
}
.blog-card {
  transition: border-color 0.3s ease, transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
}
.img-hover-zoom { overflow: hidden; }
.img-hover-zoom img { transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1); }
.img-hover-zoom:hover img { transform: scale(1.05); }

.section-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.section-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  animation: shimmerLine 3s ease infinite;
}
@keyframes shimmerLine { 0% { left: -100%; } 100% { left: 200%; } }

/* Fade from sides */
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }
.fade-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-scale.visible { opacity: 1; transform: scale(1); }

/* ═══ ABOUT HOME ═══ */
.about-home {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.about-home-image {
  position: relative;
  overflow: hidden;
}
.about-home-image img {
  width: 100%;
  display: block;
  filter: grayscale(15%) contrast(1.02);
}
.about-home-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.about-home-text h2 { margin-bottom: 20px; }
.about-home-text p {
  font-size: 1.075rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-home-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.about-home-stat h4 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}
.about-home-stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ═══ BLOG HOME ═══ */
.blog-home-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.blog-home-header .section-header { margin-bottom: 0; }
.blog-home-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
  white-space: nowrap;
}
.blog-home-link:hover { gap: 14px; }
.blog-home-link svg { width: 16px; height: 16px; }

/* ═══ FAQ ACCORDION ═══ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-item {
  border: 1px solid var(--border-light);
  transition: border-color 0.3s ease;
  align-self: start;
}
.faq-item.active { border-color: var(--gold); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-serif);
  font-size: 1.175rem;
  color: var(--text-dark);
  font-weight: 400;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.25s ease;
}
.faq-question:hover { color: var(--gold); }
.faq-question svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.faq-item.active .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 1.025rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══ FOOTER FIX ═══ */
.footer-col li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}


/* ═══ SCROLL ANIMATIONS ═══ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }


/* ═══ ARTICLE PAGE ═══ */
.article-header {
  background: var(--navy);
  padding: 150px 0 56px;
  position: relative;
  overflow: hidden;
}
.article-header .container { position: relative; z-index: 2; }
.article-header-inner { max-width: 780px; }
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.article-breadcrumb a { color: var(--gold); }
.article-breadcrumb a:hover { color: var(--gold-hover); }
.article-breadcrumb svg { width: 13px; height: 13px; }
.article-header h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  margin-bottom: 24px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.article-meta .article-category {
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.article-meta-sep { color: rgba(255,255,255,0.2); }

.article-hero {
  max-width: 980px;
  margin: -40px auto 0;
  position: relative;
  z-index: 3;
  padding: 0 24px;
}
.article-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  filter: grayscale(18%) contrast(1.02);
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
}
.article-lead {
  font-size: 1.225rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 32px;
}
.article-body p {
  font-size: 1.125rem;
  line-height: 1.85;
  margin-bottom: 22px;
}
.article-body h2 {
  font-size: 1.5rem;
  margin: 48px 0 18px;
}
.article-body h3 {
  font-size: 1.15rem;
  margin: 34px 0 14px;
}
.article-body ul, .article-body ol {
  margin: 0 0 24px 0;
  padding-left: 0;
  list-style: none;
}
.article-body ul li {
  position: relative;
  padding-left: 22px;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.article-body ol { counter-reset: article-ol; }
.article-body ol li {
  counter-increment: article-ol;
  position: relative;
  padding-left: 34px;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.article-body ol li::before {
  content: counter(article-ol);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}
.article-body strong { color: var(--text-dark); font-weight: 600; }
.article-body a:not(.btn-primary) {
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  transition: color 0.2s ease;
}
.article-body a:not(.btn-primary):hover { color: var(--gold); }

.article-quote {
  margin: 40px 0;
  padding: 4px 0 4px 28px;
  border-left: 2px solid var(--gold);
}
.article-quote p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--navy);
  margin: 0;
}

.article-note {
  margin: 48px 0 0;
  padding: 26px 28px;
  background: var(--cream);
  border-left: 2px solid var(--gold);
}
.article-note h4 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.article-note p {
  font-size: 0.975rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.article-author img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.article-author-name {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.article-author-role {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.article-author p {
  font-size: 0.955rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.article-nav {
  max-width: 720px;
  margin: 40px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
}
.article-back svg { width: 14px; height: 14px; }
.article-back:hover { color: var(--gold-hover); }

.related-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
}
.related-header h2 { font-size: 1.6rem; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Whole-card link behaviour for blog cards */
.blog-card { display: flex; flex-direction: column; }
.blog-card-body { display: flex; flex-direction: column; flex: 1; }
.blog-card-body p { flex: 1; }
.blog-card h3 a { transition: color 0.25s ease; }
.blog-card:hover h3 a { color: var(--gold); }
.blog-card-link i, .blog-card-link svg { transition: transform 0.25s ease; }
.blog-card:hover .blog-card-link i, .blog-card:hover .blog-card-link svg { transform: translateX(4px); }


/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .values-experience { grid-template-columns: minmax(430px, 1fr) minmax(300px, 0.85fr); gap: 52px; }
  .cta-banner-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 48px;
  }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .leader { grid-template-columns: 1fr; gap: 40px; }
  .leader-portrait { position: static; max-width: 420px; }
  .about-home { grid-template-columns: 1fr; gap: 40px; }
  .about-sidebar {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border-light);
    padding-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
  }
  .about-stat { border-bottom: none; padding: 16px 0; }
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail.reverse .service-detail-content { order: 1; }
  .service-detail.reverse .service-detail-image { order: 2; }
  .service-detail-image { max-height: 320px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .newsletter-block { flex-direction: column; text-align: center; }
  .newsletter-form { min-width: 0; width: 100%; max-width: 440px; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .page-header-globe { display: none; }
}

@media (max-width: 768px) {
  .values-section { padding: 88px 0; }
  .values-heading { grid-template-columns: 1fr; gap: 24px; padding-bottom: 36px; }
  .values-heading > p { max-width: 560px; }
  .values-experience { grid-template-columns: 1fr; gap: 54px; padding-top: 56px; }
  .values-compass { max-width: 590px; }
  .value-detail { min-height: 480px; padding: 36px 0 48px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-banner-copy { max-width: 620px; }
  .cta-banner h2 { max-width: 620px; }
  .cta-banner p { max-width: 580px; }
  .cta-image-grid { height: min(115vw, 520px); }
  .values-grid { grid-template-columns: 1fr; }
  .leader-stats { grid-template-columns: 1fr; gap: 20px; }
  .article-header { padding: 120px 0 48px; }
  .article-hero img { height: 240px; }
  .article-quote { padding-left: 20px; }
  .article-author { flex-direction: column; align-items: flex-start; gap: 16px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-header { flex-direction: column; gap: 12px; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 32px 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid var(--border-dark); }
  .modal { padding: 36px 28px; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-legal { flex-direction: column; text-align: center; }
  .section { padding: 72px 0; }
  .hero-content { padding: 100px 0 60px; }
  .about-image-banner { height: 220px; }
  .globe-fixed { display: none; }
  .blog-home-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .has-arrow { padding: 12px 48px 12px 24px; }
}

@media (max-width: 480px) {
  .values-section { padding: 72px 0; }
  .values-heading h2 { font-size: clamp(2.8rem, 15vw, 4rem); }
  .values-experience { gap: 40px; }
  .values-compass { width: 115%; margin-left: -7.5%; }
  .compass-point { width: 108px; }
  .compass-point-label { font-size: 0.7rem; }
  .compass-point-east { right: 0; }
  .compass-point-west { left: 0; }
  .compass-centre span { font-size: 0.65rem; }
  .compass-centre small { display: none; }
  .value-detail { min-height: 520px; }
  .value-panel h3 { font-size: clamp(2.5rem, 13vw, 3.5rem); }
  .value-panel-proof { grid-template-columns: 76px 1fr; }
  .cta-banner { padding: 64px 0; }
  .cta-banner-actions { align-items: stretch; flex-direction: column; }
  .cta-banner-actions a { justify-content: center; text-align: center; width: 100%; }
  .cta-image-grid {
    gap: 10px;
    grid-template-rows: repeat(2, minmax(130px, 1fr));
    height: 360px;
  }
  .pillars-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }
  .about-home-stats { grid-template-columns: 1fr; text-align: center; }
}
