
:root {
  --black:    #000000;
  --navy:     #08111e;   /* إحصائيات */
  --charcoal: #12100e;   /* كتب — دفء خفيف */
  --forest:   #0b100d;   /* مؤلفون — خضرة خفية */
  --ink:      #0e0b14;   /* مجلة — بنفسجي داكن */
  --espresso: #100c08;   /* فعاليات — بني داكن */
  --cream:    #f2ead6;   /* تصنيفات — فاتح كاسر */
  --cream-2:  #e8dfc8;
  --black-4:  #1a1a1a;
  --gold:        #c9a84c;
  --gold-bright: #e8c96a;
  --gold-dim:    #8a6e2f;
  --white:    #ffffff;
  --off-white:#f0ead8;
  --gray:     #888888;
  --gray-dim: #444444;
  --border:        rgba(201,168,76,0.18);
  --border-bright: rgba(201,168,76,0.45);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Cairo', sans-serif;
  overflow-x: hidden;
}
body.en { font-family: 'EB Garamond', serif; direction: ltr; }

/* ─────────── CURSOR ─────────── */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.25s ease;
}

/* ─────────── NAV ─────────── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 0 60px;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(0,0,0,0.95), transparent);
  transition: background 0.4s;
}
nav.solid { background: rgba(0,0,0,0.98); border-bottom: 1px solid var(--border); }

.nav-brand {
  display: flex; flex-direction: column;
  text-decoration: none;
}
.nav-brand-ar {
  font-family: 'Amiri', serif;
  font-size: 20px; font-weight: 700;
  color: var(--white); line-height: 1;
}
.nav-brand-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px; letter-spacing: 0.35em;
  color: var(--gold); text-transform: uppercase;
  line-height: 1; margin-top: 3px;
}

.nav-center {
  display: flex; gap: 40px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
body.en .nav-center { left: 50%; right: auto; }

.nav-center a {
  font-family: 'Cairo', sans-serif;
  font-size: 12px; letter-spacing: 0.08em;
  color: rgba(240,234,216,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
body.en .nav-center a { font-family: 'Cormorant Garamond', serif; font-size: 14px; letter-spacing: 0.12em; }
.nav-center a:hover { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 20px; }

.lang-btn {
  background: none; border: 1px solid var(--border-bright);
  color: var(--gold); font-family: 'Cairo', sans-serif;
  font-size: 11px; letter-spacing: 0.15em;
  padding: 7px 18px; cursor: pointer;
  transition: all 0.25s;
}
.lang-btn:hover { background: var(--gold); color: var(--black); }

.nav-cta {
  background: var(--gold); color: var(--black);
  font-family: 'Cairo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em;
  padding: 9px 22px;
  text-decoration: none;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold-bright); }

/* ─────────── HERO ─────────── */
.hero {
  height: 100vh; min-height: 700px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
  position: relative; overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
}

.hero-lines {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-lines::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.15), transparent);
  animation: lineMove 8s ease-in-out infinite;
}
body:not(.en) .hero-lines::before { right: 38%; }
body.en .hero-lines::before { left: 38%; }

@keyframes lineMove {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.hero-year {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(180px, 22vw, 320px);
  font-weight: 300;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
body:not(.en) .hero-year { right: -20px; }
body.en .hero-year { left: -20px; }

.hero-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px;
  position: relative; z-index: 2;
  opacity: 0; animation: fadeUp 1s 0.2s forwards;
}
.hero-label::before {
  content: ''; width: 50px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
body.en .hero-label { flex-direction: row; }
body:not(.en) .hero-label { flex-direction: row-reverse; }

.hero-h1 {
  font-family: 'Amiri', serif;
  font-size: clamp(52px, 7vw, 110px);
  font-weight: 700; line-height: 1.05;
  color: var(--white);
  max-width: 700px;
  position: relative; z-index: 2;
  opacity: 0; animation: fadeUp 1s 0.35s forwards;
}
body.en .hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-style: italic;
  font-size: clamp(56px, 7vw, 120px);
}

.hero-h1 span { color: var(--gold); }

.hero-bottom {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-top: 60px;
  position: relative; z-index: 2;
  opacity: 0; animation: fadeUp 1s 0.55s forwards;
}

.hero-desc {
  font-size: 15px; line-height: 1.9;
  color: rgba(240,234,216,0.5);
  max-width: 380px;
}
body.en .hero-desc { font-family: 'EB Garamond', serif; font-size: 18px; }

.hero-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
body.en .hero-actions { align-items: flex-start; }

.btn-gold {
  background: var(--gold); color: var(--black);
  padding: 14px 40px;
  font-family: 'Cairo', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
  text-decoration: none; display: inline-block;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
body.en .btn-gold { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; letter-spacing: 0.18em; }
.btn-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
body.en .btn-gold::before { transform-origin: left; }
.btn-gold:hover::before { transform: scaleX(1); }
.btn-gold span { position: relative; z-index: 1; }
.btn-gold:hover span { color: var(--gold); }

.btn-ghost {
  border: 1px solid rgba(240,234,216,0.2);
  color: rgba(240,234,216,0.5);
  padding: 13px 40px;
  font-family: 'Cairo', sans-serif;
  font-size: 12px; letter-spacing: 0.15em;
  text-decoration: none; display: inline-block;
  transition: all 0.3s;
}
body.en .btn-ghost { font-family: 'Cormorant Garamond', serif; font-size: 15px; letter-spacing: 0.18em; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 36px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
body:not(.en) .hero-scroll { left: 60px; }
body.en .hero-scroll { right: 60px; }

.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}
.scroll-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  writing-mode: vertical-rl;
}

/* ─────────── TICKER ─────────── */
.ticker {
  background: var(--gold); padding: 13px 0;
  overflow: hidden; white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
body.en .ticker-track { animation-direction: reverse; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px; font-style: italic;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black); padding: 0 36px;
}
.ticker-sep { color: rgba(0,0,0,0.3); }

/* ─────────── STATS BAR ─────────── */
.stats-bar {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4,1fr);
  padding: 0;
}
.stat-cell {
  padding: 48px 40px;
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
  transition: background 0.3s;
  cursor: default;
}
.stat-cell:last-child { border-left: none; }
body.en .stat-cell { border-left: none; border-right: 1px solid var(--border); }
body.en .stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(201,168,76,0.04); }
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 300;
  color: var(--gold); line-height: 1;
  letter-spacing: -0.02em;
}
.stat-l {
  font-family: 'Cairo', sans-serif;
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--gray); text-transform: uppercase;
}
body.en .stat-l { font-family: 'EB Garamond', serif; font-size: 13px; font-style: italic; text-transform: none; }

/* ─────────── SECTION SHELL ─────────── */
.section { padding: 120px 60px; position: relative; }
.section-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.section-tag::after {
  content: ''; flex: 1; max-width: 60px; height: 1px;
  background: var(--gold-dim);
}
.section-h {
  font-family: 'Amiri', serif;
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 20px;
}
body.en .section-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-style: italic;
  font-size: clamp(36px, 4vw, 64px);
}
.section-sub {
  font-size: 15px; line-height: 1.8;
  color: var(--gray); max-width: 480px;
}
body.en .section-sub { font-family: 'EB Garamond', serif; font-size: 18px; }

/* ─────────── BOOKS SLIDER ─────────── */
.books-section { background: var(--charcoal); }

.slider-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 60px;
}
.slider-controls { display: flex; gap: 12px; }
.slider-btn {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  background: none; color: var(--gold);
  font-size: 18px; cursor: pointer;
  transition: all 0.25s; display: flex;
  align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.slider-track-wrap { overflow: hidden; }
.slider-track {
  display: flex; gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.book-slide {
  flex: 0 0 calc(25% - 18px);
  min-width: 0; cursor: pointer;
  transition: transform 0.3s;
}
.book-slide:hover { transform: translateY(-10px); }

.book-cover-box {
  aspect-ratio: 2/3;
  background: var(--black-4);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  margin-bottom: 20px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 24px 20px;
}
.book-cover-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
}
.book-cover-glow {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
  background: radial-gradient(circle at 50% 80%, rgba(201,168,76,0.12), transparent 70%);
}
.book-slide:hover .book-cover-glow { opacity: 1; }

.bc-1 { background: linear-gradient(145deg, #0d1f35 0%, #050e1a 100%); }
.bc-2 { background: linear-gradient(145deg, #1a1200 0%, #0a0800 100%); }
.bc-3 { background: linear-gradient(145deg, #1a0000 0%, #0a0000 100%); }
.bc-4 { background: linear-gradient(145deg, #0d1a0d 0%, #050a05 100%); }
.bc-5 { background: linear-gradient(145deg, #1a001a 0%, #0a000a 100%); }
.bc-6 { background: linear-gradient(145deg, #001a1a 0%, #000a0a 100%); }

.bc-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  position: relative; z-index: 1;
  opacity: 0.7;
}
.bc-title {
  font-family: 'Amiri', serif;
  font-size: 16px; color: var(--white);
  line-height: 1.5; position: relative; z-index: 1;
}
.bc-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.book-slide:hover .bc-bar { opacity: 1; }

.bs-title {
  font-family: 'Amiri', serif;
  font-size: 16px; color: var(--off-white);
  line-height: 1.4; margin-bottom: 6px;
}
body.en .bs-title { font-family: 'EB Garamond', serif; font-size: 17px; }
.bs-author {
  font-family: 'Cairo', sans-serif;
  font-size: 11px; color: var(--gray);
  margin-bottom: 10px; letter-spacing: 0.05em;
}
body.en .bs-author { font-family: 'EB Garamond', serif; font-size: 13px; font-style: italic; }
.bs-cat {
  display: inline-block;
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 3px 10px;
}

/* ─────────── AUTHORS SLIDER ─────────── */
.authors-section { background: var(--forest); }

.author-slide {
  flex: 0 0 calc(33.33% - 16px);
  min-width: 0;
}

.author-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 40px 36px;
  transition: all 0.4s;
  cursor: pointer; position: relative;
  overflow: hidden;
}
.author-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s;
}
.author-card:hover { background: var(--black-4); border-color: var(--border-bright); }
.author-card:hover::before { transform: scaleX(1); }

.author-initials {
  width: 64px; height: 64px;
  border: 1px solid var(--border-bright);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Amiri', serif;
  font-size: 22px; color: var(--gold);
  margin-bottom: 24px;
}
.author-name {
  font-family: 'Amiri', serif;
  font-size: 20px; color: var(--white);
  margin-bottom: 6px; line-height: 1.3;
}
body.en .author-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; }
.author-title {
  font-family: 'Cairo', sans-serif;
  font-size: 11px; color: var(--gold);
  letter-spacing: 0.08em; margin-bottom: 16px;
}
body.en .author-title { font-family: 'EB Garamond', serif; font-size: 13px; font-style: italic; }
.author-bio {
  font-family: 'Cairo', sans-serif;
  font-size: 12px; color: var(--gray);
  line-height: 1.8; margin-bottom: 24px;
}
body.en .author-bio { font-family: 'EB Garamond', serif; font-size: 14px; }
.author-books {
  display: flex; gap: 8px;
  flex-wrap: wrap;
}
.author-book-chip {
  font-size: 9px; letter-spacing: 0.1em;
  color: rgba(201,168,76,0.6);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 4px 10px;
}

/* ─────────── ABOUT ─────────── */
.about-section {
  background: var(--espresso);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; padding: 0;
}
.about-left {
  padding: 120px 80px;
  border-left: 1px solid var(--border);
}
body.en .about-left { border-left: none; border-right: 1px solid var(--border); }
.about-right {
  padding: 120px 80px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 0;
}

.timeline { display: flex; flex-direction: column; }
.tl-item {
  display: flex; gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: background 0.3s;
}
.tl-item:last-child { border-bottom: none; }
.tl-item:hover { padding-right: 8px; }
body.en .tl-item:hover { padding-right: 0; padding-left: 8px; }
.tl-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; letter-spacing: 0.15em;
  color: var(--gold); flex-shrink: 0;
  padding-top: 3px; min-width: 50px;
}
.tl-content h4 {
  font-family: 'Cairo', sans-serif;
  font-size: 13px; color: var(--white);
  margin-bottom: 4px; font-weight: 600;
}
body.en .tl-content h4 { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 500; }
.tl-content p {
  font-family: 'Cairo', sans-serif;
  font-size: 11px; color: var(--gray); line-height: 1.7;
}
body.en .tl-content p { font-family: 'EB Garamond', serif; font-size: 14px; }

/* ─────────── CATEGORIES ─────────── */
.cats-section { background: var(--cream); }
.cats-section .section-tag { color: var(--gold-dim); }
.cats-section .section-h { color: #1a1208; }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(0,0,0,0.12);
  margin-top: 60px;
  border: 1px solid rgba(0,0,0,0.12);
}
.cat-tile {
  background: var(--cream);
  padding: 48px 40px;
  position: relative; overflow: hidden;
  cursor: pointer; transition: background 0.3s;
  display: flex; flex-direction: column;
  justify-content: space-between; min-height: 200px;
}
.cat-tile::before {
  content: '';
  position: absolute; inset: 0;
  background: #1a1208;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}
.cat-tile:hover::before { transform: scaleY(1); }
.cat-tile:hover .ct-num { color: var(--gold-dim); }
.cat-tile:hover .ct-name { color: var(--gold); }
.cat-tile:hover .ct-count { color: rgba(240,234,216,0.5); }
.ct-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 0.3em;
  color: rgba(0,0,0,0.3);
  position: relative; z-index: 1;
  transition: color 0.3s;
}
.ct-name {
  font-family: 'Amiri', serif;
  font-size: 24px; font-weight: 700;
  color: #1a1208;
  position: relative; z-index: 1;
  transition: color 0.3s; line-height: 1.3;
}
body.en .ct-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-style: italic; font-size: 26px;
}
.ct-count {
  font-family: 'Cairo', sans-serif;
  font-size: 11px; color: rgba(0,0,0,0.4);
  position: relative; z-index: 1;
  transition: color 0.3s;
}

/* ─────────── JOURNAL ─────────── */
.journal-section {
  background: var(--ink);
  padding: 0; display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 680px;
}
.journal-left {
  padding: 100px 80px;
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  justify-content: center;
}
body.en .journal-left { border-left: none; border-right: 1px solid var(--border); }
.journal-right {
  background: rgba(0,0,0,0.3);
  display: flex; align-items: center;
  justify-content: center; padding: 80px;
}
.journal-mockup {
  width: 260px;
  background: var(--black-4);
  border: 1px solid var(--border-bright);
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 40px rgba(201,168,76,0.06);
}
.journal-mockup::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px solid rgba(201,168,76,0.1);
  pointer-events: none;
}
.jm-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; opacity: 0.7;
}
.jm-title {
  font-family: 'Amiri', serif;
  font-size: 17px; color: var(--white);
  line-height: 1.5; margin-bottom: 24px;
}
body.en .jm-title { font-family: 'Cormorant Garamond', serif; font-style: italic; }
.jm-line { height: 1px; background: var(--border); margin-bottom: 20px; }
.jm-article {
  font-family: 'Cairo', sans-serif;
  font-size: 10px; color: var(--gray);
  line-height: 1.6; padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  margin-bottom: 12px;
}
body.en .jm-article { font-family: 'EB Garamond', serif; font-size: 11px; }
.jm-article:last-of-type { border-bottom: none; }
.jm-vol {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9px; letter-spacing: 0.25em;
  color: var(--gold-dim);
}
.journal-new-badge {
  position: absolute; top: -14px;
  background: var(--gold); color: var(--black);
  font-family: 'Cairo', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.15em; padding: 5px 14px;
}
body:not(.en) .journal-new-badge { left: 24px; }
body.en .journal-new-badge { right: 24px; }

.journal-specs {
  display: flex; gap: 36px;
  margin: 36px 0;
}
.js-item { display: flex; flex-direction: column; gap: 4px; }
.js-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.js-lbl {
  font-family: 'Cairo', sans-serif;
  font-size: 10px; color: var(--gray); letter-spacing: 0.1em;
}
body.en .js-lbl { font-family: 'EB Garamond', serif; font-size: 12px; font-style: italic; }

/* ─────────── EVENTS SLIDER ─────────── */
.events-section { background: var(--navy); }
.event-slide { flex: 0 0 calc(50% - 12px); min-width: 0; }
.event-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  padding: 40px;
  transition: all 0.35s;
  cursor: pointer;
  display: flex; gap: 32px;
}
.event-card:hover { border-color: var(--border-bright); background: rgba(255,255,255,0.06); }
.event-date-box {
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  min-width: 64px; padding-top: 4px;
}
.ev-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.ev-month {
  font-family: 'Cairo', sans-serif;
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--gray); text-transform: uppercase;
}
.event-sep {
  width: 1px;
  background: var(--border); flex-shrink: 0;
}
.event-info { flex: 1; }
.ev-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 10px;
}
.ev-title {
  font-family: 'Amiri', serif;
  font-size: 20px; color: var(--white);
  line-height: 1.4; margin-bottom: 10px;
}
body.en .ev-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; }
.ev-loc {
  font-family: 'Cairo', sans-serif;
  font-size: 11px; color: var(--gray);
}
body.en .ev-loc { font-family: 'EB Garamond', serif; font-size: 13px; font-style: italic; }

/* ─────────── FOOTER ─────────── */
footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 80px 60px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.footer-brand { font-family: 'Amiri', serif; font-size: 32px; font-weight: 700; color: var(--white); display: block; margin-bottom: 16px; }
.footer-desc { font-family: 'Cairo', sans-serif; font-size: 12px; color: var(--gray); line-height: 1.9; margin-bottom: 28px; }
body.en .footer-desc { font-family: 'EB Garamond', serif; font-size: 14px; font-style: italic; }
.footer-socials { display: flex; gap: 16px; flex-wrap: wrap; }
.social-link {
  border: 1px solid var(--border);
  color: var(--gray);
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 16px; text-decoration: none;
  transition: all 0.25s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-col-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-family: 'Cairo', sans-serif;
  font-size: 12px; color: var(--gray);
  text-decoration: none; transition: color 0.2s;
  letter-spacing: 0.03em;
}
body.en .footer-links a { font-family: 'EB Garamond', serif; font-size: 14px; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px; font-style: italic;
  color: rgba(255,255,255,0.15);
}
.footer-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-dim);
}

/* ─────────── ANIMATIONS ─────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to { opacity:1; transform:translateY(0); }
}
.reveal { opacity:0; transform:translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.vis { opacity:1; transform:translateY(0); }
.reveal.d1 { transition-delay:0.1s; }
.reveal.d2 { transition-delay:0.2s; }
.reveal.d3 { transition-delay:0.3s; }
.reveal.d4 { transition-delay:0.4s; }

/* ─────────── RESPONSIVE ─────────── */
@media(max-width:1100px){
  .about-section { grid-template-columns:1fr; }
  .about-left,.about-right { padding:80px 40px; border:none; border-bottom:1px solid var(--border); }
  .journal-section { grid-template-columns:1fr; }
  .journal-right { display:none; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:40px; }
  .cats-grid { grid-template-columns:repeat(2,1fr); }
  .book-slide { flex: 0 0 calc(50% - 12px); }
  .author-slide { flex: 0 0 calc(50% - 12px); }
  .event-slide { flex: 0 0 100%; }
  .stats-bar { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px){
  nav { padding:0 24px; }
  .nav-center,.nav-cta { display:none; }
  .section { padding:80px 24px; }
  .hero { padding:0 24px 80px; }
  .hero-bottom { flex-direction:column; gap:40px; align-items:flex-start; }
  .cats-grid { grid-template-columns:1fr; }
  .book-slide { flex: 0 0 80%; }
  .author-slide { flex: 0 0 90%; }
  .footer-grid { grid-template-columns:1fr; }
  .stats-bar { grid-template-columns:1fr 1fr; }
}


/* WordPress/WooCommerce integration */
.admin-bar nav{top:32px}.majd-wrap{max-width:1320px;margin:0 auto}.screen-reader-text{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px)}
.woocommerce-notices-wrapper{padding:95px 60px 0;background:#000}.majd-page{padding:120px 60px;background:var(--charcoal);min-height:70vh}.majd-page h1{font-family:Amiri,serif;font-size:54px;color:#fff;margin-bottom:24px}.majd-page a{color:var(--gold)}
.majd-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:28px}.majd-term-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.majd-term-card{background:rgba(255,255,255,.035);border:1px solid var(--border);padding:32px;color:var(--off-white);text-decoration:none;transition:.25s}.majd-term-card:hover{border-color:var(--border-bright);transform:translateY(-4px)}
.majd-term-card img{width:86px;height:86px;object-fit:cover;border:1px solid var(--border);margin-bottom:18px}.majd-term-card h2{font-family:Amiri,serif;font-size:24px;color:#fff}.majd-term-card p{color:var(--gray);font-size:13px;line-height:1.8;margin-top:10px}.majd-meta-muted{color:var(--gold);font-size:12px;letter-spacing:.06em}
.majd-product-hero{display:grid;grid-template-columns:.82fr 1.18fr;gap:70px;align-items:start;padding:120px 60px;background:var(--charcoal);min-height:100vh}.majd-product-cover{position:sticky;top:110px}.majd-product-cover img{width:100%;max-width:440px;box-shadow:0 38px 90px rgba(0,0,0,.6);border:1px solid var(--border)}.majd-product-summary h1{font-family:Amiri,serif;font-size:clamp(42px,5vw,76px);line-height:1.1;color:#fff;margin-bottom:12px}.majd-translit{font-family:'Cormorant Garamond',serif;color:var(--gold);font-size:24px;font-style:italic;margin:0 0 28px}.majd-book-links{display:flex;flex-wrap:wrap;gap:12px;margin:18px 0}.majd-book-links a,.majd-book-links span{border:1px solid var(--border);padding:8px 14px;color:var(--off-white);text-decoration:none;font-size:12px}.majd-product-summary .price{font-family:'Cormorant Garamond',serif;font-size:36px;color:var(--gold);margin:24px 0}.majd-product-summary form.cart{display:flex;gap:12px;align-items:center;margin:28px 0}.majd-product-summary .quantity input{height:48px;background:#000;color:#fff;border:1px solid var(--border);padding:0 8px}.single_add_to_cart_button,.majd-buy-now{background:var(--gold)!important;color:#000!important;border:0!important;padding:15px 30px!important;font-weight:700;text-decoration:none;display:inline-flex;align-items:center;min-height:48px}.majd-buy-now{margin-inline-start:10px}.majd-excerpt{color:rgba(240,234,216,.72);line-height:2;font-size:15px;margin:20px 0 32px}
.majd-metadata{padding:90px 60px;background:#080808}.majd-metadata h2,.majd-related h2{font-family:Amiri,serif;color:#fff;font-size:42px;margin-bottom:30px}.majd-meta-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1px;background:var(--border);border:1px solid var(--border)}.majd-meta-item{background:#111;padding:22px}.majd-meta-label{display:block;color:var(--gold);font-size:11px;letter-spacing:.14em;text-transform:uppercase;margin-bottom:10px}.majd-meta-value{color:var(--off-white);font-size:14px;line-height:1.6}.majd-description{padding:90px 60px;background:var(--espresso);display:grid;grid-template-columns:1fr 1fr;gap:60px}.majd-description h2{font-family:Amiri,serif;color:#fff;font-size:40px}.majd-description .entry-content{color:rgba(240,234,216,.75);line-height:2}.majd-related{padding:90px 60px;background:var(--forest)}
.woocommerce-pagination{margin-top:45px}.woocommerce-pagination ul{display:flex;gap:8px;list-style:none}.woocommerce-pagination a,.woocommerce-pagination span{display:block;padding:10px 16px;border:1px solid var(--border);color:var(--off-white);text-decoration:none}.woocommerce-pagination .current{background:var(--gold);color:#000}.woocommerce-ordering select{background:#000;color:#fff;border:1px solid var(--border);padding:12px;margin-bottom:30px}.woocommerce-result-count{color:var(--gray);margin-bottom:18px}.majd-filter-note{border:1px solid var(--border);padding:18px 20px;color:var(--gray);margin-bottom:30px;background:rgba(255,255,255,.025)}
@media(max-width:900px){.majd-grid,.majd-meta-grid{grid-template-columns:repeat(2,1fr)}.majd-term-grid{grid-template-columns:1fr}.majd-product-hero,.majd-description{grid-template-columns:1fr;padding:90px 24px}.majd-metadata,.majd-related,.majd-page{padding:70px 24px}.majd-product-cover{position:static}.majd-product-summary form.cart{flex-wrap:wrap}}
@media(max-width:560px){.majd-grid,.majd-meta-grid{grid-template-columns:1fr}.admin-bar nav{top:46px}}
