/* 
 * CINEMATIC EDITORIAL — Lilian Acom-McClung
 * Design: Magazine-grade editorial + film noir warmth
 * Palette: Pure White · Deep Burgundy · Warm Gold · Cream
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Bodoni+Moda:ital,opsz,wght@1,6..96,400;1,6..96,500;1,6..96,600&family=Herr+Von+Muellerhoff&family=Inter:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  /* Palette */
  --bg-cream: #FFFFFF;
  --bg-cream-dark: #F8F5EF;
  --bg-card: #FFFFFF;

  --burgundy: #5C1625;
  --burgundy-dark: #3F0E18;
  --burgundy-light: #7E2235;
  --burgundy-fade: rgba(92, 22, 37, 0.04);
  --burgundy-overlay: rgba(63, 14, 24, 0.92);

  --gold: #C5A059;
  --gold-dark: #A67C37;
  --gold-light: #F0E8D9;
  --gold-fade: rgba(197, 160, 89, 0.15);

  --text-dark: #1A1516;
  --text-muted: #6B5D5F;
  --text-light: #FFFFFF;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-script: 'Herr Von Muellerhoff', cursive;

  /* Spacing & Layout */
  --header-height: 80px;
  --max-width: 1280px;
  --section-pad: clamp(80px, 12vw, 160px);

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-smooth: all 0.5s var(--ease-out-expo);
  --transition-fast: all 0.25s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(92, 22, 37, 0.04);
  --shadow-md: 0 12px 40px rgba(92, 22, 37, 0.07);
  --shadow-lg: 0 24px 60px rgba(63, 14, 24, 0.10);
  --shadow-gold: 0 12px 40px rgba(197, 160, 89, 0.18);
  --shadow-cinematic: 0 40px 80px rgba(63, 14, 24, 0.15);
}


/* ═══════════════════════════════════════════
   BASE RESET & BODY
   ═══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Cinematic ambient radials */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: -15vw;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.035) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  bottom: -10vh;
  right: -15vw;
  width: 65vw;
  height: 65vw;
  background: radial-gradient(circle, rgba(92, 22, 37, 0.025) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Custom Scrollbar — editorial thin line */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-cream-dark); }
::-webkit-scrollbar-thumb {
  background: var(--burgundy);
  border-radius: 0;
}
::-webkit-scrollbar-thumb:hover { background: var(--burgundy-light); }

::selection {
  background: var(--gold);
  color: var(--text-light);
}


/* ═══════════════════════════════════════════
   EDITORIAL TYPOGRAPHY
   ═══════════════════════════════════════════ */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--burgundy-dark);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.25rem, 8vw, 6.5rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 0.75rem;
}

p {
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.75;
}

strong {
  font-weight: 600;
  color: var(--burgundy);
}

.font-script {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-style: italic;
  color: var(--gold-dark);
  line-height: 1.1;
  font-weight: 500;
  display: block;
  opacity: 0.9;
  letter-spacing: 0.02em;
}




/* ═══════════════════════════════════════════
   EDITORIAL BUTTONS
   ═══════════════════════════════════════════ */
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background-color: var(--burgundy);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--burgundy-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-cinematic);
}

.btn-secondary {
  background-color: transparent;
  color: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
}

.btn-secondary:hover {
  background-color: var(--burgundy-dark);
  color: var(--text-light);
  transform: translateY(-3px);
}

.btn-accent {
  background-color: var(--gold);
  color: var(--text-light);
}

.btn-accent:hover {
  background-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-text {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

.btn-text:hover {
  color: var(--text-light);
  border-color: var(--text-light);
  gap: 1rem;
}


/* ═══════════════════════════════════════════
   LAYOUT UTILITIES
   ═══════════════════════════════════════════ */
section {
  padding: var(--section-pad) 24px;
  position: relative;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-tag {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  display: inline-block;
  font-weight: 600;
  position: relative;
  padding-left: 40px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1px;
  background-color: var(--gold);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px auto;
}

.section-header .section-tag {
  padding-left: 0;
  display: block;
}

.section-header .section-tag::before {
  display: none;
}


/* ═══════════════════════════════════════════
   HEADER & NAVIGATION — Full-Width Cinematic
   ═══════════════════════════════════════════ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 80px);
  background-color: #FFFFFF;
}

header.scrolled {
  background-color: #FFFFFF;
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  height: 68px;
  box-shadow: 0 1px 0 rgba(197, 160, 89, 0.15);
}

.header-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-transform: uppercase;
}

.logo-primary {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--burgundy-dark);
  letter-spacing: 0.18em;
}

.logo-secondary {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.42em;
  margin-top: 4px;
  padding-left: 2px;
}

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

.nav-links a {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

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

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

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

.header-cta {
  display: block;
}

.header-cta .btn {
  padding: 0.6rem 1.75rem;
  font-size: 0.7rem;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background-color: var(--burgundy);
  margin-bottom: 6px;
  transition: var(--transition-smooth);
  transform-origin: center;
}

.mobile-nav-toggle span:last-child { margin-bottom: 0; }

.mobile-nav-toggle.open span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-nav-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.open span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ═══════════════════════════════════════════
   HERO — Full-Screen Cinematic Editorial
   ═══════════════════════════════════════════ */
.hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Warm brown → cream → white horizontal gradient */
  background: 
    linear-gradient(105deg, 
      #D4C4AA 0%,
      #E8DEC8 8%,
      #F0E8D5 18%,
      #F5F0E4 28%,
      #FAF7F0 42%,
      #FDFBF7 58%,
      #FFFFFF 75%,
      #FFFFFF 100%
    );
  overflow: hidden;
  position: relative;
}

/* Warm cinematic light overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(120deg, rgba(166, 124, 55, 0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 15% 50%, rgba(92, 22, 37, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 30%, rgba(197, 160, 89, 0.05) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

/* Bottom fade to next section */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, #FFFFFF 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

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

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  font-weight: 300;
  color: var(--burgundy-dark);
  letter-spacing: -0.03em;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 520px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Editorial offset image frame */
.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  z-index: 2;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
  filter: contrast(1.02) saturate(1.05);
}

.hero-image-frame:hover img {
  transform: scale(1.04);
}

/* Gold accent border — editorial offset */
.hero-image-container::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;
  border: 1.5px solid var(--gold);
  z-index: 1;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.hero-image-container:hover::before {
  transform: translate(4px, 4px);
}

/* Halo light behind hero */
.hero-halo {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

.hero-signature {
  position: absolute;
  bottom: 30px;
  right: -20px;
  z-index: 3;
  width: 160px;
  height: auto;
  pointer-events: none;
  opacity: 0.75;
  filter: sepia(1) saturate(0.4) hue-rotate(5deg);
}


/* ═══════════════════════════════════════════
   BACKGROUND SECTION THEMES
   ═══════════════════════════════════════════ */
.bg-white-section {
  background-color: #FFFFFF;
}

.bg-cream-section {
  background-color: var(--bg-cream-dark);
  position: relative;
}

/* Cinematic film-strip border between sections */
.bg-cream-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.bg-burgundy-section {
  background: linear-gradient(165deg, var(--burgundy-dark) 0%, #2C0A11 60%, #1A0509 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

/* Cinematic light leak on burgundy sections */
.bg-burgundy-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.bg-burgundy-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 34, 53, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.bg-burgundy-section h1,
.bg-burgundy-section h2,
.bg-burgundy-section h3,
.bg-burgundy-section h4 {
  color: var(--text-light);
}

.bg-burgundy-section .section-tag {
  color: var(--gold);
}

.bg-burgundy-section p {
  color: rgba(255, 255, 255, 0.65);
}


/* ═══════════════════════════════════════════
   INTERACTIVE TIMELINE — Editorial Horizontal
   ═══════════════════════════════════════════ */
.timeline-section {
  overflow: hidden;
}

.timeline-container {
  position: relative;
  width: 100%;
  margin: 70px auto 40px auto;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  top: 38px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 15%, var(--gold) 85%, transparent 100%);
  opacity: 0.4;
  z-index: 1;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.timeline-item:hover {
  transform: translateY(-4px);
}

.timeline-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-cream-dark);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.timeline-item.active .timeline-circle {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  color: var(--text-light);
  box-shadow: var(--shadow-gold);
  transform: scale(1.15);
}

.timeline-title {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--burgundy-dark);
  margin-bottom: 8px;
  line-height: 1.2;
  transition: var(--transition-fast);
}

.timeline-item.active .timeline-title {
  color: var(--gold-dark);
}

.timeline-desc {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
  font-weight: 300;
  margin-bottom: 0;
  max-width: 140px;
}

.timeline-button-wrapper {
  text-align: center;
  margin-top: 50px;
}


/* ═══════════════════════════════════════════
   ABOUT — Editorial Asymmetric Layout
   ═══════════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
  margin-top: 0;
}

.about-image {
  overflow: hidden;
  position: relative;
}

/* Editorial crop mask with subtle gold accent */
.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--burgundy));
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s var(--ease-out-expo);
  filter: contrast(1.03);
}

.about-image:hover img {
  transform: scale(1.03);
}


/* ═══════════════════════════════════════════
   SPEAKING TOPICS — Cinematic Cards
   ═══════════════════════════════════════════ */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.topic-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 160, 89, 0.15);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.topic-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
}

.topic-card-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease-out-expo), filter 0.8s ease;
  filter: brightness(0.92) contrast(1.05);
}

.topic-card:hover .topic-card-img {
  transform: scale(1.04);
  filter: brightness(0.98) contrast(1.05);
}

/* Number Counter Overlaid directly on top of Image */
.topic-num {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold);
  background: rgba(44, 10, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(197, 160, 89, 0.4);
  padding: 8px 18px;
  line-height: 1;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.topic-card-content {
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.topic-card h3 {
  color: var(--text-light);
  margin-bottom: 0.85rem;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.25;
}

.topic-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  flex-grow: 1;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Burgundy section overrides for topic cards */
.bg-burgundy-section .topic-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 160, 89, 0.15);
}

.bg-burgundy-section .topic-card h3 {
  color: var(--text-light);
}

.bg-burgundy-section .topic-card p {
  color: rgba(255, 255, 255, 0.6);
}

.bg-burgundy-section .topic-card:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
}

/* Featured Video Showcase in Speaking Section */
.featured-video-container {
  max-width: 920px;
  margin: 60px auto 0;
  text-align: center;
}

.featured-video-wrapper,
.featured-video-card {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(197, 160, 89, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.3);
  background-color: #000000;
  margin-top: 20px;
  text-decoration: none;
  cursor: pointer;
}

.featured-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* YouTube Thumbnail Link Card (used when embedding is restricted) */
.yt-thumb-link {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(197, 160, 89, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.3);
  background: #000;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.yt-thumb-link:hover {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65), 0 0 50px rgba(197, 160, 89, 0.35);
  border-color: var(--gold);
}

.yt-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.5s ease;
  filter: brightness(0.7);
}

.yt-thumb-link:hover .yt-thumb-img {
  transform: scale(1.04);
  filter: brightness(0.55);
}

.yt-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.yt-play-btn {
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.35s ease;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
}

.yt-thumb-link:hover .yt-play-btn {
  transform: scale(1.18);
  filter: drop-shadow(0 6px 32px rgba(255,0,0,0.5));
}

.yt-thumb-label {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 22px;
  border-radius: 30px;
  border: 1px solid rgba(197, 160, 89, 0.45);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.yt-thumb-link:hover .yt-thumb-label {
  background: rgba(197, 160, 89, 0.18);
  border-color: var(--gold);
}

.featured-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease-out-expo), filter 0.8s ease;
  filter: brightness(0.75);
}

.featured-video-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.video-thumbnail-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(26, 5, 9, 0.2) 0%, rgba(26, 5, 9, 0.6) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: background 0.4s ease;
}

.featured-video-card:hover .video-thumbnail-overlay {
  background: linear-gradient(180deg, rgba(26, 5, 9, 0.1) 0%, rgba(26, 5, 9, 0.4) 100%);
}

.play-button-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--burgundy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  padding-left: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(197, 160, 89, 0.4);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.featured-video-card:hover .play-button-circle {
  transform: scale(1.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 35px rgba(197, 160, 89, 0.7);
}

.video-badge {
  background: rgba(26, 5, 9, 0.85);
  backdrop-filter: blur(12px);
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid rgba(197, 160, 89, 0.4);
  display: inline-flex;
  align-items: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.featured-video-card:hover .video-badge {
  border-color: var(--gold);
  background: rgba(63, 14, 24, 0.9);
}


/* ═══════════════════════════════════════════
   COACHING & COURSES — Editorial Split
   ═══════════════════════════════════════════ */
.coaching-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.coaching-list {
  list-style: none;
  margin-top: 24px;
}

.coaching-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--text-dark);
  padding: 6px 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.08);
  transition: var(--transition-fast);
}

.coaching-item:hover {
  padding-left: 8px;
  border-bottom-color: var(--gold);
}

.coaching-item i {
  color: var(--gold);
  font-size: 0.85rem;
}

.courses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.course-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(197, 160, 89, 0.12);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), var(--burgundy));
  transition: height 0.4s var(--ease-out-expo);
}

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

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

.course-badge {
  align-self: flex-start;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--gold-light), rgba(197, 160, 89, 0.2));
  color: var(--gold-dark);
  padding: 5px 10px;
  margin-bottom: 14px;
}

.course-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--burgundy-dark);
  margin-bottom: 8px;
}

.course-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════
   BOOKS & PRAYER HUB — Cinematic Split
   ═══════════════════════════════════════════ */
.hub-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  align-items: stretch;
}

.books-container {
  background-color: var(--bg-card);
  border: 1px solid rgba(197, 160, 89, 0.15);
  padding: 55px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.books-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin: 45px auto;
  max-width: 960px;
}

.book-item {
  text-align: center;
}

.book-cover {
  width: 100%;
  max-width: 240px;
  height: 350px;
  margin: 0 auto 20px auto;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Cinematic light reflection on book */
.book-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
  z-index: 1;
}

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

.book-item:hover .book-cover {
  transform: translateY(-12px) rotate(1.5deg);
  box-shadow: var(--shadow-cinematic);
}

.book-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--burgundy-dark);
  margin-bottom: 0.35rem;
}

.book-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-heading);
}

/* Prayer Card — Deep Cinematic */
.prayer-card {
  background: linear-gradient(175deg, var(--burgundy-dark) 0%, #1A0509 100%);
  color: var(--text-light);
  padding: 55px 40px;
  box-shadow: var(--shadow-cinematic);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* Ambient light orb */
.prayer-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.prayer-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 34, 53, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.prayer-card h2,
.prayer-card h3 {
  color: var(--text-light);
}

.prayer-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.prayer-form {
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.prayer-form input,
.prayer-form textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  border-radius: 0;
}

.prayer-form input:focus,
.prayer-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.08);
}

.prayer-form textarea {
  height: 100px;
  resize: none;
}

.prayer-form button {
  width: 100%;
}

/* Success Micro-animation */
.success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  animation: fadeIn 0.6s ease forwards;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-gold);
  animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}


/* ═══════════════════════════════════════════
   PARTNERS — Editorial Marquee
   ═══════════════════════════════════════════ */
.partners-section {
  padding: 70px 24px;
  border-top: 1px solid rgba(197, 160, 89, 0.1);
  border-bottom: 1px solid rgba(197, 160, 89, 0.1);
  background-color: #FFFFFF;
}

.partners-title {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-bottom: 45px;
  font-weight: 600;
}

.partners-marquee {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 50px;
}

.partner-logo {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  opacity: 0.45;
  transition: var(--transition-smooth);
}

.partner-logo:hover {
  opacity: 1;
  color: var(--burgundy);
}

.partner-logo.special-logo {
  font-family: var(--font-sans);
  font-weight: 400;
  border: 1px solid var(--text-muted);
  padding: 4px 12px;
}


/* ═══════════════════════════════════════════
   LET'S WORK TOGETHER — Editorial Asymmetric
   ═══════════════════════════════════════════ */
.together-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.together-image-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.together-image-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.together-image-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(63, 14, 24, 0.2) 0%, transparent 100%);
  pointer-events: none;
}

.together-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
  filter: contrast(1.04);
}

.together-image-frame:hover img {
  transform: scale(1.04);
}

.together-bullets {
  list-style: none;
  margin: 35px 0 45px 0;
}

.together-bullet {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.08);
}

.together-bullet:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.bullet-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), rgba(197, 160, 89, 0.15));
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition-smooth);
}

.together-bullet:hover .bullet-icon {
  background: var(--gold);
  color: var(--text-light);
}

.together-bullet h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--burgundy-dark);
  margin-bottom: 0.25rem;
}

.together-bullet p {
  font-size: 0.92rem;
  margin-bottom: 0;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════
   CONTACT — Cinematic Form
   ═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-method {
  margin-bottom: 2.25rem;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}

.contact-method h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.contact-method p {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0;
}

.contact-socials {
  display: flex;
  gap: 1.25rem;
}

.social-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(197, 160, 89, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  transition: var(--transition-smooth);
}

.social-circle:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--text-light);
  transform: translateY(-4px) rotate(5deg);
  box-shadow: var(--shadow-md);
}

/* Contact Form — Floating Labels */
.contact-form-container {
  background-color: var(--bg-card);
  border: 1px solid rgba(197, 160, 89, 0.12);
  padding: 55px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--burgundy), var(--gold));
}

.contact-form .form-group {
  margin-bottom: 2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(92, 22, 37, 0.1);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.contact-form select option {
  background-color: #ffffff;
  color: #1A1516;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--burgundy);
  box-shadow: 0 2px 0 var(--burgundy);
}

.contact-form label {
  position: absolute;
  top: 14px;
  left: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-fast);
}

.contact-form input:focus ~ label,
.contact-form input:not(:placeholder-shown) ~ label,
.contact-form textarea:focus ~ label,
.contact-form textarea:not(:placeholder-shown) ~ label,
.contact-form select ~ label {
  top: -16px;
  font-size: 0.68rem;
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}


/* ═══════════════════════════════════════════
   FOOTER — Deep Cinematic
   ═══════════════════════════════════════════ */
footer {
  background: linear-gradient(180deg, var(--burgundy-dark) 0%, #1A0509 100%);
  color: rgba(255, 255, 255, 0.5);
  padding: 90px 40px 45px 40px;
  text-align: center;
  border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.footer-logo {
  height: 100px;
  width: auto;
  margin: 0 auto 30px auto;
  display: inline-block;
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 45px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: var(--transition-fast);
}

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

.footer-divider {
  max-width: var(--max-width);
  margin: 0 auto 30px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.15), transparent);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: inherit;
  transition: var(--transition-fast);
}

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

/* Dizayn Credit Signature */
.footer-credit {
  opacity: 0.6;
  transition: opacity 0.3s ease;
  font-size: 0.82rem;
}

.footer-credit:hover {
  opacity: 1;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(197, 160, 89, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

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

.dizayn-icon {
  font-size: 0.7em;
  margin-left: 2px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-credit a:hover .dizayn-icon {
  transform: translate(2px, -2px);
  color: var(--gold);
}


/* ═══════════════════════════════════════════
   VIDEO MODAL — Cinematic Overlay
   ═══════════════════════════════════════════ */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(26, 5, 9, 0.97);
  backdrop-filter: blur(16px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  position: relative;
  background-color: #000;
  box-shadow: 0 0 120px rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.2);
  transform: scale(0.92) translateY(20px);
  transition: var(--transition-smooth);
}

.video-modal.open .video-modal-content {
  transform: scale(1) translateY(0);
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  transition: var(--transition-fast);
}

.video-modal-close:hover {
  color: var(--gold);
}

.video-player-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-player-wrapper iframe,
.video-player-wrapper video {
  width: 100%;
  height: 100%;
  border: none;
}


/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS — Cinematic
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 
    opacity 1s var(--ease-out-expo),
    transform 1s var(--ease-out-expo);
}

.reveal.reveal-left {
  transform: translateX(-50px);
}

.reveal.reveal-right {
  transform: translateX(50px);
}

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

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

/* Keyframe animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUp {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile-First Cinematic
   ═══════════════════════════════════════════ */
@media (max-width: 991px) {
  :root {
    --section-pad: 80px;
  }

  .timeline-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 30px;
    margin-top: 40px;
  }

  .timeline-line {
    width: 1050px;
    left: 70px;
  }

  .timeline-grid {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 0 40px;
  }

  .timeline-item {
    flex-shrink: 0;
    width: 140px;
  }

  header {
    padding: 0 20px;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 300px;
    height: calc(100vh - var(--header-height));
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 40px;
    gap: 1.75rem;
    box-shadow: -20px 0 60px rgba(63, 14, 24, 0.08);
    transition: var(--transition-smooth);
  }

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

  .mobile-nav-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

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

  .hero-image-container {
    order: -1;
  }

  .hero-signature {
    right: 10px;
  }

  .hero-image-frame {
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-image-container::before {
    max-width: 360px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .together-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .together-image-container {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .coaching-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-tag {
    padding-left: 0;
  }

  .section-tag::before {
    display: none;
  }
}

@media (max-width: 576px) {
  :root {
    --section-pad: 60px;
  }

  section {
    padding: var(--section-pad) 16px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .font-script {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .topic-card-img {
    height: 380px;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .books-container {
    padding: 30px 20px;
  }

  .books-showcase {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .prayer-card {
    padding: 35px 24px;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    justify-content: center;
  }

  .partners-marquee {
    gap: 30px;
  }
}
