/* ==========================================================================
   FLORE DJINOU — FRAMER & WEBFLOW ULTRA-CLEAN DESIGN SYSTEM
   Inspired by Minimalist High-End Portfolio Design (Hilda Baci Style)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Instrument+Serif:ital@0;1&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  /* Canvas & Base Colors */
  --bg-canvas: #F4F3EF;          /* Warm off-white greige hero canvas */
  --bg-surface: #FFFFFF;         /* Clean white card surface */
  --bg-surface-alt: #FAF9F6;     /* Subtle warm section background */
  
  /* Text & Contrast */
  --text-primary: #121212;       /* High-contrast charcoal */
  --text-secondary: #4A4A4A;     /* Mid charcoal for descriptions */
  --text-muted: #848484;         /* Soft gray for metadata & labels */
  --text-inverse: #FFFFFF;
  
  /* Brand Accent Colors (Executive Purple & Vibrant Solar Orange) */
  --brand-purple: #5D2687;       /* Iconic Executive Purple */
  --brand-purple-hover: #481B6D;
  --brand-purple-soft: rgba(93, 38, 135, 0.08);
  --brand-purple-glow: rgba(93, 38, 135, 0.28);

  --brand-orange: #FF6600;       /* Dynamic Vibrant Orange */
  --brand-orange-hover: #E65500;
  --brand-orange-soft: rgba(255, 102, 0, 0.1);
  --brand-orange-glow: rgba(255, 102, 0, 0.35);

  --brand-gradient: linear-gradient(135deg, #5D2687 0%, #FF6600 100%);
  --brand-gradient-h: linear-gradient(90deg, #5D2687 0%, #FF6600 100%);

  /* Semantic Token Aliases */
  --accent-crimson: var(--brand-purple);
  --accent-crimson-hover: var(--brand-purple-hover);
  --accent-crimson-soft: var(--brand-purple-soft);
  --accent-orange: var(--brand-orange);
  --accent-orange-hover: var(--brand-orange-hover);
  --accent-orange-soft: var(--brand-orange-soft);
  
  /* Borders & Dividers */
  --border-subtle: rgba(0, 0, 0, 0.07);
  --border-card: rgba(0, 0, 0, 0.05);
  --border-dark: rgba(255, 255, 255, 0.15);
  
  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-editorial: 'Instrument Serif', Georgia, serif;
  
  /* Spacing & Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-pill: 9999px;
  
  /* Transitions & Easing (Emil Kowalski Philosophy) */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 160ms var(--ease-out);
  --transition-smooth: 300ms var(--ease-out);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 20px 45px rgba(0, 0, 0, 0.08);
  --shadow-pill: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   1. RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-canvas);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

picture {
  display: contents;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* ==========================================================================
   2. NAVBAR & BRANDING
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  background: rgba(244, 243, 239, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.brand-logo span {
  color: var(--accent-crimson);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-crimson);
  border-radius: 2px;
}

/* White & Crimson Pill Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.btn:active {
  transform: scale(0.97);
}

.btn i {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-pill-white {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-pill);
}

.btn-pill-white:hover {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.btn-crimson {
  background: var(--accent-crimson);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(211, 43, 43, 0.25);
}

.btn-crimson:hover {
  background: var(--accent-crimson-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 43, 43, 0.35);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pill);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
}

/* ==========================================================================
   3. HERO SECTION (STUDIO PORTRAIT CUTOUT STYLE)
   ========================================================================== */
.hero-framer {
  position: relative;
  min-height: 90vh;
  padding-top: 8.5rem;
  padding-bottom: 4rem;
  background-color: var(--bg-canvas);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-framer-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  align-items: end;
  gap: 2rem;
  position: relative;
  z-index: 2;
  min-height: 560px;
}

/* Hero Left Column: Bio Details & Pill Button */
.hero-left-col {
  padding-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero-bio-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 360px;
}

.hero-bio-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.45;
  letter-spacing: -0.01em;
  padding: 0.7rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(16px);
  animation: heroBioFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-bio-item:hover {
  transform: translateX(6px) translateY(-2px);
  background: #FFFFFF;
  border-color: rgba(93, 38, 135, 0.25);
  box-shadow: 0 8px 24px rgba(93, 38, 135, 0.08);
}

.hero-bio-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-orange);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255, 102, 0, 0.5);
}

.hero-bio-item:nth-child(1) { animation-delay: 0.2s; }
.hero-bio-item:nth-child(2) { animation-delay: 0.35s; }
.hero-bio-item:nth-child(3) { animation-delay: 0.5s; }

@keyframes heroBioFadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Center Column: Executive Portrait */
.hero-center-stage {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  height: 100%;
}

.hero-cutout-img {
  max-height: 730px;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  outline: none !important;
  transform: scale(1.04);
  transform-origin: bottom center;
  transition: transform 0.5s var(--ease-out);
}

.hero-center-stage:hover .hero-cutout-img {
  transform: scale(1.07);
}

/* Hero Right Column: Purple & Orange Organic Accent Badge */
.hero-right-col {
  padding-bottom: 3.5rem;
  display: flex;
  justify-content: flex-end;
}

.hero-red-badge {
  background: linear-gradient(145deg, #5D2687 0%, #46166A 100%);
  color: #FFFFFF;
  padding: 3rem 2.2rem;
  border-radius: 60px 24px 60px 24px;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 20px 40px rgba(93, 38, 135, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.hero-red-badge:hover {
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow: 0 28px 50px rgba(93, 38, 135, 0.38);
}

.hero-red-title {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.hero-red-subtext {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-red-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 102, 0, 0.22);
  border: 1px solid rgba(255, 102, 0, 0.35);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   4. ABOUT SPLIT SECTION (STICKY TITLE + WIDE TYPOGRAPHY - SCREENSHOT 2)
   ========================================================================== */
.about-split-section {
  background-color: var(--bg-surface-alt);
  padding: 7rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.about-split-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-sticky-tag {
  position: sticky;
  top: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.about-sticky-tag i {
  color: var(--accent-crimson);
  font-size: 1.1rem;
}

.about-main-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-statement-text {
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1.42;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* Scroll-driven Word Reveal (Framer & Webflow Style) */
.about-statement-text,
.framer-scroll-text {
  position: relative;
  font-size: clamp(1.85rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.framer-word {
  display: inline-block;
  white-space: pre;
  color: rgba(18, 18, 18, 0.2);
  opacity: 0.15;
  transition: color 0.15s linear, opacity 0.15s linear;
  will-change: color, opacity;
}

.framer-word.highlight {
  color: rgba(211, 43, 43, 0.25);
  opacity: 0.2;
}

/* Scroll Fade & Scale Motion Effects (Framer-Motion Vibe) */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale-up {
  opacity: 0;
  transform: scale(0.94) translateY(25px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-fade-in {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}

.reveal-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* Stagger Delays */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }

/* ==========================================================================
   11. TIMELINE COMPONENT (WEBFLOW / FRAMER STYLE)
   ========================================================================== */
/* Top Reading Scroll Progress Bar */
#top-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--brand-purple) 0%, var(--brand-orange) 50%, var(--brand-purple) 100%);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 10000;
  pointer-events: none;
  transition: transform 0.08s ease-out;
}

/* ==========================================================================
   11. TIMELINE COMPONENT (WEBFLOW / FRAMER STYLE & DYNAMIC SCROLL)
   ========================================================================== */
.timeline-framer-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 1.5rem 0;
}

.timeline-framer-line {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 32px;
  width: 3px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}

.timeline-framer-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--brand-purple) 0%, var(--brand-orange) 100%);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(255, 102, 0, 0.6);
  transition: height 0.15s ease-out;
}

.timeline-framer-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 2.25rem;
  margin-bottom: 3.5rem;
}

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

.timeline-framer-dot {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 3px solid var(--border-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.timeline-framer-item.active .timeline-framer-dot,
.timeline-framer-item:hover .timeline-framer-dot {
  transform: scale(1.15);
  background: var(--brand-purple);
  color: #FFFFFF;
  border-color: var(--brand-orange);
  box-shadow: 0 0 24px rgba(93, 38, 135, 0.45);
}

.timeline-framer-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  opacity: 0.6;
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.timeline-framer-item.active .timeline-framer-card,
.timeline-framer-item:hover .timeline-framer-card {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(93, 38, 135, 0.35);
  box-shadow: 0 14px 38px rgba(93, 38, 135, 0.12);
}

.timeline-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  background: var(--brand-orange-soft);
  color: var(--brand-orange);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.timeline-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.timeline-company {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.timeline-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .timeline-framer-line {
    left: 20px;
  }

  .timeline-framer-item {
    grid-template-columns: 42px 1fr;
    gap: 1.25rem;
  }

  .timeline-framer-dot {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .timeline-framer-card {
    padding: 1.5rem;
  }
}

.about-link-red {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-crimson);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.about-link-red:hover {
  color: var(--accent-crimson-hover);
  transform: translateX(6px);
}

.about-link-red i {
  font-size: 1.2rem;
}

/* ==========================================================================
   5. EXCELLENCE & ACCOMPLISHMENTS GRID (SCREENSHOT 3 MATCH)
   ========================================================================== */
.excellence-section {
  padding: 7.5rem 0;
  background-color: var(--bg-surface);
}

.section-header {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-crimson);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
}

/* Cards Grid */
.excellence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.excellence-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.8rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.excellence-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 0, 0, 0.12);
}

.card-head.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Designer Signature Badge (Framer Style) */
.designer-badge-framer {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: border-color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.designer-badge-framer:hover {
  border-color: rgba(211, 43, 43, 0.35);
  background: var(--bg-surface);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.designer-badge-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-primary) !important;
  font-weight: 700;
  text-decoration: none !important;
  transition: color var(--transition-fast);
}

.designer-badge-link i {
  color: var(--accent-crimson);
  font-size: 0.85rem;
}

.designer-badge-link:hover {
  color: var(--accent-crimson) !important;
}

/* About Page Main Section Responsive Rules */
.about-main-card {
  padding: 3.5rem;
}

.about-main-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 992px) {
  .about-main-card {
    padding: 2rem;
  }

  .about-main-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .about-main-card {
    padding: 1.25rem;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Contact Section Responsive Rules */
.contact-card-framer {
  padding: 3.5rem;
}

.contact-grid-framer {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

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

@media (max-width: 992px) {
  .contact-card-framer {
    padding: 2.25rem;
  }

  .contact-grid-framer {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .contact-card-framer {
    padding: 1.35rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Book Showcase / Ouvrage Page Responsive Rules
   ========================================================================== */
.book-showcase-section {
  padding: 6rem 0;
  background-color: var(--bg-surface-alt);
}

.book-spotlight-card {
  padding: 3.5rem;
}

.book-spotlight-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: center;
}

.book-cover-col {
  width: 100%;
}

.book-cover-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #FAF9F6;
  max-width: 320px;
  margin: 0 auto;
}

.book-cover-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.book-badge-wrapper {
  margin-top: 1.25rem;
  text-align: center;
}

.book-info-col {
  min-width: 0;
}

.book-main-title {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  word-break: break-word;
}

.book-lead-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.book-desc-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.book-quote-card {
  background: var(--bg-canvas);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-crimson);
  margin-bottom: 2rem;
}

.book-quote-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.book-quote-text {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}

.book-action-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .book-showcase-section {
    padding: 4.5rem 0;
  }

  .book-spotlight-card {
    padding: 2.25rem;
  }

  .book-spotlight-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .book-cover-frame {
    max-width: 280px;
  }
}

@media (max-width: 576px) {
  .book-showcase-section {
    padding: 3rem 0;
  }

  .book-spotlight-card {
    padding: 1.35rem !important;
  }

  .book-cover-frame {
    max-width: 240px;
  }

  .book-action-btns {
    flex-direction: column;
  }

  .book-action-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--accent-crimson);
}

@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Dancing+Script:wght@600;700&display=swap');

/* Executive Quote Block (Section 8 Responsive) */
.executive-quote-card {
  padding: 3.5rem;
  border-radius: var(--radius-xl);
}

.executive-quote-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: center;
}

.executive-image-inset {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  width: 100%;
}

.executive-image-inset img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@media (max-width: 1024px) {
  .executive-quote-card {
    padding: 2.5rem;
  }

  .executive-quote-grid {
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .executive-quote-card {
    padding: 1.5rem;
  }

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

  .executive-image-inset img {
    height: 280px;
    max-height: 320px;
  }
}

.executive-signature {
  font-family: 'Alex Brush', 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: var(--text-primary);
  opacity: 0.92;
  transform: rotate(-3deg);
  letter-spacing: 1px;
  line-height: 1;
  user-select: none;
}

.card-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-top: 0.5rem;
  margin-bottom: 0.6rem;
}

.card-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card-media-inset {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #F4F4F4;
  height: 220px;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.card-media-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.excellence-card:hover .card-media-inset img {
  transform: scale(1.05);
}

/* ==========================================================================
   6. CONTINUOUS SMOOTH MARQUEE TICKER
   ========================================================================== */
.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: var(--text-primary);
  color: #FFFFFF;
  padding: 1.25rem 0;
  display: flex;
}

.ticker-wrapper.ticker-red {
  background: var(--brand-purple);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.ticker-item {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}

.ticker-star {
  color: var(--brand-orange);
  font-size: 1.2rem;
}

.ticker-red .ticker-star {
  color: var(--brand-orange);
  opacity: 1;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   7. PROGRAMMES & MASTERCLASSES SECTION
   ========================================================================== */
.programs-section {
  padding: 7.5rem 0;
  background-color: var(--bg-surface-alt);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.2rem;
}

.program-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

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

.program-img-wrapper {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.program-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s var(--ease-out);
}

.program-card:hover .program-img-wrapper img {
  transform: scale(1.06);
}

.program-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  z-index: 2;
}

.program-status-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--brand-orange);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.73rem;
  font-weight: 700;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.badge-upcoming-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--brand-purple-soft);
  color: var(--brand-purple);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.program-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  gap: 1.5rem;
}

.program-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}

.program-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   8. FOOTER (WEBFLOW MINIMALIST STYLE)
   ========================================================================== */
.footer-framer {
  width: 100%;
  background: #0E0E10;
  color: #FFFFFF;
  padding: 5.5rem 0 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer-brand-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.footer-brand-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  max-width: 360px;
  line-height: 1.65;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
}

.footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-link:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-bottom .designer-badge-framer {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.15rem;
  border-radius: 50px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.82rem;
  color: #555555;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-bottom .designer-badge-framer:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.footer-bottom .designer-badge-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #121212 !important;
  font-weight: 700;
  text-decoration: none !important;
}

.footer-bottom .designer-badge-link i {
  color: var(--brand-orange);
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.social-link:hover {
  background: var(--brand-purple);
  border-color: var(--brand-orange);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(93, 38, 135, 0.45);
}

/* ==========================================================================
   8.5 SUB-PAGES COMPONENTS & UTILITIES (WEBFLOW / FRAMER)
   ========================================================================== */
.page-header-framer {
  padding: 9.25rem 0 4rem 0;
  background-color: var(--bg-canvas);
  border-bottom: 1px solid var(--border-subtle);
}

.breadcrumb-framer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.breadcrumb-framer a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.breadcrumb-framer a:hover {
  color: var(--brand-purple);
}

.badge-pill-framer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--brand-purple-soft);
  color: var(--brand-purple);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  line-height: 1.4;
}

.page-title-framer {
  font-size: clamp(1.85rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 1rem;
  word-break: break-word;
}

.page-subtitle-framer {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.6;
}

/* Generic Framer Content Card */
.card-framer {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

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

/* Bento Academic & Credentials Cards */
.academic-bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.academic-bento-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.academic-bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-purple) 0%, var(--brand-orange) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.academic-bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(93, 38, 135, 0.12);
  border-color: rgba(93, 38, 135, 0.25);
}

.academic-bento-card:hover::before {
  opacity: 1;
}

.academic-bento-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.academic-bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-purple-soft);
  color: var(--brand-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.academic-bento-card:hover .academic-bento-icon {
  background: var(--brand-purple);
  color: #FFFFFF;
  transform: scale(1.05);
}

.academic-bento-date {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.32rem 0.75rem;
  border-radius: 9999px;
  background: #F6F6F6;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.72rem;
  font-weight: 700;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.academic-bento-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
  margin: 0 0 0.6rem 0;
  letter-spacing: -0.01em;
}

.academic-bento-institution {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 1.25rem 0;
}

.academic-bento-institution i {
  color: var(--brand-orange);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.academic-bento-footer {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.academic-bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  background: var(--brand-orange-soft);
  color: var(--brand-orange);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
}

.academic-bento-tag i {
  font-size: 0.85rem;
}

/* Framer Form Controls */
.form-group-framer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-label-framer {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-input-framer {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--bg-surface-alt);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.form-input-framer:focus {
  border-color: var(--accent-crimson);
  background: #FFFFFF;
}

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

/* Tab Pills Framer */
.tabs-nav-framer {
  display: flex;
  gap: 0.6rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn-framer {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.tab-btn-framer:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.04);
}

.tab-btn-framer.active {
  background: var(--accent-crimson);
  color: #FFFFFF;
}

/* Article Editorial Layout */
.article-layout-framer {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 0;
}

.article-content-framer p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
}

.article-content-framer h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2.5rem 0 1rem 0;
  letter-spacing: -0.02em;
}

.article-banner-framer {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-card);
}

.article-banner-framer img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

/* ==========================================================================
   9. RESPONSIVE BREAKPOINTS (ULTRA-POLISHED TABLET & MOBILE DESIGNS)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-framer {
    min-height: auto;
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
    position: relative;
    overflow: hidden;
  }

  .hero-framer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    min-height: auto;
  }

  .hero-left-col {
    order: 1;
    align-items: flex-start;
    padding-bottom: 0;
    width: 100%;
  }

  .hero-bio-list {
    width: 100%;
    max-width: 100%;
  }

  .hero-center-stage {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    order: 2;
    margin: 1rem 0;
  }

  .hero-cutout-img {
    max-height: 480px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .hero-right-col {
    order: 3;
    width: 100%;
    padding-bottom: 0;
  }

  .hero-red-badge {
    max-width: 100%;
  }

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

  .about-sticky-tag {
    position: static;
  }

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

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

@media (max-width: 992px) {
  .mobile-toggle {
    display: flex !important;
  }

  .nav-contact-btn {
    display: none !important;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(244, 243, 239, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2.25rem 1.75rem;
    gap: 1.1rem;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.open {
    display: flex !important;
    animation: slideDownNav 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .nav-menu .nav-link {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    width: 100%;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-menu .mobile-only-link {
    display: block !important;
  }
}

@keyframes slideDownNav {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-framer {
    padding-top: 6rem;
    padding-bottom: 2.5rem;
    min-height: auto;
  }

  .hero-framer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: auto;
  }

  .hero-left-col {
    order: 1;
    align-items: stretch;
    padding-bottom: 0;
  }

  .hero-center-stage {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    margin: 0.5rem 0;
  }

  .hero-cutout-img {
    max-height: 380px;
    width: auto;
    max-width: 88%;
    object-fit: contain;
  }

  .hero-right-col {
    order: 3;
    justify-content: center;
    padding-bottom: 0;
  }

  .hero-red-badge {
    max-width: 100%;
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
  }

  .about-split-section {
    padding: 4.5rem 0;
  }

  .about-statement-text {
    font-size: clamp(1.4rem, 4.8vw, 1.9rem);
  }

  .excellence-section,
  .programs-section {
    padding: 4.5rem 0;
  }

  .excellence-grid,
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .excellence-card,
  .card-framer,
  .program-card {
    padding: 1.75rem;
  }

  .card-media-inset img {
    height: 220px;
  }

  .page-header-framer {
    padding: 7.75rem 0 2.75rem 0;
  }

  .page-title-framer {
    font-size: 2.25rem;
  }

  .footer-framer {
    padding-top: 4.5rem;
  }

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

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

@media (max-width: 480px) {
  .hero-framer {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem !important;
    font-size: 0.84rem !important;
    gap: 0.4rem !important;
    white-space: normal !important;
    line-height: 1.3 !important;
  }

  .program-card,
  .card-framer,
  .academic-bento-card,
  .excellence-card {
    padding: 1.25rem !important;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .hero-red-title {
    font-size: 1.6rem;
  }

  .timeline-framer-card {
    padding: 1.35rem;
  }
}
