/*
Theme Name: Emerging Muslimah
Theme URI: https://emergingmuslimah.com
Author: Emerging Muslimah
Description: Custom theme for The Emerging Muslimah — Islamic emotional healing for Muslim women.
Version: 1.0
*/

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

/* ═══ VARIABLES ════════════════════════════════════ */
:root {
  --sage: #8A9E8A; --sage-lt: #B5C4B5; --sage-dk: #5E7A5E; --sage-pl: #EBF0EB;
  --gold: #C9A84C; --gold-lt: #E8CC80; --gold-pl: #F5E9C8; --gold-dk: #8A6A1A;
  --cream: #F9F4EE; --warm: #FDFAF6; --blush: #E8D5C4; --rose: #C4937A;
  --deep: #2C3328; --deep2: #1E2419; --deep3: #14180F;
  --text: #3D4438; --muted: #7A8475;
  --border: rgba(138,158,138,0.15);
}

/* ═══ RESET ════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Tajawal', sans-serif;
  background: var(--warm);
  color: var(--text);
  overflow-x: hidden;
}

/* ═══ SCROLLBAR ════════════════════════════════════ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 2px; }

/* ═══ GLOBAL BG TEXTURE ════════════════════════════ */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 2L58 30L30 58L2 30Z' fill='none' stroke='%238A9E8A' stroke-width='.3' opacity='.07'/%3E%3C/svg%3E");
}

/* ═══ NAVIGATION ═══════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 4rem; height: 72px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(253,250,246,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all .4s;
}
.nav-logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.nav-logo .diamond { width: 24px; height: 24px; flex-shrink: 0; }
.nav-logo .wordmark {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300;
  color: var(--deep); letter-spacing: .04em;
}
.nav-logo .wordmark em { color: var(--gold); font-style: italic; }
nav ul { list-style: none; display: flex; gap: 2.2rem; align-items: center; }
nav ul a {
  text-decoration: none; color: var(--muted); font-size: .76rem;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  transition: color .3s;
}
nav ul a:hover, nav ul a.current-menu-item { color: var(--deep); }
.nav-cta {
  background: var(--deep) !important; color: var(--cream) !important;
  padding: .55rem 1.4rem; border-radius: 2px;
  font-size: .72rem !important; letter-spacing: .14em;
}
.nav-cta:hover { background: var(--gold-dk) !important; color: var(--cream) !important; }

/* Mobile menu toggle */
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.menu-toggle span {
  display: block; width: 22px; height: 1px;
  background: var(--deep); transition: all .3s;
}

/* ═══ PAGE WRAPPER ═════════════════════════════════ */
.site-content { position: relative; z-index: 1; }
.page-wrap { padding-top: 72px; }

/* ═══ SECTION GLOBALS ══════════════════════════════ */
.section-eyebrow {
  font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 1rem;
  display: flex; align-items: center; gap: .6rem;
}
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300;
  color: var(--deep); line-height: 1.15; margin-bottom: 1rem;
}
.section-h2 em { font-style: italic; color: var(--sage-dk); }
.section-intro {
  font-family: 'Lora', serif; font-size: .95rem;
  color: var(--muted); line-height: 1.85; font-style: italic;
}

/* ═══ BUTTONS ══════════════════════════════════════ */
.btn-gold {
  display: inline-block; background: var(--gold); color: var(--deep);
  font-family: 'Tajawal', sans-serif; font-size: .76rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .8rem 2rem; border-radius: 2px; text-decoration: none;
  transition: all .3s; border: none; cursor: pointer;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-outline-lt {
  display: inline-block; background: transparent;
  color: rgba(249,244,238,.8);
  font-family: 'Tajawal', sans-serif; font-size: .76rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .75rem 1.8rem; border-radius: 2px; text-decoration: none;
  border: 1px solid rgba(249,244,238,.25); transition: all .3s; cursor: pointer;
}
.btn-outline-lt:hover { border-color: var(--gold); color: var(--gold); }

/* ═══ REVEAL ANIMATIONS ════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.23,1,.32,1), transform .7s cubic-bezier(.23,1,.32,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.23,1,.32,1), transform .6s cubic-bezier(.23,1,.32,1);
}
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: .05s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: .15s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: .25s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: .35s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: .45s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: .55s; }

/* ═══ FOOTER ═══════════════════════════════════════ */
footer {
  background: var(--deep3);
  border-top: 1px solid rgba(201,168,76,.1);
}
.footer-top {
  padding: 5rem 6rem 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem;
}
.footer-brand .fb-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
  font-weight: 300; color: var(--cream); margin-bottom: 1rem;
}
.footer-brand .fb-logo em { color: var(--gold); font-style: italic; }
.footer-brand p {
  font-size: .8rem; color: rgba(249,244,238,.45);
  line-height: 1.8; font-family: 'Lora', serif; font-style: italic;
  max-width: 250px; margin-bottom: 1.5rem;
}
.fb-social { display: flex; gap: .7rem; }
.fb-social a {
  width: 32px; height: 32px; border: 1px solid rgba(138,158,138,.2);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: .8rem;
  transition: all .3s; color: rgba(249,244,238,.5);
}
.fb-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sage-lt); margin-bottom: 1.2rem; font-weight: 700;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a {
  text-decoration: none; font-size: .8rem;
  color: rgba(249,244,238,.4); transition: color .3s;
  font-family: 'Lora', serif;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-arabic {
  font-family: 'Tajawal', sans-serif; font-size: 1.6rem;
  color: var(--gold); opacity: .3; text-align: right; margin-bottom: .4rem;
}
.footer-dua {
  font-family: 'Lora', serif; font-style: italic; font-size: .78rem;
  color: rgba(249,244,238,.35); line-height: 1.7;
}
.footer-bottom {
  padding: 1.5rem 6rem;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .7rem; color: rgba(249,244,238,.25); letter-spacing: .08em; }
.footer-bottom .fl-links { display: flex; gap: 1.5rem; }
.footer-bottom .fl-links a {
  font-size: .7rem; color: rgba(249,244,238,.25);
  text-decoration: none; letter-spacing: .08em; transition: color .3s;
}
.footer-bottom .fl-links a:hover { color: var(--gold); }

/* ═══ BLOG / ARCHIVE ═══════════════════════════════ */
.archive-hero {
  background: var(--deep2); padding: 8rem 6rem 5rem;
  position: relative; overflow: hidden;
}
.archive-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 3L77 40L40 77L3 40Z' fill='none' stroke='%23C9A84C' stroke-width='.4' opacity='.08'/%3E%3C/svg%3E");
  pointer-events: none;
}
.archive-hero-inner { position: relative; z-index: 1; max-width: 600px; }
.archive-eyebrow {
  font-size: .65rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--sage-lt); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .7rem;
}
.archive-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--sage); }
.archive-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 300;
  color: var(--cream); line-height: 1.1; margin-bottom: 1rem;
}
.archive-h1 em { color: var(--gold); font-style: italic; }
.archive-desc {
  font-family: 'Lora', serif; font-style: italic; font-size: .95rem;
  color: rgba(249,244,238,.6); line-height: 1.8;
}

.archive-grid-section { padding: 6rem 6rem; background: var(--warm); }
.archive-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.archive-card {
  background: var(--cream); border-radius: 3px; overflow: hidden;
  border: 1px solid var(--border); transition: all .35s;
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
.archive-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.archive-card-img {
  height: 200px; background: linear-gradient(135deg, var(--sage-dk), var(--deep2));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Tajawal', sans-serif; font-size: 2rem;
  color: var(--gold); opacity: .4;
  position: relative; overflow: hidden;
}
.archive-card-img img { width: 100%; height: 100%; object-fit: cover; opacity: 1; position: absolute; inset: 0; }
.archive-card-body { padding: 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.archive-card-cat {
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage-dk); font-weight: 700; margin-bottom: .5rem;
}
.archive-card-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
  font-weight: 400; color: var(--deep); line-height: 1.3; margin-bottom: .6rem; flex: 1;
}
.archive-card-excerpt {
  font-size: .78rem; color: var(--muted); line-height: 1.7;
  margin-bottom: .8rem; font-family: 'Lora', serif; font-style: italic;
}
.archive-card-meta {
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-top: auto;
  display: flex; align-items: center; gap: .5rem;
}
.archive-card-meta::before { content: ''; display: block; width: 16px; height: 1px; background: var(--sage); }

/* Pagination */
.archive-pagination {
  display: flex; justify-content: center; gap: .5rem;
  margin-top: 4rem;
}
.archive-pagination a, .archive-pagination span {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 2px;
  font-size: .75rem; text-decoration: none; color: var(--muted);
  transition: all .3s;
}
.archive-pagination a:hover, .archive-pagination .current {
  border-color: var(--gold); color: var(--gold);
}

/* ═══ SINGLE POST ═══════════════════════════════════ */
.single-hero {
  background: var(--deep2); padding: 8rem 6rem 5rem;
  position: relative; overflow: hidden;
}
.single-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 3L77 40L40 77L3 40Z' fill='none' stroke='%23C9A84C' stroke-width='.4' opacity='.08'/%3E%3C/svg%3E");
  pointer-events: none;
}
.single-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; }
.single-cat {
  font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 1.2rem;
  display: inline-flex; align-items: center; gap: .6rem;
}
.single-cat::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--gold); }
.single-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300;
  color: var(--cream); line-height: 1.15; margin-bottom: 1.2rem;
}
.single-meta-bar {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(249,244,238,.4);
}
.single-meta-bar span { display: flex; align-items: center; gap: .4rem; }

.single-content-wrap {
  max-width: 760px; margin: 0 auto; padding: 5rem 6rem;
}
.single-content-wrap .entry-content {
  font-family: 'Lora', serif; font-size: 1rem;
  color: var(--text); line-height: 1.95;
}
.single-content-wrap .entry-content h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
  font-weight: 300; color: var(--deep); margin: 2.5rem 0 1rem;
}
.single-content-wrap .entry-content h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-weight: 400; color: var(--deep); margin: 2rem 0 .8rem;
}
.single-content-wrap .entry-content p { margin-bottom: 1.5rem; }
.single-content-wrap .entry-content blockquote {
  border-left: 2px solid var(--gold); padding: 1rem 0 1rem 2rem;
  margin: 2rem 0; font-style: italic; color: var(--sage-dk);
}
.single-content-wrap .entry-content a { color: var(--sage-dk); border-bottom: 1px solid rgba(94,122,94,.3); text-decoration: none; }
.single-content-wrap .entry-content a:hover { color: var(--gold-dk); border-color: var(--gold); }
.single-content-wrap .entry-content img { width: 100%; border-radius: 3px; margin: 1.5rem 0; }
.single-content-wrap .entry-content ul, .single-content-wrap .entry-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}
.single-content-wrap .entry-content li { margin-bottom: .5rem; }

/* Post nav */
.post-nav {
  border-top: 1px solid var(--border); padding: 3rem 6rem;
  display: flex; justify-content: space-between; gap: 2rem;
  max-width: 760px; margin: 0 auto;
}
.post-nav a { text-decoration: none; max-width: 45%; }
.post-nav-label {
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: .3rem;
}
.post-nav-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  color: var(--deep); line-height: 1.3; transition: color .3s;
}
.post-nav a:hover .post-nav-title { color: var(--gold-dk); }

/* ═══ STATIC PAGE ══════════════════════════════════ */
.page-hero {
  background: var(--deep2); padding: 8rem 6rem 5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 3L77 40L40 77L3 40Z' fill='none' stroke='%23C9A84C' stroke-width='.4' opacity='.08'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 100%; width: 100% }
.page-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 300;
  color: var(--cream); line-height: 1.1; margin-bottom: 1rem;
}
.page-h1 em { color: var(--gold); font-style: italic; }
.page-subtitle {
  font-family: 'Lora', serif; font-style: italic; font-size: .95rem;
  color: rgba(249,244,238,.6); line-height: 1.8;
}
.page-content-wrap {
  padding: 5rem 6rem; 
  max-width: 100%;
  width: 100%;
}
.page-content-wrap .entry-content {
  font-family: 'Lora', serif; font-size: 1rem;
  color: var(--text); line-height: 1.95;
}
.page-content-wrap .entry-content h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
  font-weight: 300; color: var(--deep); margin: 2.5rem 0 1rem;
}
.page-content-wrap .entry-content p { margin-bottom: 1.5rem; }
.page-content-wrap .entry-content a { color: var(--sage-dk); text-decoration: none; border-bottom: 1px solid rgba(94,122,94,.3); }
.page-content-wrap .entry-content a:hover { color: var(--gold-dk); }

/* ═══ QURAN BANNER (reusable) ══════════════════════ */
.quran-banner {
  background: var(--deep3); padding: 2.5rem 6rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(201,168,76,.1); border-bottom: 1px solid rgba(201,168,76,.1);
  gap: 3rem; flex-wrap: wrap;
}
.qb-arabic { font-family: 'Tajawal', sans-serif; font-size: 1.4rem; color: var(--gold-lt); letter-spacing: .03em; flex-shrink: 0; }
.qb-divider { width: 1px; height: 40px; background: rgba(201,168,76,.2); }
.qb-text { flex: 1; min-width: 280px; }
.qb-verse { font-family: 'Lora', serif; font-style: italic; font-size: .95rem; color: rgba(249,244,238,.75); line-height: 1.7; margin-bottom: .3rem; }
.qb-ref { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--sage-lt); }

/* ═══ CONTACT FORM ═════════════════════════════════ */
.contact-section { padding: 6rem 6rem; background: var(--warm); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--deep); margin-bottom: 1rem; }
.contact-info p { font-family: 'Lora', serif; font-style: italic; font-size: .9rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
.contact-detail { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.contact-detail a { font-size: .85rem; color: var(--sage-dk); text-decoration: none; transition: color .3s; }
.contact-detail a:hover { color: var(--gold-dk); }
.wpcf7 .wpcf7-form { display: flex; flex-direction: column; gap: 1rem; }
.wpcf7 label { font-size: .67rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: .3rem; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%; background: var(--cream);
  border: 1px solid var(--border); border-radius: 2px;
  padding: .8rem 1rem; color: var(--text);
  font-family: 'Tajawal', sans-serif; font-size: .88rem;
  outline: none; transition: border-color .3s;
}
.wpcf7 input:focus, .wpcf7 textarea:focus { border-color: rgba(201,168,76,.5); }
.wpcf7 textarea { height: 140px; resize: vertical; }
.wpcf7 input[type="submit"] {
  background: var(--gold); color: var(--deep);
  font-family: 'Tajawal', sans-serif; font-size: .76rem;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .85rem 2rem; border: none; border-radius: 2px;
  cursor: pointer; transition: all .3s; align-self: flex-start;
}
.wpcf7 input[type="submit"]:hover { background: var(--gold-lt); }

/* ═══ RESPONSIVE ════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  nav ul { display: none; }
  nav ul.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(253,250,246,.98); padding: 1.5rem; gap: 1rem; border-bottom: 1px solid var(--border); }
  .menu-toggle { display: flex; }
  .archive-hero, .single-hero, .page-hero { padding: 6rem 1.5rem 3rem; }
  .archive-grid-section, .contact-section, .page-content-wrap { padding: 3rem 1.5rem; }
  .archive-grid { grid-template-columns: 1fr; }
  .single-content-wrap, .post-nav { padding: 3rem 1.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; padding: 3rem 1.5rem 2rem; gap: 2rem; }
  .footer-bottom { padding: 1.5rem; flex-direction: column; text-align: center; }
  .quran-banner { flex-direction: column; gap: 1rem; padding: 2.5rem 1.5rem; }
  .qb-divider { display: none; }
}
/* ═══ HOMEPAGE SPECIFIC STYLES ══════════════════════
   Append these to style.css — they cover all front-page sections
════════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--deep2); overflow: hidden; padding: 0;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 3L77 40L40 77L3 40Z' fill='none' stroke='%23C9A84C' stroke-width='.4' opacity='.08'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at 70% 50%, rgba(138,158,138,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,.2) 20%, rgba(201,168,76,.2) 80%, transparent);
  pointer-events: none;
}
.hero-left { position: relative; z-index: 1; padding: 9rem 4rem 6rem 6rem; }
.hero-bismillah {
  font-family: 'Tajawal', sans-serif; font-size: 1.1rem;
  color: var(--gold); letter-spacing: .05em; margin-bottom: 2rem; opacity: .8;
}
.hero-eyebrow {
  font-size: .65rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--sage-lt); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .7rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--sage); }
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4vw, 4.2rem); font-weight: 300;
  line-height: 1.05; color: var(--cream); margin-bottom: 1.8rem;
}
.hero-h1 em { font-style: italic; color: var(--gold); display: block; }
.hero-sub {
  font-family: 'Lora', serif; font-size: 1rem;
  color: rgba(249,244,238,.65); line-height: 1.85;
  max-width: 420px; margin-bottom: 2.5rem; font-style: italic;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust { display: flex; gap: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; }
.trust-num { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--gold); line-height: 1; }
.trust-label { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-lt); margin-top: .2rem; }

/* Hero right — mandala */
.hero-right {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 6rem 4rem; height: 100%;
}
.hero-mandala {
  width: 380px; height: 380px; position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: float 8s ease-in-out infinite;
}
.m-ring {
  position: absolute; border-radius: 50%; border-style: solid;
  animation: spin linear infinite; transform-origin: center;
}
.m-r1 { width: 360px; height: 360px; border-width: .5px; border-color: rgba(201,168,76,.15); animation-duration: 120s; }
.m-r2 { width: 300px; height: 300px; border-width: .8px; border-color: rgba(201,168,76,.2); animation-duration: 80s; animation-direction: reverse; }
.m-r3 { width: 240px; height: 240px; border-width: .5px; border-color: rgba(138,158,138,.2); animation-duration: 60s; }
.m-r4 { width: 180px; height: 180px; border-width: 1px; border-color: rgba(201,168,76,.3); animation-duration: 45s; animation-direction: reverse; }
.m-r5 { width: 120px; height: 120px; border-width: .5px; border-color: rgba(201,168,76,.4); animation-duration: 30s; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.m-diamond-outer { position: absolute; width: 260px; height: 260px; transform: rotate(45deg); border: 1px solid rgba(201,168,76,.15); }
.m-diamond-mid { position: absolute; width: 180px; height: 180px; transform: rotate(45deg); border: 1px solid rgba(201,168,76,.25); }
.m-diamond-inner { position: absolute; width: 100px; height: 100px; transform: rotate(45deg); border: 1px solid rgba(201,168,76,.4); background: rgba(201,168,76,.04); }
.m-center { position: relative; z-index: 2; text-align: center; }
.m-arabic { font-family: 'Tajawal', sans-serif; font-size: 1.6rem; color: var(--gold); display: block; margin-bottom: .4rem; }
.m-transliteration { font-family: 'Lora', serif; font-style: italic; font-size: .72rem; color: var(--sage-lt); letter-spacing: .12em; display: block; margin-bottom: .2rem; }
.m-translation { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(181,196,181,.5); display: block; }

/* Geo accents */
.geo-accent { position: absolute; opacity: .12; }
.geo-1 { top: 8%; left: 5%; width: 80px; height: 80px; }
.geo-2 { bottom: 12%; right: 5%; width: 60px; height: 60px; }
.geo-3 { top: 20%; right: 8%; width: 40px; height: 40px; }

/* Scroll indicator */
.scroll-ind {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(249,244,238,.3); font-size: .62rem; letter-spacing: .2em;
  text-transform: uppercase; z-index: 10;
  animation: fadeup 2s ease .5s both;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(201,168,76,.4), transparent); }
@keyframes fadeup { from { opacity: 0; transform: translateX(-50%) translateY(10px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* ── PAIN SECTION ─────────────────────────────────── */
.pain-section { padding: 7rem 6rem; position: relative; z-index: 1; }
.pain-header { max-width: 580px; margin-bottom: 4rem; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.pain-card {
  background: var(--cream); border: 1px solid var(--border); border-radius: 3px;
  padding: 1.6rem 1.8rem; position: relative; overflow: hidden;
  transition: all .35s; cursor: default;
}
.pain-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--sage); transform: scaleY(0); transform-origin: bottom; transition: transform .35s;
}
.pain-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.07); }
.pain-card:hover::before { transform: scaleY(1); }
.pain-icon { font-size: 1.4rem; margin-bottom: .9rem; display: block; }
.pain-text { font-family: 'Lora', serif; font-size: .9rem; font-style: italic; color: var(--deep); line-height: 1.6; }

/* ── ABOUT SECTION ────────────────────────────────── */
.about-section { background: var(--deep); padding: 7rem 6rem; position: relative; overflow: hidden; z-index: 1; }
.about-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 3L77 40L40 77L3 40Z' fill='none' stroke='%23C9A84C' stroke-width='.3' opacity='.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; position: relative; z-index: 1; }
.about-left .al-eyebrow { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--sage-lt); font-weight: 500; margin-bottom: 1.2rem; display: flex; align-items: center; gap: .6rem; }
.about-left .al-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--sage); }
.about-h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; color: var(--cream); line-height: 1.15; margin-bottom: 1.5rem; }
.about-h2 em { color: var(--gold); font-style: italic; }
.about-body { font-family: 'Lora', serif; font-size: .93rem; color: rgba(249,244,238,.65); line-height: 1.9; font-style: italic; margin-bottom: 2rem; }
.about-body strong { color: rgba(249,244,238,.85); font-style: normal; }
.about-stat-row { display: flex; gap: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(138,158,138,.2); }
.about-stat .stat-n { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--gold); display: block; line-height: 1; }
.about-stat .stat-l { font-size: .67rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-lt); margin-top: .25rem; display: block; }
.about-right { position: relative; display: flex; align-items: center; justify-content: center; }
.about-img-frame { width: 100%; max-width: 380px; aspect-ratio: 3/4; background: var(--deep2); border-radius: 3px; border: 1px solid rgba(201,168,76,.15); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.about-img-frame::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--sage-dk) 0%, var(--deep2) 50%, var(--deep3) 100%); opacity: .7; }
.about-img-placeholder { position: relative; z-index: 1; text-align: center; padding: 2rem; }
.aip-arabic { font-family: 'Tajawal', sans-serif; font-size: 3.5rem; color: var(--gold); opacity: .4; display: block; margin-bottom: 1rem; }
.aip-text { font-family: 'Lora', serif; font-style: italic; font-size: .8rem; color: rgba(249,244,238,.4); letter-spacing: .1em; }
.about-img-frame::after { content: ''; position: absolute; top: 12px; right: 12px; width: 24px; height: 24px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); opacity: .4; }
.frame-corner-bl { position: absolute; bottom: 12px; left: 12px; width: 24px; height: 24px; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); opacity: .4; z-index: 2; }

/* ── BLOG SECTION (homepage) ──────────────────────── */
.blog-section { padding: 7rem 6rem; background: var(--sage-pl); position: relative; z-index: 1; }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.see-all { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-dk); text-decoration: none; font-weight: 700; display: flex; align-items: center; gap: .4rem; padding-bottom: 1px; border-bottom: 1px solid var(--sage-dk); transition: all .3s; }
.see-all:hover { color: var(--gold-dk); border-color: var(--gold-dk); }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.5rem; }
.blog-card { background: var(--cream); border-radius: 3px; overflow: hidden; border: 1px solid var(--border); transition: all .35s; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.blog-img { height: 200px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.blog-card:first-child .blog-img { height: 240px; }
.bi-1 { background: linear-gradient(135deg, #3A5A3A, #2C3328); }
.bi-2 { background: linear-gradient(135deg, #5A3A2A, #3A2018); }
.bi-3 { background: linear-gradient(135deg, #3A4A5A, #1E2838); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.blog-img-text { font-family: 'Tajawal', sans-serif; font-size: 2rem; color: var(--gold); opacity: .3; }
.blog-body { padding: 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage-dk); font-weight: 700; margin-bottom: .5rem; }
.blog-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: var(--deep); line-height: 1.3; margin-bottom: .6rem; flex: 1; }
.blog-card:first-child .blog-title { font-size: 1.4rem; }
.blog-excerpt { font-size: .78rem; color: var(--muted); line-height: 1.7; margin-bottom: .8rem; font-family: 'Lora', serif; font-style: italic; }
.blog-meta { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: auto; display: flex; align-items: center; gap: .5rem; }
.blog-meta::before { content: ''; display: block; width: 16px; height: 1px; background: var(--sage); }

/* ── EMAIL OPTIN ──────────────────────────────────── */
.optin-section { background: var(--deep2); padding: 7rem 6rem; position: relative; overflow: hidden; z-index: 1; }
.optin-section::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 3L77 40L40 77L3 40Z' fill='none' stroke='%23C9A84C' stroke-width='.5' opacity='.06'/%3E%3C/svg%3E"); pointer-events: none; }
.optin-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.optin-left .ol-eyebrow { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--sage-lt); margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; }
.optin-left .ol-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--sage); }
.optin-h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--cream); line-height: 1.1; margin-bottom: 1rem; }
.optin-h2 em { color: var(--gold); font-style: italic; }
.optin-desc { font-family: 'Lora', serif; font-style: italic; font-size: .9rem; color: rgba(249,244,238,.6); line-height: 1.8; margin-bottom: 1.5rem; }
.optin-features { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.optin-features li { font-size: .8rem; color: rgba(249,244,238,.6); display: flex; align-items: center; gap: .6rem; }
.optin-features li::before { content: '✦'; color: var(--gold); font-size: .55rem; flex-shrink: 0; }
.optin-right { background: rgba(255,255,255,.04); border: 1px solid rgba(201,168,76,.15); border-radius: 4px; padding: 2.5rem; }
.form-label { display: block; font-size: .67rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage-lt); margin-bottom: .5rem; font-weight: 500; }
.form-input { width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(138,158,138,.2); border-radius: 2px; padding: .8rem 1rem; color: var(--cream); font-family: 'Tajawal', sans-serif; font-size: .88rem; outline: none; transition: border-color .3s; margin-bottom: 1rem; }
.form-input::placeholder { color: rgba(249,244,238,.3); }
.form-input:focus { border-color: rgba(201,168,76,.4); }
.form-submit { width: 100%; background: var(--gold); color: var(--deep); font-family: 'Tajawal', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: .9rem; border: none; border-radius: 2px; cursor: pointer; transition: all .3s; margin-top: .5rem; }
.form-submit:hover { background: var(--gold-lt); }
.form-note { font-size: .68rem; color: rgba(249,244,238,.3); text-align: center; margin-top: .8rem; font-family: 'Lora', serif; font-style: italic; }

/* ── TESTIMONIALS ─────────────────────────────────── */
.testi-section { padding: 7rem 6rem; position: relative; z-index: 1; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.testi-card { background: var(--cream); border: 1px solid var(--border); border-radius: 3px; padding: 2rem; position: relative; transition: all .35s; }
.testi-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.07); }
.testi-card::before { content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--gold); opacity: .15; line-height: 1; position: absolute; top: .5rem; left: 1.2rem; }
.testi-stars { color: var(--gold); font-size: .7rem; margin-bottom: 1rem; letter-spacing: .1em; }
.testi-quote { font-family: 'Lora', serif; font-style: italic; font-size: .88rem; color: var(--text); line-height: 1.8; margin-bottom: 1.4rem; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--sage), var(--deep2)); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.testi-name { font-size: .8rem; font-weight: 700; color: var(--deep); }
.testi-loc { font-size: .68rem; color: var(--muted); letter-spacing: .08em; }

/* ── HOMEPAGE RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 72px; }
  .hero-right { display: none; }
  .hero-left { padding: 3rem 1.5rem 4rem; }
  .pain-section, .about-section, .blog-section, .optin-section, .testi-section { padding: 4rem 1.5rem; }
  .about-inner, .optin-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .pain-grid, .blog-grid, .testi-grid { grid-template-columns: 1fr; }
}

css/* Fix About page content width */
.page-content-wrap {
  padding: 5rem 6rem !important;
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.page-content-wrap .entry-content,
.page-content-wrap .entry-content > * {
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* ── ABOUT PAGE ARTICLES GRID ───────────────────── */
.about-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

.about-article-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.6rem 1.8rem;
  transition: all .35s;
  box-sizing: border-box;
  width: 100%;
}

.about-article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
}

.about-article-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--deep);
  line-height: 1.3;
  margin-bottom: .6rem;
}

.about-article-card p {
  font-family: 'Lora', serif;
  font-size: .8rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── ABOUT PAGE OFFERINGS GRID ──────────────────── */
.about-offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

.about-offering-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.8rem;
  transition: all .35s;
  box-sizing: border-box;
  width: 100%;
}

.about-offering-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
}

/* ── ABOUT PAGE SECTION WRAPPER ─────────────────── */
.about-page-section {
  padding: 4rem 6rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--warm);
}

.about-page-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--deep);
  margin-bottom: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .about-articles-grid,
  .about-offerings-grid {
    grid-template-columns: 1fr;
  }
  .about-page-section {
    padding: 3rem 1.5rem;
  }
}