/* =========================================================
   RAJENDRA DHEDYA GAVIT — Official Digital Platform
   Premium political brand styling
   ========================================================= */

:root {
  --saffron: #E9591A;
  --saffron-deep: #B8410E;
  --saffron-soft: #F5B184;
  --gold: #C9A961;
  --gold-light: #E8D5A0;
  --charcoal: #111418;
  --charcoal-soft: #1C2026;
  --ink: #0A0C0F;
  --grey-900: #2B2F36;
  --grey-700: #4A4F57;
  --grey-500: #7A7F88;
  --grey-300: #C9CCD2;
  --grey-200: #E5E7EA;
  --grey-100: #F2F3F5;
  --cream: #FAF6F0;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --transition: 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition-slow: 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);

  --max-width: 1360px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 18px;

  --shadow-sm: 0 2px 8px rgba(17, 20, 24, 0.06);
  --shadow-md: 0 10px 30px rgba(17, 20, 24, 0.10);
  --shadow-lg: 0 24px 60px rgba(17, 20, 24, 0.16);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

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

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.015em; color: var(--ink); line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: 1.25rem; }

p { color: var(--grey-700); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--saffron);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--saffron);
  display: inline-block;
}

/* ===================== PASSWORD GATE ===================== */
.gate {
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: grid;
  place-items: center;
  padding: 40px 24px;
  background: var(--ink);
  overflow: hidden;
}
.gate::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 700px at 85% 10%, rgba(233, 89, 26, 0.22), transparent 60%),
    radial-gradient(900px 600px at 10% 90%, rgba(201, 169, 97, 0.12), transparent 60%),
    linear-gradient(135deg, #0a0c0f 0%, #181c22 100%);
  z-index: 0;
}
.gate::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  z-index: 0;
}

.gate-ornament {
  position: absolute;
  z-index: 1;
  color: rgba(201, 169, 97, 0.18);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(8rem, 22vw, 20rem);
  pointer-events: none;
  line-height: 0.8;
  user-select: none;
}
.gate-ornament.top-left { top: 3%; left: 3%; }
.gate-ornament.bottom-right { bottom: 3%; right: 3%; }

.gate-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  padding: 64px 48px 56px;
  background: rgba(20, 24, 30, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 2px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
  text-align: center;
  animation: gateFade 1s var(--transition) both;
}
@keyframes gateFade {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.gate-crest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 38px;
}
.gate-crest .dot { width: 6px; height: 6px; background: var(--saffron); border-radius: 50%; box-shadow: 0 0 10px var(--saffron); }

.gate h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.gate h1 em { color: var(--gold); font-style: italic; font-weight: 500; }
.gate-subtitle { color: var(--grey-300); font-size: 15px; letter-spacing: 0.04em; margin-bottom: 40px; }

.gate-form { display: flex; flex-direction: column; gap: 14px; }
.gate-input-wrap { position: relative; }
.gate-input {
  width: 100%;
  padding: 18px 22px;
  font-size: 16px;
  letter-spacing: 0.15em;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-sans);
  outline: none;
  transition: all var(--transition);
  text-align: center;
}
.gate-input::placeholder { color: rgba(255,255,255,0.35); letter-spacing: 0.15em; }
.gate-input:focus { border-color: var(--saffron); background: rgba(255,255,255,0.06); }

.gate-btn {
  padding: 18px 24px;
  background: var(--saffron);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.gate-btn:hover { background: var(--saffron-deep); letter-spacing: 0.36em; }

.gate-error {
  color: #F28686;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-top: 14px;
  min-height: 20px;
  opacity: 0;
  transform: translateY(-4px);
  transition: all var(--transition);
}
.gate-error.show { opacity: 1; transform: translateY(0); }

.gate-footer {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.gate-footer strong { color: var(--gold-light); font-weight: 500; }

/* ===================== NAVIGATION ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17,20,24,0.06);
  transition: all var(--transition);
}
.nav.dark {
  background: rgba(10, 12, 15, 0.75);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav.dark .nav-menu a { color: rgba(255,255,255,0.85); }
.nav.dark .nav-brand .name { color: var(--white); }
.nav.dark .nav-brand .mini { color: var(--gold-light); }
.nav.dark .hamburger span { background: var(--white); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand .mark {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  font-style: italic;
  border-radius: 2px;
  box-shadow: 0 6px 18px rgba(233, 89, 26, 0.3);
}
.nav-brand .text { line-height: 1.1; }
.nav-brand .name { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.nav-brand .mini { font-size: 10px; font-weight: 600; color: var(--saffron); letter-spacing: 0.24em; text-transform: uppercase; margin-top: 2px; }

.nav-menu { display: flex; align-items: center; gap: 38px; list-style: none; }
.nav-menu a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  color: var(--grey-700);
  position: relative; padding: 4px 0;
  text-transform: uppercase;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--saffron);
  transition: width var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--saffron); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-cta {
  padding: 12px 22px;
  background: var(--ink);
  color: var(--white) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--saffron) !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; width: 38px; height: 38px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== SECTIONS ===================== */
.section { padding: 120px 0; position: relative; }
.section--tight { padding: 80px 0; }
.section--dark { background: var(--ink); color: var(--grey-300); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.7); }
.section--cream { background: var(--cream); }

.section-head { max-width: 780px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 18px 0 18px; }
.section-head p { font-size: 17px; line-height: 1.75; }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  position: relative;
  padding: 140px 0 80px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 20%;
  filter: brightness(0.42) saturate(1.05);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,12,15,0.4) 0%, rgba(10,12,15,0.2) 40%, rgba(10,12,15,0.85) 100%),
    linear-gradient(90deg, rgba(10,12,15,0.7) 0%, rgba(10,12,15,0.1) 50%, rgba(10,12,15,0.5) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px;
  align-items: end; min-height: calc(100vh - 220px);
}
.hero-title {
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  color: var(--white);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 20px 0 28px;
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--gold); position: relative; display: inline-block; }
.hero-title em::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 2px; background: var(--saffron); opacity: 0.5; }
.hero-tagline { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: rgba(255,255,255,0.8); max-width: 540px; margin-bottom: 44px; font-weight: 300; line-height: 1.6; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary { background: var(--saffron); color: var(--white); }
.btn-primary:hover { background: var(--saffron-deep); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(233,89,26,0.4); }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--saffron); }
.btn-ghost { color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn .arrow { display: inline-block; transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

.hero-meta {
  position: relative;
  padding: 34px 30px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--saffron);
}
.hero-meta .label { font-size: 11px; letter-spacing: 0.3em; color: var(--saffron-soft); text-transform: uppercase; margin-bottom: 14px; }
.hero-meta .quote { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; line-height: 1.5; color: var(--white); font-weight: 400; }
.hero-meta .quote::before { content: '"'; font-size: 2.4rem; color: var(--saffron); line-height: 0; vertical-align: -0.2em; margin-right: 4px; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
}
.hero-scroll .line { width: 1px; height: 40px; background: rgba(255,255,255,0.3); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%, 100% { transform: scaleY(1); opacity: 0.3; } 50% { transform: scaleY(1.3); opacity: 1; } }

/* ===================== STATS ===================== */
.stats {
  background: var(--cream);
  padding: 0;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.stat-cell {
  padding: 60px 40px;
  border-right: 1px solid var(--grey-200);
  position: relative;
  transition: background var(--transition);
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: var(--white); }
.stat-cell .num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
}
.stat-cell .num sup { font-size: 0.5em; color: var(--saffron); margin-left: 4px; font-weight: 600; }
.stat-cell .stat-label {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-700);
  font-weight: 500;
}
.stat-cell::before {
  content: attr(data-num);
  position: absolute;
  top: 22px; right: 28px;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--saffron);
  font-weight: 600;
}

/* ===================== FEATURE GRID ===================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
.f-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-200);
  transition: all var(--transition);
  grid-column: span 4;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.f-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.f-card .f-visual {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--grey-100);
}
.f-card .f-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform var(--transition-slow);
}
.f-card:hover .f-visual img { transform: scale(1.06); }
.f-card .f-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.f-card .f-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--saffron);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.f-card h4 { margin-bottom: 12px; font-size: 1.35rem; }
.f-card p { font-size: 14px; line-height: 1.7; flex: 1; }
.f-card .f-link {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.f-card .f-link::after { content: '→'; transition: transform var(--transition); }
.f-card:hover .f-link::after { transform: translateX(4px); }

.f-card--wide { grid-column: span 8; }
.f-card--wide .f-visual { height: 300px; }

/* ===================== VISION STRIP ===================== */
.vision-strip {
  background: var(--ink);
  color: var(--white);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.vision-strip::before {
  content: '';
  position: absolute;
  right: -10%; top: 50%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(233,89,26,0.25) 0%, transparent 65%);
  transform: translateY(-50%);
  z-index: 0;
}
.vision-strip-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.vision-strip h2 { color: var(--white); font-size: clamp(2.4rem, 4.6vw, 4rem); margin-bottom: 24px; }
.vision-strip .lead {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.4rem; color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 30px;
  border-left: 3px solid var(--saffron);
  padding-left: 24px;
}
.vision-strip p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.8; margin-bottom: 18px; }

.vision-image {
  position: relative; aspect-ratio: 4/5;
  overflow: hidden;
}
.vision-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.vision-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 8px solid var(--saffron);
  transform: translate(18px, 18px);
  z-index: -1;
  pointer-events: none;
}

/* ===================== UPDATES ===================== */
.updates { background: var(--white); }
.updates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.update-card {
  position: relative;
  padding-top: 32px;
  border-top: 2px solid var(--ink);
  transition: all var(--transition);
}
.update-card:hover { border-top-color: var(--saffron); }
.update-card .date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--saffron);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.update-card h3 { font-size: 1.5rem; margin-bottom: 14px; line-height: 1.25; }
.update-card h3 a { transition: color var(--transition); }
.update-card h3 a:hover { color: var(--saffron); }
.update-card p { font-size: 14px; line-height: 1.7; }
.update-card .tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  background: var(--grey-100);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--grey-700);
  text-transform: uppercase;
  font-weight: 600;
}

/* ===================== CTA BAND ===================== */
.cta-band {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 50%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 20px; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 17px; max-width: 640px; margin: 0 auto 36px; }
.cta-band .btn-outline { border-color: var(--white); color: var(--white); }
.cta-band .btn-outline:hover { background: var(--white); color: var(--saffron); }
.cta-band .btn-light { background: var(--white); color: var(--saffron-deep); }
.cta-band .btn-light:hover { background: var(--ink); color: var(--white); }

/* ===================== FOOTER ===================== */
.footer {
  background: #07090B;
  color: rgba(255,255,255,0.7);
  padding: 100px 0 30px;
  position: relative;
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 70px; }
.footer h5 { color: var(--white); font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 24px; }
.footer p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.8; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { color: rgba(255,255,255,0.6); font-size: 14px; transition: all var(--transition); }
.footer ul a:hover { color: var(--saffron); padding-left: 4px; }

.footer-brand .fb-name { font-family: var(--font-display); font-size: 22px; color: var(--white); margin-bottom: 14px; font-weight: 600; }
.footer-brand .fb-motto { font-style: italic; color: var(--gold-light); margin-bottom: 20px; font-size: 15px; }

.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 2px;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--saffron); border-color: var(--saffron); color: var(--white); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-contact a { display: block; margin-bottom: 8px; font-size: 14px; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact a:hover { color: var(--saffron); }
.footer-contact .label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--saffron); margin-bottom: 6px; }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}
.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { color: var(--saffron); }
.footer-credit { text-align: right; font-size: 12px; letter-spacing: 0.1em; }
.footer-credit strong { color: var(--gold); font-weight: 500; }

/* ===================== PAGE HEADER ===================== */
.page-header {
  min-height: 70vh;
  position: relative;
  padding: 180px 0 100px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-header .ph-bg {
  position: absolute; inset: 0;
  background-size: cover;
  filter: brightness(0.38) saturate(1.1);
}
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,12,15,0.5) 0%, rgba(10,12,15,0.2) 40%, rgba(10,12,15,0.92) 100%);
}
.page-header-inner { position: relative; z-index: 2; }
.page-header h1 { color: var(--white); font-size: clamp(2.8rem, 6vw, 5.2rem); max-width: 900px; }
.page-header .ph-sub { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 640px; margin-top: 18px; line-height: 1.7; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--saffron); }
.breadcrumb .sep { color: var(--saffron); }

/* ===================== ABOUT PAGE ===================== */
.bio-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.bio-portrait {
  position: sticky;
  top: 120px;
}
.bio-portrait .bp-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--grey-100);
}
.bio-portrait .bp-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.bio-portrait .bp-frame {
  position: absolute;
  inset: -18px;
  border: 1px solid var(--saffron);
  pointer-events: none;
}
.bio-portrait .bp-cap {
  margin-top: 22px;
  padding: 18px 0;
  border-top: 1px solid var(--grey-200);
}
.bio-portrait .bp-cap .role { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--saffron); font-weight: 600; margin-bottom: 6px; }
.bio-portrait .bp-cap .name { font-family: var(--font-display); font-size: 22px; }

.bio-body h2 { margin-bottom: 18px; }
.bio-body .lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--charcoal);
  line-height: 1.5;
  padding: 20px 0 20px 28px;
  border-left: 3px solid var(--saffron);
  margin: 28px 0 34px;
}
.bio-body p { font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.bio-body h3 { margin-top: 44px; margin-bottom: 18px; color: var(--ink); }

.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 30px; }
.value-card {
  padding: 26px;
  background: var(--cream);
  border-left: 3px solid var(--saffron);
}
.value-card .v-num { font-family: var(--font-mono); font-size: 11px; color: var(--saffron); letter-spacing: 0.22em; margin-bottom: 10px; }
.value-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { font-size: 14px; line-height: 1.65; }

/* TIMELINE */
.timeline {
  position: relative;
  padding: 20px 0;
  max-width: 980px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: var(--grey-200);
  transform: translateX(-0.5px);
}
.tl-item {
  position: relative;
  width: 50%;
  padding: 30px 46px;
  box-sizing: border-box;
}
.tl-item:nth-child(odd) { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; }
.tl-item::before {
  content: '';
  position: absolute;
  top: 40px;
  width: 12px; height: 12px;
  background: var(--saffron);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--saffron);
  border-radius: 50%;
}
.tl-item:nth-child(odd)::before { right: -6px; }
.tl-item:nth-child(even)::before { left: -6px; }
.tl-item .tl-year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 8px;
}
.tl-item h4 { margin-bottom: 10px; font-size: 1.2rem; }
.tl-item p { font-size: 14px; line-height: 1.7; }

/* ===================== ACHIEVEMENTS PAGE ===================== */
.ach-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.ach-card {
  grid-column: span 4;
  padding: 38px 32px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.ach-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.ach-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.ach-card:hover::before { transform: scaleX(1); }
.ach-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--cream);
  color: var(--saffron);
  margin-bottom: 24px;
}
.ach-icon svg { width: 26px; height: 26px; stroke: currentColor; }
.ach-card h4 { margin-bottom: 12px; font-size: 1.3rem; }
.ach-card p { font-size: 14px; line-height: 1.7; }
.ach-card .ach-num { font-family: var(--font-mono); font-size: 11px; color: var(--saffron); letter-spacing: 0.2em; margin-bottom: 8px; }

.ach-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}
.ach-hero-visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ach-hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.impact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 50px 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  margin: 80px 0;
}
.impact-cell .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--saffron);
  font-weight: 600;
  line-height: 1;
}
.impact-cell .label { margin-top: 10px; font-size: 13px; color: var(--grey-700); letter-spacing: 0.08em; }

/* ===================== CONSTITUENCY ===================== */
.const-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.const-visual { position: relative; }
.const-visual .cv-main { aspect-ratio: 3/4; overflow: hidden; }
.const-visual .cv-main img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.const-visual .cv-inset {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 50%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.const-visual .cv-inset img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--grey-200);
  border-top: 1px solid var(--grey-200);
}
.focus-cell {
  padding: 48px 36px;
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  transition: all var(--transition);
  position: relative;
}
.focus-cell:hover { background: var(--ink); color: var(--white); }
.focus-cell:hover h4, .focus-cell:hover .fc-num { color: var(--white); }
.focus-cell:hover p { color: rgba(255,255,255,0.75); }
.focus-cell .fc-num { font-family: var(--font-mono); font-size: 11px; color: var(--saffron); letter-spacing: 0.22em; margin-bottom: 14px; font-weight: 600; }
.focus-cell h4 { margin-bottom: 12px; font-size: 1.25rem; transition: color var(--transition); }
.focus-cell p { font-size: 14px; line-height: 1.7; transition: color var(--transition); }

.const-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.cg-item {
  overflow: hidden;
  position: relative;
}
.cg-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform var(--transition-slow);
}
.cg-item:hover img { transform: scale(1.05); }
.cg-item.span-2 { grid-column: span 2; }
.cg-item.span-3 { grid-column: span 3; }
.cg-item.row-2 { grid-row: span 2; }

/* ===================== GALLERY PAGE ===================== */
.masonry {
  column-count: 3;
  column-gap: 18px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--grey-100);
}
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}
.masonry-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,12,15,0.65) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.masonry-item:hover::after { opacity: 1; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item .m-tag {
  position: absolute;
  left: 20px; bottom: 20px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 2;
}
.masonry-item:hover .m-tag { opacity: 1; transform: translateY(0); }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 11, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 40px;
  animation: fadeIn 0.3s ease;
}
.lightbox.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}
.lightbox-close {
  position: absolute;
  top: 30px; right: 40px;
  width: 46px; height: 46px;
  color: var(--white);
  font-size: 26px;
  border: 1px solid rgba(255,255,255,0.3);
  display: grid; place-items: center;
  transition: all var(--transition);
}
.lightbox-close:hover { background: var(--saffron); border-color: var(--saffron); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 22px;
  transition: all var(--transition);
}
.lightbox-nav:hover { background: var(--saffron); border-color: var(--saffron); }
.lightbox-nav.prev { left: 40px; }
.lightbox-nav.next { right: 40px; }

/* ===================== VISION PAGE ===================== */
.vision-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vision-hero-grid h2 { font-size: clamp(2.4rem, 4.6vw, 3.8rem); margin-bottom: 22px; }
.vision-hero-grid .lead { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--ink); line-height: 1.5; margin-bottom: 24px; }
.vision-hero-grid p { font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.vision-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.vision-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--grey-200);
}
.pillar {
  padding: 50px 34px;
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  transition: all var(--transition);
  background: var(--white);
}
.pillar:hover { background: var(--ink); color: var(--white); }
.pillar:hover h4, .pillar:hover .p-num { color: var(--white); }
.pillar:hover p { color: rgba(255,255,255,0.7); }
.pillar:hover .p-icon { color: var(--saffron); border-color: var(--saffron); }
.pillar .p-icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border: 1px solid var(--grey-300);
  margin-bottom: 28px;
  color: var(--saffron);
  transition: all var(--transition);
}
.pillar .p-icon svg { width: 26px; height: 26px; stroke: currentColor; }
.pillar .p-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; color: var(--saffron); margin-bottom: 10px; font-weight: 600; transition: color var(--transition); }
.pillar h4 { margin-bottom: 12px; font-size: 1.25rem; transition: color var(--transition); }
.pillar p { font-size: 14px; line-height: 1.7; transition: color var(--transition); }

/* ===================== CONTACT ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
.contact-info h3 { font-size: 1.8rem; margin-bottom: 18px; }
.contact-info p { font-size: 16px; line-height: 1.8; margin-bottom: 36px; }
.contact-detail {
  padding: 22px 0;
  border-bottom: 1px solid var(--grey-200);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail .c-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--cream);
  color: var(--saffron);
  flex-shrink: 0;
}
.contact-detail .c-icon svg { width: 20px; height: 20px; }
.contact-detail .c-text .label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 4px; font-weight: 600; }
.contact-detail .c-text a, .contact-detail .c-text .val { font-size: 16px; color: var(--ink); font-weight: 500; line-height: 1.4; display: block; }
.contact-detail .c-text a:hover { color: var(--saffron); }

.contact-form {
  padding: 50px 44px;
  background: var(--cream);
  border: 1px solid var(--grey-200);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-700); margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--grey-200);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: all var(--transition);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(233,89,26,0.1); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit {
  width: 100%;
  padding: 18px 26px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.form-submit:hover { background: var(--saffron); }

.map-section {
  background: var(--ink);
  color: var(--white);
  padding: 100px 0;
}
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.map-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1C2026 0%, #0A0C0F 100%);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.map-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,169,97,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,97,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-visual .pin {
  position: relative; z-index: 1;
  text-align: center;
}
.map-visual .pin-dot {
  width: 22px; height: 22px;
  background: var(--saffron);
  border-radius: 50%;
  margin: 0 auto 14px;
  box-shadow: 0 0 0 8px rgba(233,89,26,0.2), 0 0 0 20px rgba(233,89,26,0.1);
  animation: pinPulse 2s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(233,89,26,0.2), 0 0 0 20px rgba(233,89,26,0.1); }
  50% { box-shadow: 0 0 0 12px rgba(233,89,26,0.3), 0 0 0 28px rgba(233,89,26,0.15); }
}
.map-visual .pin-label { color: var(--white); font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 4px; }
.map-visual .pin-sub { color: rgba(255,255,255,0.6); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; }

.office-info h3 { color: var(--white); margin-bottom: 20px; }
.office-info p { color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.office-info .ol { margin-top: 28px; }
.office-info .ol-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 14px; }
.office-info .ol-row .k { color: rgba(255,255,255,0.55); letter-spacing: 0.08em; }
.office-info .ol-row .v { color: var(--white); font-weight: 500; }

/* ===================== ANIMATIONS ===================== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.9s cubic-bezier(0.22, 0.61, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--grey-200); }
  .feature-grid .f-card, .feature-grid .f-card--wide { grid-column: span 6; }
  .updates-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-layout, .const-intro, .map-grid, .vision-hero-grid, .ach-hero, .vision-strip-inner, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .bio-portrait { position: static; max-width: 480px; }
  .focus-grid, .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .ach-grid .ach-card { grid-column: span 6; }
  .masonry { column-count: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .impact-row { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .const-gallery { grid-auto-rows: 180px; }
}

@media (max-width: 768px) {
  .container { padding: 0 22px; }
  .section { padding: 80px 0; }
  .nav-menu {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-top: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  .nav.dark .nav-menu { background: var(--ink); }
  .nav-menu.open { max-height: 520px; }
  .nav-menu li { width: 100%; border-bottom: 1px solid var(--grey-100); }
  .nav.dark .nav-menu li { border-bottom-color: rgba(255,255,255,0.08); }
  .nav-menu a { display: block; padding: 18px 24px; font-size: 14px; }
  .nav-menu a::after { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero { padding: 120px 0 60px; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.8rem); }
  .hero-scroll { display: none; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: none !important; border-bottom: 1px solid var(--grey-200); }
  .stat-cell:last-child { border-bottom: none; }

  .feature-grid .f-card, .feature-grid .f-card--wide { grid-column: span 12; }
  .updates-grid { grid-template-columns: 1fr; }

  .timeline::before { left: 12px; }
  .tl-item { width: 100%; left: 0 !important; text-align: left !important; padding: 18px 0 18px 40px; }
  .tl-item::before { left: 6px !important; right: auto !important; top: 28px; }

  .ach-grid .ach-card { grid-column: span 12; }
  .focus-grid, .pillar-grid { grid-template-columns: 1fr; }
  .impact-row { grid-template-columns: 1fr 1fr; gap: 24px; }
  .masonry { column-count: 1; }
  .const-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .cg-item.span-2, .cg-item.span-3 { grid-column: span 2; }

  .contact-form { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
  .footer { padding: 70px 0 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-credit { text-align: center; }

  .page-header { min-height: 60vh; padding: 140px 0 70px; }
  .const-visual .cv-inset { bottom: -20px; right: -20px; }

  .lightbox-nav.prev { left: 16px; }
  .lightbox-nav.next { right: 16px; }
  .lightbox-close { top: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .gate-shell { padding: 44px 28px 40px; }
  .hero-meta { padding: 24px 20px; }
}
