/* ============================================================
   MOSTAFA KAMAL MADBOULY — OFFICIAL LEADERSHIP PLATFORM
   Premium Executive Government Design System
   ============================================================ */

:root {
  --ink: #0a0a0a;
  --ink-2: #131313;
  --ink-3: #1b1b1b;
  --char: #262626;
  --char-2: #3a3a3a;
  --line: #2a2a2a;
  --line-soft: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(0, 0, 0, 0.1);
  --paper: #f6f2ea;
  --paper-2: #efe8da;
  --sand: #e8dcc4;
  --sand-deep: #c9b68c;
  --gold: #c9a15a;
  --gold-2: #d9b56f;
  --gold-deep: #8a6a2f;
  --red: #b22234;
  --red-deep: #8a1a27;
  --white: #ffffff;
  --grey: #8a8a8a;
  --grey-2: #a8a8a8;
  --serif: 'Playfair Display', 'Cinzel', Georgia, serif;
  --display: 'Cinzel', 'Playfair Display', serif;
  --sans: 'Inter', 'Manrope', 'Montserrat', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1440px;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --radius: 2px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============================================================
   PASSCODE GATE
   ============================================================ */
.gate {
  position: fixed; inset: 0; z-index: 9999;
  background: #050505;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.gate.dismissed { opacity: 0; visibility: hidden; pointer-events: none; }

.gate__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 80% 20%, rgba(201, 161, 90, 0.18), transparent 60%),
    radial-gradient(900px 500px at 10% 80%, rgba(178, 34, 52, 0.15), transparent 60%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
}
.gate__skyline {
  position: absolute; inset: auto 0 0 0; height: 60%;
  background-image: url('https://images.unsplash.com/photo-1572252009286-268acec5ca0a?w=1800&q=70');
  background-size: cover;
  background-position: center bottom;
  opacity: 0.18;
  filter: grayscale(0.3) contrast(1.1) sepia(0.15);
  mask-image: linear-gradient(180deg, transparent, #000 60%, #000);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 60%, #000);
}
.gate__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201, 161, 90, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 161, 90, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000, transparent 70%);
}

.gate__beam {
  position: absolute;
  top: -20%; left: 50%; width: 1px; height: 140%;
  background: linear-gradient(180deg, transparent, rgba(201, 161, 90, 0.4), transparent);
  animation: beamSlide 6s ease-in-out infinite;
}
.gate__beam:nth-child(2) { left: 30%; animation-delay: 1.5s; }
.gate__beam:nth-child(3) { left: 70%; animation-delay: 3s; }
@keyframes beamSlide {
  0%, 100% { opacity: 0; transform: translateY(-20px); }
  50% { opacity: 1; transform: translateY(20px); }
}

.gate__panel {
  position: relative; z-index: 2;
  width: min(560px, 92vw);
  padding: clamp(2rem, 5vw, 4rem);
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(201, 161, 90, 0.3);
  border-radius: 2px;
  text-align: center;
  animation: panelRise 1s var(--ease-out) both;
}
@keyframes panelRise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.gate__crest {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; margin-bottom: 1.75rem;
  border: 1px solid rgba(201, 161, 90, 0.5);
  border-radius: 50%;
  position: relative;
}
.gate__crest::before, .gate__crest::after {
  content: ""; position: absolute; inset: -6px;
  border: 1px solid rgba(201, 161, 90, 0.2);
  border-radius: 50%;
}
.gate__crest::after { inset: -14px; border-color: rgba(201, 161, 90, 0.08); }
.gate__crest svg { width: 34px; height: 34px; }

.gate__eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.gate__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: 0.08em;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 0.6rem;
}
.gate__subtitle {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 420px; margin: 0 auto 2rem;
  letter-spacing: 0.04em;
}
.gate__form { display: flex; flex-direction: column; gap: 0.9rem; }
.gate__label {
  font-size: 0.68rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
}
.gate__input {
  width: 100%;
  padding: 1.1rem 1.2rem;
  font-family: var(--sans);
  font-size: 1.05rem;
  letter-spacing: 0.3em;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 161, 90, 0.3);
  border-radius: 2px;
  text-align: center;
  outline: none;
  transition: all .3s var(--ease);
}
.gate__input:focus {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(201, 161, 90, 0.08);
}

.gate__btn {
  padding: 1.05rem 1.2rem;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-deep));
  background-size: 200% 100%;
  color: #0a0a0a;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.gate__btn:hover { background-position: 100% 0; transform: translateY(-2px); }

.gate__error {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: #f08a90;
  text-transform: uppercase;
  margin-top: 0.8rem;
  min-height: 1.2rem;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.gate__error.show { opacity: 1; animation: shake .4s; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

.gate__foot {
  margin-top: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem;
  font-size: 0.66rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.gate__foot span { width: 30px; height: 1px; background: rgba(201, 161, 90, 0.4); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background .4s var(--ease);
}
.nav.light {
  background: rgba(246, 242, 234, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.nav__brand {
  display: flex; align-items: center; gap: 0.85rem;
  color: #fff;
}
.nav.light .nav__brand { color: var(--ink); }

.nav__mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
}
.nav__mark::before {
  content: ""; position: absolute; inset: 3px;
  border: 1px solid rgba(201, 161, 90, 0.3); border-radius: 50%;
}
.nav__mark span {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.nav__brand-text { line-height: 1.15; }
.nav__brand-name {
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav__brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav__menu {
  display: flex; align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style: none;
}
.nav__menu a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0;
}
.nav.light .nav__menu a { color: rgba(10, 10, 10, 0.75); }
.nav__menu a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav__menu a:hover, .nav__menu a.active {
  color: #fff;
}
.nav.light .nav__menu a:hover, .nav.light .nav__menu a.active { color: var(--ink); }
.nav__menu a:hover::after, .nav__menu a.active::after {
  transform: scaleX(1);
}

.nav__cta {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav__cta:hover { background: var(--gold); color: var(--ink); }

.nav__burger {
  display: none;
  width: 36px; height: 36px;
  padding: 0;
  color: #fff;
  align-items: center; justify-content: center;
}
.nav.light .nav__burger { color: var(--ink); }
.nav__burger span {
  display: block; width: 22px; height: 1.5px; background: currentColor;
  position: relative;
  transition: all .3s var(--ease);
}
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 1.5px;
  background: currentColor; transition: all .3s var(--ease);
}
.nav__burger span::before { top: -7px; }
.nav__burger span::after { top: 7px; }
.nav__burger.active span { background: transparent; }
.nav__burger.active span::before { top: 0; transform: rotate(45deg); }
.nav__burger.active span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__menu {
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    padding: 2rem var(--pad);
    gap: 1.6rem;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__menu a { font-size: 1rem; color: #fff; }
  .nav.light .nav__menu { background: rgba(246, 242, 234, 0.98); }
  .nav.light .nav__menu a { color: var(--ink); }
  .nav__burger { display: inline-flex; }
  .nav__cta { display: none; }
}

/* ============================================================
   UTILS & BUILDING BLOCKS
   ============================================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--sand { background: var(--sand); color: var(--ink); }
.section--paper { background: var(--paper); color: var(--ink); }
.section--charcoal { background: var(--ink-2); color: var(--paper); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: ""; width: 30px; height: 1px; background: var(--gold);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.section--dark .section-title em { color: var(--gold); }

.section-lede {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(0, 0, 0, 0.6);
  max-width: 640px;
  margin-top: 1.25rem;
  line-height: 1.7;
}
.section--dark .section-lede, .section--charcoal .section-lede {
  color: rgba(255, 255, 255, 0.6);
}

.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1rem 1.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn--gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 10px 40px -10px rgba(201, 161, 90, 0.5); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--ink {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
}
.btn--ink:hover { background: var(--char); }

.btn__arrow {
  width: 12px; height: 10px;
  transition: transform .35s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.ph {
  position: relative;
  padding: clamp(9rem, 18vw, 14rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.ph__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 25%;
  opacity: 0.32;
  filter: grayscale(0.3) contrast(1.05);
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.85) 60%, var(--ink) 100%),
    linear-gradient(90deg, rgba(178,34,52,0.08), transparent 50%);
}
.ph__inner { position: relative; z-index: 2; max-width: 1100px; }
.ph__crumbs {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.8rem;
}
.ph__crumbs a:hover { color: var(--gold); }
.ph__crumbs span { color: var(--gold); }

.ph__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 1.2rem;
}
.ph__title em { font-style: italic; color: var(--gold); font-weight: 400; }

.ph__sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 720px;
  line-height: 1.75;
}
.ph__meta {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
}
.ph__meta > div strong {
  display: block;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.ph__meta > div span { color: rgba(255, 255, 255, 0.7); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
  position: relative;
}
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand-name {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 0.4rem;
}
.footer__brand-title {
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer__brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 340px;
}

.footer__h {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer__list a, .footer__list span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color .2s var(--ease);
}
.footer__list a:hover { color: var(--gold); }

.footer__social {
  display: flex; gap: 0.8rem; margin-top: 1rem;
}
.footer__social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: all .3s var(--ease);
}
.footer__social a:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer__social svg { width: 15px; height: 15px; }

.footer__bot {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer__bot a { color: var(--gold); }
.footer__bot a:hover { text-decoration: underline; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: 9rem;
  padding-bottom: clamp(3rem, 7vw, 6rem);
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(0.08) contrast(1.05);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.2) 35%, rgba(10,10,10,0.95) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.7) 0%, transparent 50%);
}
.hero__grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201, 161, 90, 0.05) 1px, transparent 1px);
  background-size: 100% 140px;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: end;
}
@media (max-width: 1000px) { .hero__inner { grid-template-columns: 1fr; } }

.hero__left {}
.hero__tag {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(201, 161, 90, 0.35);
  border-radius: 50px;
  background: rgba(10, 10, 10, 0.35);
  backdrop-filter: blur(8px);
}
.hero__tag::before {
  content: ""; width: 7px; height: 7px; background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(178,34,52,0.3);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(178,34,52,0.3); }
  50% { box-shadow: 0 0 0 7px rgba(178,34,52,0); }
}

.hero__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
}
.hero__title em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero__title-line { display: block; overflow: hidden; }
.hero__title-line span {
  display: inline-block;
  animation: rise 1s var(--ease-out) both;
}
.hero__title-line:nth-child(2) span { animation-delay: .15s; }
.hero__title-line:nth-child(3) span { animation-delay: .3s; }
@keyframes rise { from { transform: translateY(105%); } to { transform: translateY(0); } }

.hero__lede {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin-bottom: 2.4rem;
}

.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__right {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 2.5rem;
  display: flex; flex-direction: column; gap: 1.8rem;
}
@media (max-width: 1000px) { .hero__right { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; } }

.hero__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}
.hero__card-num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}
.hero__card-label {
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.3rem;
}
.hero__card-text {
  font-size: 0.95rem; color: #fff; line-height: 1.4;
}

.hero__ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem var(--pad);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; gap: 2rem;
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  overflow: hidden;
  z-index: 3;
}
.hero__ticker-label {
  color: var(--red);
  flex-shrink: 0;
  padding-right: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.hero__ticker-track {
  display: flex; gap: 3rem;
  animation: ticker 40s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   HOME — WELCOME (address)
   ============================================================ */
.welcome {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 920px) { .welcome { grid-template-columns: 1fr; } }

.welcome__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink);
}
.welcome__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.welcome__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.4) 100%);
}
.welcome__stamp {
  position: absolute;
  left: 1.5rem; bottom: 1.5rem;
  display: flex; flex-direction: column; gap: 0.3rem;
  color: #fff;
}
.welcome__stamp-year {
  font-family: var(--display);
  font-size: 3rem; font-weight: 500; color: var(--gold);
  line-height: 1;
}
.welcome__stamp-label {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.welcome__frame {
  position: absolute;
  inset: -1rem;
  border: 1px solid var(--gold);
  z-index: -1;
  pointer-events: none;
}

.welcome__body h2 { margin-bottom: 1.5rem; }
.welcome__body p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.welcome__sig {
  margin-top: 2rem;
  display: flex; align-items: center; gap: 1rem;
}
.welcome__sig-line {
  width: 50px; height: 1px; background: var(--gold);
}
.welcome__sig-name {
  font-family: var(--display); font-size: 1.1rem; color: var(--ink);
}
.welcome__sig-role {
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 0.3rem;
}

/* ============================================================
   PILLARS (home)
   ============================================================ */
.pillars-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
@media (max-width: 820px) { .pillars-head { grid-template-columns: 1fr; } }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1000px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  background: var(--ink-2);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background .4s var(--ease);
  position: relative; overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.pillar:hover { background: #1e1e1e; }
.pillar:hover::before { transform: scaleX(1); }

.pillar__num {
  font-family: var(--display);
  font-size: 0.9rem; color: var(--gold);
  letter-spacing: 0.2em;
}
.pillar__icon {
  width: 48px; height: 48px;
  color: var(--gold);
}
.pillar__t {
  font-family: var(--display);
  font-size: 1.35rem; font-weight: 500;
  color: #fff;
  margin-top: 0.5rem;
}
.pillar__d {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================================
   PROGRESS METRICS
   ============================================================ */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 900px) { .metrics { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .metrics { grid-template-columns: 1fr; } }

.metric {
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  position: relative;
}
.section--dark .metric, .section--charcoal .metric { border-top-color: rgba(255,255,255,0.12); }
.metric__num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.6rem;
  display: flex; align-items: baseline; gap: 0.3rem;
}
.section--dark .metric__num, .section--charcoal .metric__num { color: #fff; }
.metric__num sup {
  font-size: 0.45em; color: var(--gold); font-weight: 500;
  font-family: var(--sans);
  letter-spacing: 0.05em;
}
.metric__label {
  font-size: 0.76rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55); font-weight: 600;
}
.section--dark .metric__label, .section--charcoal .metric__label { color: rgba(255,255,255,0.6); }
.metric__sub {
  margin-top: 0.7rem;
  font-size: 0.88rem; line-height: 1.6;
  color: rgba(0, 0, 0, 0.55);
}
.section--dark .metric__sub, .section--charcoal .metric__sub { color: rgba(255,255,255,0.55); }

/* ============================================================
   HIGHLIGHTS (image cards) — 2×2 editorial grid
   Big image on the left (full height), two stacked on the right.
   ============================================================ */
.highlights {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.2rem;
  min-height: clamp(420px, 62vw, 620px);
}
.hl {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: 0;
  min-width: 0;
}
.hl--big  { grid-column: 1; grid-row: 1 / 3; }
.hl--tall { grid-column: 2; grid-row: 1; }
.hl--wide { grid-column: 2; grid-row: 2; }

@media (max-width: 820px) {
  .highlights {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }
  .hl--big, .hl--tall, .hl--wide {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 16/10;
  }
}

.hl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 1.2s var(--ease);
}
.hl:hover img { transform: scale(1.06); }
.hl__veil {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.85) 0%, transparent 55%);
}
.hl__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.8rem 1.8rem 1.5rem;
  color: #fff;
}
.hl__tag {
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.hl__tag::before { content: ""; width: 18px; height: 1px; background: var(--gold); }
.hl__t {
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.4rem;
}
.hl__d {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ============================================================
   UPDATES PREVIEW (home)
   ============================================================ */
.updates-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .updates-row { grid-template-columns: 1fr; } }

.upcard {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all .4s var(--ease);
}
.upcard:hover { transform: translateY(-4px); border-color: var(--gold); }
.upcard__media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.upcard__media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 28%;
  transition: transform 1s var(--ease);
}
.upcard:hover .upcard__media img { transform: scale(1.06); }
.upcard__body { padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.upcard__meta {
  display: flex; gap: 1rem; font-size: 0.7rem;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
}
.upcard__meta span:nth-child(2) { color: rgba(0, 0, 0, 0.45); }
.upcard__t {
  font-family: var(--display);
  font-size: 1.2rem; font-weight: 500; line-height: 1.3;
  color: var(--ink);
}
.upcard__x {
  color: rgba(0, 0, 0, 0.6); font-size: 0.9rem; line-height: 1.6; flex: 1;
}
.upcard__more {
  margin-top: 0.6rem;
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink); font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.upcard__more::after {
  content: "→"; transition: transform .3s var(--ease);
}
.upcard:hover .upcard__more { color: var(--red); }
.upcard:hover .upcard__more::after { transform: translateX(4px); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.cta-band__bg {
  position: absolute; inset: 0; opacity: 0.18;
  background-size: cover; background-position: center;
  filter: grayscale(0.4);
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 100%);
}
.cta-band__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 820px) { .cta-band__inner { grid-template-columns: 1fr; } }
.cta-band__title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.cta-band__title em { font-style: italic; color: var(--gold); font-weight: 400; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.bio-lead {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) { .bio-lead { grid-template-columns: 1fr; } }

.bio-portrait {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink);
}
.bio-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 18%;
}
.bio-portrait__frame {
  position: absolute; inset: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
.bio-portrait__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem;
  display: flex; justify-content: space-between; align-items: end;
  color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
}
.bio-portrait__caption div:first-child { font-family: var(--display); font-size: 1.2rem; letter-spacing: 0.05em; }
.bio-portrait__caption div:last-child { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }

.bio-facts {
  margin-top: 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
}
.bio-fact {
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.bio-fact__k { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.bio-fact__v { font-family: var(--display); font-size: 1.05rem; color: var(--ink); }

.bio-body { display: flex; flex-direction: column; gap: 1.2rem; }
.bio-body p { color: rgba(0, 0, 0, 0.72); font-size: 1rem; line-height: 1.85; }
.bio-body blockquote {
  margin: 1.5rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  background: var(--paper-2);
  font-family: var(--display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}

/* TIMELINE */
.tl {
  position: relative;
  padding: 1rem 0;
}
.tl::before {
  content: ""; position: absolute;
  left: 11px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}
.tl__item {
  position: relative;
  padding-left: 50px;
  padding-bottom: 2.8rem;
}
.tl__dot {
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--gold);
  display: grid; place-items: center;
}
.tl__dot::before {
  content: ""; width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
}
.section--dark .tl__dot { background: var(--ink-2); }
.tl__yr {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.3rem;
}
.tl__t {
  font-family: var(--display);
  font-size: 1.4rem; font-weight: 500; line-height: 1.3;
  color: inherit;
  margin-bottom: 0.5rem;
}
.tl__d {
  color: rgba(0, 0, 0, 0.65); line-height: 1.7;
  max-width: 680px;
  font-size: 0.95rem;
}
.section--dark .tl__d, .section--charcoal .tl__d { color: rgba(255,255,255,0.65); }

/* PHILOSOPHY */
.philos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .philos { grid-template-columns: 1fr; } }

.philos__item {
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.section--sand .philos__item { background: rgba(255,255,255,0.4); border-color: rgba(0,0,0,0.08); }
.philos__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.philos__t {
  font-family: var(--display);
  font-size: 1.3rem; font-weight: 500;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.philos__d { line-height: 1.75; font-size: 0.95rem; opacity: 0.75; }

/* ============================================================
   GOVERNANCE PAGE
   ============================================================ */
.gov-hero-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) { .gov-hero-split { grid-template-columns: 1fr; } }

.gov-bars {
  display: flex; flex-direction: column; gap: 1.6rem;
}
.gov-bar { display: flex; flex-direction: column; gap: 0.5rem; }
.gov-bar__head { display: flex; justify-content: space-between; }
.gov-bar__label { font-size: 0.85rem; letter-spacing: 0.12em; color: rgba(0,0,0,0.7); font-weight: 500; }
.section--dark .gov-bar__label { color: rgba(255,255,255,0.75); }
.gov-bar__val { font-family: var(--display); color: var(--gold); font-weight: 600; font-size: 0.95rem; }
.gov-bar__track {
  height: 4px; background: rgba(0, 0, 0, 0.08);
  overflow: hidden; border-radius: 2px;
}
.section--dark .gov-bar__track { background: rgba(255,255,255,0.1); }
.gov-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  width: 0;
  transition: width 1.6s var(--ease-out);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .principles { grid-template-columns: 1fr; } }

.principle {
  padding: 2.2rem 1.8rem;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex; flex-direction: column; gap: 1rem;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.principle::after {
  content: ""; position: absolute; right: -30%; top: -30%;
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,161,90,0.12), transparent 70%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.principle:hover { border-color: var(--gold); }
.principle:hover::after { opacity: 1; }

.principle__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--gold);
  border-radius: 2px;
}
.principle__icon svg { width: 26px; height: 26px; }
.principle__t {
  font-family: var(--display);
  font-size: 1.25rem; font-weight: 500; line-height: 1.3;
}
.principle__d { font-size: 0.94rem; line-height: 1.75; color: rgba(0,0,0,0.68); }

/* GOVERNANCE DATA */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 900px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-cell {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-cell__n {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500; color: #fff; line-height: 1;
  margin-bottom: 0.6rem;
  display: flex; align-items: baseline; gap: 0.2rem;
}
.stat-cell__n sup { color: var(--gold); font-size: 0.5em; font-family: var(--sans); }
.stat-cell__l { font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.stat-cell__d { margin-top: 0.7rem; color: rgba(255, 255, 255, 0.55); font-size: 0.88rem; line-height: 1.6; }

/* ============================================================
   INFRASTRUCTURE PAGE
   ============================================================ */
.project-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.project-row:last-child { border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
.project-row:nth-child(even) { direction: rtl; }
.project-row:nth-child(even) > * { direction: ltr; }
@media (max-width: 900px) {
  .project-row, .project-row:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
}

.project-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink);
}
.project-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 1.4s var(--ease);
}
.project-row:hover .project-media img { transform: scale(1.05); }

.project-content {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex; flex-direction: column; justify-content: center;
  gap: 1.2rem;
}
.project-num {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.25em;
}
.project-t {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.project-d {
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.8;
  font-size: 1rem;
}
.project-stats {
  display: flex; gap: 2rem; margin-top: 0.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.project-stat__n {
  font-family: var(--display);
  font-size: 1.7rem; color: var(--ink); font-weight: 500;
  line-height: 1;
}
.project-stat__n sup { color: var(--gold); font-size: 0.55em; font-family: var(--sans); }
.project-stat__l {
  font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5); margin-top: 0.4rem;
}

/* Smart city highlights */
.capital-hero {
  position: relative;
  min-height: 62vh;
  background-size: cover;
  background-position: center 35%;
  display: flex; align-items: end;
  padding: 4rem var(--pad);
  color: #fff;
  overflow: hidden;
}
.capital-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.9) 0%, transparent 65%);
}
.capital-hero > * { position: relative; z-index: 2; }
.capital-hero__body { max-width: 800px; }
.capital-hero__title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500;
  line-height: 1.15; margin-bottom: 1rem;
}
.capital-hero__d { color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 600px; }

/* ============================================================
   ECONOMY PAGE
   ============================================================ */
.econ-chart {
  position: relative;
  padding: 2.5rem;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.econ-chart__head { margin-bottom: 2rem; }
.econ-chart__title { font-family: var(--display); font-size: 1.2rem; color: #fff; }
.econ-chart__sub { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 0.3rem; }

.chart-svg {
  width: 100%; height: 260px; display: block;
}

.econ-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
@media (max-width: 900px) { .econ-grid { grid-template-columns: 1fr; } }

.econ-list {
  display: flex; flex-direction: column; gap: 0;
}
.econ-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
}
.econ-item__num {
  font-family: var(--display); font-size: 1.15rem;
  color: var(--gold); letter-spacing: 0.15em;
}
.econ-item__t { font-family: var(--display); font-size: 1.1rem; color: #fff; }
.econ-item__v { font-family: var(--display); font-size: 1.35rem; color: var(--gold); font-weight: 500; }

/* Vision roadmap */
.vision-track {
  position: relative;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 900px) { .vision-track { grid-template-columns: 1fr; } }

.vision-track::before {
  content: ""; position: absolute;
  left: 12%; right: 12%;
  top: 46px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 15%, var(--gold) 85%, transparent);
}
@media (max-width: 900px) { .vision-track::before { display: none; } }

.vision-step {
  padding: 0 1rem;
  text-align: center;
  position: relative;
}
.vision-step__pt {
  width: 14px; height: 14px;
  margin: 0 auto 2rem;
  background: var(--ink); border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative; top: 40px;
  z-index: 2;
}
.vision-step__yr {
  font-family: var(--display);
  font-size: 1.8rem; color: var(--gold);
  font-weight: 500; letter-spacing: 0.05em;
  margin-top: 1.2rem;
}
.vision-step__t {
  font-family: var(--display);
  font-size: 1.1rem; margin-top: 0.6rem;
  color: #fff;
}
.vision-step__d {
  font-size: 0.88rem; line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.8rem;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gal-filters {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.gal-filter {
  padding: 0.7rem 1.3rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s var(--ease);
  font-weight: 500;
}
.gal-filter:hover, .gal-filter.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 161, 90, 0.08);
}

.masonry {
  column-count: 3;
  column-gap: 1rem;
}
@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 560px) { .masonry { column-count: 1; } }

.masonry__item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  display: block;
}
.masonry__item img {
  width: 100%; height: auto;
  object-fit: cover;
  transition: transform 1s var(--ease);
  display: block;
}
.masonry__item:hover img { transform: scale(1.06); }
.masonry__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.85) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.masonry__item:hover::after { opacity: 1; }
.masonry__cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem;
  color: #fff;
  transform: translateY(20px);
  opacity: 0; transition: all .4s var(--ease);
  z-index: 2;
}
.masonry__item:hover .masonry__cap { transform: translateY(0); opacity: 1; }
.masonry__cap-tag { font-size: 0.65rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.3rem; }
.masonry__cap-t { font-family: var(--display); font-size: 1.05rem; line-height: 1.3; }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox__img {
  max-width: min(1400px, 92vw);
  max-height: 88vh;
  object-fit: contain;
}
.lightbox__close {
  position: absolute; top: 2rem; right: 2rem;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.4rem;
  transition: all .25s var(--ease);
}
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__cap {
  position: absolute; bottom: 2rem; left: 2rem; right: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem; letter-spacing: 0.15em;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: grid; place-items: center;
  transition: all .25s var(--ease);
}
.lightbox__nav:hover { background: var(--gold); color: var(--ink); }
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }

/* ============================================================
   NEWS PAGE
   ============================================================ */
.news-feat {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  background: var(--ink-2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .news-feat { grid-template-columns: 1fr; } }
.news-feat__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-feat__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.news-feat__body {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex; flex-direction: column; gap: 1rem; justify-content: center;
}
.news-feat__badge {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  width: fit-content;
}
.news-feat__t {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  font-weight: 500; line-height: 1.2;
}
.news-feat__d { color: rgba(255, 255, 255, 0.7); line-height: 1.7; }
.news-feat__meta {
  display: flex; gap: 1.2rem; font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.news-feat__meta span:nth-child(2) { color: rgba(255,255,255,0.5); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }

.newscard {
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex; flex-direction: column;
  transition: all .35s var(--ease);
}
.newscard:hover { border-color: var(--gold); transform: translateY(-4px); }
.newscard__media {
  aspect-ratio: 16/10; overflow: hidden;
}
.newscard__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; transition: transform 1s var(--ease); }
.newscard:hover .newscard__media img { transform: scale(1.05); }
.newscard__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.newscard__cat { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.newscard__t { font-family: var(--display); font-size: 1.15rem; font-weight: 500; line-height: 1.3; color: var(--ink); }
.newscard__d { font-size: 0.9rem; line-height: 1.65; color: rgba(0,0,0,0.65); flex: 1; }
.newscard__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem; margin-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.newscard__date { color: rgba(0,0,0,0.5); }
.newscard__read { color: var(--ink); font-weight: 600; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--ink);
  color: #fff;
  display: flex; flex-direction: column; gap: 2rem;
}
.ci-block {
  display: flex; gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ci-block:last-child { border-bottom: 0; padding-bottom: 0; }
.ci-block__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 161, 90, 0.4);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
}
.ci-block__icon svg { width: 18px; height: 18px; }
.ci-block__label { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.ci-block__v {
  font-family: var(--display);
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.5;
  display: block;
}
.ci-block__v + .ci-block__v { margin-top: 0.3rem; font-size: 0.95rem; color: rgba(255,255,255,0.7); font-family: var(--sans); letter-spacing: 0.05em; }
.ci-block__v a:hover { color: var(--gold); }

.contact-form {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { position: relative; margin-bottom: 1rem; }
.field input, .field textarea {
  width: 100%;
  padding: 1.1rem 0.1rem 0.7rem;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  outline: none;
  resize: none;
  transition: border-color .3s var(--ease);
}
.field textarea { min-height: 120px; }
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field label {
  position: absolute;
  top: 1.2rem; left: 0.1rem;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all .25s var(--ease);
  pointer-events: none;
}
.field input:focus + label,
.field input:valid + label,
.field textarea:focus + label,
.field textarea:valid + label {
  top: 0; font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(201, 161, 90, 0.1);
  border: 1px solid var(--gold);
  color: var(--ink);
  font-size: 0.88rem;
  display: none;
}
.form-success.show { display: block; }

.office-map {
  height: 360px;
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}
.office-map iframe, .office-map__stage {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(0.6) contrast(1.05) brightness(0.85);
}

/* ============================================================
   ANIMATIONS & REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: all .9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

/* ============================================================
   MISC
   ============================================================ */
.rule { height: 1px; background: rgba(0, 0, 0, 0.1); margin: 3rem 0; }
.section--dark .rule, .section--charcoal .rule { background: rgba(255, 255, 255, 0.1); }

.kicker-grid {
  display: grid;
  grid-template-columns: 0.6fr 1.2fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3.5rem;
}
@media (max-width: 900px) { .kicker-grid { grid-template-columns: 1fr; } }
.kicker-grid p { line-height: 1.8; color: rgba(0,0,0,0.65); font-size: 1rem; }
.section--dark .kicker-grid p, .section--charcoal .kicker-grid p { color: rgba(255,255,255,0.7); }

@media (max-width: 600px) {
  .hero { padding-top: 7rem; }
  .section { padding: 4rem 0; }
}
