/* ═══════════════════════════════════════════════════════════
   SUBHASH YADAV — CAMPAIGN 2026
   Design: Editorial Political · Rich earth tones · Serif drama
   ═══════════════════════════════════════════════════════════ */

/* ── VARIABLES ───────────────────────────────────────────── */
:root {
  --saffron:    #E8650A;
  --saffron-lt: #F5894A;
  --gold:       #D4A017;
  --green:      #1A7C12;
  --ink:        #110A00;
  --ink-mid:    #2D1F0A;
  --cream:      #FDF6EC;
  --cream-dk:   #F2E8D5;
  --white:      #FFFFFF;

  --dark-bg:    #0E1A12;
  --dark-mid:   #162010;
  --dark-card:  rgba(255,255,255,0.04);

  --ff-serif:   'Noto Serif Devanagari', 'Tiro Devanagari Hindi', serif;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Mukta', sans-serif;

  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);

  --nav-h: 68px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── CURSOR DOT ──────────────────────────────────────────── */
.cursor-dot {
  width: 10px; height: 10px;
  background: var(--saffron);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: difference;
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(14, 26, 18, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 101, 10, 0.2);
  transition: background var(--transition), box-shadow var(--transition);
}
nav.scrolled {
  background: rgba(14, 26, 18, 0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.brand-accent { color: var(--saffron); }
.brand-region {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  margin-left: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--saffron) !important;
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--saffron-lt) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.btn-fill {
  background: var(--saffron);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,101,10,0.35);
}
.btn-fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,101,10,0.5);
  background: var(--saffron-lt);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.full-width { width: 100%; justify-content: center; }

/* ── COMMON SECTION PIECES ───────────────────────────────── */
.section-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  border: 1px solid rgba(232,101,10,0.3);
  background: rgba(232,101,10,0.08);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-eyebrow.light {
  color: var(--gold);
  border-color: rgba(212,160,23,0.35);
  background: rgba(212,160,23,0.08);
}
.section-title {
  font-family: var(--ff-serif);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  color: var(--saffron);
}
.section-title.light { color: #fff; }
.section-title.light em { color: var(--gold); }
.section-rule {
  width: 56px;
  height: 4px;
  background: linear-gradient(to right, var(--saffron), var(--gold));
  border-radius: 2px;
  margin: 1.2rem 0 2.5rem;
}
.section-rule.centered { margin: 1.2rem auto 2.5rem; }

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--dark-bg);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 50% at 65% 50%, rgba(232,101,10,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(26,124,18,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-watermark {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(180px, 15vw, 360px);
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.hero-layout {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

/* Photo column */
.hero-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  animation: fadeUp 0.9s ease 0.1s both;
}
.hero-photo-frame {
  position: relative;
  width: 320px;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.frame-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--saffron);
  border-style: solid;
  z-index: 2;
}
.frame-corner.tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.frame-corner.tr { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
.frame-corner.bl { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
.frame-corner.br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }
.hero-photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,26,18,0.6) 0%, transparent 50%);
  border-radius: var(--radius-lg);
}
.tricolor-strip {
  display: flex;
  gap: 4px;
  width: 180px;
}
.tricolor-strip span {
  flex: 1;
  height: 5px;
  border-radius: 3px;
}
.tricolor-strip span:nth-child(1) { background: var(--saffron); }
.tricolor-strip span:nth-child(2) { background: var(--white); }
.tricolor-strip span:nth-child(3) { background: var(--green); }
.hero-badge-block {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-label { color: var(--gold); }
.badge-sep { color: rgba(255,255,255,0.2); }

/* Text column */
.hero-text-col {
  animation: fadeUp 0.9s ease 0.25s both;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1rem;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--saffron);
  border-radius: 50%;
  display: inline-block;
}
.hero-name {
  font-family: var(--ff-serif);
  font-weight: 900;
  line-height: 1;
  display: block;
  margin-bottom: 1.5rem;
}
.name-first {
  display: block;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  letter-spacing: -0.01em;
}
.name-last {
  display: block;
  font-size: clamp(3.5rem, 7vw, 6rem);
  color: var(--saffron);
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.hero-pillars {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pillar-icon { color: var(--gold); font-size: 0.6rem; }
.hero-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  padding: 0.8rem 1.2rem;
  border-left: 3px solid var(--saffron);
  background: rgba(232,101,10,0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-mark { font-size: 1.5rem; line-height: 0; vertical-align: -0.3em; opacity: 0.6; }
.hero-desc {
  font-size: 0.97rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
}
.hero-desc strong { color: rgba(255,255,255,0.85); }
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: float 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--saffron));
  display: block;
}
.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--saffron);
  overflow: hidden;
  padding: 0.7rem 0;
  border-top: 2px solid rgba(255,255,255,0.15);
  border-bottom: 2px solid rgba(0,0,0,0.12);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeLTR 25s linear infinite;
}
.marquee-track span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 2rem;
}
@keyframes marqueeLTR {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ══════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════ */
.about-section {
  background: var(--cream);
  padding: 7rem 2rem;
}
.about-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 5rem;
  align-items: start;
}
.about-photo-side { position: sticky; top: calc(var(--nav-h) + 2rem); }
.about-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(17,10,0,0.18);
}
.about-photo-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.about-photo-badge {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--saffron);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
}
.about-quote-block {
  margin-top: 1.2rem;
  background: var(--ink);
  color: var(--gold);
  padding: 1.3rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: center;
}
.about-text-side { padding-top: 0.5rem; }
.about-para {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--ink-mid);
  margin-bottom: 1.4rem;
}
.highlight-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: linear-gradient(120deg, rgba(232,101,10,0.07), rgba(212,160,23,0.05));
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.2rem;
  margin-bottom: 1.4rem;
}
.hb-bar {
  flex-shrink: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--saffron), var(--gold));
  border-radius: 4px;
  align-self: stretch;
}
.highlight-block p {
  font-family: var(--ff-serif);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════════ */
.gallery-section {
  background: var(--dark-mid);
  padding: 6rem 0 5rem;
  overflow: hidden;
}
.gallery-header {
  text-align: center;
  padding: 0 2rem 3rem;
}
.slider-wrapper {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  margin-bottom: 1rem;
}
.slider-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: slideLeft 32s linear infinite;
}
.slider-track.reverse {
  animation: slideRight 38s linear infinite;
}
.slider-track:hover,
.slider-track.reverse:hover {
  animation-play-state: paused;
}
.slide-card {
  width: 300px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), border-color var(--transition);
}
.slide-card:hover {
  transform: scale(1.04) translateY(-4px);
  border-color: rgba(232,101,10,0.5);
}
.slide-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.slide-card:hover img { transform: scale(1.05); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 0.8rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.slide-card:hover .slide-overlay { opacity: 1; }
.slide-overlay span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #eee;
  font-family: var(--ff-serif);
}
@keyframes slideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes slideRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── LIGHTBOX ─────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-media img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}
.lightbox-caption {
  margin-top: 1rem;
  color: var(--gold);
  font-family: var(--ff-serif);
  font-size: 0.95rem;
}

/* ══════════════════════════════════════════════════════════
   VIDEO
══════════════════════════════════════════════════════════ */
.video-section {
  background: #0a1510;
  padding: 7rem 2rem;
}
.video-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1rem;
}
.video-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 2px solid rgba(232,101,10,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.video-main video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.video-main-label {
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  background: rgba(0,0,0,0.4);
}
.video-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.video-thumb-card {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 0.8rem;
  cursor: pointer;
  transition: all var(--transition);
}
.video-thumb-card:hover {
  background: rgba(232,101,10,0.08);
  border-color: rgba(232,101,10,0.3);
  transform: translateX(4px);
}
.vtc-thumb {
  width: 100px; height: 65px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vtc-thumb video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.vtc-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 1rem;
  transition: background var(--transition);
}
.video-thumb-card:hover .vtc-play { background: rgba(232,101,10,0.7); }
.vtc-info h4 {
  font-family: var(--ff-serif);
  font-size: 0.85rem;
  color: #eee;
  margin-bottom: 0.2rem;
  font-weight: 700;
}
.vtc-info span { font-size: 0.72rem; color: #555; }
.video-promise-box {
  margin-top: 0.5rem;
  background: rgba(212,160,23,0.06);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
}
.video-promise-box p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   VISION
══════════════════════════════════════════════════════════ */
.vision-section {
  background: var(--cream-dk);
  padding: 7rem 2rem;
}
.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.vision-card {
  background: var(--white);
  border: 1px solid rgba(17,10,0,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.vision-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--saffron), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(17,10,0,0.1);
}
.vision-card:hover::before { transform: scaleX(1); }
.vc-number {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(17,10,0,0.04);
  line-height: 1;
  letter-spacing: -0.04em;
}
.vc-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.vision-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.vision-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #5a4a30;
}
.vision-closing {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.vc-closing-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(17,10,0,0.2));
}
.vc-closing-line:last-child { background: linear-gradient(to left, transparent, rgba(17,10,0,0.2)); }
.vision-closing p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   VOLUNTEER
══════════════════════════════════════════════════════════ */
.volunteer-section {
  background: var(--dark-bg);
  padding: 7rem 2rem;
}
.volunteer-section .section-title { color: #fff; }
.volunteer-section .section-title em { color: var(--gold); }
.volunteer-section .section-eyebrow { color: var(--gold); border-color: rgba(212,160,23,0.35); background: rgba(212,160,23,0.07); }
.volunteer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.vol-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.8rem;
}
.ways-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}
.ways-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.ways-list li:hover { color: var(--gold); }
.way-num {
  color: var(--saffron);
  font-weight: 800;
  font-size: 1rem;
  width: 1.5rem;
  flex-shrink: 0;
}
.vol-quote-box {
  background: rgba(232,101,10,0.08);
  border: 1px solid rgba(232,101,10,0.2);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
}
.vol-quote-box p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  line-height: 1.7;
}

/* Form */
.volunteer-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.vol-form-head {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(232,101,10,0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-icon { font-size: 1.1rem; }
.form-row { margin-bottom: 1.1rem; }
.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-mid);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.req { color: var(--saffron); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: #fafafa;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232,101,10,0.1);
}
.form-row textarea { resize: vertical; min-height: 80px; }

/* ══════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--ink);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -300px; right: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,101,10,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 1rem;
}
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.cc-name {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.3rem;
}
.cc-role {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2rem;
}
.cc-items { display: flex; flex-direction: column; gap: 1.1rem; }
.cc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cc-icon {
  width: 44px; height: 44px;
  background: rgba(232,101,10,0.12);
  border: 1px solid rgba(232,101,10,0.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cc-item div strong {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.cc-item div a,
.cc-item div span {
  color: #ddd;
  font-size: 1rem;
  font-weight: 600;
  transition: color var(--transition);
}
.cc-item div a:hover { color: var(--gold); }
.cc-bottom-quote {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  text-align: center;
}
.contact-actions { text-align: center; }
.ca-box {
  background: linear-gradient(135deg, rgba(232,101,10,0.12), rgba(26,124,18,0.08));
  border: 1px solid rgba(232,101,10,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.ca-box h3 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.8rem;
}
.ca-box p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.wa-btn, .fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition);
  margin: 0.4rem;
}
.wa-btn {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.fb-btn {
  background: #1877F2;
  color: #fff;
  box-shadow: 0 4px 16px rgba(24,119,242,0.3);
}
.fb-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(24,119,242,0.4); }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
footer {
  background: #050c07;
  padding-top: 0;
}
.footer-tricolor {
  display: flex;
  height: 5px;
}
.footer-tricolor span { flex: 1; }
.footer-tricolor span:nth-child(1) { background: var(--saffron); }
.footer-tricolor span:nth-child(2) { background: var(--white); }
.footer-tricolor span:nth-child(3) { background: var(--green); }
.footer-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
}
.footer-name {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--saffron);
  margin-bottom: 0.3rem;
}
.footer-region {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.footer-tagline strong { color: var(--gold); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-links a {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .hero-photo-frame { width: 280px; height: 350px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-side { position: static; }
  .video-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--dark-bg);
    flex-direction: column;
    padding: 2rem;
    gap: 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    padding: 3rem 1.5rem 4rem;
  }
  .hero-text-col { order: 2; }
  .hero-photo-col { order: 1; }
  .hero-photo-frame { width: 240px; height: 300px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-pillars { justify-content: center; }

  .volunteer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .vision-closing p { font-size: 1rem; white-space: normal; }
  .vc-closing-line { display: none; }
}

@media (max-width: 480px) {
  .hero-name .name-first { font-size: 2.5rem; }
  .hero-name .name-last  { font-size: 3rem; }
  .section-title { font-size: 1.7rem; }
}