/* ============================================================
   HARSHA MALAWEERA — Main Stylesheet
   Elegant luxury theme: Navy, Gold, Cream
   ============================================================ */

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

:root {
  --navy: #0A1A33;
  --navy-deep: #050F1F;
  --navy-soft: #1A2B47;
  --gold: #C9A961;
  --gold-bright: #E4C07A;
  --gold-dim: #8A7440;
  --cream: #F5F0E6;
  --cream-dim: #E8DFD0;
  --ink: #0A0A0A;
  --muted: #8A8A8A;
  --line: rgba(201, 169, 97, 0.18);
  --line-strong: rgba(201, 169, 97, 0.4);
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter Tight', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  padding: 12px 24px;
  font-size: 13px;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 200;
}
.announcement-bar strong { color: var(--gold); }
.announcement-bar a {
  color: var(--gold);
  text-decoration: underline;
  margin-left: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ============ NAVIGATION ============ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0A1A33;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
  transition: all 0.4s ease;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.nav-cta-btn:hover {
  background: var(--gold-bright);
  color: var(--navy);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy-deep);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 32px;
  cursor: pointer;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 48px 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(201, 169, 97, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 97, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 97, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 100%);
}
.hero-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 88px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.hero h1 .italic { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  color: var(--cream-dim);
  font-style: italic;
  margin-bottom: 40px;
  max-width: 460px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(201, 169, 97, 0.6);
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  display: flex;
  gap: 32px;
}
.hero-portrait-side {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 600px;
  position: relative;
}
.hero-portrait-frame {
  width: 100%;
  max-width: 460px;
  height: 100%;
  background: transparent;
  position: relative;
  overflow: visible;
}
.hero-portrait-frame::before {
  display: none;
}
.hero-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,0.35));
}
.hero-stat-badge {
  position: absolute;
  bottom: 32px;
  left: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 28px;
  font-family: var(--serif);
}
.hero-stat-badge .big { font-size: 48px; font-weight: 300; line-height: 1; display: block; }
.hero-stat-badge .small { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }

/* ============ BUTTONS ============ */
.btn-primary {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 32px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); color: var(--navy); }
.btn-secondary {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 32px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(201, 169, 97, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--gold); background: rgba(201, 169, 97, 0.08); color: var(--cream); }
.btn-dark {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 20px 36px;
  background: var(--navy);
  color: var(--cream);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.btn-dark:hover { background: var(--navy-deep); color: var(--cream); }
.btn-outline {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 20px 36px;
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.btn-outline:hover { background: var(--navy); color: var(--cream); }
.btn-gold-outline {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 32px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.btn-gold-outline:hover { background: var(--gold); color: var(--navy); }

/* ============ SECTION BASICS ============ */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  max-width: 900px;
}
.section-title .italic { font-style: italic; color: var(--gold-dim); }

/* ============ PILLARS / ABOUT ============ */
.pillars-section {
  background: var(--navy);
  color: var(--cream);
  padding: 140px 48px;
  position: relative;
}
.pillars-section .section-title .italic { color: var(--gold); }
.pillars-inner { max-width: 1400px; margin: 0 auto; }
.pillars-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.pillars-header p {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  font-style: italic;
  color: var(--cream-dim);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(201, 169, 97, 0.2);
}
.pillar {
  padding: 56px 40px 56px 0;
  border-right: 1px solid rgba(201, 169, 97, 0.12);
}
.pillar:last-child { border-right: none; padding-right: 0; }
.pillar:not(:first-child) { padding-left: 40px; }
.pillar-num {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 48px;
  display: block;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 20px;
}
.pillar h3 .italic { font-style: italic; color: var(--gold); }
.pillar p { font-size: 15px; line-height: 1.65; color: var(--cream-dim); }

/* ============ ABOUT HOME SECTION ============ */
.about-home {
  padding: 140px 48px;
  background: var(--cream);
}
.about-home-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}
.about-visual {
  position: sticky;
  top: 100px;
  aspect-ratio: 3/4;
  background: var(--navy);
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.3) 0%, transparent 60%);
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  
}
.about-visual-badge {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  color: var(--cream);
  z-index: 2;
}
.about-visual-badge .num {
  font-family: var(--serif);
  font-size: 100px;
  line-height: 0.85;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
}
.about-visual-badge .cap {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 12px;
}
.about-content p {
  font-size: 18px;
  line-height: 1.75;
  color: #2A2A2A;
  margin-bottom: 20px;
}
.about-content p:first-of-type {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.45;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 32px;
}
.pull-quote {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.35;
  font-style: italic;
  color: var(--navy);
  padding: 28px 0 28px 28px;
  border-left: 2px solid var(--gold);
  margin: 36px 0;
}

/* ============ PROGRAMMES HOME ============ */
.programmes-home {
  background: var(--cream);
  padding: 140px 48px;
}
.programmes-inner { max-width: 1400px; margin: 0 auto; }
.programme-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr auto;
  gap: 40px;
  align-items: center;
  padding: 44px 0;
  border-top: 1px solid rgba(10, 26, 51, 0.12);
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.programme-row:last-child { border-bottom: 1px solid rgba(10, 26, 51, 0.12); }
.programme-row::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--navy);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: 0;
}
.programme-row:hover::before { transform: scaleY(1); }
.programme-row:hover { color: var(--cream); }
.programme-row > * { position: relative; z-index: 1; }
.programme-num {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--gold-dim);
}
.programme-row:hover .programme-num { color: var(--gold); }
.programme-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}
.programme-desc { font-size: 15px; line-height: 1.55; color: #4A4A4A; }
.programme-row:hover .programme-desc { color: var(--cream-dim); }
.programme-arrow { font-size: 28px; color: var(--gold-dim); transition: transform 0.3s; }
.programme-row:hover .programme-arrow { color: var(--gold); transform: translateX(10px); }

/* ============ KEYNOTE SECTION ============ */
.keynote-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.keynote-text {
  background: var(--navy);
  color: var(--cream);
  padding: 100px 80px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.keynote-text h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 28px;
}
.keynote-text h2 .italic { font-style: italic; color: var(--gold); }
.keynote-text p { font-size: 17px; line-height: 1.65; color: var(--cream-dim); margin-bottom: 16px; max-width: 480px; }
.keynote-stats {
  display: flex;
  gap: 40px;
  margin: 32px 0;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
}
.keynote-stat-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.keynote-stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 8px;
}
.keynote-image {
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  position: relative;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.keynote-image::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(201, 169, 97, 0.15) 0%, transparent 60%);
}
.keynote-caption {
  position: relative; z-index: 2;
  padding: 20px 32px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(5, 15, 31, 0.6);
  width: 100%;
  backdrop-filter: blur(8px);
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: var(--cream-dim);
  padding: 140px 48px;
}
.testimonials-inner { max-width: 1400px; margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 72px;
}
.testimonial {
  background: var(--cream);
  padding: 44px 36px;
  border-top: 2px solid var(--gold);
  position: relative;
}
.testimonial-quote-mark {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.5;
  color: var(--gold);
  position: absolute;
  top: 28px; right: 28px;
  opacity: 0.3;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding-top: 16px;
  border-top: 1px solid rgba(10, 26, 51, 0.12);
}
.testimonial-author .name { color: var(--navy); display: block; margin-bottom: 4px; font-weight: 600; }

/* ============ BOOK BANNER ============ */
.book-banner {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}
.book-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 60%);
}
.book-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 2;
}
.book-content h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.book-content h2 .italic { font-style: italic; color: var(--gold); }
.book-content p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  color: var(--cream-dim);
  margin-bottom: 36px;
  max-width: 520px;
  font-style: italic;
}
.book-cover {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  padding: 44px 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 30px 30px 80px rgba(0,0,0,0.4);
  transform: rotate(-2deg);
  transition: transform 0.6s ease;
  position: relative;
  color: var(--navy);
}
.book-cover:hover { transform: rotate(0) scale(1.02); }
.book-cover::before {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid rgba(10, 26, 51, 0.25);
}
.book-cover-top { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; }
.book-cover-title {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.book-cover-title .italic { font-style: italic; }
.book-cover-author {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  border-top: 1px solid rgba(10, 26, 51, 0.25);
  padding-top: 14px;
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--cream);
  padding: 160px 48px;
  text-align: center;
}
.final-cta-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 36px;
}
.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 88px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--navy);
  max-width: 1000px;
  margin: 0 auto 44px;
}
.final-cta h2 .italic { font-style: italic; color: var(--gold-dim); }
.final-cta > p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  color: #4A4A4A;
  max-width: 560px;
  margin: 0 auto 48px;
  font-style: italic;
}
.final-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ INNER PAGE HERO ============ */
.inner-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 160px 48px 120px;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201, 169, 97, 0.12) 0%, transparent 60%);
}
.inner-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.breadcrumb {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb .sep { color: rgba(201, 169, 97, 0.4); }
.inner-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 1000px;
}
.inner-hero h1 .italic { font-style: italic; color: var(--gold); }
.inner-hero .lead {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.55;
  font-style: italic;
  color: var(--cream-dim);
  max-width: 640px;
  margin-top: 28px;
}

/* ============ CONTENT SECTIONS ============ */
.content-section {
  padding: 120px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.content-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  position: sticky;
  top: 100px;
}
.content-body p {
  font-size: 18px;
  line-height: 1.75;
  color: #2A2A2A;
  margin-bottom: 24px;
}
.content-body h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin: 48px 0 18px;
  letter-spacing: -0.02em;
}
.content-body h3 .italic { font-style: italic; color: var(--gold-dim); }
.content-body ul { list-style: none; padding: 0; margin: 20px 0 36px; counter-reset: list-item; }
.content-body ul li {
  font-size: 17px;
  line-height: 1.6;
  padding: 14px 0 14px 36px;
  border-bottom: 1px solid rgba(10, 26, 51, 0.1);
  position: relative;
  color: #2A2A2A;
  counter-increment: list-item;
}
.content-body ul li::before {
  content: counter(list-item);
  position: absolute;
  left: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 18px;
}
.content-pull {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.35;
  font-style: italic;
  color: var(--navy);
  padding: 36px 0 36px 36px;
  border-left: 2px solid var(--gold);
  margin: 44px 0;
}

/* ============ PROGRAMMES PAGE ============ */
.programmes-page { padding: 100px 48px; background: var(--cream); }
.programmes-page-inner { max-width: 1400px; margin: 0 auto; }
.programme-card {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 56px;
  align-items: start;
  padding: 56px 0;
  border-top: 1px solid rgba(10, 26, 51, 0.12);
}
.programme-card:last-child { border-bottom: 1px solid rgba(10, 26, 51, 0.12); }
.programme-card-num {
  font-family: var(--serif);
  font-size: 88px;
  font-weight: 300;
  line-height: 0.85;
  color: var(--gold);
  font-style: italic;
}
.programme-card-body h3 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--navy);
}
.programme-card-body p {
  font-size: 17px;
  line-height: 1.65;
  color: #3A3A3A;
  max-width: 580px;
  margin-bottom: 16px;
}
.programme-card-meta {
  display: flex;
  gap: 20px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-weight: 600;
  margin-top: 20px;
}

/* ============ SPEAKING GALLERY ============ */
.speaking-gallery { padding: 100px 48px; background: var(--cream); }
.speaking-gallery-inner { max-width: 1400px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 16px;
  margin-top: 64px;
}
.gallery-item {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(5, 15, 31, 0.45);
}
.gallery-item .cap {
  position: absolute;
  bottom: 20px; left: 20px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 2;
}
.gallery-1 { grid-column: 1; grid-row: 1 / 3; }
.gallery-5 {
  background: var(--gold);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.gallery-5::after { display: none; }
.gallery-5 .num { font-family: var(--serif); font-size: 72px; font-weight: 300; line-height: 1; color: var(--navy); }
.gallery-5 .lbl { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); font-weight: 600; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 48px;
}
.contact-info h2 {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 28px;
}
.contact-info h2 .italic { font-style: italic; color: var(--gold-dim); }
.contact-info > p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: #3A3A3A;
  margin-bottom: 36px;
  font-style: italic;
  max-width: 440px;
}
.contact-option { padding: 20px 0; border-top: 1px solid rgba(10, 26, 51, 0.1); }
.contact-option h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-option p { font-size: 14px; color: #4A4A4A; line-height: 1.55; }
.contact-form-box {
  background: var(--navy);
  color: var(--cream);
  padding: 60px 52px;
  position: relative;
}
.contact-form-box::before {
  content: ''; position: absolute; top: 18px; left: 18px;
  width: 36px; height: 36px;
  border-top: 1px solid var(--gold); border-left: 1px solid var(--gold);
}
.contact-form-box::after {
  content: ''; position: absolute; bottom: 18px; right: 18px;
  width: 36px; height: 36px;
  border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold);
}
.contact-form-box h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 28px;
}
.form-field { margin-bottom: 24px; }
.form-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
  padding: 10px 0;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
}
.form-field select option { background: var(--navy); color: var(--cream); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-bottom-color: var(--gold); }
.form-field textarea { min-height: 90px; resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(245, 240, 230, 0.35); }
.form-submit-btn {
  margin-top: 12px;
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.form-submit-btn:hover { background: var(--gold-bright); }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .checkmark {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 16px;
}
.form-success h4 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
}
.form-success p { color: var(--cream-dim); font-size: 15px; }

/* ============ FOOTER ============ */
/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 96px 48px 0;
}
.footer-inner { max-width: 1220px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 72px;
}

/* ── FOOTER BRAND ── */
.footer-brand-logo {
  width: 100px;
  margin-bottom: 28px;
  display: block;
  opacity: 0.92;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(242,237,228,0.48);
  max-width: 260px;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 10px !important;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(201,169,97,0.5) !important;
  margin-bottom: 36px !important;
  font-weight: 500;
}

/* ── SOCIAL PILLS ── */
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.social-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 12px 20px;
  border: 1px solid rgba(201,169,97,0.15);
  background: rgba(255,255,255,0.03);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
  width: fit-content;
  min-width: 200px;
  position: relative;
  overflow: hidden;
}
.social-pill::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(201,169,97,0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.social-pill:hover::before { transform: translateX(0); }
.social-pill:hover {
  border-color: rgba(201,169,97,0.4);
  transform: translateX(5px);
}
.social-icon {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.social-pill:hover .social-icon { transform: scale(1.15); }
.social-icon svg { width: 20px; height: 20px; }
.social-name {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(242,237,228,0.6);
  transition: color 0.25s ease;
}
.social-pill:hover .social-name { color: var(--gold-bright); }
.social-handle {
  font-size: 11px;
  color: rgba(242,237,228,0.28);
  margin-left: auto;
  font-weight: 300;
  letter-spacing: 0;
  font-style: italic;
  padding-left: 8px;
  transition: color 0.25s ease;
}
.social-pill:hover .social-handle { color: rgba(201,169,97,0.6); }

/* ── NAV COLUMNS ── */
.footer-col h4 {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-col h4::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,169,97,0.15);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 13px; }
.footer-col a {
  font-size: 13.5px;
  color: rgba(242,237,228,0.45);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
  letter-spacing: 0.01em;
}
.footer-col a:hover {
  color: var(--gold);
  padding-left: 5px;
}

/* ── BOTTOM BAR ── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 36px;
  font-size: 11px;
  color: rgba(242,237,228,0.24);
  letter-spacing: 0.07em;
  border-top: 1px solid rgba(201,169,97,0.08);
}
.footer-copy { font-weight: 400; }
.footer-bottom-right { display: flex; gap: 28px; }
.footer-bottom-right a {
  color: rgba(242,237,228,0.24);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.07em;
}
.footer-bottom-right a:hover { color: var(--gold); }

/* ============ ALERT / FLASH ============ */
.alert-success {
  background: rgba(201, 169, 97, 0.15);
  border: 1px solid var(--gold);
  color: var(--navy);
  padding: 16px 24px;
  margin-bottom: 24px;
  font-size: 14px;
  border-radius: 0;
}
.alert-error {
  background: rgba(180, 60, 60, 0.1);
  border: 1px solid rgba(180, 60, 60, 0.4);
  color: #8B2020;
  padding: 16px 24px;
  margin-bottom: 24px;
  font-size: 14px;
}

/* ============ REGISTER PAGE ============ */
.register-page {
  min-height: 100vh;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.register-page::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 97, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 97, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.register-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 48px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.register-info { color: var(--cream); }
.register-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 18px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 28px;
}
.register-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.register-title .italic { font-style: italic; color: var(--gold); }
.register-subtitle {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  font-style: italic;
  color: var(--cream-dim);
  margin-bottom: 40px;
}
.register-details { margin-bottom: 44px; }
.register-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
}
.register-detail-row:first-child { border-top: 1px solid rgba(201, 169, 97, 0.12); }
.register-detail-icon { color: var(--gold); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.register-detail-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-weight: 600;
  margin-bottom: 4px;
}
.register-detail-val { font-size: 15px; color: var(--cream-dim); }
.register-who h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}
.register-who ul { list-style: none; }
.register-who ul li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream-dim);
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.08);
  position: relative;
}
.register-who ul li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 14px;
}
.register-what {
  margin-top: 36px;
}
.register-what h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}
.register-what ul { list-style: none; }
.register-what ul li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream-dim);
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.08);
  position: relative;
}
.register-what ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 14px;
}
.scholarship-value {
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.25);
  padding: 24px 28px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.scholarship-value .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.scholarship-value .price { font-family: var(--serif); font-size: 40px; font-weight: 300; color: var(--cream); text-decoration: line-through; opacity: 0.5; }
.scholarship-value .free { font-family: var(--serif); font-size: 56px; font-weight: 300; color: var(--gold); line-height: 1; }
.register-form-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 169, 97, 0.2);
  padding: 56px 48px;
  color: var(--cream);
  position: relative;
  backdrop-filter: blur(10px);
}
.register-form-box::before {
  content: '';
  position: absolute; top: 16px; left: 16px;
  width: 32px; height: 32px;
  border-top: 1px solid var(--gold); border-left: 1px solid var(--gold);
}
.register-form-box::after {
  content: '';
  position: absolute; bottom: 16px; right: 16px;
  width: 32px; height: 32px;
  border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold);
}
.register-form-box h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}
.register-form-box .form-sub {
  font-size: 13px;
  color: var(--cream-dim);
  margin-bottom: 36px;
  line-height: 1.55;
}
.register-form-box .form-field label { color: var(--gold); }
.register-form-box .form-field input,
.register-form-box .form-field textarea,
.register-form-box .form-field select { color: var(--cream); border-bottom-color: rgba(201, 169, 97, 0.25); }
.register-form-box .form-field select option { background: var(--navy-deep); }
.slots-warning {
  background: rgba(201, 169, 97, 0.12);
  border-left: 3px solid var(--gold);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.register-submit-btn {
  width: 100%;
  padding: 22px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}
.register-submit-btn:hover { background: var(--gold-bright); transform: translateY(-2px); }
.register-privacy {
  text-align: center;
  font-size: 11px;
  color: rgba(245, 240, 230, 0.4);
  margin-top: 12px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .site-nav { padding: 0 32px; }
  .hero { padding: 100px 32px 80px; }
  .hero-inner { gap: 40px; }
  .about-home-inner { gap: 60px; }
  .pillars-grid { gap: 0; }
  .register-grid { gap: 48px; padding: 60px 32px; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-portrait-side { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(201, 169, 97, 0.12); padding: 48px 0 !important; }
  .pillar:last-child { border-bottom: none; }
  .about-home-inner { grid-template-columns: 1fr; }
  .about-visual { position: static; aspect-ratio: 16/9; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .book-inner { grid-template-columns: 1fr; }
  .keynote-section { grid-template-columns: 1fr; }
  .keynote-image { min-height: 350px; }
  .programme-row { grid-template-columns: 60px 1fr auto; gap: 24px; }
  .programme-desc { display: none; }
  .contact-grid { grid-template-columns: 1fr; padding: 80px 32px; }
  .register-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-label { position: static; }
  .programme-card { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 20px; height: 70px; }
  .hero { padding: 80px 20px 60px; }
  .hero h1 { font-size: clamp(40px, 10vw, 60px); }
  .hero-ctas { flex-direction: column; }
  .pillars-section { padding: 80px 20px; }
  .about-home { padding: 80px 20px; }
  .programmes-home { padding: 80px 20px; }
  .testimonials-section { padding: 80px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .book-banner { padding: 80px 20px; }
  .final-cta { padding: 100px 20px; }
  .final-cta-buttons { flex-direction: column; align-items: center; }
  .inner-hero { padding: 120px 20px 80px; }
  .content-section { padding: 80px 20px; }
  .programmes-page { padding: 60px 20px; }
  .speaking-gallery { padding: 60px 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 180px 180px; }
  .gallery-1 { grid-column: 1 / 3; grid-row: 1; }
  .contact-grid { padding: 60px 20px; }
  .contact-form-box { padding: 40px 28px; }
  .register-grid { padding: 60px 20px; }
  .register-form-box { padding: 40px 28px; }
  .site-footer { padding: 80px 20px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .pillars-header { grid-template-columns: 1fr; gap: 32px; }
}


/* hide the stat badge completely */
.hero-stat-badge { display: none; }

@media (max-width: 768px) {
  .photo-strip-inner {
    grid-template-columns: 1fr;
    height: auto;
  }
  .photo-strip-main { height: 280px; }
  .photo-strip-side { flex-direction: row; }
  .photo-strip-top,
  .photo-strip-bottom { height: 200px; }
  .photo-strip-top { border-bottom: none; border-right: 2px solid var(--navy-deep); }
}



/* Left — large hero image */
.mosaic-left {
  position: relative;
  overflow: hidden;
}
.mosaic-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 8s ease;
}
.mosaic-left:hover img { transform: scale(1.04); }

/* Center — stat column */
.mosaic-center {
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  text-align: center;
}
.mosaic-stat-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  color: var(--navy);
  display: block;
  margin-bottom: 10px;
}
.mosaic-stat-lbl {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}

/* Right — two stacked images */
.mosaic-right {
  display: flex;
  flex-direction: column;
}
.mosaic-right-top,
.mosaic-right-bottom {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.mosaic-right-top { border-bottom: 2px solid var(--navy-deep); }
.mosaic-right-top img,
.mosaic-right-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s ease;
}
.mosaic-right-top:hover img,
.mosaic-right-bottom:hover img { transform: scale(1.05); }

/* Captions on all panels */
.mosaic-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 20px 16px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  background: linear-gradient(to top, rgba(5,15,31,0.72) 0%, transparent 100%);
}

/* hide the stat badge */
.hero-stat-badge { display: none; }

@media (max-width: 768px) {
  .mosaic-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 200px;
    height: auto;
  }
  .mosaic-left {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .mosaic-center {
    grid-column: 1;
    grid-row: 2;
    height: 200px;
  }
  .mosaic-center .mosaic-stat-num { font-size: 40px; }
  .mosaic-right {
    grid-column: 2;
    grid-row: 2;
    height: 200px;
  }
  .mosaic-right-bottom { display: none; }
  .mosaic-right-top { border-bottom: none; flex: 1; }
}

/* ============ SPEAKING MOSAIC ============ */
.speaking-mosaic {
  position: relative;
  padding: 100px 0 110px;
  background: var(--navy-deep);
  overflow: hidden;
}
.speaking-mosaic::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent, transparent 120px,
    rgba(255,255,255,0.012) 120px, rgba(255,255,255,0.012) 121px
  );
  pointer-events: none;
}
.s-header {
  max-width: 1180px; margin: 0 auto 64px;
  padding: 0 48px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px;
  position: relative; z-index: 2;
}
.s-kicker {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--gold); font-weight: 500;
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.s-kicker::before { content: ''; width: 36px; height: 1px; background: var(--gold); opacity: 0.6; }
.s-title {
  font-family: var(--serif); font-size: clamp(40px,5vw,70px);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.01em; color: #fff;
}
.s-title em { font-style: italic; color: var(--gold-bright); }
.s-right {
  flex-shrink: 0; text-align: right; max-width: 300px;
  font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.4);
  font-weight: 300; padding-bottom: 6px;
}
.s-right strong { color: rgba(255,255,255,0.65); font-weight: 400; }
.s-grid {
  max-width: 1180px; margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.15fr 0.55fr 1fr;
  grid-template-rows: 420px 210px;
  gap: 4px;
  position: relative; z-index: 2;
}
.cell { position: relative; overflow: hidden; background: var(--navy-soft); }
.cell img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
  transform: scale(1.04);
  transition: transform 1.4s cubic-bezier(.16,1,.3,1), filter .7s ease;
  filter: brightness(.82) saturate(.85);
  will-change: transform;
}
.cell:hover img { transform: scale(1.0); filter: brightness(.96) saturate(1.05); }
.cell-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,15,31,.72) 0%, rgba(5,15,31,.1) 45%, transparent 70%);
  transition: opacity .6s ease;
}
.cell:hover .cell-vignette { opacity: .5; }
.cell::after {
  content: ''; position: absolute; inset: 0;
  border: 1.5px solid rgba(201,169,97,0);
  transition: border-color .5s ease;
  pointer-events: none; z-index: 4;
}
.cell:hover::after { border-color: rgba(201,169,97,.35); }
.cell-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 52px 28px 26px; z-index: 3;
}
.cell-tag {
  font-size: 9px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; display: block; margin-bottom: 7px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .45s ease, transform .45s ease;
}
.cell:hover .cell-tag { opacity: 1; transform: translateY(0); }
.cell-title {
  font-family: var(--serif); font-size: 21px; font-weight: 400;
  color: #fff; line-height: 1.2;
  opacity: 0; transform: translateY(8px);
  transition: opacity .45s .07s ease, transform .45s .07s ease;
}
.cell:hover .cell-title { opacity: 1; transform: translateY(0); }
.cell-a { grid-column: 1; grid-row: 1 / 3; }
.cell-b { grid-column: 2; grid-row: 1; background: var(--gold); cursor: default; }
.cell-b::after { display: none; }
.cell-c { grid-column: 3; grid-row: 1; }
.cell-d { grid-column: 2; grid-row: 2; background: #0b1e36; cursor: default; }
.cell-d::after { display: none; }
.cell-e { grid-column: 3; grid-row: 2; }
.stat-wrap {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; gap: 8px; padding: 24px;
}
.stat-num {
  font-family: var(--serif); font-size: 68px; font-weight: 300;
  line-height: 1; color: var(--navy);
}
.stat-label {
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  font-weight: 600; color: rgba(9,25,46,.6); line-height: 1.8; text-align: center;
}
.quote-wrap {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; padding: 24px; text-align: center; gap: 12px;
}
.quote-mark {
  font-family: var(--serif); font-size: 48px; font-weight: 300;
  line-height: 0; color: var(--gold); opacity: .4;
  display: block; margin-bottom: 4px;
}
.quote-text {
  font-family: var(--serif); font-size: 14px; font-style: italic;
  font-weight: 300; color: rgba(255,255,255,.55); line-height: 1.65;
}
.s-foot {
  max-width: 1180px; margin: 40px auto 0;
  padding: 0 48px;
  display: flex; align-items: center;
  position: relative; z-index: 2;
}
.s-foot-line { flex: 1; height: 1px; background: rgba(201,169,97,.18); }
.s-foot-pill {
  padding: 10px 28px; border: 1px solid rgba(201,169,97,.25);
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.35); font-weight: 500; white-space: nowrap;
}



/* ============================================================
   COMPLETE MOBILE RESPONSIVE SYSTEM
   ============================================================ */

/* ── No horizontal scroll ever ── */
html, body { overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; height: auto; display: block; }

/* ══════════════════════════════════
   TABLET  ≤ 1024px
══════════════════════════════════ */
@media (max-width: 1024px) {
  .site-nav { padding: 0 24px; }
  .nav-links { gap: 24px; }
  .hero { padding: 80px 32px 60px; }
  .hero-inner { gap: 40px; }
}

/* ══════════════════════════════════
   MOBILE NAV  ≤ 900px
══════════════════════════════════ */
@media (max-width: 900px) {
  /* Nav */
  .site-nav {
    padding: 0 16px;
    height: 64px;
  }
  .nav-logo img {
    height: 38px !important;
    width: auto;
  }
  .nav-links { display: none !important; }
  .nav-cta-btn { display: none !important; }
  .nav-hamburger {
    display: flex !important;
    order: 3;
  }

  /* Mobile menu links */
  .mobile-menu a {
    font-size: 28px;
  }
  .mobile-menu {
    gap: 24px;
    padding: 20px;
  }
}

/* ══════════════════════════════════
   HERO  ≤ 900px
══════════════════════════════════ */
@media (max-width: 900px) {
  .hero {
    padding: 80px 20px 60px;
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 0;
  }
  /* Hide portrait on mobile — hero is text only */
  .hero-portrait-side { display: none !important; }

  /* Hide the overlapping stat badge */
  .hero-stat-badge { display: none !important; }

  .hero h1 {
    font-size: clamp(36px, 9vw, 58px) !important;
    line-height: 1.0;
    margin-bottom: 24px;
  }
  .hero-eyebrow { font-size: 10px; margin-bottom: 20px; }
  .hero-subtitle {
    font-size: 16px !important;
    margin-bottom: 32px;
    max-width: 100%;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
  .hero-meta {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
  }
}

/* ══════════════════════════════════
   ANNOUNCEMENT BAR  ≤ 600px
══════════════════════════════════ */
@media (max-width: 600px) {
  .announcement-bar {
    font-size: 11px;
    padding: 8px 16px;
    line-height: 1.5;
  }
}

/* ══════════════════════════════════
   ABOUT  ≤ 900px
══════════════════════════════════ */
@media (max-width: 900px) {
  .about-section { padding: 64px 20px; }
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  .about-visual {
    max-width: 280px;
    margin: 0 auto;
    order: -1;
  }
  .about-visual img { border-radius: 0; }
}

/* ══════════════════════════════════
   PILLARS / CARDS  ≤ 768px
══════════════════════════════════ */
@media (max-width: 768px) {
  .pillars-section { padding: 60px 20px; }
  .pillars-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .pillar-card { padding: 28px 24px; }
}

/* ══════════════════════════════════
   PROGRAMMES  ≤ 768px
══════════════════════════════════ */
@media (max-width: 768px) {
  .programmes-section { padding: 60px 20px; }
  .programmes-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}

/* ══════════════════════════════════
   SPEAKING CAROUSEL  ≤ 768px
══════════════════════════════════ */
@media (max-width: 768px) {
  #speaking-section { padding: 60px 0 70px; }
}

/* ══════════════════════════════════
   CTA SECTION  ≤ 768px
══════════════════════════════════ */
@media (max-width: 768px) {
  .cta-section,
  [class*="cta-"] { padding: 60px 20px !important; }
}

/* ══════════════════════════════════
   FOOTER  ≤ 960px
══════════════════════════════════ */
@media (max-width: 960px) {
  .site-footer { padding: 72px 24px 0; }
  .footer-top {
    grid-template-columns: 1fr 1fr !important;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
}

@media (max-width: 600px) {
  .site-footer { padding: 52px 16px 0; }
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .footer-col h4 { font-size: 9px; }
  .footer-col a { font-size: 13px; }

  /* Social pills full width on mobile */
  .footer-socials { width: 100%; }
  .social-pill {
    max-width: 100% !important;
    min-width: unset !important;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 14px;
    text-align: center;
    padding: 24px 0 28px;
  }
  .footer-bottom-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .footer-copy { font-size: 11px; }
  .footer-bottom-right a { font-size: 11px; }
}

/* ══════════════════════════════════
   FOOTER FONT SIZES — all screens
══════════════════════════════════ */
.footer-brand p { font-size: 14px; line-height: 1.8; }
.footer-tagline { font-size: 11px !important; }
.footer-col h4 { font-size: 10px; letter-spacing: 0.28em; }
.footer-col a { font-size: 14px; }
.footer-copy { font-size: 12px; }
.footer-bottom-right a { font-size: 12px; }
.social-name { font-size: 12px; }
.social-handle { font-size: 11px; }
.footer-bottom {
  font-size: 12px;
}

/* ══════════════════════════════════
   GENERAL SECTION SPACING  ≤ 600px
══════════════════════════════════ */
@media (max-width: 600px) {
  .hero { padding: 72px 16px 48px; }
  .hero h1 { font-size: clamp(32px, 10vw, 48px) !important; }
  .hero-subtitle { font-size: 15px !important; }
}

