/* ============================================
   ROBERT BEUGRÉ MAMBÉ — PRIME MINISTER PORTAL
   Design: État Moderne — Editorial Executive
   ============================================ */

:root {
  --ink: #0a1512;
  --ink-2: #16231f;
  --bone: #f5f1e8;
  --paper: #faf7ef;
  --ivory: #ffffff;
  --emerald: #0a3d2e;
  --emerald-2: #114b39;
  --emerald-soft: #1a5f48;
  --orange: #ea6a2a;
  --orange-2: #d95a1a;
  --amber: #c99147;
  --gold: #b58a4b;
  --navy: #0b1f36;
  --ash: #5c5a54;
  --ash-2: #8a8780;
  --line: rgba(10, 21, 18, 0.12);
  --line-2: rgba(245, 241, 232, 0.12);

  --serif: 'Playfair Display', 'Merriweather', Georgia, serif;
  --serif-2: 'DM Serif Display', 'Playfair Display', serif;
  --sans: 'Inter', 'Manrope', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  --ease: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: all 0.3s var(--ease); }

::selection { background: var(--emerald); color: var(--bone); }

/* ============ LOADER ============ */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-crest {
  width: 72px; height: 72px;
  border: 1px solid rgba(245,241,232,0.25);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ PASSCODE GATE ============ */
.gate {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background: #061711;
  color: var(--bone);
  overflow: hidden;
  font-family: var(--sans);
}
.gate-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(234,106,42,0.14), transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(17,75,57,0.55), transparent 60%),
    linear-gradient(180deg, #061711 0%, #0a1f18 60%, #061711 100%);
}
.gate-skyline {
  position: absolute; inset: 0; z-index: 1;
  background-image: url('../images/thumb_1260x800_6970ca4fa27c9_A0Oipxn7bm.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: grayscale(0.2) contrast(1.05);
  mix-blend-mode: luminosity;
}
.gate-grid {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(to right, rgba(245,241,232,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245,241,232,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.gate-ribbon {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald) 0%, var(--emerald) 33%, var(--ivory) 33%, var(--ivory) 66%, var(--orange) 66%, var(--orange) 100%);
}
.gate-shell {
  position: relative; z-index: 5;
  width: min(580px, 92vw);
  padding: 64px 56px;
  background: rgba(6,23,17,0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(245,241,232,0.12);
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}
.gate-shell::before {
  content: ''; position: absolute; top: -1px; left: -1px; right: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.gate-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(245,241,232,0.5);
  margin-bottom: 40px;
}
.gate-meta span::before { content: '·'; margin: 0 10px; color: var(--orange); }
.gate-meta span:first-child::before { display: none; }

.gate-crest {
  width: 56px; height: 56px; margin: 0 auto 28px;
  position: relative;
}
.gate-crest svg { width: 100%; height: 100%; }

.gate h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 12px;
}
.gate h1 em {
  font-style: italic; color: var(--orange);
}
.gate-sub {
  text-align: center;
  font-size: 13px;
  color: rgba(245,241,232,0.6);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
.gate-form { margin-top: 12px; }
.gate-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 14px;
  text-align: center;
}
.gate-input-wrap {
  position: relative;
  border-bottom: 1px solid rgba(245,241,232,0.25);
  transition: border-color 0.3s var(--ease);
}
.gate-input-wrap.active { border-bottom-color: var(--orange); }
.gate-input-wrap.shake { animation: shake 0.5s var(--ease); border-bottom-color: #ef4444; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}
.gate-input {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 14px 4px 18px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--bone);
  text-align: center;
  letter-spacing: 0.2em;
  outline: none;
}
.gate-input::placeholder { color: rgba(245,241,232,0.25); letter-spacing: 0.1em; font-size: 16px; }

.gate-submit {
  margin-top: 36px;
  width: 100%;
  padding: 18px;
  background: var(--orange);
  color: var(--ink);
  border: 0;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.gate-submit:hover { background: var(--bone); color: var(--emerald); }
.gate-submit .arrow { margin-left: 10px; display: inline-block; transition: transform 0.3s var(--ease); }
.gate-submit:hover .arrow { transform: translateX(6px); }

.gate-error {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #ef6a6a;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.3s var(--ease);
}
.gate-error.show { opacity: 1; transform: translateY(0); }

.gate-foot {
  margin-top: 44px;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.35);
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 48px;
  background: rgba(250,247,239,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  padding: 12px 48px;
  background: rgba(250,247,239,0.94);
}
.nav-inner {
  max-width: 1480px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  flex-shrink: 0;
}
.brand-crest {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--emerald);
  color: var(--bone);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  position: relative;
}
.brand-crest::after {
  content: ''; position: absolute; top: 4px; right: -4px; bottom: 4px; width: 2px;
  background: var(--orange);
}
.brand-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.brand-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 3px;
}

.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.nav-links a {
  position: relative;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.nav-links a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 1px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--emerald); }

.nav-cta {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  background: var(--ink);
  color: var(--bone);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--orange); color: var(--ink); }
.nav-cta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
.nav-cta:hover .dot { background: var(--ink); }
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  background: var(--ink); color: var(--bone);
  align-items: center; justify-content: center;
  cursor: pointer;
  border: 0;
}
.nav-burger span { display: block; width: 18px; height: 1px; background: currentColor; position: relative; }
.nav-burger span::before,
.nav-burger span::after { content: ''; position: absolute; left: 0; width: 18px; height: 1px; background: currentColor; transition: transform 0.3s; }
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ink); color: var(--bone);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 32px 32px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 32px;
  border-bottom: 1px solid var(--line-2);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--orange); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 0;
}
.btn-primary { background: var(--ink); color: var(--bone); }
.btn-primary:hover { background: var(--orange); color: var(--ink); }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--bone); }
.btn-light { background: var(--bone); color: var(--ink); }
.btn-light:hover { background: var(--orange); color: var(--ink); }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(6px); }

/* ============ UTILS ============ */
.container { max-width: 1480px; margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.container-read { max-width: 780px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--emerald);
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: currentColor;
}
.eyebrow-light { color: var(--orange); }
.eyebrow-bone { color: rgba(245,241,232,0.7); }

.h-display {
  font-family: var(--serif);
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.h-display em { font-style: italic; color: var(--emerald); }
.h-display-light em { color: var(--orange); }

.h-section {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.h-section em { font-style: italic; }

.h-card {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ash);
  font-weight: 400;
}

.p-body { font-size: 16px; line-height: 1.75; color: var(--ash); }

.rule {
  height: 1px; background: var(--line); width: 100%;
}
.rule-light { background: var(--line-2); }

/* ============ HERO (HOME) ============ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 140px 48px 60px;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: brightness(0.55) contrast(1.05);
}
.page-head-bg img {
  object-position: center 20%;
}
.news-card-img img,
.news-art-img img,
.news-featured-img img {
  object-position: center 22%;
}
.infra-card img { object-position: center 20%; }
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,21,18,0.55) 0%, rgba(10,21,18,0.2) 40%, rgba(10,21,18,0.9) 100%);
}
.hero-stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 3;
  background: linear-gradient(90deg, var(--emerald) 33%, var(--bone) 33% 66%, var(--orange) 66%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1480px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: end;
}
.hero-main .eyebrow {
  color: var(--orange);
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}
.hero h1 em { font-style: italic; color: var(--orange); }
.hero-tagline {
  font-size: 18px;
  max-width: 480px;
  color: rgba(245,241,232,0.75);
  margin-bottom: 44px;
  line-height: 1.5;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn-primary { background: var(--orange); color: var(--ink); }
.hero-actions .btn-primary:hover { background: var(--bone); }
.hero-actions .btn-outline { color: var(--bone); border-color: rgba(245,241,232,0.35); }
.hero-actions .btn-outline:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

.hero-card {
  border: 1px solid rgba(245,241,232,0.18);
  background: rgba(10,21,18,0.45);
  backdrop-filter: blur(14px);
  padding: 32px;
}
.hero-card-label {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.hero-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 18px;
}
.hero-card-meta {
  display: flex; justify-content: space-between; gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(245,241,232,0.15);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,241,232,0.6);
}

.hero-ticker {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: var(--emerald);
  color: var(--bone);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(245,241,232,0.1);
}
.ticker-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ticker-track span::before {
  content: '◆'; color: var(--orange); margin-right: 20px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ PILLARS ============ */
.section { padding: 140px 0; position: relative; }
.section-dark { background: var(--ink); color: var(--bone); }
.section-emerald { background: var(--emerald); color: var(--bone); }
.section-bone { background: var(--bone); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head-meta .eyebrow { margin-bottom: 20px; }
.section-head-meta-number {
  font-family: var(--serif);
  font-size: 56px;
  font-style: italic;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 18px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.pillar {
  grid-column: span 4;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 40px;
  position: relative;
  transition: background 0.4s var(--ease);
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.pillar:hover { background: var(--ink); color: var(--bone); }
.pillar:hover .pillar-num { color: var(--orange); }
.pillar:hover .pillar-arrow { transform: translate(6px, -6px); border-color: var(--orange); color: var(--orange); }
.pillar-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ash-2);
  margin-bottom: 48px;
  transition: color 0.3s;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 500;
}
.pillar p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ash);
  transition: color 0.4s;
  margin-bottom: 32px;
}
.pillar:hover p { color: rgba(245,241,232,0.75); }
.pillar-arrow {
  width: 44px; height: 44px;
  border: 1px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease);
  align-self: flex-start;
}

/* ============ METRICS ============ */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245,241,232,0.15);
}
.metric {
  padding: 60px 40px;
  border-right: 1px solid rgba(245,241,232,0.15);
  position: relative;
}
.metric:last-child { border-right: 0; }
.metric-number {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  font-weight: 400;
  color: var(--orange);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.metric-number sup { font-size: 0.4em; margin-left: 4px; vertical-align: top; color: var(--bone); }
.metric-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.65);
  margin-bottom: 14px;
}
.metric-desc {
  font-size: 14px; line-height: 1.55;
  color: rgba(245,241,232,0.85);
}

/* ============ FEATURE SPLIT ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.split-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-2);
}
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 1.2s var(--ease);
}
.split-media:hover img { transform: scale(1.04); }
.split-media-tag {
  position: absolute; left: 24px; bottom: 24px;
  background: var(--bone); color: var(--ink);
  padding: 10px 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
}
.split-body .eyebrow { margin-bottom: 22px; }
.split-body h2 { margin-bottom: 28px; }
.split-body p { margin-bottom: 20px; }
.split-body .btn { margin-top: 24px; }

.signature-block {
  margin-top: 40px;
  padding: 28px 32px;
  border-left: 3px solid var(--orange);
  background: var(--bone);
}
.signature-block .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 16px;
}
.signature-block .cite {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
}

/* ============ NEWS PREVIEW ============ */
.news-preview {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.news-card {
  border-right: 1px solid var(--line);
  padding: 40px;
  display: flex; flex-direction: column;
  transition: background 0.4s var(--ease);
}
.news-card:last-child { border-right: 0; }
.news-card:hover { background: var(--ink); color: var(--bone); }
.news-card:hover .news-card-meta { color: var(--orange); }
.news-card:hover h3 { color: var(--bone); }
.news-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--ink-2);
}
.news-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.8s var(--ease);
}
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-meta {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 18px;
  transition: color 0.3s;
}
.news-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 500;
}
.news-card p {
  font-size: 14px; line-height: 1.6;
  color: var(--ash);
  margin-bottom: 24px;
  transition: color 0.3s;
}
.news-card:hover p { color: rgba(245,241,232,0.7); }
.news-card .read-more {
  margin-top: auto;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--orange);
}

/* ============ HIGHLIGHT STRIP ============ */
.strip {
  background: var(--ink);
  color: var(--bone);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.strip-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
}
.strip h2 { color: var(--bone); }
.strip h2 em { color: var(--orange); }
.strip-cta .btn { background: var(--orange); color: var(--ink); }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: 100px 0 40px;
  border-top: 1px solid rgba(245,241,232,0.1);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,241,232,0.1);
}
.footer-brand { max-width: 400px; }
.footer-brand .brand { margin-bottom: 28px; }
.footer-brand .brand-title { color: var(--bone); }
.footer-brand .brand-sub { color: rgba(245,241,232,0.5); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245,241,232,0.65);
  margin-bottom: 28px;
}
.footer-brand .footer-socials {
  display: flex; gap: 10px;
}
.footer-socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(245,241,232,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.footer-socials a:hover { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.footer-socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(245,241,232,0.75);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(245,241,232,0.55);
}
.footer-bottom .mid { text-align: center; }
.footer-bottom .right { text-align: right; }
.footer-bottom a { color: rgba(245,241,232,0.8); }
.footer-bottom a:hover { color: var(--orange); }
.footer-creaa {
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-creaa .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

/* ============ PAGE HEAD ============ */
.page-head {
  position: relative;
  padding: 180px 0 80px;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
}
.page-head::before {
  content: ''; position: absolute; top: 64px; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--emerald) 33%, var(--bone) 33% 66%, var(--orange) 66%);
}
.page-head-bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.22;
  filter: grayscale(0.3);
}
.page-head-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-head-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,21,18,0.7), rgba(10,21,18,0.95));
}
.page-head-inner {
  position: relative; z-index: 2;
}
.breadcrumbs {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,241,232,0.5);
  margin-bottom: 40px;
}
.breadcrumbs a { color: rgba(245,241,232,0.85); }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs span { color: rgba(245,241,232,0.35); }

.page-head h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.page-head h1 em { font-style: italic; color: var(--orange); }
.page-head .lede {
  max-width: 720px;
  color: rgba(245,241,232,0.72);
}

.page-head-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid rgba(245,241,232,0.15);
}
.page-head-stat { }
.page-head-stat .num {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}
.page-head-stat .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.65);
}

/* ============ ABOUT ============ */
.about-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ink-2);
  overflow: hidden;
}
.about-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-portrait-stamp {
  position: absolute; top: 24px; right: 24px;
  width: 96px; height: 96px;
  border: 1px solid rgba(245,241,232,0.5);
  border-radius: 50%;
  color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.15em;
  background: rgba(10,21,18,0.35);
  backdrop-filter: blur(8px);
}
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.about-fact {
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-fact .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 8px;
}
.about-fact .val {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}

.timeline {
  margin-top: 0;
  padding-top: 80px;
  border-top: 1px solid var(--line);
}
.timeline-item {
  display: grid;
  grid-template-columns: 200px 1fr 2fr;
  gap: 60px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding 0.4s;
}
.timeline-item:hover { padding: 40px 20px; background: rgba(10,61,46,0.03); }
.timeline-year {
  font-family: var(--serif);
  font-size: 48px;
  font-style: italic;
  color: var(--emerald);
  line-height: 1;
}
.timeline-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 500;
}
.timeline-body { color: var(--ash); font-size: 15px; line-height: 1.7; }

.philosophy {
  background: var(--bone);
  padding: 140px 0;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.philosophy-item {
  padding: 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 320px;
}
.philosophy-item .num {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--orange);
  margin-bottom: 32px;
}
.philosophy-item h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
}
.philosophy-item p { font-size: 14px; line-height: 1.7; color: var(--ash); }

/* ============ GOVERNANCE ============ */
.pillars-alt {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
}
.pillar-alt {
  grid-column: span 2;
  padding: 48px 36px;
  background: var(--bone);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  min-height: 380px;
  display: flex; flex-direction: column;
}
.pillar-alt:hover { background: var(--emerald); color: var(--bone); border-color: var(--emerald); transform: translateY(-4px); }
.pillar-alt:hover .ico { background: var(--orange); color: var(--ink); border-color: var(--orange); }
.pillar-alt:hover p { color: rgba(245,241,232,0.8); }
.pillar-alt .ico {
  width: 56px; height: 56px;
  border: 1px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s;
}
.pillar-alt .ico svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.pillar-alt h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 14px;
}
.pillar-alt p { font-size: 14px; line-height: 1.7; color: var(--ash); margin-bottom: 28px; }
.pillar-alt .pillar-alt-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.7;
}

.chart-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 80px;
  background: var(--bone);
  padding: 64px;
  border: 1px solid var(--line);
}
.chart-bars { display: flex; flex-direction: column; gap: 24px; }
.chart-row { }
.chart-row-top {
  display: flex; justify-content: space-between; margin-bottom: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
}
.chart-row-bar {
  height: 6px; background: rgba(10,21,18,0.08);
  position: relative; overflow: hidden;
}
.chart-row-bar::after {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0;
  width: var(--w, 60%);
  background: linear-gradient(90deg, var(--emerald), var(--orange));
}

/* ============ INFRASTRUCTURE ============ */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
.infra-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
  aspect-ratio: 4/5;
}
.infra-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  opacity: 0.7;
}
.infra-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,21,18,0.95));
}
.infra-card:hover img { transform: scale(1.08); opacity: 0.9; }
.infra-card-body {
  position: absolute; left: 32px; right: 32px; bottom: 32px; z-index: 2;
}
.infra-card-num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.3em; color: var(--orange);
  margin-bottom: 16px;
}
.infra-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
}
.infra-card p {
  font-size: 13px; line-height: 1.6;
  color: rgba(245,241,232,0.8);
}
.infra-card.large { grid-column: span 6; aspect-ratio: 16/11; }
.infra-card.med { grid-column: span 6; aspect-ratio: 16/11; }
.infra-card.small { grid-column: span 4; }

.metrics-infra {
  margin-top: 100px;
  background: var(--emerald);
  color: var(--bone);
  padding: 80px 64px;
}
.metrics-infra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.metric-infra .num {
  font-family: var(--serif);
  font-size: 70px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}
.metric-infra .lbl { font-size: 14px; line-height: 1.5; color: rgba(245,241,232,0.85); }

/* ============ ECONOMY ============ */
.econ-sectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.econ-sector {
  padding: 60px 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
  transition: all 0.4s var(--ease);
}
.econ-sector:hover { background: var(--ink); color: var(--bone); }
.econ-sector:hover .econ-sector-num { color: var(--orange); }
.econ-sector:hover p { color: rgba(245,241,232,0.75); }
.econ-sector-num {
  font-family: var(--serif);
  font-size: 72px;
  font-style: italic;
  color: var(--emerald);
  line-height: 1;
  transition: color 0.3s;
}
.econ-sector h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 14px;
}
.econ-sector p { font-size: 14px; line-height: 1.7; color: var(--ash); margin-bottom: 0; }
.econ-sector-tag {
  display: inline-block;
  margin-top: 18px;
  padding: 5px 12px;
  background: currentColor;
  border-radius: 2px;
}
.econ-sector-tag span {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bone);
}
.econ-sector:hover .econ-sector-tag span { color: var(--ink); }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--ink-2);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.8s var(--ease), filter 0.4s;
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(0.7); }
.gallery-item::after {
  content: '↗'; position: absolute;
  right: 16px; bottom: 16px;
  width: 40px; height: 40px;
  background: var(--orange); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease);
}
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.gallery-item.w4 { grid-column: span 4; aspect-ratio: 3/4; }
.gallery-item.w6 { grid-column: span 6; aspect-ratio: 3/2; }
.gallery-item.w3 { grid-column: span 3; aspect-ratio: 1/1; }
.gallery-item.w8 { grid-column: span 8; aspect-ratio: 16/9; }
.gallery-item.w5 { grid-column: span 5; aspect-ratio: 4/5; }
.gallery-item.w7 { grid-column: span 7; aspect-ratio: 3/2; }

.gallery-filters {
  display: flex; gap: 14px; margin: 48px 0 0; flex-wrap: wrap;
}
.gallery-filter {
  padding: 10px 20px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s;
}
.gallery-filter:hover,
.gallery-filter.active { background: var(--ink); color: var(--bone); border-color: var(--ink); }

.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(6,17,13,0.95);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--orange); color: var(--ink);
  border: 0; font-size: 18px;
  cursor: pointer;
}

/* ============ NEWS ============ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.news-art {
  background: var(--bone);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: all 0.4s var(--ease);
}
.news-art:hover { transform: translateY(-4px); border-color: var(--ink); }
.news-art-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-art-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.news-art:hover .news-art-img img { transform: scale(1.05); }
.news-art-body { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.news-art-meta {
  display: flex; gap: 14px; align-items: center;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 18px;
}
.news-art-meta .cat { color: var(--orange); }
.news-art h3 {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 14px;
}
.news-art p {
  font-size: 14px; line-height: 1.65;
  color: var(--ash);
  margin-bottom: 24px;
}
.news-art .read-link {
  margin-top: auto;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--emerald);
  display: inline-flex; gap: 10px; align-items: center;
}

.news-featured {
  background: var(--bone);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  margin-bottom: 60px;
  overflow: hidden;
}
.news-featured-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.news-featured-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.news-featured-body { padding: 56px; display: flex; flex-direction: column; justify-content: center; }
.news-featured h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 18px;
}
.news-featured-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 24px;
  align-self: flex-start;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--bone);
}
.contact-left {
  padding: 64px;
  background: var(--ink);
  color: var(--bone);
}
.contact-right {
  padding: 64px;
}
.contact-left h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
}
.contact-left h2 em { color: var(--orange); font-style: italic; }
.contact-left p {
  font-size: 15px; line-height: 1.7;
  color: rgba(245,241,232,0.75);
  margin-bottom: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(245,241,232,0.15);
}
.contact-info-item .lbl {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.contact-info-item .val,
.contact-info-item a {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--bone);
}
.contact-info-item a:hover { color: var(--orange); }

.form { display: grid; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-field { display: flex; flex-direction: column; gap: 10px; }
.form-field label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--emerald);
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--sans);
  font-size: 16px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  outline: none;
  color: var(--ink);
  transition: border-color 0.3s;
}
.form-field input:focus,
.form-field textarea:focus { border-bottom-color: var(--orange); }
.form-field textarea { resize: vertical; min-height: 120px; }

.contact-meta {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.contact-meta-cell {
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-meta-cell .lbl {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 14px;
}
.contact-meta-cell .val {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.35;
  color: var(--ink);
}

.map-block {
  margin-top: 80px;
  position: relative;
  height: 360px;
  background: var(--emerald);
  overflow: hidden;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(245,241,232,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245,241,232,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--bone);
}
.map-pin-dot {
  width: 20px; height: 20px;
  background: var(--orange);
  border-radius: 50%;
  margin: 0 auto 14px;
  position: relative;
  animation: pin-pulse 2s infinite;
}
@keyframes pin-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(234,106,42,0.7); }
  70% { box-shadow: 0 0 0 22px rgba(234,106,42,0); }
}
.map-pin-text {
  font-family: var(--serif);
  font-size: 22px;
}
.map-pin-sub {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  margin-top: 6px;
  color: rgba(245,241,232,0.7);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .section-head { grid-template-columns: 1fr; gap: 32px; }
  .pillar { grid-column: span 6; }
  .about-intro, .split, .econ-sectors, .strip-inner, .news-featured, .contact-grid { grid-template-columns: 1fr; }
  .news-featured-body { padding: 40px; }
  .news-preview { grid-template-columns: 1fr; }
  .news-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .infra-card.large, .infra-card.med, .infra-card.small { grid-column: span 6; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metrics .metric:nth-child(2) { border-right: 0; }
  .page-head-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom .right { text-align: center; }
  .pillars-alt { grid-template-columns: 1fr 1fr; }
  .pillar-alt { grid-column: span 1; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 12px; }
  .chart-block { grid-template-columns: 1fr; padding: 40px; }
  .news-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
  .gallery-item.w4, .gallery-item.w3, .gallery-item.w5 { grid-column: span 3; aspect-ratio: 1/1; }
  .gallery-item.w6, .gallery-item.w7, .gallery-item.w8 { grid-column: span 6; aspect-ratio: 16/10; }
}

@media (max-width: 720px) {
  .nav { padding: 14px 20px; }
  .nav.scrolled { padding: 10px 20px; }
  .container, .container-narrow { padding: 0 20px; }
  .hero { padding: 130px 20px 40px; }
  .section { padding: 80px 0; }
  .page-head { padding: 140px 0 60px; }
  .pillar { grid-column: span 12; }
  .pillars-alt { grid-template-columns: 1fr; }
  .pillar-alt { grid-column: span 1; }
  .metrics { grid-template-columns: 1fr; }
  .metrics .metric { border-right: 0; border-bottom: 1px solid rgba(245,241,232,0.15); }
  .metrics .metric:last-child { border-bottom: 0; }
  .page-head-stats { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 40px 28px; }
  .about-facts { grid-template-columns: 1fr; }
  .metrics-infra-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-meta { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.w4, .gallery-item.w3, .gallery-item.w5,
  .gallery-item.w6, .gallery-item.w7, .gallery-item.w8 { grid-column: span 1; aspect-ratio: 4/3; }
  .gate-shell { padding: 44px 28px; }
  .hero-ticker { display: none; }
  .econ-sector { grid-template-columns: 1fr; gap: 20px; }
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.9s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
