/* Ayaat Studio — "Sacred Margins" design system
   Aesthetic: Islamic manuscript marginalia × Yaqeen-Institute warmth
   Typography: Cormorant Garamond + Amiri Quran
   Palette: warm parchment cream + dark walnut + muted forest green
   Register: contemplative, trustworthy, sober — NOT luxury, NOT gold
*/

:root {
  --bg: #f5ebd6;
  --bg-2: #ede0c5;
  --bg-3: #faf3e3;
  --paper: #fbf4e3;
  --text: #2a1f17;
  --text-2: #4a3d2e;
  --mute: #7a6d5c;
  --mute-2: #b3a48d;
  --accent: #4a6b54;
  --accent-2: #3d5a47;
  --accent-soft: rgba(74, 107, 84, 0.1);
  --accent-line: rgba(74, 107, 84, 0.3);
  --rule: rgba(42, 31, 23, 0.1);
  --rule-2: rgba(42, 31, 23, 0.05);
  --max: 1100px;
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Cormorant Garamond', 'Newsreader', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtle Islamic geometric pattern overlay (very faint, like watermark on paper) */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url('assets/pattern.svg');
  background-repeat: repeat;
  background-size: 280px 280px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
body > * { position: relative; z-index: 1; }

[lang="ar"], .arabic, .ar {
  font-family: 'Amiri Quran', 'Amiri', serif;
  line-height: 1.85;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* HEADER */
header {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0;
  background: rgba(245, 235, 214, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 50;
}
header .wrap {
  display: flex; justify-content: space-between; align-items: center;
}
.logo { display: block; line-height: 0; }
.logo svg, .logo img { height: 56px; width: auto; }
.lang-toggle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--mute);
  text-decoration: none;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.lang-toggle:hover { color: var(--accent); border-color: var(--accent); }

/* HERO — cream, generous, manuscript-marginalia layout */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
/* Soft contemplative glow (no gold) */
.hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 2; max-width: 880px; }

.hero-meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 56px;
  display: flex; align-items: center; gap: 18px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.1s forwards;
}
.hero-meta::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
}

.hero .hadith {
  margin-bottom: 80px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
  position: relative;
}
.hero .hadith::before {
  content: '';
  position: absolute;
  left: -24px; top: 8px;
  width: 3px; height: calc(100% - 30px);
  background: var(--accent);
  opacity: 0.35;
}
.hero .hadith .ar {
  font-size: clamp(38px, 7vw, 76px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  direction: rtl;
  margin-bottom: 32px;
  letter-spacing: 0;
}
.hero .hadith .en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--text-2);
  margin-bottom: 18px;
  max-width: 560px;
}
.hero .hadith .src {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mute);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 720px;
  opacity: 0;
  animation: fadeUp 1s ease 0.55s forwards;
}
.hero .lede {
  font-size: 21px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s ease 0.75s forwards;
}
.hero .price-row {
  display: flex; align-items: baseline; gap: 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 0.95s forwards;
}
.hero .price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 40px;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.hero .price small {
  font-size: 16px; font-weight: 400; font-style: italic;
  color: var(--mute); margin-left: 6px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA — sober forest-green button (no gold) */
.cta {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.06em;
  padding: 17px 36px;
  border: none;
  border-radius: 0;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease;
  position: relative;
}
.cta::after {
  content: '→';
  font-size: 21px;
  transition: transform 0.25s ease;
}
.cta:hover { background: var(--accent-2); }
.cta:hover::after { transform: translateX(4px); }

/* SECTIONS — alternating cream tones */
section {
  padding: 100px 0;
  border-top: 1px solid var(--rule);
  position: relative;
}
section.alt-bg { background: var(--bg-2); }
section .label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px;
}
section .label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
}
section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 780px;
}
section p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 20px;
  max-width: 640px;
}
section p:last-child { margin-bottom: 0; }
section em { color: var(--text); font-style: italic; }

/* Felt moment */
.felt-moment p { font-size: 21px; line-height: 1.65; }
.felt-moment p:first-of-type { color: var(--text); font-style: italic; }

/* Manuscript ornament between sections */
.section-ornament {
  display: flex; justify-content: center;
  padding: 20px 0;
  opacity: 0.7;
}
.section-ornament img { height: 30px; width: auto; }

/* VALUE STACK — alternating asymmetric rows, walnut numerals */
.value-stack { margin-top: 56px; }
.value-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 44px 0;
  border-bottom: 1px solid var(--rule-2);
  align-items: baseline;
}
.value-row:last-child { border-bottom: none; }
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.value-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 28px;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.value-body p {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 0;
  max-width: 540px;
}

/* REWARD — pull quote with forest accent rule */
.reward h2 { max-width: 720px; }
.reward .crescendo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.5;
  color: var(--text);
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 32px;
  margin-top: 48px;
  max-width: 720px;
  background: var(--bg-3);
  padding: 32px 0 32px 32px;
}
.reward .crescendo strong {
  font-weight: 500;
  font-style: normal;
  color: var(--accent);
}

/* PROOF — radiation viz + three-platforms vignette */
.proof-viz {
  margin: 64px 0 48px;
  text-align: center;
  padding: 24px 0 8px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.proof-viz img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.proof-viz-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--mute);
  letter-spacing: 0.08em;
  text-align: center;
  margin: 16px 0 24px;
  text-transform: lowercase;
}

.proof .stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 48px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule-2);
}
.stat:last-child { border-bottom: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  min-width: 180px;
}
.stat-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-2);
}

.platforms-viz {
  margin-top: 64px;
  padding: 32px 0;
  background: var(--bg-3);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.platforms-viz img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.platforms-viz-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--mute);
  text-align: center;
  margin-top: 24px;
  letter-spacing: 0.04em;
}

/* HOW — numbered steps */
.how-steps { margin-top: 56px; counter-reset: step; }
.how-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule-2);
  counter-increment: step;
}
.how-step:last-child { border-bottom: none; }
.how-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 44px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.how-step p {
  font-size: 21px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 0;
  font-weight: 400;
}

/* FAQ */
.faq h2 { margin-bottom: 56px; }
.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
.faq details:first-of-type { border-top: 1px solid var(--rule); }
.faq summary {
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--text);
  padding-right: 32px;
  list-style: none;
  position: relative;
  letter-spacing: -0.005em;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary::after {
  content: '＋';
  position: absolute; right: 0; top: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
}
.faq details[open] summary::after { content: '−'; }
.faq details p {
  margin-top: 16px;
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 720px;
}

/* FINAL CTA — bordered card on cream */
.final-cta {
  background: var(--bg-2);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
}
.final-cta .wrap { position: relative; z-index: 2; max-width: 880px; }
.final-cta .hadith {
  margin-bottom: 56px;
  max-width: 720px;
  padding-left: 32px;
  border-left: 3px solid var(--accent);
}
.final-cta .hadith .ar {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 24px;
  direction: rtl;
}
.final-cta .hadith .en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--text-2);
  margin-bottom: 12px;
}
.final-cta .hadith .src {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mute);
}
.final-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 700px;
  letter-spacing: -0.02em;
}
.final-cta .lede {
  font-size: 21px; color: var(--text-2);
  max-width: 540px; margin-bottom: 40px;
}
.final-cta .price-row {
  display: flex; align-items: baseline; gap: 28px;
  flex-wrap: wrap;
}
.final-cta .price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 40px;
  color: var(--accent);
}
.final-cta .price small {
  font-size: 16px; font-style: italic; color: var(--mute);
  margin-left: 6px;
}

/* FOOTER */
footer {
  padding: 56px 0 80px;
  border-top: 1px solid var(--rule);
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--mute);
}
footer .wrap {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
footer .footer-mark { font-style: italic; letter-spacing: 0.04em; }
footer .footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
footer .footer-links a {
  color: var(--mute); text-decoration: none;
  font-style: italic; letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
footer .footer-links a:hover { color: var(--accent); }

/* DESKTOP */
@media (min-width: 800px) {
  .wrap { padding: 0 56px; }
  .hero { padding: 120px 0 140px; }
  .hero .hadith { margin-bottom: 96px; }
  .hero .hadith::before { left: -32px; }
  .value-row {
    grid-template-columns: 120px 1fr;
    gap: 56px;
  }
  .value-num { font-size: 72px; }
  .stat { grid-template-columns: 240px 1fr; gap: 40px; padding: 32px 0; }
  .stat-num { font-size: 64px; min-width: 240px; }
  .how-step { grid-template-columns: 80px 1fr; gap: 56px; padding: 44px 0; }
  .how-step::before { font-size: 56px; }
  section { padding: 120px 0; }
}

/* RTL — Arabic */
html[dir="rtl"] body {
  font-family: 'Amiri', 'Amiri Quran', serif;
  font-size: 18px;
}
html[dir="rtl"] .hero .hadith::before {
  left: auto; right: -24px;
}
@media (min-width: 800px) {
  html[dir="rtl"] .hero .hadith::before { left: auto; right: -32px; }
}
html[dir="rtl"] section .label::before { display: none; }
html[dir="rtl"] section .label::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
  margin-right: 16px;
}
html[dir="rtl"] section .label { justify-content: flex-start; }
html[dir="rtl"] .reward .crescendo {
  border-left: none;
  border-right: 2px solid var(--accent);
  padding: 32px 32px 32px 0;
}
html[dir="rtl"] .final-cta .hadith {
  border-left: none;
  border-right: 3px solid var(--accent);
  padding-left: 0; padding-right: 32px;
}
html[dir="rtl"] .faq summary { padding-right: 0; padding-left: 32px; }
html[dir="rtl"] .faq summary::after { right: auto; left: 0; }
html[dir="rtl"] .cta::after {
  content: '←';
  transform: scaleX(-1) translateX(0);
}
html[dir="rtl"] .cta:hover::after { transform: scaleX(-1) translateX(4px); }
html[dir="rtl"] .hero-meta::before { display: none; }
html[dir="rtl"] .hero-meta::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
  margin-right: 18px;
}

/* WATCH THE NETWORK — channel cards */
.watch-network h2 { margin-bottom: 24px; }
.watch-network > .wrap > p { margin-bottom: 56px; max-width: 580px; }

.channel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.channel-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule-2);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease;
}
.channel-card:hover { transform: translateX(4px); }

.channel-card .channel-platform {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}
.channel-card .channel-handle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 28px;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.channel-card .channel-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.5;
  max-width: 540px;
  margin-top: 4px;
}
.channel-card .channel-stat {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--accent);
  margin-top: 12px;
}
.channel-card .channel-stat span {
  font-size: 13px; color: var(--mute); font-weight: 400;
  letter-spacing: 0.06em; margin-left: 4px;
}
.channel-card .channel-cta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-top: 6px;
  transition: transform 0.2s ease;
  display: inline-block;
}
.channel-card:hover .channel-cta { transform: translateX(4px); }

@media (min-width: 800px) {
  .channel-card {
    grid-template-columns: 180px 1fr 200px;
    grid-template-areas:
      "plat hdl  stat"
      "plat desc cta";
    column-gap: 40px;
    row-gap: 8px;
    padding: 40px 0;
    align-items: baseline;
  }
  .channel-card .channel-platform { grid-area: plat; padding-top: 8px; }
  .channel-card .channel-handle { grid-area: hdl; }
  .channel-card .channel-desc { grid-area: desc; padding-top: 4px; }
  .channel-card .channel-stat { grid-area: stat; text-align: right; margin-top: 0; }
  .channel-card .channel-stat span { display: block; margin-left: 0; margin-top: 2px; }
  .channel-card .channel-cta { grid-area: cta; text-align: right; margin-top: 0; align-self: end; }
}

html[dir="rtl"] .channel-card:hover { transform: translateX(-4px); }
html[dir="rtl"] .channel-card:hover .channel-cta { transform: translateX(-4px); }
@media (min-width: 800px) {
  html[dir="rtl"] .channel-card .channel-stat,
  html[dir="rtl"] .channel-card .channel-cta { text-align: left; }
}

/* TOP VIDEOS — three real top-performing video thumbnails */
.gallery h2 { margin-bottom: 24px; }
.gallery > .wrap > p { max-width: 620px; }

.top-videos {
  margin: 56px 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.top-video {
  display: block;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s ease;
}
.top-video:hover { transform: translateY(-4px); }
.top-video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 6px;
  background: #0a0c10;
  box-shadow: 0 12px 32px rgba(42, 31, 23, 0.18), 0 2px 6px rgba(42, 31, 23, 0.08);
  transition: box-shadow 0.25s ease;
}
.top-video:hover .top-video-frame {
  box-shadow: 0 20px 48px rgba(42, 31, 23, 0.28), 0 4px 12px rgba(42, 31, 23, 0.12);
}
.top-video-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.play-indicator {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  color: rgba(245, 235, 214, 0.65);
  text-shadow: 0 4px 16px rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.top-video:hover .play-indicator { opacity: 1; }
.top-video-meta {
  margin-top: 18px;
  padding: 0 4px;
}
.top-video-rank {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.top-video-surah {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.top-video-views {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--mute);
  letter-spacing: 0.02em;
}
.gallery-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--mute);
  text-align: center;
  margin: 32px auto 0;
  letter-spacing: 0.02em;
  max-width: 580px;
}

@media (min-width: 800px) {
  .top-videos {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin: 64px 0 32px;
  }
}

/* ============================================================
   PHOTO BACKGROUNDS — real cinematic imagery on hero + final CTA
   Hero: subtle photo behind cream wash (texture, atmosphere)
   Final CTA: full photo with dark overlay (dramatic closing moment)
   ============================================================ */

/* Hero photo backdrop — barely there, just adds depth */
.hero {
  background-image:
    linear-gradient(180deg, rgba(245, 235, 214, 0.86) 0%, rgba(245, 235, 214, 0.94) 70%, rgba(245, 235, 214, 1) 100%),
    url('assets/photos/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Final CTA — dark cinematic close */
.final-cta {
  background-image:
    linear-gradient(rgba(10, 12, 16, 0.78), rgba(10, 12, 16, 0.86)),
    url('assets/photos/final-cta-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f0e8d4;
}
.final-cta h3 { color: #f0e8d4; }
.final-cta .hadith .ar { color: #f0e8d4; }
.final-cta .hadith .en { color: #c9c0a8; }
.final-cta .hadith .src { color: #8a8474; }
.final-cta .lede { color: #c9c0a8; }
.final-cta .lede em { color: #f0e8d4; }
.final-cta .price { color: #95bc9c; }
.final-cta .price small { color: #8a8474; }
.final-cta .hadith {
  border-left-color: #95bc9c;
}
.final-cta::before {
  background: radial-gradient(circle, rgba(149, 188, 156, 0.16) 0%, transparent 60%);
}
.final-cta .cta {
  background: #95bc9c;
  color: #0a0c10;
}
.final-cta .cta:hover {
  background: #aed1b3;
}

html[dir="rtl"] .final-cta .hadith {
  border-right-color: #95bc9c;
}

/* Mobile: drop fixed bg attachment (iOS performance) */
@media (max-width: 800px) {
  .hero { background-attachment: scroll; }
}
