/* ========================================
   LILY VADERA — Executive Leadership Website
   Master Stylesheet
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --navy: #0a1628;
  --navy-deep: #060e1a;
  --navy-light: #132240;
  --charcoal: #1e2a3a;
  --charcoal-light: #2c3e56;
  --silver: #c0c8d4;
  --silver-light: #dce3ec;
  --gold: #c9a94e;
  --gold-light: #e0c96e;
  --gold-dim: rgba(201,169,78,0.15);
  --white: #ffffff;
  --off-white: #f4f6f9;
  --text-primary: #0d1b2e;
  --text-secondary: #4a5568;
  --text-light: #8896a6;
  --glass-bg: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.15);
  --glass-bg-light: rgba(255,255,255,0.85);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.20);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-width: 1280px;
  --nav-height: 80px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── Section Utilities ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  margin-bottom: 1rem;
  color: var(--navy);
}

.section-title.white { color: var(--white); }

.section-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 650px;
  line-height: 1.8;
}

.section-subtitle.white { color: var(--silver); }

.section-padding {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-padding-lg {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Gold Divider ── */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.5rem 0;
  border-radius: 2px;
}

.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}

.main-nav.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
  height: 68px;
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 1rem;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 999;
  opacity: 0;
  transition: var(--transition);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  padding: 0.5rem 1rem;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.mobile-menu a:hover { opacity: 1; color: var(--gold); }

/* ════════════════════════════════════════
   PASSWORD GATE
   ════════════════════════════════════════ */
.access-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  z-index: 9999;
}

.access-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/HDFC-Bank-HDFC-merger-Twitter.avif') center/cover no-repeat;
  filter: blur(4px) brightness(0.3);
}

.access-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,22,40,0.85), rgba(6,14,26,0.9));
}

.access-panel {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 460px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.access-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.access-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 2;
}

.access-panel h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.access-panel p {
  color: var(--silver);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.access-input-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.access-input-wrap input {
  width: 100%;
  padding: 1rem 3rem 1rem 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.access-input-wrap input::placeholder {
  color: rgba(255,255,255,0.35);
}

.access-input-wrap input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.access-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.access-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--silver);
  stroke-width: 1.5;
}

.access-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.access-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.6s;
}

.access-btn:hover::before { left: 100%; }
.access-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,78,0.3); }

.access-error {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: var(--radius-sm);
  color: #fca5a5;
  font-size: 0.85rem;
  display: none;
}

.access-error.show { display: block; }

/* ════════════════════════════════════════
   HERO BANNER
   ════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.25);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(10, 22, 40, 0.6) 50%,
    rgba(10, 22, 40, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { max-width: 600px; }

.hero-text .section-label { color: var(--gold); }

.hero-text h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-text h1 span { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--silver);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-frame {
  position: relative;
  width: 380px;
  height: 470px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid rgba(201,169,78,0.3);
  box-shadow: var(--shadow-xl);
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-img-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(10,22,40,0.5), transparent);
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.2rem 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
  display: block;
  line-height: 1.4;
}

/* ════════════════════════════════════════
   PAGE BANNER (Inner Pages)
   ════════════════════════════════════════ */
.page-banner {
  position: relative;
  height: 55vh;
  min-height: 380px;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.2) blur(2px);
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.9) 0%,
    rgba(10, 22, 40, 0.75) 100%
  );
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--nav-height);
}

.page-banner-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 1rem;
}

.page-banner-content p {
  color: var(--silver);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
}

.breadcrumb a { color: var(--gold); transition: var(--transition-fast); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--silver); }

/* ════════════════════════════════════════
   EXECUTIVE SUMMARY / ABOUT
   ════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
}

.about-img::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.about-text h2 { margin-bottom: 0.5rem; }

.about-text p {
  margin-bottom: 1rem;
  text-align: justify;
}

/* ════════════════════════════════════════
   HIGHLIGHTS / FEATURES GRID
   ════════════════════════════════════════ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  transition: var(--transition);
}

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

.highlight-card:hover::before { height: 100%; }

.highlight-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.highlight-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.highlight-card h4 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.highlight-card p {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Dark version */
.highlights-grid.dark .highlight-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

.highlights-grid.dark .highlight-card h4 { color: var(--white); }
.highlights-grid.dark .highlight-card p { color: var(--silver); }
.highlights-grid.dark .highlight-card:hover {
  background: rgba(255,255,255,0.08);
}

/* ════════════════════════════════════════
   RBI LEGACY STRIP
   ════════════════════════════════════════ */
.legacy-strip {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.legacy-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.legacy-item {
  padding: 3rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.legacy-item:last-child { border-right: none; }
.legacy-item:hover { background: rgba(255,255,255,0.03); }

.legacy-item .number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.legacy-item .label {
  font-size: 0.85rem;
  color: var(--silver);
  margin-top: 0.5rem;
  display: block;
}

/* ════════════════════════════════════════
   QUOTE SECTION
   ════════════════════════════════════════ */
.quote-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 20rem;
  color: rgba(201,169,78,0.05);
  line-height: 1;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.quote-author {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════ */
.cta-section {
  background: var(--off-white);
  text-align: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  text-decoration: none;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201,169,78,0.3);
}

.cta-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
}

.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  text-decoration: none;
}

.cta-btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ════════════════════════════════════════
   TIMELINE
   ════════════════════════════════════════ */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 14px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-dim), var(--gold));
}

.timeline-item {
  position: relative;
  padding-bottom: 3rem;
  padding-left: 2rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -3rem;
  top: 0.5rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(201,169,78,0.1);
}

.timeline-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline-date {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  background: var(--gold-dim);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.timeline-content {
  background: var(--white);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-content:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.timeline-content h4 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.timeline-content p {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  height: 380px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: var(--off-white);
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.03); }

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(10,22,40,0.8), transparent);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

/* ════════════════════════════════════════
   CONTACT FORM
   ════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,169,78,0.1);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-detail:last-of-type { border-bottom: none; }

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,169,78,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail-text a {
  color: var(--white);
  transition: var(--transition-fast);
}

.contact-detail-text a:hover { color: var(--gold); }

.contact-detail-text .detail-label {
  display: block;
  font-size: 0.78rem;
  color: var(--silver);
  margin-bottom: 0.2rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  transition: var(--transition-fast);
}

.social-link:hover svg { fill: var(--navy); }

/* ════════════════════════════════════════
   PHILOSOPHY CARDS
   ════════════════════════════════════════ */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.philosophy-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.philosophy-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}

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

.philosophy-card:hover::after { transform: scaleX(1); }

.philosophy-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.philosophy-card h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.philosophy-card p {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ════════════════════════════════════════
   DARK SECTION
   ════════════════════════════════════════ */
.dark-section {
  background: var(--navy);
  color: var(--white);
}

.dark-section .section-subtitle { color: var(--silver); }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.main-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  text-align: center;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-contact {
  font-size: 0.88rem;
  color: var(--silver);
  margin-bottom: 1rem;
}

.footer-contact a {
  color: var(--gold);
  transition: var(--transition-fast);
}

.footer-contact a:hover { color: var(--gold-light); }

.footer-credit {
  font-size: 0.82rem;
  color: var(--text-light);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-credit a {
  color: var(--gold);
  font-weight: 500;
  transition: var(--transition-fast);
}

.footer-credit a:hover { color: var(--gold-light); }

/* ════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   ALTERNATING SECTIONS (BIO)
   ════════════════════════════════════════ */
.alt-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.alt-section.reverse { direction: rtl; }
.alt-section.reverse > * { direction: ltr; }

.alt-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.alt-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
}

.alt-text h3 { margin-bottom: 0.5rem; color: var(--navy); }
.alt-text p {
  margin-bottom: 1rem;
  text-align: justify;
}

/* ════════════════════════════════════════
   INFO CARDS (REFORM PAGE)
   ════════════════════════════════════════ */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,169,78,0.2);
}

.info-card-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,169,78,0.15);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.info-card h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.info-card p { font-size: 0.92rem; }

/* ════════════════════════════════════════
   RESPONSIVE DESIGN
   ════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-img-wrap { margin-top: 2rem; }
  .hero-img-frame { width: 320px; height: 400px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img img { height: 400px; }
  .alt-section { grid-template-columns: 1fr; }
  .alt-section.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .legacy-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .legacy-item:nth-child(2) { border-right: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-img-frame { width: 280px; height: 360px; }
  .page-banner { min-height: 320px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .info-cards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  .form-row { grid-template-columns: 1fr; }
  .timeline { padding-left: 2.5rem; }
  .timeline-dot { left: -2.5rem; width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .stat-item { padding: 1rem 0.5rem; }
  .legacy-strip-inner { grid-template-columns: 1fr; }
  .legacy-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 2rem 1rem; }
  .legacy-item:last-child { border-bottom: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-img-frame { width: 260px; height: 330px; }
}
