/* =========================================================
   Dadaji Bhuse — Official Website
   Design System: Statesman / Executive / Saffron Premium
   ========================================================= */

:root {
  --saffron: #E6691C;
  --saffron-deep: #B84A0E;
  --saffron-soft: #F4A263;
  --gold: #C8A24A;
  --gold-soft: #E7C77B;
  --charcoal: #0E1116;
  --ink: #181A1F;
  --graphite: #2A2E37;
  --slate: #525866;
  --mist: #9CA3AF;
  --bone: #F5F0E6;
  --cream: #FAF6EE;
  --paper: #FFFFFF;
  --line: rgba(14, 17, 22, 0.12);
  --line-soft: rgba(14, 17, 22, 0.06);
  --shadow-sm: 0 2px 8px rgba(14,17,22,0.06);
  --shadow-md: 0 20px 50px -20px rgba(14,17,22,0.25);
  --shadow-lg: 0 40px 80px -30px rgba(14,17,22,0.35);
  --radius: 2px;
  --maxw: 1440px;
  --gutter: clamp(20px, 4vw, 64px);

  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  -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 .25s ease; }
a:hover { color: var(--saffron); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; margin: 0; color: var(--charcoal); line-height: 1.08; }

p { margin: 0 0 1em 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { width: 100%; max-width: 1680px; margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { width: 100%; max-width: 960px; margin: 0 auto; padding: 0 var(--gutter); }

/* ---- Eyebrow / Small Caps ---- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--saffron);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--saffron);
}
.eyebrow.center::before { display: inline-block; }
.eyebrow.no-bar::before { display: none; }
.eyebrow.light { color: var(--gold-soft); }
.eyebrow.light::before { background: var(--gold-soft); }

/* ---- Display Headings ---- */
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 6.2vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.display .italic { font-style: italic; font-weight: 300; color: var(--saffron); }

.h-section {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.h-section .italic { font-style: italic; color: var(--saffron); font-weight: 300; }

.lede {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--slate);
  max-width: 62ch;
  font-weight: 400;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(250, 246, 238, 0.78);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--line-soft);
  transition: all .35s ease;
}
.nav.scrolled { padding: 12px 0; background: rgba(250, 246, 238, 0.96); }
.nav.inverted { background: rgba(14,17,22,0.6); border-bottom-color: rgba(255,255,255,0.08); }
.nav.inverted .nav-link, .nav.inverted .brand-text, .nav.inverted .brand-sub { color: #fff; }
.nav.inverted.scrolled { background: rgba(14,17,22,0.94); border-bottom-color: rgba(255,255,255,0.06); }
.nav.inverted.scrolled .nav-cta { background: var(--saffron); }
.nav.inverted.scrolled .nav-toggle span { background: #fff; }

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(230,105,28,0.35);
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--slate);
  margin-top: 4px;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-link {
  position: relative;
  display: inline-block;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 1px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--saffron); }

.nav-cta {
  padding: 10px 22px;
  background: var(--charcoal);
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: var(--radius);
  transition: all .3s ease;
  margin-left: 12px;
}
.nav-cta:hover { background: var(--saffron); color: #fff; }
.nav.inverted .nav-cta { background: var(--saffron); }
.nav.inverted .nav-cta:hover { background: #fff; color: var(--charcoal); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 110;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--charcoal);
  transition: all .3s ease;
}
.nav.inverted .nav-toggle span { background: #fff; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--charcoal); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--charcoal); }

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-menu, .nav-cta {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(420px, 86vw);
    flex-direction: column;
    background: var(--cream);
    padding: 110px 36px 40px;
    align-items: flex-start;
    gap: 8px;
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu .nav-link {
    font-size: 22px;
    font-family: var(--serif);
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    width: 100%;
  }
  .nav-menu .nav-link::after { display: none; }
  .nav-cta {
    position: static;
    display: inline-block;
    height: auto; width: auto;
    margin-top: 24px;
    padding: 14px 28px;
    transform: none;
  }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: var(--radius);
  transition: all .35s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  line-height: 1;
  border: 1px solid transparent;
}
.btn .arrow {
  display: inline-block;
  transition: transform .3s ease;
}
.btn:hover .arrow { transform: translateX(6px); }

.btn-primary {
  background: var(--saffron);
  color: #fff;
  box-shadow: 0 8px 22px -8px rgba(230,105,28,0.6);
}
.btn-primary:hover { background: var(--saffron-deep); color: #fff; transform: translateY(-1px); box-shadow: 0 14px 30px -10px rgba(230,105,28,0.7); }

.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: var(--saffron); color: #fff; }

.btn-ghost { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-ghost:hover { background: var(--charcoal); color: #fff; }

.btn-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-light:hover { background: #fff; color: var(--charcoal); border-color: #fff; }

/* =========================================================
   SECTIONS
   ========================================================= */
section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.section-tight { padding: clamp(60px, 7vw, 100px) 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(30px, 4vw, 50px);
  border-bottom: 1px solid var(--line);
}
.section-head.single { grid-template-columns: 1fr; gap: 16px; }
.section-head-right { padding-bottom: 8px; }
@media (max-width: 780px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; }
}

/* =========================================================
   HERO (Homepage and page banners)
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 100px;
  background: var(--charcoal);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0.52;
  filter: grayscale(0.15) contrast(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(14,17,22,0.92) 0%, rgba(14,17,22,0.6) 45%, rgba(14,17,22,0.35) 100%),
    linear-gradient(180deg, rgba(14,17,22,0) 40%, rgba(14,17,22,0.9) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 {
  font-size: clamp(44px, 7vw, 112px);
  line-height: 0.96;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero h1 .italic { font-style: italic; font-weight: 300; color: var(--gold-soft); }
.hero .lede { color: rgba(255,255,255,0.78); max-width: 58ch; font-size: clamp(16px, 1.4vw, 19px); }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

.hero-meta {
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: clamp(24px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-meta-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: baseline;
}
.hero-meta-num {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--gold-soft);
  font-weight: 300;
  line-height: 1;
}
.hero-meta-text { color: rgba(255,255,255,0.85); font-size: 13px; letter-spacing: 0.02em; }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
  animation: scrollDown 2.2s infinite ease-in-out;
}
@keyframes scrollDown {
  0%,100% { transform: scaleY(0.6); transform-origin: top; }
  50% { transform: scaleY(1); }
}

/* Sub-hero for non-home pages */
.page-hero {
  position: relative;
  padding: 180px 0 90px;
  background: var(--charcoal);
  color: #fff;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; object-position: center 22%; }
.page-hero-bg::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(14,17,22,0.7) 0%, rgba(14,17,22,0.9) 100%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 92px);
  font-weight: 400;
  line-height: 0.98;
  margin-top: 24px;
  letter-spacing: -0.02em;
}
.page-hero h1 .italic { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.page-hero .lede { color: rgba(255,255,255,0.78); margin-top: 24px; max-width: 60ch; }

.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
}
.breadcrumbs a:hover { color: var(--gold-soft); }
.breadcrumbs .sep { opacity: 0.5; }

/* =========================================================
   COUNTERS / STATS
   ========================================================= */
.stats-strip {
  background: var(--charcoal);
  color: #fff;
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.stat {
  background: var(--charcoal);
  padding: 40px 34px;
  position: relative;
  transition: background .4s ease;
}
.stat:hover { background: var(--graphite); }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(54px, 5.5vw, 84px);
  font-weight: 300;
  color: var(--gold-soft);
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-num .suffix { font-size: 0.45em; color: var(--saffron); }
.stat-label {
  margin-top: 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.stat-sub { margin-top: 8px; font-size: 13px; color: rgba(255,255,255,0.5); }
@media (max-width: 860px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

/* =========================================================
   FEATURE / ACHIEVEMENT CARDS
   ========================================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.feature-card {
  background: var(--paper);
  padding: 44px 36px 40px;
  position: relative;
  transition: all .4s ease;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}
.feature-card:hover { background: var(--cream); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--saffron);
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}
.feature-card h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--charcoal);
}
.feature-card p { color: var(--slate); font-size: 14.5px; line-height: 1.65; margin: 0; }
.feature-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--saffron);
  margin-bottom: 28px;
  transition: all .4s ease;
}
.feature-card:hover .feature-icon { background: var(--saffron); color: #fff; border-color: var(--saffron); }
@media (max-width: 960px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* =========================================================
   SPLIT / STORY SECTIONS
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.split.rev { direction: rtl; }
.split.rev > * { direction: ltr; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.split-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink);
}
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform .8s ease;
}
.split-media:hover img { transform: scale(1.03); }
.split-media.tall { aspect-ratio: 3/4.2; }

.split-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--saffron);
  color: #fff;
  padding: 10px 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
}

.prose p { color: var(--slate); font-size: 16px; line-height: 1.75; margin-bottom: 1.1em; }
.prose p.lead { color: var(--charcoal); font-size: 20px; line-height: 1.5; font-weight: 400; }
.prose strong { color: var(--charcoal); font-weight: 600; }

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline {
  position: relative;
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  color: var(--saffron);
  letter-spacing: -0.02em;
}
.timeline-year .label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.26em; color: var(--slate); margin-top: 10px; font-family: var(--sans); font-weight: 500; }
.timeline-content h3 { font-size: 24px; margin-bottom: 10px; line-height: 1.25; }
.timeline-content p { color: var(--slate); margin: 0; }
@media (max-width: 720px) {
  .timeline-item { grid-template-columns: 1fr; gap: 14px; }
  .timeline-year { font-size: 34px; }
}

/* =========================================================
   QUOTE
   ========================================================= */
.quote-block {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: "\201C";
  position: absolute;
  font-family: var(--serif);
  font-size: 420px;
  color: rgba(200,162,74,0.08);
  line-height: 1;
  top: -60px; left: 30px;
}
.quote-inner { position: relative; z-index: 1; max-width: 920px; }
.quote-inner p {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.25;
  color: #fff;
  font-weight: 300;
  margin-bottom: 36px;
  letter-spacing: -0.015em;
}
.quote-inner p .highlight { color: var(--gold-soft); font-style: italic; }
.quote-attr {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
  width: fit-content;
}
.quote-attr-name { font-family: var(--serif); font-size: 20px; color: #fff; }
.quote-attr-role { font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding-top: 90px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h5 {
  color: #fff;
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-weight: 600;
  margin-bottom: 26px;
}
.footer-col a { display: block; padding: 7px 0; color: rgba(255,255,255,0.65); font-size: 14px; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-brand .brand-mark { box-shadow: none; }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-sub { color: rgba(255,255,255,0.55); }
.footer-brand p { margin-top: 24px; color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.65; max-width: 32ch; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  padding: 0;
  transition: all .3s ease;
  border-radius: 50%;
}
.footer-social a:hover { background: var(--saffron); border-color: var(--saffron); color: #fff; }
.footer-social a svg { width: 15px; height: 15px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--gold-soft); }
.footer-contact-line a { color: var(--gold-soft); }

/* =========================================================
   FORM
   ========================================================= */
.form-field { position: relative; margin-bottom: 22px; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 18px 0 12px;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  color: var(--charcoal);
  border-radius: 0;
  outline: none;
  transition: border-color .3s ease;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--saffron); }
.form-field label {
  position: absolute;
  top: 18px; left: 0;
  font-size: 13px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  pointer-events: none;
  transition: all .3s ease;
}
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: -2px;
  font-size: 10.5px;
  color: var(--saffron);
  letter-spacing: 0.22em;
}

/* =========================================================
   UTIL
   ========================================================= */
.divider { height: 1px; background: var(--line); margin: 40px 0; }
.rule-top { border-top: 1px solid var(--line); padding-top: 40px; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-s { margin-top: 16px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 50px; }
.mb-0 { margin-bottom: 0; }

.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
.bg-bone { background: var(--bone); }
.bg-dark { background: var(--charcoal); color: #fff; }
.bg-dark h2, .bg-dark h3 { color: #fff; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* Saffron accent marks */
.acc-bar {
  width: 56px; height: 3px; background: var(--saffron);
  display: inline-block;
}

/* =========================================================
   PAGE-SPECIFIC: PASSWORD GATE
   ========================================================= */
.gate {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  z-index: 1000;
}
.gate-bg {
  position: absolute;
  inset: 0;
}
.gate-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0.28;
  filter: grayscale(0.3) contrast(1.05);
}
.gate-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(14,17,22,0.35) 0%, rgba(14,17,22,0.92) 75%),
    linear-gradient(135deg, rgba(14,17,22,0.6), rgba(14,17,22,0.9));
}

.gate-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  text-align: center;
  padding: 60px 50px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.gate-seal {
  width: 72px; height: 72px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--serif);
  font-size: 26px;
  box-shadow: 0 14px 34px rgba(230,105,28,0.4);
  position: relative;
}
.gate-seal::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(200,162,74,0.4);
  border-radius: 50%;
}
.gate h1 {
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.gate h1 .italic { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.gate-sub {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  margin-bottom: 36px;
}
.gate-form { margin-top: 12px; }
.gate-input-wrap {
  position: relative;
  margin-bottom: 22px;
}
.gate-input {
  width: 100%;
  padding: 18px 20px;
  font-family: var(--sans);
  font-size: 18px;
  letter-spacing: 0.22em;
  text-align: center;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  outline: none;
  transition: all .3s ease;
  border-radius: var(--radius);
}
.gate-input:focus { border-color: var(--saffron); background: rgba(0,0,0,0.5); }
.gate-input::placeholder { color: rgba(255,255,255,0.35); letter-spacing: 0.22em; }
.gate-btn {
  width: 100%;
  padding: 18px;
  background: var(--saffron);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  border-radius: var(--radius);
  transition: all .3s ease;
}
.gate-btn:hover { background: var(--saffron-deep); }
.gate-error {
  min-height: 22px;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FF6B6B;
  opacity: 0;
  transform: translateY(-6px);
  transition: all .25s ease;
}
.gate-error.show { opacity: 1; transform: translateY(0); }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
}
.shake { animation: shake .45s ease; }
.gate-foot {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 10.5px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* =========================================================
   HOMEPAGE - FEATURED STORY
   ========================================================= */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--line);
  border: 1px solid var(--line);
  min-height: 560px;
}
.story-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.story-text {
  background: var(--paper);
  padding: clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-text h2 { font-size: clamp(32px, 3.6vw, 54px); margin: 20px 0 22px; line-height: 1.05; }
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; min-height: auto; } .story-media { min-height: 420px; } }

/* =========================================================
   UPDATES / NEWS
   ========================================================= */
.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.update-card {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease;
  border: 1px solid var(--line);
}
.update-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.update-media { aspect-ratio: 16/10; overflow: hidden; }
.update-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .8s ease; }
.update-card:hover .update-media img { transform: scale(1.06); }
.update-body { padding: 28px 28px 32px; }
.update-tag { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--saffron); font-weight: 600; }
.update-body h3 { font-size: 22px; line-height: 1.25; margin: 14px 0 10px; color: var(--charcoal); }
.update-date { font-size: 12.5px; color: var(--slate); }
@media (max-width: 860px) { .updates-grid { grid-template-columns: 1fr; } }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
  columns: 3 320px;
  column-gap: 6px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .8s ease, filter .5s ease;
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14,17,22,0.7) 100%);
  opacity: 0;
  transition: opacity .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover::after { opacity: 1; }
.gallery-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 22px 20px;
  color: #fff;
  font-size: 12.5px;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: all .4s ease;
  pointer-events: none;
}
.gallery-item:hover .gallery-cap { transform: translateY(0); opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14,17,22,0.96);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  color: #fff;
  font-size: 28px;
  background: none;
  padding: 10px;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 22px;
  transition: background .2s ease;
}
.lightbox-nav:hover { background: var(--saffron); border-color: var(--saffron); }
.lightbox-nav.prev { left: 28px; }
.lightbox-nav.next { right: 28px; }

/* =========================================================
   HIGHLIGHTS BAR
   ========================================================= */
.highlight-bar {
  display: flex;
  align-items: center;
  gap: 30px;
  background: var(--saffron);
  color: #fff;
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.hb-track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  flex-shrink: 0;
  padding-left: 30px;
}
.hb-track span { font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 18px; }
.hb-track span::after { content: "\2022"; color: rgba(255,255,255,0.6); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   CONSTITUENCY MAP / CARDS
   ========================================================= */
.constit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 820px) { .constit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .constit-grid { grid-template-columns: 1fr; } }
.constit-card {
  padding: 34px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: all .4s ease;
}
.constit-card:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.constit-card:hover h3, .constit-card:hover p { color: #fff; }
.constit-card:hover .constit-num { color: var(--gold-soft); }
.constit-num {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 18px;
}
.constit-card h3 { font-size: 19px; margin-bottom: 10px; }
.constit-card p { font-size: 14px; color: var(--slate); margin: 0; }

/* =========================================================
   VISION PILLARS
   ========================================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 40px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all .4s ease;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 0;
}
.pillar:hover::before { transform: translateY(0); }
.pillar:hover { border-color: var(--saffron); }
.pillar:hover * { color: #fff !important; }
.pillar > * { position: relative; z-index: 1; }
.pillar-num { font-family: var(--serif); font-size: 14px; color: var(--saffron); letter-spacing: 0.18em; margin-bottom: 20px; }
.pillar h3 { font-size: 24px; margin-bottom: 14px; line-height: 1.15; }
.pillar p { font-size: 14.5px; color: var(--slate); margin: 0; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}
@media (max-width: 860px) { .contact-split { grid-template-columns: 1fr; } }
.contact-info {
  padding: clamp(40px, 5vw, 70px);
  background: var(--charcoal);
  color: #fff;
}
.contact-info h2 { color: #fff; }
.contact-info p { color: rgba(255,255,255,0.75); }
.contact-info-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .label { font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; margin-bottom: 8px; }
.contact-info-item a, .contact-info-item span { color: #fff; font-size: 17px; font-family: var(--serif); }
.contact-info-item a:hover { color: var(--gold-soft); }
.contact-form {
  padding: clamp(40px, 5vw, 70px);
  background: var(--paper);
}
