/* ============================================================
   Anupama Bhatnagar — Premium Website Stylesheet
   Color Palette: Deep Navy, Ivory, Muted Gold
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --navy: #0a1628;
  --navy-light: #122240;
  --navy-mid: #1a3050;
  --ivory: #f5f0e8;
  --ivory-light: #faf7f2;
  --ivory-dark: #e8e0d4;
  --gold: #c9a96e;
  --gold-light: #d4bc8a;
  --gold-dark: #b8944f;
  --white: #ffffff;
  --warm-white: #fafaf7;
  --text-dark: #1a1a2e;
  --text-mid: #3a3a4e;
  --text-light: #6a6a7e;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.text-gold { color: var(--gold); }
.text-ivory { color: var(--ivory); }
.text-navy { color: var(--navy); }

.subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- Layout Utilities --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

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

.section-dark {
  background: var(--navy);
  color: var(--ivory);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--ivory);
}

.section-ivory {
  background: var(--ivory);
}

.section-gradient {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
  color: var(--ivory);
}

.section-gradient h2,
.section-gradient h3 {
  color: var(--ivory);
}

/* --- Grid Systems --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

.grid-asymmetric {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.grid-asymmetric-reverse {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

/* --- Password Page --- */
.password-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
}

.password-box {
  text-align: center;
  padding: 3rem;
  max-width: 440px;
  width: 90%;
}

.password-box .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.password-box .logo-subtitle {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.password-box .divider-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
}

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

.password-input-wrap input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-sm);
  color: var(--ivory);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.1em;
  transition: border-color var(--transition);
  outline: none;
}

.password-input-wrap input::placeholder {
  color: rgba(245, 240, 232, 0.35);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
}

.password-input-wrap input:focus {
  border-color: var(--gold);
}

.password-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.password-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.password-error {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.password-error.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Navigation --- */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition);
}

.nav-header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo a {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--ivory);
  font-weight: 700;
  letter-spacing: 0.03em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
}

.nav-links a {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.75);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--transition);
}

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

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

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

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ivory);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

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

.hero-content .subtitle {
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero-content h1 {
  color: var(--ivory);
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
}

.hero-content h1 span {
  display: block;
  color: var(--gold);
  font-size: 0.55em;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.hero-description {
  color: rgba(245, 240, 232, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

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

.hero-image-wrap .hero-img {
  width: 100%;
  height: 75vh;
  max-height: 650px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.hero-stat h3 {
  color: var(--gold);
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
}

.hero-stat p {
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--ivory);
}

.btn-arrow::after {
  content: '\2192';
  transition: transform var(--transition);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.section-header .subtitle {
  margin-bottom: 1rem;
  display: inline-block;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-header-center {
  text-align: center;
}

.section-header-center p {
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(245, 240, 232, 0.6);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.card-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-dark:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 169, 110, 0.2);
}

.card-body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

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

/* --- Editorial Image Block --- */
.editorial-block {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.editorial-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-slow);
}

.editorial-block:hover img {
  transform: scale(1.03);
}

.editorial-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, transparent 100%);
  color: var(--ivory);
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 169, 110, 0.1));
}

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

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

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--warm-white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.timeline-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.timeline-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Dark timeline */
.section-dark .timeline::before {
  background: linear-gradient(to bottom, var(--gold), rgba(201, 169, 110, 0.1));
}

.section-dark .timeline-item::before {
  border-color: var(--navy);
}

.section-dark .timeline-title {
  color: var(--ivory);
}

.section-dark .timeline-desc {
  color: rgba(245, 240, 232, 0.6);
}

/* --- Quote Block --- */
.quote-block {
  position: relative;
  padding: 2.5rem 3rem;
  background: var(--ivory);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2.5rem 0;
}

.quote-block::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.quote-block p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.8;
}

.quote-block cite {
  display: block;
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.section-dark .quote-block {
  background: rgba(255, 255, 255, 0.04);
}

.section-dark .quote-block p {
  color: var(--ivory);
}

/* --- Highlight Number --- */
.highlight-num {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.highlight-num .num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
  flex-shrink: 0;
}

.highlight-num h4 {
  margin-bottom: 0.3rem;
}

.highlight-num p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-slow);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: var(--ivory);
  z-index: 2;
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 22, 40, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--ivory);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

/* --- Contact Form --- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid var(--ivory-dark);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

/* --- Contact Info --- */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--ivory);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
}

.contact-info-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 1rem;
  color: var(--text-dark);
}

.contact-info-item a:hover {
  color: var(--gold);
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(245, 240, 232, 0.6);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
  color: var(--ivory);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer h4 {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-links a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.5);
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--ivory);
  padding-left: 0.5rem;
}

.footer-contact p,
.footer-contact a {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
}

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

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--gold);
}

.footer-bottom a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* --- Page Header (inner pages) --- */
.page-header {
  background: var(--navy);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-header h1 {
  color: var(--ivory);
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(245, 240, 232, 0.6);
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.page-header .subtitle {
  margin-bottom: 1rem;
  display: inline-block;
}

/* --- News Cards --- */
.news-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  margin-bottom: 2rem;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.news-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: top center;
}

.news-card-body {
  padding: 2rem 2rem 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-date {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.news-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.news-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Feature Blocks --- */
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--ivory);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-size: 1.4rem;
}

.section-dark .feature-icon {
  background: rgba(201, 169, 110, 0.1);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* --- Dividers --- */
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.5rem 0;
}

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

/* --- Misc --- */
.img-rounded {
  border-radius: var(--radius-md);
}

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

.overflow-hidden {
  overflow: hidden;
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-2,
  .grid-asymmetric,
  .grid-asymmetric-reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 8rem;
  }

  .hero-content {
    order: 1;
  }

  .hero-image-wrap {
    order: 0;
    max-width: 450px;
    margin: 0 auto;
  }

  .hero-image-wrap .hero-img {
    height: 50vh;
  }

  .hero-description {
    margin: 0 auto 2.5rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-wrap::after {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .news-card-body {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large {
    grid-column: span 1;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .quote-block {
    padding: 2rem;
  }

  .timeline {
    padding-left: 2rem;
  }

  .page-header {
    padding: 8rem 0 3rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .hero-image-wrap .hero-img {
    height: 40vh;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.78rem;
  }
}

/* --- Map Placeholder --- */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--ivory);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  border: 1px dashed var(--ivory-dark);
}

/* --- Scroll indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 240, 232, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Initiatives icons --- */
.initiative-card {
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--ivory-dark);
  transition: all var(--transition);
}

.initiative-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.initiative-card .num-label {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}

.initiative-card h3 {
  margin-bottom: 0.8rem;
}

.initiative-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.4);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* --- Decorative elements --- */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.1);
  pointer-events: none;
}

/* --- Media page specific --- */
.media-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.media-stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.media-stat-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.media-stat-card h3 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.media-stat-card p {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

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