@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cinzel+Decorative:wght@400;700;900&family=Spectral:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --ink: #ffffff;
  --panel: #f8fafc;
  --panel-2: #f1f5f9;
  --paper: #ffffff;
  --white: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.08);
  --gold: #b38e3d;
  --copper: #eb5e55;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --radius: 0px;
  --max: 1200px;
  --header: 80px;
  --dark-bg: #0f172a;
  --dark-text: #f8fafc;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: 'Spectral', serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 16%, rgba(214, 178, 94, 0.04), transparent 26%),
    radial-gradient(circle at 12% 42%, rgba(148, 163, 184, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.02) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
  background-size: auto, auto, 80px 80px, 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent 75%);
  z-index: 0;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--white);
}

img, canvas {
  display: block;
  max-width: 100%;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--ink);
}
::-webkit-scrollbar-thumb {
  background: var(--panel-2);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ================================================================
   TYPOGRAPHY — Cinzel for ALL headings + UI labels
   ================================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  color: var(--white);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

h1 {
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 500;
  max-width: 980px;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
}

h3 {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
}

h4 {
  font-size: 14px;
  font-weight: 600;
  font-family: 'Cinzel', serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

p {
  color: #334155;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.75;
  font-weight: 400;
}

.eyebrow {
  display: block;
  margin: 0 0 16px;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: gap 0.2s;
}

.text-link:hover {
  gap: 10px;
  color: var(--white);
}

.text-link::after {
  content: "→";
}


/* ================================================================
   HERO
   ================================================================ */

.hero {
  min-height: calc(100vh - var(--header));
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #000000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
}

.hero-bg .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
}

.hero-bg canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 1;
}

body[data-page="home"] .hero-bg .hero-photo {
  opacity: 0;
  visibility: hidden;
}

body[data-page="home"] .hero-bg canvas {
  filter: contrast(1.1) saturate(1.2);
}

body[data-page="home"] .hero::after {
  display: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  z-index: 1;
  background: linear-gradient(to top, #000000 10%, transparent 100%);
  pointer-events: none;
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  margin-bottom: 24px;
  text-align: center;
  max-width: 860px;
  color: #ffffff;
}

.hero-content .eyebrow {
  text-align: center;
  margin-bottom: 20px;
}

.hero-lede {
  max-width: 680px;
  text-align: center;
  font-size: clamp(16px, 1.8vw, 19px);
  color: #94a3b8;
  margin-bottom: 8px;
  font-weight: 400;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  justify-content: center;
}

/* ================================================================
   HEADER BLENDING (HOME)
   ================================================================ */

body[data-page="home"] .limuria-header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}

body[data-page="home"] .site-header {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body[data-page="home"] .menu-toggle {
  border-right-color: rgba(255, 255, 255, 0.1) !important;
}

body[data-page="home"] .menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
}

body[data-page="home"] .inline-nav-item {
  color: #ffffff !important;
}

body[data-page="home"] .inline-nav-item:hover {
  color: #ffc20e !important;
}

body[data-page="home"] .menu-toggle span {
  background-color: #ffffff !important;
}

body[data-page="home"] .brand-logo {
  /* Removed inversion to show original professional colors */
}

body[data-page="home"] .hero {
  min-height: 100vh;
}

body[data-page="home"] .inline-nav-item.has-dropdown::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5' fill='none'%3E%3Cpath d='M1 1l3 3 3-3' stroke='%23ffffff' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

/* ================================================================
   BUTTONS
   ================================================================ */

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.22s ease;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
}

.button.primary:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 20px rgba(214, 178, 94, 0.2);
}

.button.secondary {
  background: transparent;
  border-color: rgba(214, 178, 94, 0.4);
  color: var(--gold);
}

.button.secondary:hover {
  background: rgba(214, 178, 94, 0.08);
  border-color: var(--gold);
  color: var(--white);
}

.button.compact {
  min-height: 38px;
  padding: 8px 18px;
  font-size: 9px;
}

/* ================================================================
   LAYOUT UTILITIES
   ================================================================ */

.section {
  padding: clamp(60px, 9vw, 110px) 0;
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.section-wide {
  width: min(1400px, calc(100% - 48px));
  margin-inline: auto;
}

.page-hero {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  padding: clamp(90px, 12vw, 150px) 0 50px;
}

.page-hero[data-hero] {
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: clamp(140px, 18vw, 220px) clamp(24px, 4vw, 56px) clamp(80px, 10vw, 120px);
  overflow: hidden;
}

.page-hero[data-hero]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  z-index: 0;
}

.page-hero[data-hero]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.55) 0%, var(--ink) 92%);
  z-index: 0;
}

.page-hero[data-hero] > * {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  margin-bottom: 20px;
}

.section-heading {
  margin-bottom: 40px;
}

.row-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

/* ================================================================
   GRIDS — NO BOXES, clean lines only
   ================================================================ */

.feature-grid {
  display: grid;
  gap: 0;
}

.feature-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.feature-card {
  padding: 36px 32px;
  border-left: 1px solid var(--line);
  background: transparent;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.feature-card:has(.card-image) {
  padding: 0 0 36px;
}

.feature-card:has(.card-image) > :not(.card-image) {
  padding-left: 32px;
  padding-right: 32px;
}

.feature-card:has(.card-image) > .card-kicker {
  padding-top: 28px;
}

.feature-card .card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s ease, opacity 0.3s;
}

.framework-grid .feature-card .card-image {
  aspect-ratio: 16 / 10;
  object-position: center top;
}

.feature-card:hover .card-image {
  transform: scale(1.03);
  opacity: 0.92;
}

.feature-card:first-child {
  border-left: none;
}

.feature-card:hover {
  border-color: rgba(214, 178, 94, 0.3);
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 18px;
  color: var(--white);
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 400;
}

.card-kicker {
  display: block;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.content-card {
  padding: 32px 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  background: transparent;
  overflow: hidden;
}

.content-card:has(.card-thumb),
.content-card:has(.card-image) {
  padding: 0 0 32px;
}

.content-card:has(.card-thumb) > :not(.card-thumb):not(.card-image),
.content-card:has(.card-image) > :not(.card-thumb):not(.card-image) {
  padding-left: 28px;
  padding-right: 28px;
}

.content-card:has(.card-thumb) > .content-meta,
.content-card:has(.card-image) > .content-meta {
  padding-top: 24px;
}

.content-card .card-thumb,
.content-card .card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s ease, opacity 0.3s;
}

.content-card:hover .card-thumb,
.content-card:hover .card-image {
  transform: scale(1.03);
  opacity: 0.92;
}

.content-card:nth-child(3n+1) {
  border-left: none;
}

.content-card .content-meta {
  display: block;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.content-card h3 {
  font-family: 'Spectral', serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--white);
  line-height: 1.4;
  font-weight: 600;
}

.content-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.content-card .button {
  margin-top: 20px;
  width: max-content;
}

/* ================================================================
   SPLIT SECTION
   ================================================================ */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.section-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.split-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-visual .content-card {
  border-top: 1px solid var(--line);
  border-left: none;
}

/* ================================================================
   STAT GRID — No boxes
   ================================================================ */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.stat-grid > div {
  padding: 28px;
  border-top: 1px solid var(--line);
}

.stat-grid > div:nth-child(odd) {
  border-left: none;
}

.stat-grid strong {
  display: block;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-grid span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* ================================================================
   METHODOLOGY STEPS
   ================================================================ */

.method-stack {
  background: transparent;
  border-left: 1px solid var(--line);
  padding: 0 0 0 28px;
}

.method-step {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s, padding-left 0.2s;
  padding: 0 4px;
}

.method-step:last-child {
  border-bottom: none;
}

.method-step:hover,
.method-step.active {
  color: var(--gold);
  padding-left: 8px;
}

/* ================================================================
   TIMELINE
   ================================================================ */

.timeline {
  margin: 0;
  padding-left: 32px;
  list-style: none;
  counter-reset: timeline;
}

.timeline li {
  position: relative;
  margin-bottom: 24px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.timeline li::before {
  counter-increment: timeline;
  content: "0" counter(timeline);
  position: absolute;
  left: -40px;
  top: 0;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1px;
}

.timeline li:last-child {
  margin-bottom: 0;
}

.timeline strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.timeline span {
  font-size: 13px;
  color: var(--muted);
}

/* ================================================================
   CTA BAND — Minimal
   ================================================================ */

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: 48px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(50px, 8vw, 90px) 0;
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

/* ================================================================
   FORMS — clean, no box
   ================================================================ */

.lead-form {
  display: grid;
  gap: 16px;
  background: transparent;
}

.lead-form.wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lead-form .full,
.lead-form button,
.lead-form .form-status {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: none;
  border-bottom: 1px solid rgba(214, 178, 94, 0.2);
  background: transparent;
  color: var(--white);
  padding: 10px 0;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

select option {
  background: #050505;
  color: var(--white);
}

textarea {
  resize: vertical;
  min-height: 120px;
  padding: 10px 0;
}

.form-status {
  min-height: 22px;
  color: var(--gold);
  font-size: 13px;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.5px;
}

/* ================================================================
   FILTERS
   ================================================================ */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter {
  min-height: 40px;
  border: 1px solid rgba(214, 178, 94, 0.2);
  background: rgba(255, 255, 255, 0.01);
  color: var(--muted);
  padding: 8px 24px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.22s ease;
}

.filter:hover,
.filter.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(214, 178, 94, 0.06);
}

/* ================================================================
   INTRO BAND
   ================================================================ */

.intro-band {
  border-top: 1px solid var(--line);
}

/* ================================================================
   CONTACT CARD
   ================================================================ */

.contact-card {
  padding: 0;
  background: transparent;
}

.contact-card h2 {
  font-size: 24px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-card p {
  margin-bottom: 14px;
  font-size: 14px;
}

.contact-card strong {
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ================================================================
   FOOTER — McKinsey-inspired, expanded
   ================================================================ */

.site-footer {
  width: 100%;
  background: #030303;
  border-top: 1px solid rgba(214, 178, 94, 0.15);
  margin-top: 0;
  overflow: hidden;
}

.footer-main {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 72px 0 48px;
}

.footer-brand {}

.footer-brand .brand-logo {
  width: 160px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer-brand {
  min-width: 0;
}

.footer-brand > p {
  display: none;
}

.footer-tagline {
  display: none;
}

.social-links {
  display: flex;
  gap: 0;
  margin-top: 16px;
}

.social-links a {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px 8px 0;
  margin-right: 14px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.social-links a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.footer-nav-group {}

.footer-nav-group h4 {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.footer-nav-group a {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
  letter-spacing: 0.3px;
}

.footer-nav-group a:hover {
  color: var(--white);
}

.footer-contact-block {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0 40px;
  clear: both;
  position: relative;
  z-index: 1;
}

.email-advisory {
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: var(--muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.email-advisory:hover {
  color: var(--white);
}

.footer-contact-item {
  min-width: 0;
  padding: 0 24px 0 0;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.footer-contact-item:last-child {
  border-right: none;
  padding-right: 0;
}

.footer-contact-item h5 {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.footer-contact-item p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-contact-item a {
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-subscribe {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.footer-subscribe h4 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-subscribe p {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

.footer-subscribe-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  border-bottom: 1px solid rgba(214, 178, 94, 0.25);
}

.footer-subscribe-form input {
  border: none;
  border-bottom: none;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  padding: 10px 0;
  min-height: 42px;
}

.footer-subscribe-form input::placeholder {
  color: rgba(138, 149, 165, 0.5);
}

.footer-subscribe-form button {
  background: transparent;
  border: none;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 0 0 16px;
  transition: color 0.2s;
}

.footer-subscribe-form button:hover {
  color: var(--white);
}

.footer-subscribe-select {
  margin-top: 12px;
}

.footer-subscribe-select label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
}

.footer-subscribe-select label input[type="radio"] {
  width: auto;
  min-height: auto;
  border: none;
  border-bottom: none;
  accent-color: var(--gold);
  cursor: pointer;
}

.footer-subscribe-options {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 24px 0;
}

.fineprint {
  color: rgba(138, 149, 165, 0.6);
  font-size: 11px;
  letter-spacing: 0.3px;
  flex: 1 1 240px;
  min-width: 0;
  max-width: 100%;
  line-height: 1.6;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: rgba(138, 149, 165, 0.5);
  font-size: 11px;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.legal-links a:hover {
  color: var(--muted);
}

/* ================================================================
   ANIMATIONS & REVEAL EFFECTS
   ================================================================ */

@keyframes limuria-rise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes limuria-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Base Reveal State */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.reveal-left { transform: translateX(-30px); }
.reveal.reveal-right { transform: translateX(30px); }
.reveal.reveal-simple { transform: none; }

/* Active Visible State */
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Staggered Delays (up to 10 items) */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

.hero-content {
  animation: limuria-rise 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ================================================================
   INTRO / WHAT WE DO section
   ================================================================ */

.what-we-do {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-dark {
  --ink: #0f172a;
  --white: #f8fafc;
  --muted: #94a3b8;
  --line: rgba(255, 255, 255, 0.1);
  background-color: var(--ink);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--white);
}

.section-dark p {
  color: var(--muted);
}

.section-dark .eyebrow,
.section-dark .card-kicker,
.section-dark .text-link {
  color: var(--gold);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1250px) {
 

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact-block {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-contact-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0 0 28px;
    margin-right: 0;
  }

  .footer-subscribe {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 860px) {
  .split,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-band {
    gap: 36px;
  }

  .feature-grid.four,
  .feature-grid.three {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    border-top: 1px solid var(--line);
    border-left: none;
  }

  .feature-card:first-child {
    border-top: 1px solid var(--line);
  }

  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-card:nth-child(3n+1) {
    border-left: 1px solid var(--line);
  }

  .content-card:nth-child(odd) {
    border-left: none;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .row-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --header: 68px;
  }



  .brand-logo {
    width: 128px;
    height: 38px;
  }

  .hero-content,
  .page-hero:not([data-hero]),
  .section,
  .cta-band,
  .footer-main,
  .footer-contact-block,
  .footer-subscribe,
  .footer-bottom {
    width: min(100% - 32px, var(--max));
  }

  .page-hero[data-hero] {
    padding-inline: 16px;
  }

  .page-hero[data-hero] > * {
    width: min(100% - 32px, var(--max));
  }

  .feature-grid.four,
  .feature-grid.three,
  .feature-grid.two {
    grid-template-columns: 1fr;
  }

  .feature-card {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .content-grid,
  .lead-form.wide {
    grid-template-columns: 1fr;
  }

  .content-card {
    border-left: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

.article-hero {
  position: relative;
  width: 100%;
  min-height: clamp(280px, 42vw, 480px);
  background-color: var(--ink);
  background-image: var(--article-cover);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.25) 0%,
    rgba(5, 5, 5, 0.72) 55%,
    var(--ink) 100%
  );
  z-index: 0;
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--line);
  z-index: 1;
}

.article-layout {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  padding-block: 0 80px;
}

.article-main {
  max-width: 720px;
  margin-inline: auto;
  margin-top: -72px;
  position: relative;
  z-index: 2;
}

.article-main:has(.pdf-viewer-panel) {
  max-width: min(1180px, calc(100% - 24px));
}

.article-header--pdf {
  margin-bottom: 16px;
  padding: 20px 24px 16px;
}

.article-header--pdf h1 {
  font-size: clamp(20px, 2.6vw, 28px);
  margin-bottom: 6px;
}

.article-body--pdf {
  margin: 0;
}

.article-body--pdf.prose {
  font-size: inherit;
  line-height: normal;
}

.article-layout:has(.pdf-viewer-panel) {
  padding-bottom: 40px;
}

.article-breadcrumb {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(170, 181, 196, 0.75);
  margin-bottom: 20px;
}

.article-breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.article-breadcrumb a:hover {
  text-decoration: underline;
}

.article-breadcrumb span[aria-hidden] {
  margin-inline: 8px;
  opacity: 0.5;
}

.article-header {
  margin-bottom: 32px;
  padding: 32px 36px 28px;
  background: rgba(248, 250, 252, 0.92);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.article-header .eyebrow {
  margin-bottom: 14px;
}

.article-header h1 {
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.25;
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.article-meta {
  font-size: 13px;
  color: var(--muted);
  font-family: 'Spectral', Georgia, serif;
  letter-spacing: 0.02em;
  line-height: 1.6;
  text-transform: none;
}

.article-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.article-stat {
  flex: 1 1 140px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(201, 169, 98, 0.04);
}

.article-stat strong {
  display: block;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 400;
}

.article-stat span {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.article-body.prose {
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.85;
  color: #334155;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.article-body.prose > p:first-of-type {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  text-transform: none;
}

.article-body.prose p {
  margin-bottom: 1.5em;
  text-align: left;
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  text-transform: none;
  letter-spacing: normal;
}

/* Insights list: sentence-style meta, not all-caps labels */
.content-card.insight-card .content-meta.insight-meta,
.content-card .insight-meta {
  font-family: 'Spectral', Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 400;
  color: var(--gold);
}

.content-card.insight-card h3 {
  font-family: 'Spectral', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.35;
}

.content-card.insight-card p {
  font-family: 'Spectral', Georgia, serif;
  text-transform: none;
  letter-spacing: normal;
}

.pdf-viewer-panel {
  margin-top: 0;
  border: 1px solid var(--line);
  background: #2b2f33;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
}

.pdf-viewer-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #34393e 0%, #2b2f33 100%);
  flex-shrink: 0;
}

.pdf-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  min-width: 44px;
  padding: 0 18px;
  border: 1px solid rgba(214, 178, 94, 0.35);
  background: rgba(214, 178, 94, 0.1);
  color: #f8fafc;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.pdf-nav-btn:hover:not(:disabled) {
  background: rgba(214, 178, 94, 0.22);
  border-color: var(--gold);
  color: #fff;
}

.pdf-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pdf-btn-next {
  background: rgba(214, 178, 94, 0.22);
  border-color: var(--gold);
}

.pdf-btn-next:hover:not(:disabled) {
  background: rgba(214, 178, 94, 0.35);
}

.pdf-nav-arrow {
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  font-family: Georgia, serif;
}

.pdf-page-indicator {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  min-width: 9rem;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Spectral', Georgia, serif;
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
}

.pdf-page-indicator strong {
  color: var(--gold);
  font-weight: 600;
  font-size: 16px;
}

.pdf-page-label,
.pdf-page-of {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.pdf-zoom-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
}

.pdf-zoom-group .pdf-nav-btn {
  min-width: 40px;
  padding: 0 12px;
  min-height: 38px;
  border-color: rgba(255, 255, 255, 0.16);
  background: transparent;
  letter-spacing: 0.04em;
}

.pdf-viewer-stage {
  position: relative;
  width: 100%;
  /* Tall stage so a full page can fit without an inner scrollbar */
  height: min(78vh, 900px);
  min-height: 560px;
  overflow: hidden;
  background: #3a3f44;
  padding: 0;
  flex: 1 1 auto;
}

.pdf-viewer-status {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Spectral', Georgia, serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  padding: 24px;
  text-transform: none;
  z-index: 1;
  pointer-events: none;
}

.pdf-viewer-status.is-error {
  color: #fbbf24;
  pointer-events: auto;
}

.pdf-viewer-status[hidden] {
  display: none !important;
}

.pdf-canvas-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden; /* default: full page fitted, no nested scroll */
  padding: 16px;
  box-sizing: border-box;
  background: #3a3f44;
}

.pdf-canvas-wrap.is-zoomed {
  overflow: auto;
  align-items: flex-start;
}

.pdf-page-canvas {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border: 0;
}

.pdf-native-wrap {
  width: 100%;
  height: 100%;
}

.pdf-native-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #3a3f44;
}

.article-layout:has(.pdf-viewer-panel) .article-footer {
  margin-top: 24px;
  padding-top: 18px;
}

@media (max-width: 768px) {
  .pdf-viewer-toolbar {
    gap: 8px;
    padding: 10px 12px;
  }

  .pdf-nav-btn {
    min-height: 40px;
    padding: 0 12px;
    font-size: 10px;
  }

  .pdf-viewer-stage {
    height: min(70vh, 720px);
    min-height: 420px;
  }

  .pdf-page-indicator {
    min-width: auto;
    order: -1;
    width: 100%;
  }
}

.article-body.prose p + p {
  margin-top: 0;
}

.article-section {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.article-section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.article-section-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.article-section h2 {
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 400;
  color: var(--text);
}

.article-highlights {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

.article-highlight {
  padding: 22px 24px;
  border-left: 2px solid var(--gold);
  background: rgba(15, 23, 42, 0.02);
}

.article-highlight h3 {
  font-family: 'Spectral', Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.article-highlight p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  font-family: 'Spectral', Georgia, serif;
  text-transform: none;
  letter-spacing: normal;
}

.article-lead {
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.article-key-points {
  margin-top: 48px;
  padding: 32px 36px;
  background: rgba(179, 142, 61, 0.06);
  border: 1px solid rgba(179, 142, 61, 0.2);
}

.article-key-points h2 {
  font-family: 'Spectral', Georgia, serif;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: 600;
}

.article-key-points ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-key-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  line-height: 1.65;
  font-size: 16px;
  font-family: 'Spectral', Georgia, serif;
  text-transform: none;
  letter-spacing: normal;
  color: #334155;
}

.article-key-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.article-footer {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .article-main {
    margin-top: -48px;
  }

  .article-header {
    padding: 24px 20px;
  }

  .article-key-points {
    padding: 24px 20px;
  }
}


/* ==========================================================================
   MCKINSEY STYLE FOOTER (SCOPED TO PREVENT GLOBAL CONFLICTS)
   ========================================================================== */

/* Container & Theme Setup */
.mck-footer-wrapper .site-footer {
  background-color: #ffffff !important;
  color: #000000 !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  padding: 60px 80px 40px 80px !important;
  box-sizing: border-box !important;
}

.mck-footer-wrapper .site-footer * {
  box-sizing: border-box !important;
}

/* Layout for Main Top Area */
.mck-footer-wrapper .footer-top {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  flex-wrap: wrap !important;
  gap: 40px !important;
}

.mck-footer-wrapper .footer-brand {
  flex: 1 1 100% !important;
  margin-bottom: 20px !important;
}

.mck-footer-wrapper .footer-brand .brand-logo {
  max-height: 45px !important;
  height: auto !important;
  display: block !important;
}

/* 2-Column Minimal Sitemap */
.mck-footer-wrapper .footer-links-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(140px, auto)) !important;
  row-gap: 24px !important;
  column-gap: 60px !important;
  flex: 1 1 auto !important;
}

.mck-footer-wrapper .footer-links-grid a {
  color: #000000 !important;
  text-decoration: none !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  transition: color 0.2s ease !important;
  display: inline-block !important;
}

.mck-footer-wrapper .footer-links-grid a:hover {
  color: #005a9c !important;
}

/* Subscribe Section */
.mck-footer-wrapper .footer-subscribe {
  max-width: 380px !important;
  flex: 1 1 320px !important;
}

.mck-footer-wrapper .footer-subscribe h4 {
  margin: 0 0 10px 0 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #000000 !important;
}

.mck-footer-wrapper .footer-subscribe p {
  margin: 0 0 16px 0 !important;
  font-size: 14px !important;
  color: #666666 !important;
  line-height: 1.4 !important;
}

/* Form Layout */
.mck-footer-wrapper .footer-subscribe-form {
  display: flex !important;
  width: 100% !important;
  margin: 0 !important;
}

.mck-footer-wrapper .footer-subscribe-form input[type="email"] {
  flex: 1 !important;
  padding: 12px 16px !important;
  border: 1px solid #000000 !important;
  font-size: 15px !important;
  outline: none !important;
  background: #ffffff !important;
  color: #000000 !important;
  height: 48px !important;
}

.mck-footer-wrapper .footer-subscribe-form button {
  background-color: #2251ff !important; /* McKinsey Blue */
  color: #ffffff !important;
  border: none !important;
  padding: 0 28px !important;
  font-size: 14px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  height: 48px !important;
  transition: background-color 0.2s !important;
}

.mck-footer-wrapper .footer-subscribe-form button:hover {
  background-color: #193ec8 !important;
}

/* Divider Line */
.mck-footer-wrapper .footer-divider {
  border: 0 !important;
  border-top: 1px solid #dddddd !important;
  margin: 50px 0 25px 0 !important;
  width: 100% !important;
}

/* Bottom Bar */
.mck-footer-wrapper .footer-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  width: 100% !important;
}

/* Social Circle Icons */
.mck-footer-wrapper .social-links {
  display: flex !important;
  gap: 12px !important;
}

.mck-footer-wrapper .social-icon {
  width: 32px !important;
  height: 32px !important;
  background-color: #000000 !important;
  border-radius: 50% !important;
  display: inline-block !important;
  transition: opacity 0.2s !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 16px !important; 
}

.mck-footer-wrapper .social-icon:hover {
  opacity: 0.8 !important;
}

/* Legal Links styling */
.mck-footer-wrapper .legal-links {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 15px 24px !important;
  font-size: 12px !important;
}

.mck-footer-wrapper .legal-links a {
  color: #000000 !important;
  text-decoration: none !important;
}

.mck-footer-wrapper .legal-links a:hover {
  text-decoration: underline !important;
}

.mck-footer-wrapper .fineprint {
  color: #666666 !important;
}

/* Responsive Handling */
@media (max-width: 768px) {
  .mck-footer-wrapper .site-footer {
    padding: 40px 24px 30px 24px !important;
  }
  .mck-footer-wrapper .footer-top {
    flex-direction: column !important;
  }
  .mck-footer-wrapper .footer-bottom {
    flex-direction: column-reverse !important;
    align-items: flex-start !important;
  }
}
