/* ════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════ */
:root {
  --cream: #FAFAF6;
  --warm-white: #F5F0E8;
  --parchment: #EDE5D4;
  --gold: #C08A28;
  --gold-hi: #E2AA48;
  --gold-pale: #FDF5E0;
  --gold-glow: rgba(192, 138, 40, 0.22);
  --lapis: #1A4A8C;
  --lapis-deep: #0D2D5E;
  --lapis-mid: #2A60AA;
  --sky-blue: #5A90D4;
  --sky-pale: #D8E8F8;
  --sky-glow: rgba(90, 144, 212, 0.15);
  --byzantine: #6A2E8E;
  --sage: #3A7055;
  --rose: #A83850;
  --copper: #8B4A1C;
  --ink: #18202E;
  --ink-soft: #2E3A4E;
  --slate: #5A6A80;
  --mist: #8A98AA;
  --fog: #B8C4D4;
  --border: #DDD5C4;
  --border-soft: #EDE8DE;
  --grad-hero: linear-gradient(170deg, #FAFAF6 0%, #F2EBD8 25%, #E8F0FA 55%, #D4E4F8 80%, #C8DCF8 100%);
  --grad-gold: linear-gradient(135deg, #E2AA48 0%, #C08A28 50%, #D4A030 100%);
  --grad-lapis: linear-gradient(135deg, #2A60AA 0%, #0D2D5E 100%);
  --grad-verse: linear-gradient(160deg, #0D2D5E 0%, #1A4A8C 40%, #1E3A7A 70%, #162850 100%);
  --shadow-sm: 0 2px 12px rgba(26, 74, 140, 0.08);
  --shadow-md: 0 6px 28px rgba(26, 74, 140, 0.12);
  --shadow-lg: 0 16px 56px rgba(26, 74, 140, 0.16);
  --shadow-xl: 0 28px 80px rgba(26, 74, 140, 0.20);
  --r2: 2px;
  --r4: 4px;
  --r8: 8px;
  --r12: 12px;
  --r16: 16px;
  --rfull: 999px;
}

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

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

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Tajawal', sans-serif;
  overflow-x: hidden
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0
}

nav {
  position: inherit !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(250, 250, 246, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(192, 138, 40, 0.15);
  transition: background 0.4s, box-shadow 0.4s
}

nav.scrolled {
  background: rgba(250, 250, 246, 0.97);
  box-shadow: var(--shadow-sm)
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none
}

.logo-emblem {
  width: 38px;
  height: 38px;
  position: relative;
  flex-shrink: 0
}

.logo-emblem svg {
  width: 100%;
  height: 100%
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px
}

.logo-ar {
  font-family: 'Scheherazade New', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lapis-deep);
  line-height: 1;
  letter-spacing: 0.01em
}

.logo-en {
  font-family: 'Cinzel', serif;
  font-size: 0.56rem;
  letter-spacing: 0.25em;
  color: var(--mist);
  line-height: 1;
  text-transform: uppercase
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  list-style: none
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 100%;
  height: 1.5px;
  border-radius: 1px;
  background: var(--grad-gold);
  transition: left 0.3s ease
}

.nav-links a:hover {
  color: var(--lapis-deep)
}

.nav-links a:hover::after {
  left: 0
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.45rem 1.3rem;
  background: var(--grad-lapis);
  color: white;
  font-family: 'Tajawal', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  border-radius: var(--rfull);
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(26, 74, 140, 0.28);
  transition: transform 0.2s, box-shadow 0.2s
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26, 74, 140, 0.38)
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  padding: 0 5vw;
  z-index: 1
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: linear-gradient(rgba(192, 138, 40, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(192, 138, 40, 0.06) 1px, transparent 1px), linear-gradient(rgba(26, 74, 140, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(26, 74, 140, 0.04) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px
}

.hero-dawn {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  background: radial-gradient(ellipse at center, rgba(192, 138, 40, 0.10) 0%, rgba(90, 144, 212, 0.10) 30%, rgba(200, 220, 248, 0.12) 55%, transparent 72%);
  animation: dawn-pulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0
}

@keyframes dawn-pulse {

  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1
  }

  50% {
    transform: translateY(-50%) scale(1.08);
    opacity: 0.75
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 100px 0 60px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.35rem 1.1rem 0.35rem 0.5rem;
  border: 1px solid rgba(192, 138, 40, 0.28);
  background: rgba(192, 138, 40, 0.06);
  border-radius: var(--rfull);
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: enter-up 0.7s ease 0.15s forwards
}

.badge-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--gold-glow)
}

.badge-label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase
}

.hero-title {
  font-family: 'Scheherazade New', serif;
  font-size: clamp(4rem, 8.5vw, 7.5rem);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 0.6rem;
  opacity: 0;
  animation: enter-up 0.9s ease 0.3s forwards
}

.ht-line1 {
  display: block;
  color: var(--lapis-deep);
  filter: drop-shadow(0 2px 16px rgba(26, 74, 140, 0.12))
}

.ht-line2 {
  display: block;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 20px rgba(192, 138, 40, 0.25))
}

.hero-sub-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  color: var(--sky-blue);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: enter-up 0.7s ease 0.5s forwards
}

.hero-orn {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: enter-up 0.6s ease 0.65s forwards
}

.orn-l {
  flex: 0 0 48px;
  height: 1px;
  background: linear-gradient(to left, var(--gold), transparent)
}

.orn-r {
  flex: 0 0 48px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent)
}

.orn-sym {
  font-family: 'Scheherazade New', serif;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.5em;
  opacity: 0.7
}

.hero-desc {
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  font-weight: 300;
  line-height: 2;
  color: var(--slate);
  max-width: 480px;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: enter-up 0.7s ease 0.8s forwards
}

.hero-desc strong {
  color: var(--ink-soft);
  font-weight: 600
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: enter-up 0.7s ease 0.95s forwards
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0.9rem 2.3rem;
  background: var(--grad-gold);
  color: white;
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--r4);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 24px var(--gold-glow);
  transition: transform 0.25s, box-shadow 0.3s;
  position: relative;
  overflow: hidden
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent);
  opacity: 0;
  transition: opacity 0.3s
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(192, 138, 40, 0.42)
}

.btn-gold:hover::before {
  opacity: 1
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0.9rem 2.3rem;
  background: transparent;
  color: var(--lapis-deep);
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 1.5px solid rgba(26, 74, 140, 0.28);
  border-radius: var(--r4);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s
}

.btn-outline:hover {
  background: var(--lapis-deep);
  color: white;
  border-color: var(--lapis-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md)
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: enter-scale 1.1s ease 0.4s forwards
}

.vis-outer-ring {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(192, 138, 40, 0.12);
  animation: ring-rotate 60s linear infinite
}

.vis-outer-ring::before,
.vis-outer-ring::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  top: 50%;
  left: -4px;
  transform: translateY(-50%)
}

.vis-outer-ring::after {
  left: auto;
  right: -4px
}

.vis-mid-ring {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(90, 144, 212, 0.15);
  animation: ring-rotate 40s linear infinite reverse
}

.vis-center {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 1px rgba(192, 138, 40, 0.12), var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  overflow: hidden
}

.vis-center::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at 40% 30%, rgba(192, 138, 40, 0.07), transparent 60%), radial-gradient(ellipse at 70% 75%, rgba(90, 144, 212, 0.07), transparent 55%)
}

.vis-dove {
  width: 100px;
  position: relative;
  z-index: 1
}

.vis-title-ar {
  font-family: 'Scheherazade New', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--lapis-deep);
  position: relative;
  z-index: 1
}

.vis-title-en {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--mist);
  position: relative;
  z-index: 1
}

.orbit-wrap {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.orbit-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  background: white;
  border-radius: var(--rfull);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  animation: chip-float ease-in-out infinite
}

.orbit-chip:hover {
  transform: scale(1.08) !important;
  box-shadow: var(--shadow-lg)
}

.chip-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0
}

.oc-1 {
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  animation-duration: 4.2s;
  animation-delay: 0s
}

.oc-2 {
  top: 18%;
  left: -32px;
  transform: none;
  animation-duration: 5s;
  animation-delay: 0.4s
}

.oc-3 {
  bottom: 18%;
  left: -32px;
  transform: none;
  animation-duration: 4.6s;
  animation-delay: 0.8s
}

.oc-4 {
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  animation-duration: 4.8s;
  animation-delay: 1.2s
}

.oc-5 {
  bottom: 18%;
  right: -32px;
  transform: none;
  animation-duration: 5.2s;
  animation-delay: 0.6s
}

.oc-6 {
  top: 18%;
  right: -32px;
  transform: none;
  animation-duration: 4.4s;
  animation-delay: 1s
}

@keyframes chip-float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

.oc-1,
.oc-4 {
  animation-name: chip-float-center
}

@keyframes chip-float-center {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(-6px)
  }
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  z-index: 3;
  opacity: 0;
  animation: enter-up 0.6s ease 1.6s forwards
}

.hs-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--mist);
  text-transform: uppercase
}

.hs-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite
}

@keyframes scroll-line {

  0%,
  100% {
    transform: scaleY(0.5) translateY(-8px);
    opacity: 0.4
  }

  50% {
    transform: scaleY(1) translateY(0);
    opacity: 1
  }
}

@keyframes enter-up {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes enter-scale {
  from {
    opacity: 0;
    transform: scale(0.9)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes ring-rotate {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

/* VERSE */
.verse-band {
  position: relative;
  z-index: 2;
  background: var(--grad-verse);
  padding: 5.5rem 5vw;
  text-align: center;
  overflow: hidden
}

.verse-band::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(60deg, rgba(192, 138, 40, 0.04) 0, rgba(192, 138, 40, 0.04) 1px, transparent 1px, transparent 50px), repeating-linear-gradient(-60deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 50px)
}

.verse-band::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 400px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(192, 138, 40, 0.08), transparent 70%);
  pointer-events: none
}

.vb-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto
}

.vb-icon {
  font-size: 2rem;
  color: rgba(192, 138, 40, 0.5);
  display: block;
  margin-bottom: 1.5rem;
  animation: icon-breathe 5s ease-in-out infinite
}

@keyframes icon-breathe {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1)
  }

  50% {
    opacity: 0.7;
    transform: scale(1.08)
  }
}

.vb-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 2rem;
  max-width: 280px
}

.vb-dl {
  flex: 1;
  height: 1px;
  background: linear-gradient(to var(--d, right), rgba(192, 138, 40, 0.5), transparent)
}

.vb-dc {
  color: var(--gold-hi);
  font-size: 0.75rem;
  letter-spacing: 0.4em
}

.vb-quote {
  font-family: 'Scheherazade New', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
  font-weight: 400;
  color: white;
  line-height: 1.85;
  margin-bottom: 1.5rem
}

.vb-ref {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.25em;
  color: var(--gold-hi)
}

/* STATS */
.stats-section {
  position: relative;
  z-index: 2;
  background: white;
  border-bottom: 1px solid var(--border-soft)
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 960px;
  margin: 0 auto
}

.stat-item {
  padding: 3.2rem 2rem;
  text-align: center;
  border-left: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default
}

.stat-item:last-child {
  border-left: none
}

.stat-item:hover {
  background: var(--warm-white)
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--grad-gold);
  transition: width 0.5s ease
}

.stat-item:hover::before {
  width: 80%
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 0.4rem
}

.stat-label {
  font-size: 0.9rem;
  color: var(--mist);
  font-weight: 400
}

/* BENTO */
.bento-section {
  position: relative;
  z-index: 2;
  background: var(--warm-white);
  padding: 7rem 5vw
}

.sec-head {
  text-align: center;
  margin-bottom: 5rem
}

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.28rem 1.1rem;
  border: 1px solid rgba(192, 138, 40, 0.22);
  background: rgba(192, 138, 40, 0.06);
  border-radius: var(--rfull);
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.3rem
}

.sec-title {
  font-family: 'Scheherazade New', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.7rem
}

.sec-title em {
  font-style: normal;
  color: transparent;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text
}

.sec-sub {
  font-size: 1rem;
  color: var(--slate);
  font-weight: 300
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem;
  max-width: 1180px;
  margin: 0 auto
}

.bc {
  border-radius: var(--r16);
  overflow: hidden;
  background: white;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s, border-color 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative
}

.bc:hover {
  transform: translateY(-6px) scale(1.005);
  box-shadow: var(--shadow-lg);
  border-color: transparent
}

.bc-gold:hover {
  box-shadow: 0 16px 56px rgba(192, 138, 40, 0.18)
}

.bc-lapis:hover {
  box-shadow: 0 16px 56px rgba(26, 74, 140, 0.18)
}

.bc-violet:hover {
  box-shadow: 0 16px 56px rgba(106, 46, 142, 0.16)
}

.bc-sage:hover {
  box-shadow: 0 16px 56px rgba(58, 112, 85, 0.16)
}

.bc-rose:hover {
  box-shadow: 0 16px 56px rgba(168, 56, 80, 0.16)
}

.bc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: var(--r16) var(--r16) 0 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease
}

.bc:hover::before {
  transform: scaleX(1);
  transform-origin: left
}

.bc-gold::before {
  background: var(--grad-gold)
}

.bc-lapis::before {
  background: var(--grad-lapis)
}

.bc-violet::before {
  background: linear-gradient(90deg, #9B5CC8, #6A2E8E)
}

.bc-sage::before {
  background: linear-gradient(90deg, #5AAA7A, #3A7055)
}

.bc-rose::before {
  background: linear-gradient(90deg, #D46080, #A83850)
}

.b1 {
  grid-column: span 5;
  min-height: 320px
}

.b2 {
  grid-column: span 4
}

.b3 {
  grid-column: span 3
}

.b4 {
  grid-column: span 4
}

.b5 {
  grid-column: span 4
}

.b6 {
  grid-column: span 4
}

.bc-body {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 1
}

.bc-illus {
  height: 130px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0
}

.bc-illus-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.bc-illus-icon {
  font-size: 3.5rem;
  opacity: 0.18;
  line-height: 1;
  font-family: 'Scheherazade New', serif;
  position: absolute;
  bottom: -8px;
  right: 1.5rem;
  transition: opacity 0.3s, transform 0.3s
}

.bc:hover .bc-illus-icon {
  opacity: 0.28;
  transform: scale(1.05) translateY(-4px)
}

.bc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  flex-shrink: 0
}

.ic-gold {
  background: rgba(192, 138, 40, 0.1)
}

.ic-lapis {
  background: rgba(26, 74, 140, 0.08)
}

.ic-violet {
  background: rgba(106, 46, 142, 0.08)
}

.ic-sage {
  background: rgba(58, 112, 85, 0.08)
}

.ic-rose {
  background: rgba(168, 56, 80, 0.08)
}

.bc-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block
}

.t-gold {
  color: var(--gold)
}

.t-lapis {
  color: var(--lapis-mid)
}

.t-violet {
  color: var(--byzantine)
}

.t-sage {
  color: var(--sage)
}

.t-rose {
  color: var(--rose)
}

.bc-title {
  font-family: 'Scheherazade New', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.5rem
}

.b1 .bc-title {
  font-size: 1.85rem
}

.bc-desc {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.8;
  font-weight: 300;
  flex: 1
}

.b1 .bc-desc {
  font-size: 0.95rem
}

.bc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 1.3rem;
  font-family: 'Cinzel', serif;
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: gap 0.3s
}

.bc:hover .bc-link {
  gap: 13px
}

.l-gold {
  color: var(--gold)
}

.l-lapis {
  color: var(--lapis-mid)
}

.l-violet {
  color: var(--byzantine)
}

.l-sage {
  color: var(--sage)
}

.l-rose {
  color: var(--rose)
}

/* SERMONS */
.sermons-section {
  position: relative;
  z-index: 2;
  background: white;
  padding: 7rem 5vw;
  border-top: 1px solid var(--border-soft)
}

.sermons-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto 3.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--sky-pale)
}

.sh-see-all {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--lapis-mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s, gap 0.3s
}

.sh-see-all:hover {
  color: var(--gold);
  gap: 10px
}

.sermons-mag {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.8rem;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start
}

.sermon-featured {
  border-radius: var(--r16);
  overflow: hidden;
  background: var(--warm-white);
  border: 1px solid var(--border-soft);
  transition: transform 0.35s, box-shadow 0.35s;
  text-decoration: none;
  color: inherit;
  display: block
}

.sermon-featured:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl)
}

.sf-thumb {
  height: 260px;
  position: relative;
  overflow: hidden;
  background: var(--grad-lapis)
}

.sf-thumb::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, rgba(192, 138, 40, 0.12) 0deg, rgba(90, 144, 212, 0.15) 90deg, rgba(106, 46, 142, 0.1) 180deg, rgba(26, 74, 140, 0.12) 270deg, rgba(192, 138, 40, 0.12) 360deg);
  animation: conic-spin 20s linear infinite;
  opacity: 0.6
}

@keyframes conic-spin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.sf-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13, 45, 94, 0.6))
}

.sf-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  transition: transform 0.3s, background 0.3s
}

.sermon-featured:hover .sf-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(192, 138, 40, 0.5)
}

.sf-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 4px 13px;
  border-radius: var(--rfull);
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  background: var(--grad-gold);
  color: white;
  box-shadow: 0 3px 10px var(--gold-glow)
}

.sf-duration {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  padding: 3px 10px;
  border-radius: var(--rfull);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Tajawal', sans-serif
}

.sf-body {
  padding: 1.8rem
}

.sf-cat {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--lapis-mid);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem
}

.sf-title {
  font-family: 'Scheherazade New', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 0.8rem
}

.sf-meta {
  font-size: 0.82rem;
  color: var(--mist);
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap
}

.sermons-col {
  display: flex;
  flex-direction: column;
  gap: 0.9rem
}

.sermon-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1.1rem;
  border-radius: var(--r12);
  border: 1px solid var(--border-soft);
  background: var(--warm-white);
  text-decoration: none;
  color: inherit;
  transition: all 0.28s
}

.sermon-mini:hover {
  border-color: rgba(26, 74, 140, 0.2);
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateX(-5px)
}

.sm-thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--r8);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem
}

.sm-type {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: 'Cinzel', serif;
  font-size: 0.48rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 2px;
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.75)
}

.sm-info {
  flex: 1;
  min-width: 0
}

.sm-cat {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--lapis-mid);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem
}

.sm-title {
  font-family: 'Scheherazade New', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.sm-meta {
  font-size: 0.72rem;
  color: var(--mist)
}

.sm-arr {
  color: var(--mist);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s
}

.sermon-mini:hover .sm-arr {
  color: var(--gold);
  transform: translateX(-4px)
}

/* SEARCH */
.search-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 6rem 5vw;
  background: var(--grad-verse)
}

.search-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 20% 60%, rgba(90, 144, 212, 0.1), transparent 50%), radial-gradient(ellipse at 80% 40%, rgba(192, 138, 40, 0.08), transparent 50%), repeating-linear-gradient(45deg, rgba(192, 138, 40, 0.025) 0, rgba(192, 138, 40, 0.025) 1px, transparent 1px, transparent 48px)
}

.search-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto
}

.search-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.28rem 1rem;
  border: 1px solid rgba(192, 138, 40, 0.25);
  background: rgba(192, 138, 40, 0.08);
  border-radius: var(--rfull);
  margin-bottom: 1.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-hi)
}

.search-title {
  font-family: 'Scheherazade New', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 2.5rem;
  line-height: 1.2
}

.search-title span {
  color: transparent;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text
}

.search-row {
  position: relative;
  margin-bottom: 1.8rem
}

.search-input {
  width: 100%;
  padding: 1.15rem 5rem 1.15rem 1.5rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r8);
  color: white;
  font-family: 'Tajawal', sans-serif;
  font-size: 1.05rem;
  outline: none;
  direction: rtl;
  text-align: right;
  transition: all 0.3s
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.38)
}

.search-input:focus {
  border-color: rgba(192, 138, 40, 0.5);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(192, 138, 40, 0.1), 0 8px 32px rgba(0, 0, 0, 0.2)
}

.search-go {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.58rem 1.4rem;
  background: var(--grad-gold);
  color: white;
  font-family: 'Tajawal', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 3px 14px var(--gold-glow);
  transition: transform 0.2s, box-shadow 0.2s
}

.search-go:hover {
  transform: translateY(-50%) translateY(-2px);
  box-shadow: 0 6px 22px rgba(192, 138, 40, 0.4)
}

.topic-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem
}

.topic-pill {
  padding: 0.3rem 1rem;
  border-radius: var(--rfull);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-family: 'Tajawal', sans-serif;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s
}

.topic-pill:hover,
.topic-pill.on {
  border-color: rgba(192, 138, 40, 0.45);
  color: var(--gold-hi);
  background: rgba(192, 138, 40, 0.08)
}

/* FOOTER */
footer {
  position: relative;
  z-index: 2;
  background: var(--lapis-deep);
  padding: 5rem 5vw 2.5rem
}

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  max-width: 1180px;
  margin: 0 auto 4rem
}

.ftb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem
}

.ftb-logo-text {
  font-family: 'Scheherazade New', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-hi);
  line-height: 1
}

.ftb-en {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.28);
  display: block;
  margin-bottom: 1.2rem
}

.ftb-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.85;
  font-weight: 300;
  max-width: 260px
}

.ft-col-title {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem
}

.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem
}

.ft-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.2s, padding-right 0.2s;
  display: flex;
  align-items: center;
  gap: 6px
}

.ft-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.2s
}

.ft-links a:hover {
  color: rgba(255, 255, 255, 0.75);
  padding-right: 4px
}

.ft-links a:hover::before {
  opacity: 0.5
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem
}

.fb-copy {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.2)
}

.fb-cross {
  color: var(--gold);
  opacity: 0.25;
  font-size: 1.3rem
}

/* REVEAL */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease
}

.rv.on {
  opacity: 1;
  transform: none
}

.d1 {
  transition-delay: 0.08s
}

.d2 {
  transition-delay: 0.16s
}

.d3 {
  transition-delay: 0.24s
}

.d4 {
  transition-delay: 0.32s
}

@media(max-width:1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center
  }

  .hero-visual {
    display: none
  }

  .hero-desc,
  .hero-badge,
  .hero-orn {
    margin-left: auto;
    margin-right: auto
  }

  .hero-actions {
    justify-content: center
  }

  .bento {
    grid-template-columns: 1fr 1fr
  }

  .b1,
  .b2,
  .b3,
  .b4,
  .b5,
  .b6 {
    grid-column: span 1;
    min-height: auto
  }

  .sermons-mag {
    grid-template-columns: 1fr 1fr
  }

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

  .nav-links {
    display: none
  }
}

@media(max-width:640px) {
  .bento {
    grid-template-columns: 1fr
  }

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

  .sermons-mag {
    grid-template-columns: 1fr
  }

  .footer-top {
    grid-template-columns: 1fr
  }
}