/* ==========================================================================
   Prakash Surve — Official Website
   Premium Political Leadership Brand System
   ========================================================================== */

:root {
  /* Brand palette */
  --saffron: #E87722;
  --saffron-deep: #C75E12;
  --saffron-soft: #F4A261;
  --gold: #C8A24A;
  --gold-light: #E6C888;
  --gold-deep: #8F6F1F;
  --charcoal: #0E1217;
  --charcoal-2: #171C24;
  --charcoal-3: #222831;
  --ink: #2B3139;
  --grey: #6B7280;
  --grey-2: #9CA3AF;
  --grey-3: #E5E7EB;
  --cream: #FAF7F2;
  --cream-2: #F2ECE0;
  --white: #FFFFFF;

  /* Typography */
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-sans: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Structure */
  --radius: 4px;
  --radius-lg: 14px;
  --radius-xl: 24px;
  --container: 1280px;
  --nav-h: 80px;
  --shadow-sm: 0 4px 14px rgba(14, 18, 23, 0.06);
  --shadow-md: 0 20px 45px rgba(14, 18, 23, 0.10);
  --shadow-lg: 0 30px 80px rgba(14, 18, 23, 0.20);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -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 .3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

::selection { background: var(--saffron); color: var(--white); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.25rem; }
p  { color: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--saffron);
}
.eyebrow.light { color: var(--gold-light); }
.eyebrow.light::before { background: var(--gold-light); }

.section-title {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  margin-bottom: 22px;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 640px;
  line-height: 1.75;
}

/* ---------- Container & Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-dark {
  background: var(--charcoal);
  color: var(--grey-3);
}
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,0.72); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: all .4s var(--ease);
  background: transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(14,18,23,0.06);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color .35s var(--ease);
}
.nav.scrolled .brand { color: var(--charcoal); }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 6px 16px rgba(232,119,34,0.35);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: .6;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text small {
  font-family: var(--font-sans);
  font-size: .65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
  font-weight: 600;
  transition: color .35s var(--ease);
}
.nav.scrolled .brand-text small { color: var(--saffron); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  display: inline-block;
  padding: 10px 18px;
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  border-radius: 40px;
  transition: color .35s var(--ease);
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: 4px;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-menu a:hover { color: var(--gold-light); }
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }
.nav-menu a.active { color: var(--gold-light); }

.nav.scrolled .nav-menu a { color: var(--charcoal); }
.nav.scrolled .nav-menu a:hover,
.nav.scrolled .nav-menu a.active { color: var(--saffron); }

.nav-cta {
  padding: 11px 22px !important;
  background: var(--saffron);
  color: var(--white) !important;
  border-radius: 40px;
  margin-left: 8px;
  box-shadow: 0 10px 24px rgba(232,119,34,0.35);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--saffron-deep);
  color: var(--white) !important;
  transform: translateY(-1px);
}
.nav.scrolled .nav-cta {
  background: var(--charcoal);
  box-shadow: none;
}
.nav.scrolled .nav-cta:hover { background: var(--saffron); }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  align-items: center;
  justify-content: center;
  transition: background .3s var(--ease);
}
.hamburger:hover { background: var(--saffron); }
.hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--white);
  position: relative;
  transition: all .3s var(--ease);
}
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  width: 18px; height: 1.5px;
  background: var(--white);
  left: 0;
  transition: all .3s var(--ease);
}
.hamburger span::before { top: -6px; }
.hamburger span::after  { top: 6px; }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { top: 0; transform: rotate(45deg); }
.hamburger.open span::after  { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--charcoal);
  transform: translateY(-110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .5s var(--ease-in-out), opacity .3s var(--ease), visibility 0s linear .5s;
  z-index: 99;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform .5s var(--ease-in-out), opacity .3s var(--ease), visibility 0s linear 0s;
}
.mobile-menu a {
  display: block;
  padding: 18px 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--saffron); }
.mobile-menu .mobile-foot {
  margin-top: auto;
  padding-top: 30px;
  color: var(--grey-2);
  font-size: .85rem;
}
.mobile-menu .mobile-foot a {
  display: inline;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--gold-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 40px;
  transition: all .35s var(--ease);
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--saffron);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(232,119,34,0.3);
}
.btn-primary:hover {
  background: var(--saffron-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(232,119,34,0.4);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--saffron);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(14,18,23,0.2);
}
.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-light {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}
.btn-light:hover {
  background: var(--white);
  color: var(--charcoal);
}
.btn svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  padding-top: var(--nav-h);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    rgba(14,18,23,0.92) 0%,
    rgba(14,18,23,0.78) 40%,
    rgba(14,18,23,0.45) 70%,
    rgba(14,18,23,0.25) 100%);
  z-index: -1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  animation: heroZoom 18s var(--ease) infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.12); }
}
.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 28px 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.7rem, 6.2vw, 5.4rem);
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 24px;
}
.hero-copy h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}
.hero-copy p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-end;
  justify-self: end;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: var(--radius-xl);
  padding: 28px 30px;
  width: 300px;
  max-width: 100%;
}
.hero-card .label {
  font-size: .72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.hero-card h4 {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 12px;
}
.hero-card p {
  color: rgba(255,255,255,0.68);
  font-size: .92rem;
  line-height: 1.6;
}

.hero-scroll {
  position: absolute;
  left: 28px;
  bottom: 30px;
  color: rgba(255,255,255,0.6);
  font-size: .72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
}

.hero-meta {
  position: absolute;
  right: 28px; bottom: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,0.7);
  font-size: .78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-meta span.dot {
  width: 6px; height: 6px;
  background: var(--saffron);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(232,119,34,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(232,119,34,0.2); }
  50%      { box-shadow: 0 0 0 9px rgba(232,119,34,0.05); }
}

/* ---------- Page Header (interior pages) ---------- */
.page-head {
  padding: calc(var(--nav-h) + 80px) 0 90px;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-head::after {
  content: "";
  position: absolute;
  bottom: -120px; right: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(232,119,34,0.25), transparent 70%);
  filter: blur(40px);
}
.page-head .container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: end;
  position: relative;
  z-index: 2;
}
.page-head h1 { color: var(--white); font-size: clamp(2.6rem, 5vw, 4.4rem); }
.page-head p { color: rgba(255,255,255,0.7); max-width: 480px; margin-top: 20px; }
.breadcrumb {
  font-size: .78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--grey-2); }
.breadcrumb a:hover { color: var(--white); }

/* ---------- Counters ---------- */
.counters {
  position: relative;
  padding: 90px 0;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}
.counters::before {
  content: "";
  position: absolute;
  top: -120px; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(232,119,34,0.18), transparent 70%);
  filter: blur(30px);
}
.counter-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  z-index: 2;
}
.counter-item {
  position: relative;
  padding: 10px 0 10px 26px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.counter-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
}
.counter-num span { color: var(--saffron); }
.counter-label {
  margin-top: 12px;
  font-size: .82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ---------- Split: Image + Copy ---------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1fr 1.1fr; }
.split.reverse .split-img { order: 2; }
.split-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 1.6s var(--ease);
}
.split-img:hover img { transform: scale(1.04); }
.split-img .stamp {
  position: absolute;
  left: 24px; bottom: 24px;
  background: rgba(14,18,23,0.75);
  color: var(--white);
  backdrop-filter: blur(18px);
  padding: 12px 20px;
  border-radius: 40px;
  font-size: .75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.split-copy .section-lead { margin-bottom: 28px; }
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(14,18,23,0.08);
  font-size: .98rem;
  color: var(--ink);
}
.bullet-list li::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: .7rem;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Feature cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.feature-card {
  position: relative;
  padding: 36px 30px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(14,18,23,0.06);
  transition: all .45s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-3));
  opacity: 0;
  transition: opacity .45s var(--ease);
  z-index: -1;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover h4,
.feature-card:hover .feature-num { color: var(--white); }
.feature-card:hover p { color: rgba(255,255,255,0.7); }
.feature-card:hover .feature-ico {
  background: var(--saffron);
  color: var(--white);
}
.feature-ico {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(232,119,34,0.1);
  color: var(--saffron);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: all .45s var(--ease);
}
.feature-ico svg { width: 24px; height: 24px; }
.feature-num {
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--grey);
  margin-bottom: 6px;
  letter-spacing: 0.1em;
  transition: color .45s var(--ease);
}
.feature-card h4 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  transition: color .45s var(--ease);
}
.feature-card p {
  font-size: .94rem;
  color: var(--grey);
  line-height: 1.65;
  transition: color .45s var(--ease);
}

/* ---------- Updates / News cards ---------- */
.updates-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  margin-top: 50px;
}
.update-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  isolation: isolate;
  cursor: pointer;
  transition: transform .5s var(--ease);
  background: var(--charcoal-2);
}
.update-card:hover { transform: translateY(-6px); }
.update-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, center top);
  z-index: -2;
  transition: transform 1.4s var(--ease);
}
.update-card:hover .update-card-img { transform: scale(1.06); }
.update-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,18,23,0) 30%, rgba(14,18,23,0.95) 100%);
  z-index: -1;
}
.update-card .tag {
  align-self: flex-start;
  padding: 6px 14px;
  background: var(--saffron);
  color: var(--white);
  font-size: .7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 40px;
  margin-bottom: 16px;
}
.update-card h4 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
  line-height: 1.25;
}
.update-card p {
  color: rgba(255,255,255,0.78);
  font-size: .92rem;
}
.update-card.tall { grid-row: span 2; min-height: 860px; }

/* ---------- CTA band ---------- */
.cta-band {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,119,34,0.35), transparent 70%);
  filter: blur(50px);
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-band h2 { color: var(--white); max-width: 600px; }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 540px; margin-top: 14px; }

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--saffron), var(--gold), transparent);
}
.tl-item {
  position: relative;
  padding: 0 0 50px 62px;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: 10px; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--saffron);
  box-shadow: 0 0 0 6px rgba(232,119,34,0.12);
}
.tl-year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--saffron);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  font-weight: 600;
}
.tl-item h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.tl-item p { color: var(--grey); max-width: 620px; }

/* ---------- Quote ---------- */
.quote-block {
  position: relative;
  padding: 80px 0;
  text-align: center;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.35;
  color: var(--charcoal);
  font-style: italic;
  font-weight: 400;
  max-width: 880px;
  margin: 0 auto 28px;
  position: relative;
}
.quote-block blockquote::before {
  content: "\201C";
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  color: var(--saffron);
  opacity: 0.18;
  line-height: 1;
  font-family: var(--font-display);
}
.quote-block cite {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: .85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
}
.quote-block cite strong { color: var(--saffron); display: block; font-size: .95rem; margin-bottom: 4px; }

/* ---------- Achievements Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.stat-card {
  padding: 32px 26px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border-top: 3px solid var(--saffron);
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease);
}
.stat-card:hover { transform: translateY(-4px); }
.stat-card .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--charcoal);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-card .num span { color: var(--saffron); }
.stat-card .lab {
  margin-top: 10px;
  font-size: .88rem;
  color: var(--grey);
  letter-spacing: 0.02em;
}

/* ---------- Gallery (masonry) ---------- */
.gallery-grid {
  columns: 3;
  column-gap: 18px;
  margin-top: 40px;
}
.gal-item {
  break-inside: avoid;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: zoom-in;
  background: var(--charcoal);
}
.gal-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s var(--ease);
}
.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,18,23,0) 50%, rgba(14,18,23,0.7) 100%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.gal-item:hover img { transform: scale(1.06); }
.gal-item:hover::after { opacity: 1; }
.gal-cap {
  position: absolute;
  left: 20px; bottom: 16px; right: 20px;
  color: var(--white);
  font-size: .88rem;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s var(--ease);
  z-index: 2;
}
.gal-item:hover .gal-cap {
  opacity: 1;
  transform: translateY(0);
}
.gal-cap strong { display: block; font-family: var(--font-display); font-size: 1rem; margin-bottom: 2px; }

/* Gallery filter pills */
.gal-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.gal-filters button {
  padding: 10px 20px;
  border-radius: 40px;
  background: var(--white);
  color: var(--charcoal);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: 1px solid var(--grey-3);
  transition: all .3s var(--ease);
}
.gal-filters button.active,
.gal-filters button:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14,18,23,0.96);
  backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
  padding: 40px;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all .3s var(--ease);
}
.lightbox-close:hover { background: var(--saffron); border-color: var(--saffron); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 1.3rem;
  transition: all .3s var(--ease);
}
.lightbox-nav:hover { background: var(--saffron); border-color: var(--saffron); }
.lightbox-nav.prev { left: 28px; }
.lightbox-nav.next { right: 28px; }

/* ---------- Vision page ---------- */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.vision-card {
  position: relative;
  padding: 36px 28px 30px;
  background: var(--white);
  border-radius: var(--radius-xl);
  transition: all .4s var(--ease);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vision-card .big-num {
  font-family: var(--font-display);
  color: var(--cream-2);
  font-size: 5rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
  transition: color .4s var(--ease);
}
.vision-card h4 { font-size: 1.25rem; margin-bottom: 10px; line-height: 1.3; }
.vision-card p { font-size: .92rem; color: var(--grey); line-height: 1.6; }
.vision-card:hover {
  background: var(--charcoal);
  transform: translateY(-5px);
}
.vision-card:hover .big-num { color: var(--saffron); }
.vision-card:hover h4 { color: var(--white); }
.vision-card:hover p { color: rgba(255,255,255,0.66); }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-card {
  padding: 48px 44px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  bottom: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,119,34,0.3), transparent 70%);
  filter: blur(30px);
}
.contact-card h3 { color: var(--white); margin-bottom: 30px; }
.contact-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ico {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--gold-light);
  display: grid;
  place-items: center;
}
.contact-list .ico svg { width: 18px; height: 18px; }
.contact-list small {
  display: block;
  font-size: .72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.contact-list a, .contact-list strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}
.contact-list a:hover { color: var(--saffron-soft); }

/* form */
.contact-form {
  padding: 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: .78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  padding: 16px 18px;
  border: 1px solid var(--grey-3);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: .98rem;
  color: var(--charcoal);
  background: var(--white);
  transition: all .3s var(--ease);
  resize: vertical;
}
.field textarea { min-height: 140px; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(232,119,34,0.12);
}
.form-foot {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.form-note {
  font-size: .82rem;
  color: var(--grey);
  max-width: 360px;
}
.form-msg {
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(46,160,89,0.12);
  color: #1e6a3a;
  font-size: .9rem;
  display: none;
}
.form-msg.show { display: block; }

/* ---------- Footer ---------- */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 200px;
  background: radial-gradient(ellipse, rgba(232,119,34,0.18), transparent 70%);
  filter: blur(40px);
}
.foot-top {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-brand .brand { color: var(--white); margin-bottom: 22px; }
.foot-brand p {
  color: rgba(255,255,255,0.6);
  font-size: .92rem;
  max-width: 340px;
  line-height: 1.7;
}
.foot-col h5 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 600;
}
.foot-col ul { display: flex; flex-direction: column; gap: 12px; }
.foot-col li a {
  color: rgba(255,255,255,0.65);
  font-size: .94rem;
}
.foot-col li a:hover { color: var(--saffron); }
.foot-contact a { color: rgba(255,255,255,0.65); font-size: .94rem; }
.foot-contact a:hover { color: var(--saffron-soft); }
.foot-contact .line {
  font-size: .94rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}
.foot-contact .line a { color: var(--white); }

.foot-bottom {
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .82rem;
}
.foot-bottom .designed {
  color: rgba(255,255,255,0.55);
}
.foot-bottom .designed a { color: var(--gold-light); }
.foot-bottom .designed a:hover { color: var(--saffron); }
.social-icons {
  display: flex;
  gap: 10px;
}
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.72);
  transition: all .3s var(--ease);
}
.social-icons a svg { width: 16px; height: 16px; }
.social-icons a:hover {
  background: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
  transform: translateY(-2px);
}

/* ---------- Password Gate ---------- */
.gate {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  color: var(--white);
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.gate-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.gate-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.gate-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,18,23,0.2), rgba(14,18,23,0.65));
  z-index: 1;
}
.gate-overlay {
  position: absolute;
  left: 40px; bottom: 40px;
  right: 40px;
  z-index: 2;
  color: var(--white);
}
.gate-overlay .mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 40px;
  font-size: .72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--gold-light);
}
.gate-overlay h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  max-width: 520px;
  margin-bottom: 12px;
}
.gate-overlay p {
  color: rgba(255,255,255,0.7);
  max-width: 500px;
}
.gate-form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background: var(--charcoal);
  position: relative;
}
.gate-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px circle at 20% 10%, rgba(232,119,34,0.1), transparent 50%),
    radial-gradient(500px circle at 80% 90%, rgba(200,162,74,0.08), transparent 50%);
}
.gate-box {
  position: relative;
  width: 100%;
  max-width: 440px;
  text-align: left;
}
.gate-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 46px;
}
.gate-logo .brand-mark { width: 46px; height: 46px; font-size: 1.1rem; }
.gate-logo .tx {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.1;
}
.gate-logo .tx small {
  display: block;
  font-family: var(--font-sans);
  font-size: .66rem;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  margin-top: 4px;
}
.gate-title {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.gate-sub {
  color: rgba(255,255,255,0.64);
  margin-bottom: 38px;
  font-size: 1rem;
}
.gate-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 8px 8px 8px 20px;
  transition: all .3s var(--ease);
}
.gate-input:focus-within {
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(232,119,34,0.12);
  background: rgba(255,255,255,0.06);
}
.gate-input svg { width: 18px; height: 18px; color: var(--gold-light); flex-shrink: 0; }
.gate-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 16px 8px;
  font-weight: 500;
}
.gate-input input::placeholder { color: rgba(255,255,255,0.35); letter-spacing: 0.04em; }
.gate-input button {
  height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  background: var(--saffron);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .3s var(--ease);
}
.gate-input button:hover { background: var(--saffron-deep); }
.gate-input button svg { width: 14px; height: 14px; color: var(--white); }
.gate-toggle {
  position: absolute;
  right: 120px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 6px;
}
.gate-toggle:hover { color: var(--gold-light); }
.gate-err {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(220,70,70,0.1);
  border: 1px solid rgba(220,70,70,0.25);
  color: #FFB1B1;
  font-size: .88rem;
  display: none;
  animation: shake .45s var(--ease);
}
.gate-err.show { display: flex; align-items: center; gap: 10px; }
.gate-err svg { width: 18px; height: 18px; flex-shrink: 0; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}
.gate-foot {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,0.45);
  font-size: .78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.gate-foot a { color: var(--gold-light); }

/* ---------- Animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="left"].in { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="right"].in { transform: translateX(0); }
[data-reveal-delay="100"] { transition-delay: .1s; }
[data-reveal-delay="200"] { transition-delay: .2s; }
[data-reveal-delay="300"] { transition-delay: .3s; }
[data-reveal-delay="400"] { transition-delay: .4s; }
[data-reveal-delay="500"] { transition-delay: .5s; }

/* ---------- Page transition ---------- */
.page-curtain {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 9999;
  transform: translateY(100%);
  pointer-events: none;
}
.page-curtain.active {
  transform: translateY(0);
  transition: transform .6s var(--ease-in-out);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-side { justify-self: start; }
  .hero-card { width: 100%; max-width: 380px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-img { order: 0; }
  .split-img { aspect-ratio: 16/10; max-width: 560px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .updates-grid { grid-template-columns: 1fr 1fr; }
  .update-card.tall { grid-row: auto; min-height: 440px; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .page-head .container { grid-template-columns: 1fr; gap: 30px; }
  .gate { grid-template-columns: 1fr; }
  .gate-bg { min-height: 40vh; }
  .gate-form { padding: 40px 28px; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .counter-grid { grid-template-columns: 1fr 1fr; }
  .features-grid, .updates-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .vision-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 1; }
  .form-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  .contact-card { padding: 36px 26px; }
  .hero-scroll, .hero-meta { display: none; }
  .tl-item { padding-left: 52px; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .btn { padding: 14px 22px; font-size: .8rem; }
  .brand-text { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: 1fr; }
  .gate-input { flex-direction: column; align-items: stretch; padding: 10px; }
  .gate-input input { padding: 14px; }
  .gate-input button { width: 100%; justify-content: center; }
}
