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

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

:root {
  --navy: #003942;
  --deep-blue: #1a3a6b;
  --blue: #1e4d8c;
  --light-blue: #e8f0fb;
  --gold: #614f07;
  --gold-deco: #c9a84c;
  --light-gold: #e8c060;
  --dark-gold: #a07830;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --light-gray: #eef1f6;
  --text: #1a1a2e;
  --text-light: #5a6480;
  --border: #dde3ee;
}

html, body { overflow-x: hidden; max-width: 100%; }
body { font-family: 'Lato', sans-serif; font-size: 15px; line-height: 1.7; background: var(--white); color: var(--text); }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -16px; }
.col-12 { width: 100%; padding: 0 16px; }
.col-8  { width: 66.666%; padding: 0 16px; }
.col-6  { width: 50%; padding: 0 16px; }
.col-4  { width: 33.333%; padding: 0 16px; }
.col-3  { width: 25%; padding: 0 16px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: #004452;
  padding: 8px 0;
  font-size: 11px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  color: #fff;
  border-bottom: 3px solid rgba(255,255,255,0.45);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: #fff; }
.top-bar a:hover { color: #c9a84c; }
.top-bar-left, .top-bar-right { display: flex; gap: 22px; align-items: center; }
.top-bar i { color: #c9a84c; margin-right: 5px; }

/* ===== HEADER ===== */
.site-header {
  background: #c9a84c;
  padding: 0;
  box-shadow: 0 2px 12px rgba(13,43,85,0.1);
  border-bottom: 3px solid #a07830;
}
.header-inner { padding: 0; }
.header-inner { display: flex; align-items: center; gap: 18px; justify-content: flex-start; padding-left: 0; }
.logo-img { width: 160px; height: auto; }
.logo-placeholder {
  width: 160px; height: 160px;
  background: var(--navy);
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--light-gold); font-size: 11px; font-weight: 700; text-align: center;
}
.header-brand { flex: 1; }
.header-brand h1 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #004753;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.header-brand .tagline {
  font-size: 11px;
  color: #004753;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
}
.gold-bar { width: 44px; height: 3px; background: #004753; margin: 6px 0; }

/* ===== NAVBAR ===== */
.navbar {
  background: #004f58;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}
.navbar .container { display: flex; align-items: center; }
.nav-menu { display: flex; flex: 1; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 12px 10px;
  color: #c8daf0;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  border-right: 1px solid rgba(255,255,255,0.07);
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--light-gold);
  background: rgba(255,255,255,0.07);
}
.nav-menu > li.active > a {
  border-bottom: 3px solid var(--gold-deco);
}

/* NAV DROPDOWN */
.nav-dropdown { position: relative; }
.nav-submenu { display: none; position: absolute; top: 100%; left: 0; background: #004f58; min-width: 210px; z-index: 9999; border-top: 3px solid var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.nav-submenu li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav-submenu li a { display: block; padding: 11px 18px; color: #c8daf0; font-size: 12px; font-weight: 600; text-transform: none; letter-spacing: 0.3px; transition: all 0.2s; white-space: nowrap; }
.nav-submenu li a:hover { color: var(--light-gold); background: rgba(255,255,255,0.06); padding-left: 24px; }
.nav-dropdown:hover .nav-submenu { display: block; }

.mobile-toggle {
  display: none;
  background: var(--gold-deco);
  color: var(--navy);
  border: none;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.mobile-menu { display: none; background: var(--deep-blue); }
.mobile-menu.open { display: block; }
.mobile-menu li a {
  display: block; padding: 13px 24px;
  color: #c8daf0; font-size: 11px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu li a:hover { color: var(--light-gold); background: rgba(255,255,255,0.05); }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; overflow: hidden; background: #003942; }
.slide {
  display: none;
  position: relative;
  animation: slideDown 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide.active { display: block; }
.slide.active.no-anim { animation: none; }
@keyframes slideDown {
  from { transform: translateY(-40px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
.slide-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,57,66,0.78) 0%, rgba(0,86,95,0.45) 40%, rgba(0,57,66,0.05) 100%);
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}
.slide-content .container { }
.slide-inner { max-width: 580px; }
.slide-eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.slide-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold-deco); display: inline-block; }
.slide-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.slide-inner h2 span { color: var(--light-gold); }
.slide-inner p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 28px;
}
.slider-btn-wrap { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--gold-deco); border-color: var(--gold-deco); color: var(--navy); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s;
}
.slider-dot.active { background: var(--gold-deco); border-color: var(--gold-deco); transform: scale(1.2); }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--white);
  border-bottom: 3px solid var(--light-gray);
  box-shadow: 0 4px 16px rgba(13,43,85,0.08);
}
.stats-strip .container { display: flex; }
.stat-item {
  flex: 1;
  padding: 10px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--light-blue); }
.stat-number { font-size: 28px; font-weight: 700; color: var(--navy); line-height: 1; font-family: 'Playfair Display', serif; }
.stat-label { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; font-weight: 700; }

/* ===== SECTIONS ===== */
.section { padding: 28px 0; }
.section-white { background: var(--white); }
.section-light { background: var(--off-white); }
.section-blue { background: var(--navy); border-top: 3px solid rgba(255,255,255,0.08); }
.row-divider {
  height: 2px;
  background: linear-gradient(to right, transparent 0%, #614f07 20%, #9a7d08 50%, #614f07 80%, transparent 100%);
  border: none;
  margin: 0;
}

.section-label {
  font-size: 11px; font-weight: 900; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--gold-deco); display: inline-block; }
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 700;
  color: var(--navy); line-height: 1.2; margin-bottom: 14px;
}
.section-title.light { color: var(--white); }
.section-subtitle { font-size: 15px; color: var(--text-light); max-width: 600px; line-height: 1.8; }
.section-subtitle.light { color: rgba(255,255,255,0.7); }
.section-header { margin-bottom: 20px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ===== ABOUT SNAPSHOT ===== */
.about-snapshot { display: flex; gap: 56px; align-items: center; flex-direction: row-reverse; }
.about-img-wrap { flex-shrink: 0; width: 360px; position: relative; z-index: 1; }
.about-img-wrap img { width: 100%; height: 440px; object-fit: cover; object-position: right center; }
.about-img-wrap::after { display: none; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--navy); margin-bottom: 4px; }
.about-text .title-role { font-size: 14px; color: var(--gold); font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.about-text p { color: var(--text-light); font-size: 14px; line-height: 1.85; margin-bottom: 14px; text-align: justify; }
.about-badges { display: flex; flex-wrap: nowrap; gap: 8px; margin-top: 22px; overflow-x: auto; }
.badge {
  background: var(--light-blue);
  border: none;
  border-top: 3px double var(--gold-deco);
  border-bottom: 3px double var(--gold-deco);
  color: var(--deep-blue);
  font-size: 11px; font-weight: 600;
  padding: 5px 0; letter-spacing: 0.5px;
  white-space: nowrap;
}

/* ===== EVENT CARDS ===== */
.events-carousel { position: relative; overflow: hidden; }
.events-track { display: flex; transition: transform 0.5s ease; will-change: transform; }
.event-card {
  flex: 0 0 calc(33.333% - 18px);
  margin-right: 26px;
  background: var(--white);
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(13,43,85,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
  border-top: 4px solid var(--gold);
}
.event-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(13,43,85,0.14); }
.event-card-img { height: 190px; overflow: hidden; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; cursor: pointer; }
.event-card:hover .event-card-img img { transform: scale(1.06); }
.event-card-img-placeholder {
  width: 100%; height: 100%;
  background: var(--light-blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 38px;
}
.events-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.events-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background 0.3s; }
.events-dots span.active { background: var(--gold-deco); }
.event-date { font-size: 11px; font-weight: 900; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.event-card-body h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 8px; }
.event-card-body p { font-size: 11px; color: var(--text-light); line-height: 1.7; }

/* ===== PHILANTHROPY ===== */
.philanthropy-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.phil-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.phil-item:hover { box-shadow: 0 6px 24px rgba(13,43,85,0.1); transform: translateY(-2px); }
.phil-icon {
  width: 46px; height: 46px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--light-gold); font-size: 18px; flex-shrink: 0;
}
.phil-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.phil-item p { font-size: 11px; color: var(--text-light); line-height: 1.65; }

/* ===== BIRTHDAY COUNTDOWN ===== */
.birthday-banner {
  background: var(--white);
  border: 2px solid var(--border);
  box-shadow: 0 8px 32px rgba(13,43,85,0.1);
  padding: 24px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.birthday-banner::before {
  content: '50';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 260px; font-weight: 800;
  color: rgba(13,43,85,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1; pointer-events: none;
}
.birthday-banner h2 { font-family: 'Playfair Display', serif; font-size: 38px; color: var(--navy); margin-bottom: 10px; }
.birthday-banner > p { color: var(--text-light); font-size: 15px; margin-bottom: 8px; }
.countdown { display: flex; justify-content: center; gap: 28px; margin: 32px 0; align-items: center; }
.countdown-item { text-align: center; }
.countdown-box {
  background: var(--navy);
  color: var(--light-gold);
  font-family: 'Playfair Display', serif;
  font-size: 44px; font-weight: 700;
  width: 100px; height: 90px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  box-shadow: 0 4px 16px rgba(13,43,85,0.2);
}
.countdown-label { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; }
.countdown-sep { font-size: 40px; color: var(--gold); padding-bottom: 20px; font-weight: 700; }

/* ===== CTA STRIP ===== */
.cta-strip { background: var(--navy); padding: 22px 0; border-top: 3px solid rgba(255,255,255,0.08); }
.cta-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-strip h3 { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--white); }
.cta-strip p { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 5px; }
.btn-primary {
  display: inline-block; background: var(--gold-deco); color: var(--navy);
  padding: 10px 24px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  border: 2px solid var(--gold-deco); transition: all 0.25s;
}
.btn-primary:hover { background: transparent; color: var(--gold-deco); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--white);
  padding: 10px 24px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.35); transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--gold-deco); color: var(--light-gold); }
.btn-white {
  display: inline-block; background: var(--white); color: var(--navy);
  padding: 10px 24px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  border: 2px solid var(--white); transition: all 0.25s; white-space: nowrap; flex-shrink: 0;
}
.btn-white:hover { background: transparent; color: var(--white); }

/* ===== FOOTER ===== */
/* ABOUT PAGE — TIMELINE */
.about-timeline { margin-top: 28px; border-left: 3px solid var(--gold-deco); padding-left: 28px; }
.tl-item { position: relative; margin-bottom: 32px; }
.tl-item::before { content: ''; position: absolute; left: -37px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--gold-deco); border: 3px solid var(--navy); }
.tl-year { font-size: 11px; font-weight: 900; color: var(--gold-deco); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.tl-body h4 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.tl-body p { font-size: 14px; color: var(--text-light); line-height: 1.8; text-align: justify; margin: 0; }

/* ABOUT PAGE — PHILANTHROPY GRID */
.philanthropy-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.philanthropy-img-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; cursor: pointer; border-radius: 4px; transition: transform 0.3s, filter 0.3s; filter: brightness(0.9); }
.philanthropy-img-grid img:hover { transform: scale(1.03); filter: brightness(1); }

/* ABOUT PAGE — ABOUT LIST */
.about-list { list-style: none; padding: 0; margin: 20px 0 0; }
.about-list li { font-size: 14px; color: var(--text-light); line-height: 1.8; padding: 10px 0 10px 28px; border-bottom: 1px solid var(--border); position: relative; text-align: justify; }
.about-list li::before { content: '\f00c'; font-family: FontAwesome; position: absolute; left: 0; top: 12px; color: var(--gold-deco); font-size: 12px; }

/* ABOUT PAGE — AWARDS GRID */
.awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.award-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2); border-top: 3px solid var(--gold-deco); border-radius: 4px; padding: 18px 16px; }
.award-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: rgba(201,168,76,0.3); display: block; margin-bottom: 8px; line-height: 1; }
.award-card p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.7; margin: 0; }

/* FILM STRIP */
.film-strip { background: #1a1a1a; overflow: hidden; }
.film-sprockets {
  height: 28px;
  background-color: #1a1a1a;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0px,
    transparent 10px,
    #3a3a3a 10px,
    #3a3a3a 12px,
    transparent 12px,
    transparent 22px,
    #000 22px,
    #000 38px,
    transparent 38px,
    transparent 48px
  );
  background-size: 48px 100%;
  position: relative;
}
.film-sprockets::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  height: 14px;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0px,
    transparent 22px,
    #000 22px,
    #000 38px,
    transparent 38px,
    transparent 48px
  );
  background-size: 48px 100%;
  border-radius: 2px;
}
.film-frames {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 6px 6px;
  background: #1a1a1a;
}
.film-frame {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #333;
  aspect-ratio: 4/3;
}
.film-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.88) saturate(0.9);
}
.film-frame:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.1); }
.film-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, transparent 40%, rgba(0,0,0,0.22) 100%);
  pointer-events: none;
}

.site-footer { background: var(--navy); color: #8aa8cc; padding: 20px 0 0; }
.footer-top-row { display: flex; gap: 40px; align-items: flex-start; margin-bottom: 14px; }
.footer-brand { flex: 1; }
.footer-contact-inline { flex: 1.5; }
.footer-links-row { padding-top: 12px; display: flex; align-items: center; gap: 24px; }
.footer-links-row .footer-heading { margin-bottom: 0; border-bottom: none; padding-bottom: 0; white-space: nowrap; }
.footer-brand h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--white); margin-bottom: 4px; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.55); margin-top: 6px; }
.footer-heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white); margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-links li { padding: 3px 0; font-size: 14px; }
.footer-links-horizontal { display: flex; flex-wrap: nowrap; gap: 6px 18px; }
.footer-links-horizontal li { padding: 0; }
.footer-links li a { color: rgba(255,255,255,0.55); }
.footer-links li a:hover { color: var(--light-gold); }
.footer-contact li { padding: 3px 0; font-size: 14px; display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,0.55); }
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { padding: 10px 0; margin-top: 16px; text-align: center; font-size: 14px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-divider { height: 1px; background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0.15) 80%, transparent 100%); border: none; margin: 0; }

/* ===== PAGE BANNER ===== */
.page-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%); padding: 36px 0; border-bottom: 4px solid var(--gold-deco); }
.page-banner h1 { font-family: 'Playfair Display', serif; font-size: 48px; color: var(--white); font-weight: 700; }
.page-banner p { color: rgba(255,255,255,0.65); font-size: 15px; margin-top: 8px; }

/* ===== ABOUT PAGE ===== */
.content-card { background: var(--white); padding: 22px; box-shadow: 0 2px 12px rgba(13,43,85,0.07); margin-bottom: 18px; }
.content-card h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--navy); border-left: 4px solid var(--gold); padding-left: 14px; margin-bottom: 22px; }
.content-card p { font-size: 14px; color: var(--text-light); line-height: 1.85; margin-bottom: 12px; }

.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), var(--light-blue)); }
.timeline-item { position: relative; margin-bottom: 26px; }
.timeline-item::before { content: ''; position: absolute; left: -36px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold-deco); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--gold-deco); }
.timeline-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.timeline-item p { font-size: 11px; color: var(--text-light); line-height: 1.7; }

.award-item { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--border); }
.award-item:last-child { border-bottom: none; }
.award-num { width: 32px; height: 32px; background: var(--navy); color: var(--light-gold); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.award-item p { font-size: 11px; color: var(--text); line-height: 1.6; margin: 0; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-form label { display: block; font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 12px 14px; border: 1px solid #1a5c3a; font-size: 14px; font-family: 'Inter', sans-serif; color: var(--text); outline: none; margin-bottom: 16px; transition: border-color 0.2s; background: var(--white); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0,57,66,0.08); }
.contact-form textarea { height: 130px; resize: vertical; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-icon { width: 46px; height: 46px; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--light-gold); font-size: 16px; flex-shrink: 0; }
.contact-info-item h4 { font-size: 11px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-info-item p { font-size: 11px; color: var(--text-light); line-height: 1.6; }

/* ===== APPLY PAGE ===== */
.apply-tabs { background: var(--white); border-bottom: 2px solid var(--border); }
.apply-tabs .container { display: flex; }
.apply-tab { display: flex; align-items: center; gap: 8px; padding: 16px 28px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-light); border-bottom: 3px solid transparent; transition: all 0.2s; margin-bottom: -2px; }
.apply-tab i { font-size: 15px; }
.apply-tab:hover { color: var(--navy); }
.apply-tab.active { color: var(--navy); border-bottom-color: var(--gold); }

.apply-layout { display: grid; grid-template-columns: 1fr 300px; gap: 36px; align-items: start; }

.apply-form-wrap { background: var(--white); padding: 36px; box-shadow: 0 2px 16px rgba(13,43,85,0.08); border-top: 4px solid var(--gold); }
.form-section-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--navy); border-left: 4px solid var(--gold); padding-left: 12px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.form-section-title i { color: var(--gold); font-size: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.form-group label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text); margin-bottom: 6px; }
.form-group label span { color: #c0392b; }
.form-group input, .form-group select, .form-group textarea { padding: 11px 14px; border: 1px solid #1a5c2a; font-size: 14px; font-family: 'Lato', sans-serif; color: var(--text); outline: none; transition: border-color 0.2s, box-shadow 0.2s; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.form-group textarea { resize: vertical; }
.form-submit-row { display: flex; align-items: center; gap: 20px; margin-top: 10px; flex-wrap: wrap; }
.btn-apply { background: var(--navy); color: var(--white); border: 2px solid var(--navy); padding: 14px 40px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; font-family: 'Lato', sans-serif; transition: all 0.25s; display: flex; align-items: center; gap: 10px; }
.btn-apply:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.form-note { font-size: 12px; color: var(--text-light); line-height: 1.6; }
.form-note span { color: #c0392b; font-weight: 700; }

.apply-errors { background: #fff5f5; border: 1px solid #fcc; border-left: 4px solid #c0392b; padding: 14px 18px; margin-bottom: 24px; }
.apply-errors i { color: #c0392b; margin-right: 8px; }
.apply-errors ul { margin: 8px 0 0 20px; }
.apply-errors ul li { font-size: 13px; color: #c0392b; margin-bottom: 4px; }

.apply-success { text-align: center; padding: 48px 24px; }
.apply-success-icon { font-size: 64px; color: var(--gold); margin-bottom: 16px; }
.apply-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--navy); margin-bottom: 10px; }
.apply-success p { font-size: 15px; color: var(--text-light); max-width: 480px; margin: 0 auto; line-height: 1.8; }

.apply-sidebar { display: flex; flex-direction: column; gap: 20px; }
.apply-info-card { background: var(--white); padding: 22px; box-shadow: 0 2px 12px rgba(13,43,85,0.07); border-top: 3px solid var(--gold); }
.apply-info-icon { font-size: 36px; color: var(--gold); margin-bottom: 12px; }
.apply-info-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--navy); font-weight: 700; margin-bottom: 8px; }
.apply-info-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 6px; }
.apply-req-list { margin-top: 10px; }
.apply-req-list li { font-size: 13px; color: var(--text-light); padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.apply-req-list li:last-child { border-bottom: none; }
.apply-req-list li i { color: var(--gold); font-size: 11px; flex-shrink: 0; }

@media (max-width: 900px) { .apply-layout { grid-template-columns: 1fr; } .apply-tabs .container { flex-direction: column; } }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } .apply-form-wrap { padding: 20px; } }

.enquiry-layout { display: grid; grid-template-columns: 1fr 300px; gap: 36px; align-items: start; }
@media (max-width: 900px) { .enquiry-layout { grid-template-columns: 1fr; } }

/* ===== GALLERY ===== */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; justify-content: center; }
.filter-btn { padding: 8px 22px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border: 2px solid var(--border); background: var(--white); color: var(--text-light); cursor: pointer; transition: all 0.2s; font-family: 'Lato', sans-serif; }
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--light-gold); border-color: var(--navy); }

.gallery-grid { columns: 4; column-gap: 14px; }
.gallery-item { break-inside: avoid; margin-bottom: 14px; position: relative; overflow: hidden; cursor: pointer; border: 3px double var(--gold); outline: 2px solid var(--gold); outline-offset: 3px; box-shadow: 0 2px 12px rgba(13,43,85,0.12); transition: outline-color 0.3s, box-shadow 0.3s; }
.gallery-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover { outline-color: var(--dark-gold); box-shadow: 0 8px 28px rgba(201,168,76,0.45); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,43,85,0.85) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 16px; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: 0.5px; }
.gallery-item-overlay i { color: var(--light-gold); font-size: 20px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(5,15,30,0.96); align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 900px; width: 100%; }
.lightbox-inner img { width: 100%; max-height: 80vh; object-fit: contain; display: block; box-shadow: 0 30px 80px rgba(0,0,0,0.6); border: 3px double var(--gold); outline: 2px solid var(--gold); outline-offset: 3px; }
.lightbox-close { position: absolute; top: -44px; right: 0; background: none; border: none; color: var(--white); font-size: 32px; cursor: pointer; line-height: 1; opacity: 0.7; transition: opacity 0.2s; }
.lightbox-close:hover { opacity: 1; color: var(--light-gold); }
.lightbox-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2); color: var(--white); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; transition: all 0.2s; backdrop-filter: blur(4px); }
.lightbox-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.lightbox-prev { left: -64px; }
.lightbox-next { right: -64px; }
.lightbox-caption { text-align: center; color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 14px; letter-spacing: 0.5px; }
.lightbox-counter { text-align: center; color: var(--light-gold); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; }

@media (max-width: 991px) { .gallery-grid { columns: 3; } }
@media (max-width: 600px) { .gallery-grid { columns: 2; } .lightbox-prev { left: -10px; } .lightbox-next { right: -10px; } }

/* ===== VIDEO SECTION ===== */
.video-section { background: var(--navy); padding: 72px 0; }
.video-wrap { position: relative; max-width: 860px; margin: 0 auto; box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
.video-wrap video { width: 100%; display: block; }
.video-section .section-header { text-align: center; }
.video-section .section-label { justify-content: center; }
.video-section .section-label::before { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .events-track .event-card { flex: 0 0 calc(50% - 13px); }
  .about-snapshot { flex-direction: column; }
  .about-img-wrap { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .slide-inner h2 { font-size: 38px; }
  .slide-img { height: 420px; }
}
@media (max-width: 767px) {
  body { background: #ffffff; }
  .col-8, .col-6, .col-4, .col-3 { width: 100%; }
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  .events-track .event-card { flex: 0 0 calc(100% - 26px); }
  .philanthropy-list { grid-template-columns: 1fr; }
  .slide-inner h2 { font-size: 28px; }
  .slide-img { height: 320px; }
  #heroSlider .slide:nth-child(2) .slide-img { object-position: center center; }
  .stats-strip .container { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .stat-item { min-width: 110px; width: auto; flex-shrink: 0; }
  .cta-strip .container { flex-direction: column; text-align: center; }
  .birthday-banner { padding: 36px 20px; }
  .countdown { gap: 12px; }
  .countdown-box { width: 70px; height: 66px; font-size: 30px; }
  .top-bar .container { flex-direction: column; gap: 4px; text-align: center; }
  .header-brand h1 { font-size: 18px; }
  .about-text h2 { font-size: 24px; }
  .about-text .title-role { font-size: 11px; letter-spacing: 0.8px; }
  .about-text p { font-size: 13px; }
  .about-img-wrap img { box-shadow: 0 12px 40px rgba(13,43,85,0.15); }
  .about-text { word-break: break-word; overflow-wrap: break-word; min-width: 0; }
  .container { padding: 0 16px; box-sizing: border-box; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .philanthropy-img-grid { grid-template-columns: 1fr 1fr; }
  #philanthropy .container > div { grid-template-columns: 1fr; }
  .about-timeline { padding-left: 20px; }
}

/* ===== BIRTHDAY ANIMATIONS ===== */
.birthday-banner { position: relative; overflow: hidden; }
.bday-particle { position: absolute; pointer-events: none; animation: floatUp linear forwards; opacity: 0; }
.bday-star { font-size: 16px; }
.bday-balloon { font-size: 22px; }
@keyframes floatUp {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  80%  { opacity: 0.8; }
  100% { transform: translateY(-420px) rotate(360deg); opacity: 0; }
}
