/* ============================================================
   AAMSHYA PHULJI PADAVI — OFFICIAL WEBSITE
   Premium Political Leadership Design System
   ============================================================ */

:root {
  /* Premium Shiv-Sena inspired palette */
  --saffron: #ED7014;
  --saffron-deep: #C85A0B;
  --saffron-soft: #FFF2E6;
  --gold: #C9A961;
  --gold-light: #E6CE8A;
  --charcoal: #111418;
  --charcoal-soft: #1C2025;
  --ink: #0A0C0F;
  --paper: #FAFAF7;
  --paper-warm: #F4F1EA;
  --grey-100: #F2F1EE;
  --grey-200: #E4E2DC;
  --grey-400: #A8A69F;
  --grey-600: #575650;
  --white: #FFFFFF;

  /* Typography */
  --font-serif: "Fraunces", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-display: "Fraunces", "Playfair Display", serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ==========================================================
   TYPOGRAPHY
   ========================================================== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 6vw, 5.25rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.75rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.875rem); }
h4 { font-size: 1.15rem; letter-spacing: 0; }
p  { color: var(--grey-600); font-size: 1.0625rem; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--saffron);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--saffron);
}
.eyebrow.center::before { display: none; }
.eyebrow.light { color: var(--gold-light); }
.eyebrow.light::before { background: var(--gold-light); }

.serif { font-family: var(--font-serif); }
.italic { font-style: italic; }

/* ==========================================================
   LAYOUT HELPERS
   ========================================================== */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wide { max-width: 1560px; margin-inline: auto; padding-inline: var(--gutter); }

section { padding: clamp(70px, 9vw, 140px) 0; }

/* ==========================================================
   NAVIGATION
   ========================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(17, 20, 24, 0.06);
  transition: background .4s var(--ease), padding .4s var(--ease);
}
.nav.scrolled { padding: 12px 0; background: rgba(255, 255, 255, 0.96); }
.nav-inner {
  max-width: 1560px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  box-shadow: 0 6px 18px rgba(237, 112, 20, .28);
}
.brand-text {
  line-height: 1.05;
}
.brand-text .name {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}
.brand-text .role {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: var(--saffron);
  margin-top: 2px;
  font-family: var(--font-sans);
  font-weight: 600;
}

.menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.menu a {
  display: inline-block;
  padding: 10px 14px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
}
.menu a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.menu a:hover,
.menu a.active { color: var(--saffron-deep); }
.menu a:hover::after,
.menu a.active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: .85rem;
  font-weight: 600;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.nav-cta:hover { background: var(--saffron-deep); transform: translateY(-1px); }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--grey-200);
  position: relative;
  background: var(--white);
}
.burger span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .35s var(--ease), top .35s var(--ease), opacity .2s;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 25px; }
.burger.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

@media (max-width: 1040px) {
  .menu, .nav-cta { display: none; }
  .burger { display: block; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--white);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity .4s var(--ease), transform .5s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  position: relative;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu .m-cta {
  margin-top: 28px;
  padding: 14px 28px;
  background: var(--saffron);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 999px;
  transition: all .35s var(--ease);
  cursor: pointer;
}
.btn-primary { background: var(--saffron); color: var(--white); }
.btn-primary:hover { background: var(--saffron-deep); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(237,112,20,.3); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--saffron-deep); transform: translateY(-2px); }
.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-light {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
  background: transparent;
}
.btn-light:hover { background: var(--white); color: var(--ink); }

.btn .arr {
  width: 18px; height: 1px; background: currentColor; position: relative;
}
.btn .arr::after {
  content: ""; position: absolute; right: -1px; top: -4px;
  width: 9px; height: 9px; border-right: 1px solid currentColor; border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 18%;
  filter: grayscale(15%) contrast(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,12,15,.78) 0%, rgba(10,12,15,.55) 40%, rgba(10,12,15,.9) 100%),
              linear-gradient(90deg, rgba(10,12,15,.85) 0%, rgba(10,12,15,.3) 60%, rgba(10,12,15,.65) 100%);
}
.hero-inner {
  position: relative;
  max-width: 1560px;
  margin-inline: auto;
  padding: 40px var(--gutter) 0;
  min-height: calc(100vh - 200px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: end;
  color: var(--white);
}
.hero h1 {
  color: var(--white);
  font-weight: 400;
  font-size: clamp(2.8rem, 6.2vw, 6rem);
  line-height: 1;
  letter-spacing: -.025em;
}
.hero h1 .accent { color: var(--gold-light); font-style: italic; font-weight: 400; }
.hero-tagline {
  margin-top: 28px;
  font-size: 1.15rem;
  color: rgba(255,255,255,.78);
  max-width: 540px;
  line-height: 1.55;
}
.hero-meta {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 18px 36px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-meta li { list-style: none; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.hero-meta strong { display: block; font-family: var(--font-display); font-size: 1.15rem; letter-spacing: -.01em; text-transform: none; color: var(--white); margin-top: 4px; font-weight: 500; }
.hero-actions { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }

.hero-stat-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px;
  padding: 36px;
  color: var(--white);
  max-width: 360px;
  margin-left: auto;
  transform: translateY(-40px);
}
.hero-stat-card .label { font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-light); }
.hero-stat-card .big { font-family: var(--font-display); font-size: 4.5rem; font-weight: 500; letter-spacing: -.03em; line-height: 1; margin: 10px 0; color: var(--white); }
.hero-stat-card .big sup { font-size: 1.4rem; color: var(--gold-light); top: -2em; margin-left: 4px; }
.hero-stat-card p { color: rgba(255,255,255,.75); font-size: .95rem; }
.hero-stat-card .vline { display: block; width: 1px; height: 44px; background: rgba(255,255,255,.25); margin: 22px 0 16px; }

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.65);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,.65), transparent);
  animation: scroll-grow 2s infinite var(--ease);
}
@keyframes scroll-grow { 0%,100% { transform: scaleY(1); opacity: .65 } 50% { transform: scaleY(1.4); opacity: .3 } }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stat-card { margin-left: 0; max-width: none; transform: none; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================
   SECTION HEADER
   ========================================================== */
.sec-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 60px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(17,20,24,.08);
}
.sec-header h2 { max-width: 820px; }
.sec-header .eyebrow { margin-bottom: 18px; }
.sec-header p.lead { font-size: 1.05rem; max-width: 380px; }

@media (max-width: 800px) {
  .sec-header { grid-template-columns: 1fr; }
}

/* ==========================================================
   STATS ROW
   ========================================================== */
.stats {
  background: var(--ink);
  color: var(--white);
}
.stats .container { padding-block: clamp(60px, 8vw, 100px); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.stats-grid .stat {
  padding: 40px;
  border-left: 1px solid rgba(255,255,255,.12);
  position: relative;
}
.stats-grid .stat:first-child { border-left: none; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat .num .plus, .stat .num sup { color: var(--saffron); font-size: .55em; vertical-align: super; margin-left: 4px; }
.stat .lbl {
  margin-top: 16px;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.stat .dsc { margin-top: 8px; color: rgba(255,255,255,.8); font-size: .95rem; }

@media (max-width: 800px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid .stat:nth-child(3) { border-left: none; border-top: 1px solid rgba(255,255,255,.12); }
  .stats-grid .stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.12); }
}

/* ==========================================================
   FEATURE BLOCK (alternating asymmetric)
   ========================================================== */
.feature {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
.feature.reverse { grid-template-columns: 7fr 5fr; }
.feature.reverse .f-media { order: 2; }
.feature-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--grey-100);
}
.feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 1.4s var(--ease);
}
.feature-img:hover img { transform: scale(1.04); }
.feature-img .badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--white);
  padding: 8px 14px;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 999px;
  font-weight: 600;
}
.feature-img .ribbon {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(10,12,15,.9), transparent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.f-body h2 { margin-bottom: 28px; }
.f-body p { margin-bottom: 16px; }
.f-body .quote {
  padding: 24px 0;
  margin: 28px 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .feature, .feature.reverse { grid-template-columns: 1fr; gap: 40px; }
  .feature.reverse .f-media { order: 0; }
}

/* ==========================================================
   TIMELINE
   ========================================================== */
.timeline {
  position: relative;
  padding-left: 40px;
  border-left: 1px solid var(--grey-200);
  max-width: 900px;
  margin-inline: auto;
}
.t-item {
  position: relative;
  padding: 24px 0 40px;
}
.t-item::before {
  content: "";
  position: absolute;
  left: -46px; top: 36px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--saffron);
}
.t-item .year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--saffron);
  letter-spacing: -.02em;
}
.t-item h3 { margin: 6px 0 12px; }
.t-item p { max-width: 640px; }

@media (max-width: 600px) {
  .timeline { padding-left: 28px; }
  .t-item::before { left: -34px; }
}

/* ==========================================================
   CARDS GRID — achievements
   ========================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all .5s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px rgba(17,20,24,.08); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--saffron-soft);
  color: var(--saffron-deep);
  border-radius: 12px;
  margin-bottom: 28px;
}
.card-num {
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--grey-400);
}
.card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.card p { font-size: .975rem; }

@media (max-width: 900px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .cards { grid-template-columns: 1fr; } }

/* ==========================================================
   FULL-BLEED IMAGE BLOCK
   ========================================================== */
.bleed {
  position: relative;
  height: 82vh;
  min-height: 560px;
  overflow: hidden;
}
.bleed img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.bleed .bleed-copy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 60px var(--gutter);
  background: linear-gradient(0deg, rgba(10,12,15,.88) 0%, rgba(10,12,15,.55) 70%, transparent 100%);
  color: var(--white);
}
.bleed-copy h2 { color: var(--white); max-width: 920px; }
.bleed-copy p { color: rgba(255,255,255,.85); max-width: 700px; margin-top: 14px; }

/* ==========================================================
   PAGE HEADER (interior pages)
   ========================================================== */
.page-head {
  padding-top: 140px;
  padding-bottom: 70px;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-head::after {
  content: "";
  position: absolute;
  inset: auto -10% -60% -10%;
  height: 400px;
  background: radial-gradient(ellipse at top, rgba(237,112,20,.22), transparent 60%);
  pointer-events: none;
}
.page-head .container { position: relative; }
.page-head .crumbs {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}
.page-head .crumbs a { color: rgba(255,255,255,.55); }
.page-head .crumbs a:hover { color: var(--gold-light); }
.page-head h1 { color: var(--white); max-width: 1000px; }
.page-head .kicker {
  margin-top: 24px;
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 700px;
}

/* ==========================================================
   GALLERY — masonry
   ========================================================== */
.masonry {
  columns: 3 320px;
  column-gap: 18px;
}
.masonry .m-item {
  break-inside: avoid;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
  background: var(--grey-100);
}
.masonry .m-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.2s var(--ease);
}
.masonry .m-item:hover img { transform: scale(1.04); }
.masonry .m-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,12,15,.6));
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.masonry .m-item:hover::after { opacity: 1; }
.masonry .m-item .cap {
  position: absolute;
  left: 20px; bottom: 18px; right: 20px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  opacity: 0; transform: translateY(10px);
  transition: all .4s var(--ease);
  z-index: 1;
}
.masonry .m-item:hover .cap { opacity: 1; transform: none; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,12,15,.96);
  z-index: 200;
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 6px; }
.lightbox .close {
  position: absolute; top: 26px; right: 26px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 1.5rem;
  transition: background .3s;
}
.lightbox .close:hover { background: var(--saffron); }

/* ==========================================================
   VISION PILLARS
   ========================================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--grey-200);
  border: 1px solid var(--grey-200);
  border-radius: 2px;
  overflow: hidden;
}
.pillar {
  background: var(--paper);
  padding: 50px 34px;
  transition: background .4s var(--ease);
  position: relative;
}
.pillar:hover { background: var(--white); }
.pillar .num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--saffron);
  letter-spacing: .05em;
}
.pillar h3 { margin: 40px 0 14px; font-size: 1.4rem; }
.pillar p { font-size: .95rem; }
.pillar .line { width: 30px; height: 1px; background: var(--saffron); margin-top: 28px; }

@media (max-width: 1000px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pillars { grid-template-columns: 1fr; } }

/* ==========================================================
   CONTACT
   ========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 50px; } }

.contact-info h2 { margin-bottom: 20px; }
.contact-info .info-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--grey-200);
}
.contact-info .info-item:first-of-type { border-top: 1px solid var(--grey-200); margin-top: 40px; }
.contact-info .info-item .lab {
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 8px;
}
.contact-info .info-item a,
.contact-info .info-item span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.contact-info .info-item a:hover { color: var(--saffron-deep); }

.form {
  background: var(--white);
  padding: 48px;
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form .full { grid-column: 1 / -1; }
.form .field label {
  display: block;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-bottom: 8px;
  font-weight: 600;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--grey-200);
  background: transparent;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  transition: border-color .3s;
  outline: none;
}
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--saffron); }
.form textarea { min-height: 120px; resize: vertical; }
.form .submit-row { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; margin-top: 10px; flex-wrap: wrap; gap: 14px; }
.form-note { font-size: .8rem; color: var(--grey-400); }

@media (max-width: 700px) { .form { grid-template-columns: 1fr; padding: 32px 24px; } }

/* ==========================================================
   QUOTE BLOCK
   ========================================================== */
.quote-block {
  background: var(--paper-warm);
  position: relative;
}
.quote-block::before {
  content: "“";
  position: absolute;
  top: 40px; left: 60px;
  font-family: var(--font-display);
  font-size: 16rem;
  line-height: .5;
  color: var(--saffron);
  opacity: .12;
  pointer-events: none;
}
.quote-block blockquote {
  position: relative;
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
  padding: 60px 20px;
}
.quote-block blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--ink);
  line-height: 1.3;
  font-style: italic;
  font-weight: 400;
}
.quote-block cite {
  display: block;
  margin-top: 40px;
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 600;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding-top: 90px;
}
.footer h4 {
  color: var(--white);
  font-size: .8rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-family: var(--font-sans);
  font-weight: 600;
}
.footer a { color: rgba(255,255,255,.75); }
.footer a:hover { color: var(--gold-light); }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr .9fr .9fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
}
.footer-brand p { color: rgba(255,255,255,.6); font-size: .95rem; max-width: 340px; }
.footer-links { list-style: none; display: grid; gap: 12px; font-size: .95rem; }
.footer-contact p { font-size: .95rem; color: rgba(255,255,255,.85); margin-bottom: 10px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center;
  transition: all .3s var(--ease);
}
.footer-socials a:hover { background: var(--saffron); border-color: var(--saffron); color: var(--white); transform: translateY(-2px); }
.footer-socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.footer-bot a { color: rgba(255,255,255,.85); }
.footer-bot .dot { color: rgba(255,255,255,.3); margin: 0 6px; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================
   PASSWORD GATE
   ========================================================== */
.gate {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.gate-visual {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.gate-visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(10%) contrast(1.05);
}
.gate-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,12,15,.65) 0%, rgba(10,12,15,.35) 60%, rgba(237,112,20,.3) 100%);
}
.gate-visual .v-copy {
  position: absolute;
  left: 50px; bottom: 50px; right: 50px;
  color: var(--white);
  z-index: 2;
}
.gate-visual .v-copy .tag {
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 18px;
}
.gate-visual .v-copy h2 {
  color: var(--white);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.1;
}
.gate-visual .v-copy .attr {
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  display: flex; align-items: center; gap: 10px;
}
.gate-visual .v-copy .attr::before { content: ""; width: 22px; height: 1px; background: var(--gold-light); }

.gate-panel {
  display: grid;
  place-items: center;
  padding: 80px var(--gutter);
  background: var(--paper);
}
.gate-card {
  width: 100%;
  max-width: 460px;
}
.gate-card .mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 40px;
}
.gate-card h1 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  margin-bottom: 12px;
}
.gate-card .sub {
  font-size: 1rem;
  color: var(--grey-600);
  margin-bottom: 40px;
}
.gate-field {
  position: relative;
  margin-bottom: 28px;
}
.gate-field label {
  font-size: .7rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--grey-400);
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.gate-field input {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1.5px solid var(--grey-200);
  background: transparent;
  font-size: 1.15rem;
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: .4em;
  outline: none;
  transition: border-color .3s;
}
.gate-field input:focus { border-color: var(--saffron); }
.gate-field .toggle {
  position: absolute;
  right: 0; top: 38px;
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey-600);
  font-weight: 600;
}
.gate-field .toggle:hover { color: var(--saffron); }

.gate-submit {
  width: 100%;
  padding: 18px;
  background: var(--ink);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all .3s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.gate-submit:hover { background: var(--saffron-deep); letter-spacing: .22em; }

.gate-error {
  margin-top: 18px;
  padding: 12px 16px;
  background: #fee;
  border-left: 3px solid #d33;
  color: #922;
  font-size: .88rem;
  opacity: 0;
  transform: translateY(-8px);
  transition: all .35s var(--ease);
  max-height: 0;
  overflow: hidden;
  padding-top: 0; padding-bottom: 0;
  border-left-width: 0;
}
.gate-error.show {
  opacity: 1; transform: none; max-height: 80px;
  padding-top: 12px; padding-bottom: 12px;
  border-left-width: 3px;
}
.gate-error.shake { animation: shake .5s; }
@keyframes shake {
  0%,100% { transform: translateX(0) }
  20%,60% { transform: translateX(-8px) }
  40%,80% { transform: translateX(8px) }
}
.gate-foot {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-200);
  font-size: .78rem;
  color: var(--grey-400);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 900px) {
  .gate { grid-template-columns: 1fr; min-height: 100vh; }
  .gate-visual { min-height: 40vh; }
  .gate-visual .v-copy { left: 30px; right: 30px; bottom: 30px; }
}

/* ==========================================================
   CONSTITUENCY
   ========================================================== */
.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: var(--grey-200);
  border: 1px solid var(--grey-200);
}
.region-cell {
  background: var(--white);
  padding: 36px 30px;
}
.region-cell .k {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -.02em;
}
.region-cell .k .u { color: var(--saffron); }
.region-cell .l { margin-top: 10px; font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; color: var(--grey-600); }
.region-cell p { margin-top: 10px; font-size: .92rem; }

@media (max-width: 800px) { .region-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .region-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   Reveal-on-scroll
   ========================================================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }

/* ==========================================================
   UTILITY
   ========================================================== */
.bg-dark { background: var(--ink); color: var(--white); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,.75); }
.bg-warm { background: var(--paper-warm); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.max-700 { max-width: 700px; }
.mt-0 { margin-top: 0; }
.mt-s { margin-top: 16px; }
.mt-m { margin-top: 28px; }
.mt-l { margin-top: 48px; }

/* Accent stroke */
.accent-stroke {
  display: inline-block;
  width: 60px; height: 1px;
  background: var(--saffron);
  margin-bottom: 24px;
}
.bg-dark .accent-stroke { background: var(--gold-light); }

/* Two-column generic */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: 30px; } }

/* Image grid strip for galleries on home */
.strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  height: 560px;
}
.strip .col-b { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.strip .tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--grey-100);
}
.strip .tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 1.2s var(--ease);
}
.strip .tile:hover img { transform: scale(1.05); }
.strip .tile.tall img { object-position: center 15%; }

@media (max-width: 900px) {
  .strip { grid-template-columns: 1fr 1fr; height: auto; grid-template-rows: repeat(2, 260px); }
  .strip .tile.tall { grid-column: 1 / -1; grid-row: auto; height: 340px; }
  .strip .col-b { display: contents; }
  .strip .col-b .tile { height: 260px; }
}

/* News / Updates */
.updates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.update-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  overflow: hidden;
  transition: all .45s var(--ease);
  display: flex;
  flex-direction: column;
}
.update-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(17,20,24,.1); }
.update-img { aspect-ratio: 3/2; overflow: hidden; }
.update-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; transition: transform 1s var(--ease); }
.update-card:hover .update-img img { transform: scale(1.05); }
.update-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.update-body .tag { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--saffron); font-weight: 600; }
.update-body h3 { margin: 14px 0; font-size: 1.2rem; }
.update-body .date { margin-top: auto; font-size: .82rem; color: var(--grey-400); padding-top: 14px; border-top: 1px solid var(--grey-200); }

@media (max-width: 900px) { .updates { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .updates { grid-template-columns: 1fr; } }

/* Values list */
.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--grey-200);
  border: 1px solid var(--grey-200);
}
.values .v {
  background: var(--paper);
  padding: 36px 30px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.values .v .n {
  font-family: var(--font-display);
  color: var(--saffron);
  font-size: 1.4rem;
  line-height: 1;
  min-width: 30px;
}
.values .v h3 { font-size: 1.2rem; margin-bottom: 8px; }
.values .v p { font-size: .95rem; }
@media (max-width: 700px) { .values { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band {
  background: var(--saffron);
  color: var(--white);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z' fill='none' stroke='%23ffffff' stroke-opacity='.08'/%3E%3C/svg%3E");
  opacity: .5;
  pointer-events: none;
}
.cta-band .inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
}
.cta-band h2 { color: var(--white); max-width: 700px; }
.cta-band .btn { background: var(--ink); color: var(--white); }
.cta-band .btn:hover { background: var(--white); color: var(--ink); }
@media (max-width: 800px) { .cta-band .inner { grid-template-columns: 1fr; } }
