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

/* ─────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────── */
:root {
  --green-deep:   #0B3D2E;
  --green-dark:   #071F17;
  --green-mid:    #0E4A37;
  --gold:         #D4AF37;
  --gold-light:   #E8C84A;
  --gold-pale:    #F0D98A;
  --cream:        #F8F3E7;
  --cream-body:   #C8BFA8;
  --cream-muted:  #A09080;
  --white:        #FFFFFF;

  --font-display: 'Cinzel', serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-arabic:  'Amiri', serif;
  --font-ui:      'Inter', sans-serif;

  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold:  0 0 40px rgba(212, 175, 55, 0.12);
  --shadow-deep:  0 8px 48px rgba(0, 0, 0, 0.45);
}

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

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

body {
  background-color: var(--green-deep);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.75;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─────────────────────────────────────────────
   ISLAMIC GEOMETRIC PATTERN — 8-pointed star tile
───────────────────────────────────────────── */
.geo-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cg fill='none' stroke='%23D4AF37' stroke-width='0.8' opacity='0.15'%3E%3Cpolygon points='50,28 53.4,41.7 65.6,34.4 58.3,46.6 72,50 58.3,53.4 65.6,65.6 53.4,58.3 50,72 46.6,58.3 34.4,65.6 41.7,53.4 28,50 41.7,46.6 34.4,34.4 46.6,41.7'/%3E%3Cline x1='50' y1='0' x2='50' y2='28'/%3E%3Cline x1='50' y1='72' x2='50' y2='100'/%3E%3Cline x1='0' y1='50' x2='28' y2='50'/%3E%3Cline x1='72' y1='50' x2='100' y2='50'/%3E%3Cline x1='65.6' y1='34.4' x2='100' y2='0'/%3E%3Cline x1='65.6' y1='65.6' x2='100' y2='100'/%3E%3Cline x1='34.4' y1='65.6' x2='0' y2='100'/%3E%3Cline x1='34.4' y1='34.4' x2='0' y2='0'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
  pointer-events: none;
  z-index: 0;
}

.geo-pattern-sm {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70'%3E%3Cg fill='none' stroke='%23D4AF37' stroke-width='0.65' opacity='0.11'%3E%3Cpolygon points='35,19.6 37.4,29.2 45.9,24.1 40.8,32.6 50.4,35 40.8,37.4 45.9,45.9 37.4,40.8 35,50.4 32.6,40.8 24.1,45.9 29.2,37.4 19.6,35 29.2,32.6 24.1,24.1 32.6,29.2'/%3E%3Cline x1='35' y1='0' x2='35' y2='19.6'/%3E%3Cline x1='35' y1='50.4' x2='35' y2='70'/%3E%3Cline x1='0' y1='35' x2='19.6' y2='35'/%3E%3Cline x1='50.4' y1='35' x2='70' y2='35'/%3E%3Cline x1='45.9' y1='24.1' x2='70' y2='0'/%3E%3Cline x1='45.9' y1='45.9' x2='70' y2='70'/%3E%3Cline x1='24.1' y1='45.9' x2='0' y2='70'/%3E%3Cline x1='24.1' y1='24.1' x2='0' y2='0'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 70px 70px;
  pointer-events: none;
  z-index: 0;
}

/* ─────────────────────────────────────────────
   GOLD DIVIDER
───────────────────────────────────────────── */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem auto;
  max-width: 480px;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.gold-divider .diamond {
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.gold-divider .diamond-sm {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.7;
}

/* ─────────────────────────────────────────────
   CORNER ACCENTS
───────────────────────────────────────────── */
.corner-accent {
  position: relative;
}
.corner-accent::before,
.corner-accent::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.7;
}
.corner-accent::before {
  top: 8px; left: 8px;
  border-width: 1px 0 0 1px;
}
.corner-accent::after {
  bottom: 8px; right: 8px;
  border-width: 0 1px 1px 0;
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY UTILITIES
───────────────────────────────────────────── */
.arabic-display {
  font-family: var(--font-arabic);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.3;
  direction: rtl;
  text-align: center;
}

.arabic-quote {
  font-family: var(--font-arabic);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--gold-pale);
  direction: rtl;
  text-align: right;
  font-style: italic;
  line-height: 1.8;
}

.arabic-label {
  font-family: var(--font-arabic);
  font-size: 1.1rem;
  color: var(--gold-light);
  direction: rtl;
}

.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--cream-body);
  max-width: 580px;
  line-height: 1.75;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--gold);
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,175,55,0.35); }
.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  display: inline-block;
  padding: 0.82rem 2.2rem;
  background: transparent;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(212,175,55,0.55);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }
.reveal-delay-5 { transition-delay: 0.58s; }

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--transition), background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  padding: 0.85rem 3rem;
  background: rgba(7, 31, 23, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.38);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08rem;
}
.nav-logo .logo-arabic {
  font-family: var(--font-arabic);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  direction: rtl;
  line-height: 1.1;
}
.nav-logo .logo-english {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-body);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-body);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-light); }

.nav-book {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--gold);
  padding: 0.6rem 1.5rem;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-book:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(212,175,55,0.32); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 31, 23, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile .nav-book {
  margin-top: 1rem;
  padding: 0.85rem 2.5rem;
  font-size: 0.85rem;
}

/* ─────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 40%, rgba(14, 74, 55, 0.55) 0%, transparent 70%);
  z-index: 1;
}

.hero .geo-pattern {
  animation: geo-drift 32s linear infinite;
  opacity: 0.18;
}

@keyframes geo-drift {
  from { background-position: 0 0; }
  to   { background-position: 100px 100px; }
}


.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 2rem 6rem;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.35);
  padding: 0.45rem 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease both;
  animation-delay: 0.2s;
}

.hero-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--gold-light);
  direction: rtl;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  animation: fadeInDown 1s ease both;
  animation-delay: 0.4s;
  text-shadow: 0 0 60px rgba(212, 175, 55, 0.25);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease both;
  animation-delay: 0.6s;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--cream-body);
  font-style: italic;
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  animation: fadeInDown 1s ease both;
  animation-delay: 0.8s;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInDown 1s ease both;
  animation-delay: 1s;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
  animation: fadeInDown 1s ease both, pulse-down 2.5s ease infinite;
  animation-delay: 1.4s, 1.4s;
}
.hero-scroll span {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2.5s ease infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─────────────────────────────────────────────
   SECTIONS COMMON
───────────────────────────────────────────── */
.section {
  position: relative;
  padding: 7rem 3rem;
  overflow: hidden;
}

.section-dark { background: var(--green-dark); }
.section-mid  { background: var(--green-mid); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ─────────────────────────────────────────────
   OUR STORY SECTION
───────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-grid-single {
  grid-template-columns: 1fr;
  max-width: 780px;
  margin: 0 auto;
}

.story-art {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 520px;
  background: linear-gradient(145deg, rgba(14,74,55,0.7), rgba(7,31,23,0.9));
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  gap: 2rem;
  overflow: hidden;
}

.story-art .geo-pattern-sm {
  opacity: 0.35;
}

.story-art-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.story-art-frame {
  width: 185px;
  height: auto;
}

.story-art-verse {
  font-family: var(--font-arabic);
  font-size: 1.5rem;
  color: var(--gold-pale);
  direction: rtl;
  line-height: 1.8;
  text-align: center;
}

.story-art-translation {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--cream-muted);
  text-align: center;
  max-width: 220px;
}

.story-content { }

.story-content .arabic-quote {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.story-body {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream-body);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.story-group-photo {
  position: relative;
}

.story-group-photo::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(212,175,55,0.25);
  pointer-events: none;
}

.story-group-img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.95) contrast(1.02);
}

.story-tag {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 0.38rem 0.9rem;
  cursor: default;
  user-select: none;
}

/* ─────────────────────────────────────────────
   INSTAGRAM VIDEO SECTION
───────────────────────────────────────────── */
.video-section {
  background: var(--green-dark);
}

.video-frame-wrapper {
  max-width: 440px;
  margin: 0 auto;
  position: relative;
}

.video-frame-wrapper::before,
.video-frame-wrapper::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(212,175,55,0.4);
  pointer-events: none;
  z-index: 2;
}
.video-frame-wrapper::before {
  inset: -10px;
}
.video-frame-wrapper::after {
  inset: -18px;
  border-color: rgba(212,175,55,0.15);
}

.video-embed {
  position: relative;
  width: 100%;
  background: var(--green-mid);
  overflow: hidden;
}

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

/* Instagram blockquote embed resets */
.video-frame-wrapper blockquote.instagram-media {
  margin: 0 auto !important;
  max-width: 440px !important;
  width: 100% !important;
}

.video-caption {
  text-align: center;
  margin-top: 2.5rem;
}

.video-caption p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream-muted);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ─────────────────────────────────────────────
   GALLERY SECTION
───────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-grid .gallery-card:nth-child(4),
.gallery-grid .gallery-card:nth-child(5) {
  /* last two cards in a 5-card grid span to center */
}

.gallery-card {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--green-mid), var(--green-dark));
  border: 1px solid rgba(212,175,55,0.12);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-card:hover {
  border-color: rgba(212,175,55,0.55);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.gallery-card-pattern {
  position: absolute;
  inset: 0;
}

.gallery-card-pattern svg {
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,31,23,0.9) 0%, transparent 50%);
  transition: var(--transition);
}
.gallery-card:hover .gallery-card-overlay {
  background: linear-gradient(to top, rgba(7,31,23,0.95) 0%, rgba(7,31,23,0.3) 100%);
}

.gallery-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  transform: translateY(0.5rem);
  transition: var(--transition);
}
.gallery-card:hover .gallery-card-content {
  transform: translateY(0);
}

.gallery-card-arabic {
  font-family: var(--font-arabic);
  font-size: 1.3rem;
  color: var(--gold-light);
  direction: rtl;
  text-align: right;
  display: block;
  margin-bottom: 0.3rem;
}
.gallery-card-en {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
  display: block;
}
.gallery-card-desc {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--cream-body);
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.gallery-card:hover .gallery-card-desc {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card-gold-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: var(--transition);
}
.gallery-card:hover .gallery-card-gold-line {
  transform: scaleX(1);
}

/* Gallery 5-card layout */
.gallery-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
.gallery-5 .gallery-card:nth-child(1) { grid-column: span 2; }
.gallery-5 .gallery-card:nth-child(2) { grid-column: span 2; }
.gallery-5 .gallery-card:nth-child(3) { grid-column: span 2; }
.gallery-5 .gallery-card:nth-child(4) { grid-column: 2 / span 2; }
.gallery-5 .gallery-card:nth-child(5) { grid-column: 4 / span 2; }

/* ─────────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, rgba(14,74,55,0.85) 50%, var(--green-dark) 100%);
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  text-align: center;
  padding: 7rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-banner .arabic-display {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-banner .section-subtitle {
  margin: 0 auto 2.5rem;
  max-width: 520px;
  text-align: center;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 5rem 3rem 2.5rem;
}

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

.footer-brand .logo-arabic {
  font-family: var(--font-arabic);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  direction: rtl;
  display: block;
  margin-bottom: 0.25rem;
}
.footer-brand .logo-english {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  display: block;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--cream-muted);
  line-height: 1.75;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.7rem;
}
.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--cream-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--cream-muted);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--gold-light); }
.footer-social .social-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(212,175,55,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.footer-social a:hover .social-icon {
  border-color: var(--gold);
  background: rgba(212,175,55,0.08);
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(212,175,55,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--cream-muted);
}
.footer-bottom .footer-arabic {
  font-family: var(--font-arabic);
  font-size: 0.95rem;
  color: rgba(212,175,55,0.5);
}

/* ─────────────────────────────────────────────
   SPONSOR SECTION
───────────────────────────────────────────── */
.sponsor-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.sponsor-photo-wrap {
  position: relative;
}

.sponsor-photo-wrap::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 1px solid rgba(212,175,55,0.2);
  z-index: 0;
  pointer-events: none;
}

.sponsor-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(212,175,55,0.28);
  filter: brightness(0.92) contrast(1.05);
}

@media (max-width: 820px) {
  .sponsor-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 440px;
  }

  .sponsor-photo-wrap::after { display: none; }

  .sponsor-photo { aspect-ratio: 4/5; }
}

/* ─────────────────────────────────────────────
   HONORARIUM PAYMENT FORM
───────────────────────────────────────────── */
.honorarium-wrap {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(7,31,23,0.7);
  border: 1px solid rgba(212,175,55,0.22);
  padding: 2.5rem 2rem;
  position: relative;
}

.honorarium-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
}
.honorarium-tl { top: 6px; left: 6px; border-top: 1px solid rgba(212,175,55,0.5); border-left: 1px solid rgba(212,175,55,0.5); }
.honorarium-tr { top: 6px; right: 6px; border-top: 1px solid rgba(212,175,55,0.5); border-right: 1px solid rgba(212,175,55,0.5); }
.honorarium-bl { bottom: 6px; left: 6px; border-bottom: 1px solid rgba(212,175,55,0.5); border-left: 1px solid rgba(212,175,55,0.5); }
.honorarium-br { bottom: 6px; right: 6px; border-bottom: 1px solid rgba(212,175,55,0.5); border-right: 1px solid rgba(212,175,55,0.5); }

.honorarium-eyebrow {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.55);
  margin-bottom: 0.4rem;
  text-align: center;
}

.honorarium-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  text-align: center;
  margin-bottom: 0.5rem;
}

.honorarium-amount {
  font-family: var(--font-arabic);
  font-size: 2.2rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.honorarium-desc {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--cream-muted);
  text-align: center;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.honorarium-card-input {
  min-height: 44px;
}

.honorarium-error {
  display: none;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: #e07070;
  margin-top: 1rem;
  text-align: center;
}

.honorarium-submit {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.honorarium-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(7,31,23,0.3);
  border-top-color: var(--green-dark);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

.honorarium-success {
  text-align: center;
  padding: 1rem 0;
}

.honorarium-success-arabic {
  font-family: var(--font-arabic);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  direction: rtl;
}

.honorarium-success p:last-child {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream-muted);
  line-height: 1.8;
}

/* ─────────────────────────────────────────────
   BOOKING TYPE SELECTOR
───────────────────────────────────────────── */
.booking-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 820px;
  margin: 2.5rem auto 0;
}

.booking-type-card {
  background: transparent;
  border: 1px solid rgba(212,175,55,0.2);
  padding: 2.5rem 2rem;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: border-color 0.35s, background 0.35s, transform 0.3s;
  color: inherit;
  font-family: inherit;
  width: 100%;
  display: block;
}
.booking-type-card:hover {
  border-color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.03);
  transform: translateY(-3px);
}
.booking-type-card.active {
  border-color: var(--gold);
  background: rgba(212,175,55,0.06);
}

.booking-type-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--gold);
  padding: 0.28rem 0.85rem;
  margin-bottom: 1.25rem;
}
.booking-type-badge.badge-sponsored {
  background: var(--cream);
}

.booking-type-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.85rem;
}
.booking-type-card p {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--cream-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.booking-type-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.55);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding-top: 1.25rem;
}
.booking-type-arrow { transition: transform 0.25s, color 0.25s; }
.booking-type-card:hover .booking-type-arrow,
.booking-type-card.active .booking-type-arrow {
  transform: translateX(5px);
  color: var(--gold);
}

.btc-corner {
  position: absolute;
  width: 15px;
  height: 15px;
  pointer-events: none;
  transition: border-color 0.35s;
}
.btc-tl { top: 8px; left: 8px; border-top: 1px solid rgba(212,175,55,0.35); border-left: 1px solid rgba(212,175,55,0.35); }
.btc-br { bottom: 8px; right: 8px; border-bottom: 1px solid rgba(212,175,55,0.35); border-right: 1px solid rgba(212,175,55,0.35); }
.booking-type-card.active .btc-tl,
.booking-type-card.active .btc-br { border-color: rgba(212,175,55,0.7); }

/* Calendar section reveal */
#booking-calendar-section {
  display: none;
}
#booking-calendar-section.visible {
  display: block;
  animation: calReveal 0.5s ease forwards;
}
@keyframes calReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Active booking type label strip */
.booking-cal-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(212,175,55,0.2);
  background: rgba(212,175,55,0.04);
}
.booking-cal-badge {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--gold);
  padding: 0.25rem 0.7rem;
  flex-shrink: 0;
}
.booking-cal-badge.badge-sponsored { background: var(--cream); }
.booking-cal-label-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--cream-muted);
  line-height: 1.5;
}
.booking-cal-label-change {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.5);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
  transition: color 0.25s;
}
.booking-cal-label-change:hover { color: var(--gold); }

/* ─────────────────────────────────────────────
   BOOKING CONFIRMATION PAGES
───────────────────────────────────────────── */
.confirm-icon {
  width: 68px;
  height: 68px;
  border: 1.5px solid rgba(212,175,55,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  background: rgba(212,175,55,0.06);
}
.confirm-icon svg { color: var(--gold); }

.confirm-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.confirm-step {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(212,175,55,0.15);
  position: relative;
}
.confirm-step::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  width: 14px; height: 14px;
  border-top: 1px solid rgba(212,175,55,0.38);
  border-left: 1px solid rgba(212,175,55,0.38);
}
.confirm-step::after {
  content: '';
  position: absolute;
  bottom: 8px; right: 8px;
  width: 14px; height: 14px;
  border-bottom: 1px solid rgba(212,175,55,0.38);
  border-right: 1px solid rgba(212,175,55,0.38);
}
.confirm-step-num {
  font-family: var(--font-arabic);
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.confirm-step h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.65rem;
}
.confirm-step p {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--cream-muted);
  line-height: 1.7;
}

.payment-box {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(212,175,55,0.35);
  padding: 3rem 2.5rem;
  position: relative;
  background: rgba(212,175,55,0.03);
}
.payment-box-corner {
  position: absolute;
  width: 16px; height: 16px;
  pointer-events: none;
}
.payment-box-corner.tl { top: 8px; left: 8px; border-top: 1px solid rgba(212,175,55,0.55); border-left: 1px solid rgba(212,175,55,0.55); }
.payment-box-corner.br { bottom: 8px; right: 8px; border-bottom: 1px solid rgba(212,175,55,0.55); border-right: 1px solid rgba(212,175,55,0.55); }

.confirm-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.7);
  border: 1px solid rgba(212,175,55,0.25);
  padding: 0.5rem 1.1rem;
  margin-bottom: 2rem;
}

/* Booking info card (screenshot style) */
.bk-info-card {
  border: 1px solid rgba(212,175,55,0.25);
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  display: block;
  text-decoration: none;
}
.bk-info-card--link {
  transition: border-color 0.25s, background 0.22s;
  cursor: pointer;
}
.bk-info-card--link:hover {
  border-color: rgba(212,175,55,0.6);
  background: rgba(212,175,55,0.04);
}
.bk-info-card--link:hover .bk-info-footer {
  color: var(--gold);
}
.bk-info-card--link:hover .bk-info-footer svg {
  transform: translateX(4px);
}
.bk-info-body {
  padding: 2rem 2rem 1.5rem;
}
.bk-info-heading {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 1rem 0 0.9rem;
}
.bk-info-text {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--cream-muted);
  line-height: 1.8;
}
.bk-info-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 0.9rem 2rem;
  color: rgba(212,175,55,0.6);
  transition: color 0.22s;
}
.bk-info-footer svg {
  transition: transform 0.22s;
}
.bk-info-footer-label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Clickable booking row card */
.booking-row-card {
  display: block;
  border: 1px solid rgba(212,175,55,0.35);
  background: rgba(212,175,55,0.04);
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  position: relative;
}
.booking-row-card:hover {
  border-color: rgba(212,175,55,0.75);
  background: rgba(212,175,55,0.08);
  transform: translateY(-2px);
}
.booking-row-card::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  width: 14px; height: 14px;
  border-top: 1px solid rgba(212,175,55,0.5);
  border-left: 1px solid rgba(212,175,55,0.5);
  transition: border-color 0.25s;
}
.booking-row-card::after {
  content: '';
  position: absolute;
  bottom: 8px; right: 8px;
  width: 14px; height: 14px;
  border-bottom: 1px solid rgba(212,175,55,0.5);
  border-right: 1px solid rgba(212,175,55,0.5);
  transition: border-color 0.25s;
}
.booking-row-card:hover::before,
.booking-row-card:hover::after {
  border-color: var(--gold);
}
.booking-row-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
}
.booking-row-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.booking-row-sub {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--cream-muted);
  line-height: 1.5;
}
.booking-row-arrow {
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}
.booking-row-card:hover .booking-row-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* Booking CTA card (two-column: meta left, action right) */
.booking-cta-card {
  border: 1px solid rgba(212,175,55,0.25);
  padding: 3rem 2.5rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
  background: rgba(212,175,55,0.02);
}
.booking-cta-action { text-align: center; }
@media (max-width: 640px) {
  .booking-cta-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }
}

/* Booking option cards (non-interactive container with button inside) */
.booking-option-card {
  border: 1px solid rgba(212,175,55,0.2);
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s;
}
.booking-option-card:hover { border-color: rgba(212,175,55,0.45); }

.booking-option-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 1.25rem 0 0.85rem;
}
.booking-option-card > p {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--cream-muted);
  line-height: 1.75;
  margin-bottom: 0;
  flex-grow: 1;
}
.booking-option-meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border-top: 1px solid rgba(212,175,55,0.15);
  padding-top: 1.25rem;
  margin: 1.75rem 0 2rem;
}
.booking-option-meta span {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.6);
}
.booking-option-meta span::before {
  content: '✓  ';
  color: var(--gold);
}
.booking-option-card .btn-primary,
.booking-option-card .btn-outline {
  display: block;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .booking-type-grid { gap: 1.25rem; }
  .booking-type-card { padding: 2rem 1.5rem; }
  .booking-option-card { padding: 2rem 1.5rem; }
  .payment-box { padding: 2.25rem 1.5rem; }
}

/* ─────────────────────────────────────────────
   HOME CALENDAR
───────────────────────────────────────────── */
.home-cal {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(7,31,23,0.7);
  border: 1px solid rgba(212,175,55,0.22);
  padding: 2.5rem 2rem;
  position: relative;
}

.home-cal-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
}
.home-cal-corner-tl { top: 6px; left: 6px; border-top: 1px solid rgba(212,175,55,0.5); border-left: 1px solid rgba(212,175,55,0.5); }
.home-cal-corner-tr { top: 6px; right: 6px; border-top: 1px solid rgba(212,175,55,0.5); border-right: 1px solid rgba(212,175,55,0.5); }
.home-cal-corner-bl { bottom: 6px; left: 6px; border-bottom: 1px solid rgba(212,175,55,0.5); border-left: 1px solid rgba(212,175,55,0.5); }
.home-cal-corner-br { bottom: 6px; right: 6px; border-bottom: 1px solid rgba(212,175,55,0.5); border-right: 1px solid rgba(212,175,55,0.5); }

.home-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.home-cal-month {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.home-cal-arrow {
  background: none;
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}

.home-cal-arrow:hover {
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.6);
}

.home-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}

.home-cal-weekdays span {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.45);
  text-align: center;
  padding: 0.4rem 0;
}

.home-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.home-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--cream);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  user-select: none;
}

.home-cal-day:not(.past):not(.empty):hover {
  background: rgba(212,175,55,0.14);
  border-color: rgba(212,175,55,0.4);
  color: var(--gold);
}

.home-cal-day.today {
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.5);
  color: var(--gold);
  font-weight: 600;
}

.home-cal-day.past {
  color: rgba(248,243,231,0.18);
  cursor: default;
}

.home-cal-day.empty {
  cursor: default;
}

.home-cal-hint {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(212,175,55,0.4);
  text-align: center;
  margin-top: 1.5rem;
}

/* ─────────────────────────────────────────────
   TEACHER / QURAN SECTION
───────────────────────────────────────────── */
.teacher-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.teacher-image-wrap {
  position: relative;
}

.teacher-image-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(212,175,55,0.3);
  pointer-events: none;
  z-index: 0;
}

.teacher-image-wrap::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  background: rgba(212,175,55,0.07);
  z-index: 0;
  pointer-events: none;
}

.teacher-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 1;
  filter: brightness(0.92) contrast(1.05);
}

.teacher-body {
  padding-top: 0.5rem;
}

.teacher-name {
  font-family: var(--font-arabic);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--gold);
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.teacher-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.65);
  margin-bottom: 1.6rem;
}

.teacher-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.teacher-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.35);
  padding: 0.35rem 0.9rem;
}

@media (max-width: 820px) {
  .teacher-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 480px;
  }

  .teacher-image-wrap::before,
  .teacher-image-wrap::after {
    display: none;
  }

  .teacher-photo {
    aspect-ratio: 4/5;
  }
}

/* ─────────────────────────────────────────────
   CAL.COM EMBED
───────────────────────────────────────────── */
.cal-embed-wrapper {
  border: 1px solid rgba(212,175,55,0.22);
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: rgba(7, 31, 23, 0.5);
}

#cal-paid-embed,
#cal-sponsored-embed,
#cal-quran-embed,
#cal-booking-embed {
  width: 100%;
  min-height: 720px;
}

@media (max-width: 600px) {
  #cal-paid-embed,
  #cal-sponsored-embed,
  #cal-quran-embed,
  #cal-booking-embed {
    min-height: 900px;
  }
}

/* ─────────────────────────────────────────────
   BOOKING SECTION NAV
───────────────────────────────────────────── */
.booking-section-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: var(--green-dark);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  padding: 0.85rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 80;
}
.booking-section-nav-link {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.5);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.booking-section-nav-link:hover,
.booking-section-nav-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.booking-section-nav-divider {
  font-size: 0.4rem;
  color: rgba(212,175,55,0.3);
}
.booking-hero {
  background: var(--green-dark);
  padding: 10rem 3rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* CALENDAR */
.calendar-wrapper {
  background: rgba(7,31,23,0.7);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 2rem;
  position: relative;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.calendar-nav-btn {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.calendar-nav-btn:hover {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold);
}
.calendar-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.calendar-nav-btn:disabled:hover {
  background: transparent;
  border-color: rgba(212,175,55,0.3);
}

.calendar-month-label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-transform: uppercase;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 0.75rem;
}
.calendar-weekday {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
  text-align: center;
  padding: 0.4rem 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
}

.cal-day.empty { cursor: default; }

.cal-day.past {
  color: rgba(200,191,168,0.2);
  cursor: not-allowed;
}

.cal-day.unavailable {
  color: rgba(220, 80, 80, 0.85);
  background: rgba(180, 30, 30, 0.12);
  border-color: rgba(180, 30, 30, 0.18);
  cursor: not-allowed;
}
.cal-day.unavailable::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(220,80,80,0.7);
  border-radius: 50%;
  bottom: 4px;
}

.cal-day.available {
  color: var(--cream);
  background: rgba(11, 61, 46, 0.5);
  border-color: rgba(11, 61, 46, 0.7);
}
.cal-day.available:hover {
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.4);
  color: var(--gold-light);
}

.cal-day.selected {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--green-dark) !important;
  font-weight: 700;
}

.cal-day.today {
  border-color: rgba(212,175,55,0.5);
  color: var(--gold-pale);
}

.calendar-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: var(--cream-muted);
}
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.legend-dot.available  { background: rgba(212,175,55,0.2); border: 1px solid rgba(11,61,46,0.8); }
.legend-dot.unavailable{ background: rgba(180,30,30,0.4); }
.legend-dot.selected   { background: var(--gold); }

/* BOOKING FORM */
.booking-form-wrapper {
  position: relative;
}

.booking-prompt {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px dashed rgba(212,175,55,0.2);
}
.booking-prompt .arabic-label {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  display: block;
}
.booking-prompt p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream-muted);
  font-style: italic;
}

.booking-form {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
}
.booking-form.visible {
  display: flex;
}

.booking-selected-date {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(7,31,23,0.6);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  width: 100%;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(212,175,55,0.65);
  background: rgba(7,31,23,0.8);
  box-shadow: 0 0 0 2px rgba(212,175,55,0.08);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--cream-muted);
  opacity: 0.6;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-select option {
  background: var(--green-dark);
  color: var(--cream);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.booking-confirmation {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(212,175,55,0.2);
  background: rgba(7,31,23,0.5);
}
.booking-confirmation.visible { display: block; }
.booking-confirmation .arabic-display { font-size: 2rem; margin-bottom: 1rem; }
.booking-confirmation p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream-body);
  line-height: 1.75;
}

/* ─────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────── */
.contact-hero {
  background: var(--green-dark);
  padding: 10rem 3rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-info-card {
  background: rgba(7,31,23,0.7);
  border: 1px solid rgba(212,175,55,0.18);
  padding: 2.5rem;
  position: relative;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}
.contact-info-value {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--cream-body);
  display: block;
}
.contact-info-value a {
  transition: color var(--transition);
}
.contact-info-value a:hover { color: var(--gold-light); }

.contact-booking-shortcut {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212,175,55,0.15);
  text-align: center;
}
.contact-booking-shortcut p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--cream-muted);
  font-style: italic;
  margin-bottom: 1rem;
}

.contact-form-wrapper { }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-confirmation {
  display: none;
  text-align: center;
  padding: 3.5rem 2rem;
  border: 1px solid rgba(212,175,55,0.2);
  background: rgba(7,31,23,0.5);
}
.contact-confirmation.visible { display: block; }
.contact-confirmation .arabic-display { font-size: 2rem; margin-bottom: 1rem; }
.contact-confirmation p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream-body);
  line-height: 1.75;
}

/* ─────────────────────────────────────────────
   PAGE HERO COMMON
───────────────────────────────────────────── */
.page-hero-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold-light);
  direction: rtl;
  display: block;
  margin-bottom: 0.5rem;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav { padding: 1.2rem 1.75rem; }
  .nav.scrolled { padding: 0.75rem 1.75rem; }
  .nav-links, .nav-book { display: none; }
  .nav-hamburger { display: flex; }

  .section { padding: 5rem 1.75rem; }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .story-art {
    max-height: 340px;
    aspect-ratio: unset;
  }

  .booking-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .gallery-5 {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-5 .gallery-card:nth-child(1),
  .gallery-5 .gallery-card:nth-child(2),
  .gallery-5 .gallery-card:nth-child(3),
  .gallery-5 .gallery-card:nth-child(4),
  .gallery-5 .gallery-card:nth-child(5) {
    grid-column: span 1;
  }
  .gallery-5 .gallery-card:nth-child(5) {
    grid-column: 1 / -1;
  }

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

@media (max-width: 600px) {
  .section { padding: 4rem 1.25rem; }
  .booking-hero, .contact-hero { padding: 8rem 1.25rem 4rem; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 260px; text-align: center; }

  .footer { padding: 4rem 1.25rem 2rem; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .gallery-5 {
    grid-template-columns: 1fr;
  }
  .gallery-5 .gallery-card:nth-child(5) {
    grid-column: span 1;
  }

  .calendar-wrapper { padding: 1.25rem; }

  .nav { padding: 1rem 1.25rem; }
  .nav.scrolled { padding: 0.65rem 1.25rem; }
}
