/* =====================================================
   SHARAD BHIMAJI SONAWANE — OFFICIAL WEBSITE
   Premium Political Leadership Design System
   ===================================================== */

/* -------- Design Tokens -------- */
:root {
  --saffron: #E8742C;
  --saffron-deep: #C85A15;
  --saffron-soft: #F4A26A;
  --gold: #C8A24B;
  --gold-light: #E6C879;
  --charcoal: #14181F;
  --charcoal-soft: #232A35;
  --ink: #0A0D12;
  --grey-900: #1F2530;
  --grey-700: #4A5262;
  --grey-500: #8891A0;
  --grey-300: #D8DCE2;
  --grey-100: #F4F5F7;
  --paper: #FAFAF7;
  --white: #FFFFFF;

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

  --shadow-sm: 0 4px 12px rgba(10, 13, 18, 0.06);
  --shadow-md: 0 12px 40px rgba(10, 13, 18, 0.10);
  --shadow-lg: 0 30px 80px rgba(10, 13, 18, 0.18);
  --shadow-gold: 0 20px 60px rgba(200, 162, 75, 0.25);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1340px;
  --gutter: clamp(18px, 3.5vw, 40px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--paper);
  overflow-x: hidden;
}

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

/* -------- Typography -------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 4vw, 3.4rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

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

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

/* -------- Layout Utilities -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(70px, 10vw, 140px) 0;
  position: relative;
}

.section-dark {
  background: var(--ink);
  color: var(--grey-300);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }

.section-cream {
  background: linear-gradient(180deg, var(--paper) 0%, #F1EDE5 100%);
}

.grid { display: grid; gap: 40px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid { gap: 28px; }
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
}
.btn-primary:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(232, 116, 44, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(20, 24, 31, 0.2);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--ink);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(20, 24, 31, 0.06);
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(10, 13, 18, 0.05);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
}

.nav-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(232, 116, 44, 0.35);
  flex-shrink: 0;
}

.nav-logo { flex-shrink: 0; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text strong {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.nav-logo-text span {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  margin-top: 2px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--charcoal-soft);
  position: relative;
  transition: color 0.3s var(--ease);
  white-space: nowrap;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease);
}

.nav-menu a:hover { color: var(--saffron-deep); }
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }
.nav-menu a.active { color: var(--saffron-deep); }

.nav-cta {
  padding: 10px 18px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--saffron); color: var(--white); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 26px; }

.nav-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1240px) {
  .nav-cta { display: none; }
}

@media (max-width: 1100px) {
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    padding: 20px 24px 40px;
    border-top: 1px solid rgba(20, 24, 31, 0.06);
    transform: translateY(-120%);
    transition: transform 0.5s var(--ease);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { padding: 18px 8px; font-size: 16px; border-bottom: 1px solid var(--grey-100); }
  .nav-menu a::after { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--ink);
  color: var(--grey-300);
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-500);
  max-width: 360px;
}

.footer h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer ul { list-style: none; }
.footer-links a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  color: var(--grey-300);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.footer-links a:hover { color: var(--saffron-soft); padding-left: 6px; }

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--grey-300);
  transition: color 0.3s var(--ease);
}
.footer-contact a { color: var(--grey-300); }
.footer-contact a:hover { color: var(--saffron-soft); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12.5px;
  color: var(--grey-500);
}

.footer-credit a {
  color: var(--gold-light);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.footer-credit a:hover { border-color: var(--gold-light); }

.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--grey-300);
  transition: all 0.3s var(--ease);
}
.social-icons a:hover {
  background: var(--saffron);
  color: var(--white);
  transform: translateY(-3px);
}
.social-icons svg { width: 16px; height: 16px; fill: currentColor; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =====================================================
   PASSWORD GATE PAGE
   ===================================================== */
.gate {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  overflow: hidden;
  background: var(--ink);
}

.gate-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/Sharad-Sonawane.jpg');
  background-size: cover;
  background-position: center 20%;
  filter: grayscale(35%) brightness(0.55);
  transform: scale(1.08);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

.gate-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(10, 13, 18, 0.6) 70%, rgba(10, 13, 18, 0.9) 100%),
    linear-gradient(135deg, rgba(232, 116, 44, 0.25) 0%, transparent 50%, rgba(200, 162, 75, 0.15) 100%);
}

@keyframes slowZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.18); }
}

.gate-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  text-align: center;
  color: var(--white);
}

.gate-crest {
  width: 84px;
  height: 84px;
  margin: 0 auto 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 20px 60px rgba(232, 116, 44, 0.4);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: crestPulse 3s ease-in-out infinite;
}

@keyframes crestPulse {
  0%, 100% { box-shadow: 0 20px 60px rgba(232, 116, 44, 0.4); }
  50% { box-shadow: 0 20px 80px rgba(232, 116, 44, 0.7); }
}

.gate-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.gate h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 14px;
  font-weight: 500;
}

.gate h1 .accent {
  font-style: italic;
  color: var(--gold-light);
}

.gate-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 44px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.gate-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.gate-form {
  position: relative;
}

.gate-input {
  width: 100%;
  padding: 18px 60px 18px 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  transition: all 0.3s var(--ease);
  outline: none;
}

.gate-input::placeholder { color: rgba(255, 255, 255, 0.5); }
.gate-input:focus {
  border-color: var(--saffron);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(232, 116, 44, 0.15);
}

.gate-submit {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
}
.gate-submit:hover {
  background: var(--saffron-deep);
  transform: translateY(-50%) scale(1.05);
}

.gate-error {
  margin-top: 20px;
  padding: 12px;
  font-size: 13px;
  color: #FF8A7A;
  background: rgba(255, 80, 60, 0.12);
  border: 1px solid rgba(255, 80, 60, 0.25);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.4s var(--ease);
}
.gate-error.show {
  opacity: 1;
  transform: translateY(0);
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(0) translateX(-6px); }
  75% { transform: translateY(0) translateX(6px); }
}

.gate-footer {
  margin-top: 44px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.gate-footer span { color: var(--gold-light); }

/* =====================================================
   HOMEPAGE — HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 90px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
}

.hero-grid {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px var(--gutter);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-left { position: relative; z-index: 2; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  background: rgba(232, 116, 44, 0.12);
  border: 1px solid rgba(232, 116, 44, 0.35);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232, 116, 44, 0.3);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(232, 116, 44, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(232, 116, 44, 0.15); }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  font-weight: 500;
  margin-bottom: 26px;
  letter-spacing: -0.025em;
}
.hero h1 .italic {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-ctas .btn-primary {
  background: var(--saffron);
  border-color: var(--saffron);
}
.hero-ctas .btn-primary:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.hero-ctas .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.hero-ctas .btn-ghost:hover {
  background: var(--white);
  color: var(--ink);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 560px;
}

.hero-meta-item .label {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.hero-meta-item .value {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

/* Hero right portrait */
.hero-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.hero-portrait::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  z-index: -1;
  opacity: 0.4;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 1.2s var(--ease);
}
.hero-portrait:hover img { transform: scale(1.04); }

.hero-portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 13, 18, 0.75) 100%);
}

.hero-signature {
  position: absolute;
  left: 28px;
  bottom: 26px;
  right: 28px;
  z-index: 2;
  color: var(--white);
}
.hero-signature .name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.hero-signature .role {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Floating badge on hero */
.hero-badge {
  position: absolute;
  top: 28px;
  right: -24px;
  background: var(--white);
  color: var(--ink);
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  z-index: 3;
}
.hero-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--saffron-deep);
  line-height: 1;
}
.hero-badge-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-700);
  line-height: 1.4;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); }
}

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-badge { right: 16px; top: 16px; min-width: 180px; padding: 14px 18px; }
  .hero-meta { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-scroll { display: none; }
}
@media (max-width: 500px) {
  .hero-meta { grid-template-columns: 1fr; }
}

/* =====================================================
   COUNTERS SECTION
   ===================================================== */
.counters {
  background: var(--ink);
  color: var(--white);
  padding: 90px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.counter {
  padding: 30px 30px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.counter:last-child { border-right: none; }

.counter-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.counter-num .plus { color: var(--saffron); font-size: 0.7em; }
.counter-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .counter { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 40px 20px; }
  .counter:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
}

/* =====================================================
   INTRO / WELCOME SECTION
   ===================================================== */
.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.intro-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.intro-image-stripe {
  position: absolute;
  bottom: 26px;
  left: 0;
  background: var(--saffron);
  color: var(--white);
  padding: 14px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.intro-copy h2 {
  margin: 18px 0 28px;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}
.intro-copy h2 .italic {
  font-style: italic;
  color: var(--saffron-deep);
}

.intro-copy p {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--grey-700);
  margin-bottom: 22px;
}

.intro-quote {
  margin-top: 36px;
  padding: 30px 34px;
  background: var(--white);
  border-left: 3px solid var(--saffron);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.intro-quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  font-weight: 600;
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* =====================================================
   PRIORITIES / FEATURED CARDS
   ===================================================== */
.priorities-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}
.priorities-head h2 { max-width: 640px; }
.priorities-head p {
  max-width: 340px;
  font-size: 15px;
  color: var(--grey-700);
  line-height: 1.7;
}

.priorities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.priority {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s var(--ease);
  border: 1px solid rgba(20, 24, 31, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.priority:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--saffron);
}

.priority-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.priority-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 1s var(--ease);
}
.priority:hover .priority-img img { transform: scale(1.06); }

.priority-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,13,18,0.65) 0%, transparent 55%);
}

.priority-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  display: grid;
  place-items: center;
  color: var(--saffron-deep);
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}

.priority-body {
  padding: 26px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.priority-tag {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  font-weight: 600;
  margin-bottom: 10px;
}
.priority h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.priority p {
  font-size: 14.5px;
  color: var(--grey-700);
  line-height: 1.65;
}

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

/* =====================================================
   LEADERSHIP MESSAGE BLOCK
   ===================================================== */
.message-block {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.message-block::before {
  content: '';
  position: absolute;
  top: -20%; right: -15%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,116,44,0.18) 0%, transparent 70%);
}

.message-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.message-portrait {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
}
.message-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.message-portrait-frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(200, 162, 75, 0.4);
  border-radius: 4px;
  pointer-events: none;
}

.message-copy h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 20px 0 30px;
}
.message-copy h2 .italic {
  color: var(--gold-light);
  font-style: italic;
}

.message-copy p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 20px;
}

.message-sign {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  gap: 18px;
}
.message-sign-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
}
.message-sign-role {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .message-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* =====================================================
   LATEST UPDATES
   ===================================================== */
.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.update-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(20, 24, 31, 0.06);
}
.update-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.update-img {
  aspect-ratio: 16/11;
  overflow: hidden;
}
.update-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.9s var(--ease);
}
.update-card:hover .update-img img { transform: scale(1.05); }

.update-body { padding: 22px 24px 26px; }

.update-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  font-weight: 600;
  margin-bottom: 12px;
}
.update-meta .date { color: var(--grey-500); }

.update-card h3 {
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: 12px;
}
.update-card p {
  font-size: 14px;
  color: var(--grey-700);
  line-height: 1.6;
}

.update-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--saffron);
  padding-bottom: 2px;
  transition: all 0.3s var(--ease);
}
.update-link:hover { color: var(--saffron-deep); }

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

/* =====================================================
   CTA RIBBON
   ===================================================== */
.cta-ribbon {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-ribbon::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 40%);
}
.cta-ribbon .container { position: relative; z-index: 2; }
.cta-ribbon h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}
.cta-ribbon h2 .italic { font-style: italic; color: var(--gold-light); }
.cta-ribbon p {
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.7;
}
.cta-ribbon .btn {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--white);
}
.cta-ribbon .btn:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* =====================================================
   PAGE BANNER (sub-pages)
   ===================================================== */
.page-banner {
  position: relative;
  padding: 170px 0 100px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0.4;
  filter: grayscale(25%);
}
.page-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,13,18,0.6) 0%, rgba(10,13,18,0.85) 100%);
}

.page-banner .container { position: relative; z-index: 2; }

.page-banner .eyebrow { color: var(--gold-light); }
.page-banner .eyebrow::before { background: var(--gold-light); }

.page-banner h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  max-width: 800px;
  margin: 16px 0 22px;
}
.page-banner h1 .italic { font-style: italic; color: var(--gold-light); }
.page-banner-sub {
  font-size: 16px;
  max-width: 620px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

.breadcrumb {
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { margin: 0 12px; color: rgba(255,255,255,0.3); }

/* =====================================================
   TIMELINE (Biography Page)
   ===================================================== */
.bio-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 80px;
}

.bio-intro-img {
  aspect-ratio: 4/5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.bio-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bio-intro-copy h2 { margin: 16px 0 24px; }
.bio-intro-copy p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey-700);
  margin-bottom: 18px;
}

.bio-facts {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.bio-fact {
  padding: 18px 20px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--grey-100);
}
.bio-fact .label {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  font-weight: 600;
  margin-bottom: 6px;
}
.bio-fact .value {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(20,24,31,0.1) 15%, rgba(20,24,31,0.1) 85%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 30px 50px 30px 0;
}
.timeline-item.right {
  margin-left: 50%;
  padding: 30px 0 30px 50px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  top: 48px;
  right: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--saffron);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 3px var(--saffron);
  z-index: 2;
}
.timeline-item.right::before { right: auto; left: -7px; }

.timeline-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 30px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
  transition: all 0.4s var(--ease);
}
.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--saffron-soft);
}

.timeline-year {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--saffron-deep);
  padding: 4px 12px;
  background: rgba(232, 116, 44, 0.08);
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.timeline-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.timeline-card p {
  font-size: 14.5px;
  color: var(--grey-700);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .bio-intro { grid-template-columns: 1fr; gap: 40px; }
  .timeline::before { left: 14px; }
  .timeline-item,
  .timeline-item.right {
    width: 100%;
    margin-left: 0;
    padding: 20px 0 20px 40px;
  }
  .timeline-item::before,
  .timeline-item.right::before { left: 7px; right: auto; }
}

/* Values block */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.value {
  padding: 30px 26px;
  background: var(--white);
  border-radius: 14px;
  border-top: 3px solid var(--saffron);
  transition: all 0.4s var(--ease);
}
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 20px;
}
.value h4 { font-size: 1.1rem; margin-bottom: 10px; }
.value p { font-size: 14px; color: var(--grey-700); line-height: 1.6; }

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

/* =====================================================
   ACTION / ACHIEVEMENTS
   ===================================================== */
.action-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}
.action-intro h2 { margin: 16px 0 22px; }
.action-intro p { font-size: 16px; color: var(--grey-700); line-height: 1.8; }

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.action-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  border: 1px solid var(--grey-100);
  position: relative;
  display: flex;
  flex-direction: column;
}

.action-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.action-icon-wrap {
  padding: 30px 30px 0;
}

.action-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232,116,44,0.12) 0%, rgba(200,162,75,0.12) 100%);
  color: var(--saffron-deep);
  display: grid;
  place-items: center;
  font-size: 24px;
  transition: all 0.4s var(--ease);
}

.action-card:hover .action-icon {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  color: var(--white);
  transform: scale(1.08);
}

.action-body {
  padding: 22px 30px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.action-body h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.action-body p {
  font-size: 14.5px;
  color: var(--grey-700);
  line-height: 1.65;
  flex: 1;
}

.action-body .action-stat {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--grey-300);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  font-weight: 600;
}

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

/* Impact stats strip */
.impact {
  background: var(--ink);
  color: var(--white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: center;
}
.impact-img {
  aspect-ratio: 4/5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.impact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.impact-copy h2 { color: var(--white); margin: 16px 0 26px; }
.impact-copy > p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin-bottom: 30px;
}

.impact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.impact-stat {
  padding: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.impact-stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.impact-stat .label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

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

/* =====================================================
   JUNNAR PAGE
   ===================================================== */
.junnar-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}
.junnar-hero-copy h2 { margin: 16px 0 26px; }
.junnar-hero-copy p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey-700);
  margin-bottom: 18px;
}

.junnar-hero-img {
  aspect-ratio: 5/6;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.junnar-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.junnar-hero-stripe {
  position: absolute;
  left: -10px;
  bottom: 30px;
  background: var(--ink);
  color: var(--white);
  padding: 18px 26px 18px 30px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  border-left: 4px solid var(--saffron);
}
.junnar-hero-stripe small {
  display: block;
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
  font-weight: 600;
}

@media (max-width: 900px) { .junnar-hero-grid { grid-template-columns: 1fr; gap: 50px; } }

/* Junnar features */
.junnar-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.junnar-feature {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--grey-100);
  transition: all 0.4s var(--ease);
}
.junnar-feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.junnar-feature-img { aspect-ratio: 16/11; overflow: hidden; }
.junnar-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 1s var(--ease);
}
.junnar-feature:hover .junnar-feature-img img { transform: scale(1.06); }
.junnar-feature-body { padding: 24px 26px 28px; }
.junnar-feature h3 { font-size: 1.15rem; margin-bottom: 10px; }
.junnar-feature p { font-size: 14px; color: var(--grey-700); line-height: 1.65; }

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

/* Roadmap */
.roadmap {
  background: var(--ink);
  color: var(--white);
}
.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
}
.roadmap-item {
  padding: 30px 32px 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex;
  gap: 22px;
  transition: all 0.4s var(--ease);
}
.roadmap-item:hover {
  border-color: var(--saffron);
  background: rgba(232,116,44,0.04);
  transform: translateY(-4px);
}

.roadmap-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
  min-width: 60px;
}
.roadmap-item h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 12px; }
.roadmap-item p { color: rgba(255,255,255,0.75); font-size: 14.5px; line-height: 1.7; }

@media (max-width: 700px) {
  .roadmap-grid { grid-template-columns: 1fr; }
  .roadmap-item { flex-direction: column; gap: 12px; }
}

/* =====================================================
   GALLERY / MASONRY
   ===================================================== */
.gallery-masonry {
  column-count: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: var(--grey-100);
  transition: all 0.5s var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.2s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,13,18,0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  right: 20px;
  z-index: 2;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease);
  pointer-events: none;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) { .gallery-masonry { column-count: 2; } }
@media (max-width: 520px) { .gallery-masonry { column-count: 1; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 13, 18, 0.95);
  z-index: 9999;
  display: none;
  place-items: center;
  padding: 40px;
  backdrop-filter: blur(12px);
}
.lightbox.active { display: grid; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 26px; right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 20px;
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
}
.lightbox-close:hover { background: var(--saffron); border-color: var(--saffron); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 20px;
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
}
.lightbox-nav:hover { background: var(--saffron); }
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* =====================================================
   VISION PAGE
   ===================================================== */
.vision-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}
.vision-intro h2 { margin: 16px 0 24px; }
.vision-intro p { font-size: 16.5px; color: var(--grey-700); line-height: 1.8; }

.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vision-pillar {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--grey-100);
  transition: all 0.5s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.vision-pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--saffron);
}

.vision-pillar-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.vision-pillar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 1.2s var(--ease);
}
.vision-pillar:hover .vision-pillar-img img { transform: scale(1.05); }

.vision-pillar-body {
  padding: 26px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.vision-pillar .num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--saffron-deep);
  display: block;
  margin-bottom: 10px;
}
.vision-pillar h3 { font-size: 1.2rem; margin-bottom: 12px; }
.vision-pillar p { font-size: 14px; color: var(--grey-700); line-height: 1.7; }

@media (max-width: 1100px) {
  .vision-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .vision-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .vision-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 110px;
}

.contact-info h2 { margin: 16px 0 22px; }
.contact-info > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey-700);
  margin-bottom: 38px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 14px;
  transition: all 0.3s var(--ease);
}
.contact-card:hover {
  border-color: var(--saffron);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-card .label {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-card .value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
  word-break: break-word;
}

.contact-form {
  background: var(--white);
  padding: 44px 44px 48px;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
}

.contact-form h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.contact-form > p {
  font-size: 14.5px;
  color: var(--grey-700);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-700);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  padding: 14px 16px;
  border: 1px solid var(--grey-300);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  transition: all 0.3s var(--ease);
  outline: none;
  resize: none;
}
.form-field textarea { min-height: 140px; }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--saffron);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 116, 44, 0.12);
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  margin-top: 10px;
}
.form-submit:hover {
  background: var(--saffron);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(232, 116, 44, 0.35);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 26px 36px; }
}

/* Office strip */
.office-strip {
  background: var(--ink);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.office-strip h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  max-width: 700px;
  margin: 10px auto 22px;
}
.office-strip h2 .italic { color: var(--gold-light); font-style: italic; }
.office-strip p {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.7;
}

/* =====================================================
   REVEAL ANIMATIONS
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =====================================================
   PAGE TRANSITIONS
   ===================================================== */
.page-fade {
  animation: pageFade 0.6s var(--ease);
}
@keyframes pageFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

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