/* ================================================================
   GUY HAZOOT — Official Website Stylesheet
   RTL Hebrew + LTR English  |  Premium Dark Design
   ================================================================ */

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

/* ── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  --bg:     #090c14;
  --bg2:    #0e1420;
  --bg3:    #141c2e;
  --bg4:    #1a2440;
  --bg5:    #0b0e18;

  --gold:   #c9a84c;
  --gold-l: #e4c97e;
  --gold-d: #9a7c32;
  --gold-a: rgba(201,168,76,.10);
  --gold-b: rgba(201,168,76,.22);
  --gold-c: rgba(201,168,76,.06);

  --cream:  #f5f0e8;
  --t1:     #eae6de;
  --t2:     #a09a90;
  --t3:     #6a6460;
  --white:  #ffffff;

  --red:    #8b1f1f;
  --red-l:  #c0392b;

  --fhe:    'Heebo', 'Arial Hebrew', sans-serif;
  --fdisp:  'Frank Ruhl Libre', Georgia, serif;
  --fen:    'Cormorant Garamond', Georgia, serif;
  --fui:    'Inter', Arial, sans-serif;

  --nav-h:  72px;
  --sy:     clamp(64px, 8vw, 120px);
  --cw:     1240px;
  --cp:     clamp(20px, 5vw, 64px);

  --sh:     0 8px 48px rgba(0,0,0,.55);
  --sg:     0 0 80px rgba(201,168,76,.12);
  --t:      .3s cubic-bezier(.4,0,.2,1);
  --ts:     .65s cubic-bezier(.4,0,.2,1);
  --r:      6px;
  --rl:     12px;
  --rxl:    20px;
}

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

html {
  direction: rtl;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--t1);
  font-family: var(--fhe);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
video { display: block; max-width: 100%; }
svg { fill: currentColor; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fdisp);
  font-weight: 700;
  line-height: 1.18;
  color: var(--cream);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); }
h5 { font-size: 1.1rem; font-family: var(--fhe); }
h6 { font-size: 0.9rem; font-family: var(--fhe); }

/* Hebrew pages: Heebo for headings */
[lang="he"] h1, [lang="he"] h2, [lang="he"] h3 { font-family: var(--fhe); }
[lang="he"] h1 { font-weight: 800; letter-spacing: -0.02em; }
[lang="he"] h2 { font-weight: 700; letter-spacing: -0.01em; }
[lang="he"] h3 { font-weight: 600; }

p { font-size: clamp(1rem, 1.5vw, 1.1rem); line-height: 1.8; color: var(--t2); }

strong, b { font-weight: 700; color: var(--t1); }
em, i { font-style: italic; }

blockquote {
  border-right: 3px solid var(--gold);
  padding-right: 1.5rem;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--t1);
  line-height: 1.7;
}

/* Section label */
.section-label {
  display: inline-block;
  font-family: var(--fhe);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

/* ── LAYOUT ──────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--cw);
  margin: 0 auto;
  padding: 0 var(--cp);
}

.section {
  padding: var(--sy) 0;
  position: relative;
}

.section--dark  { background: var(--bg2); }
.section--dark2 { background: var(--bg3); }
.section--black { background: var(--bg5); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

/* Section heading */
.section-head {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-head h2 { margin-bottom: 0.6rem; }
.section-head p { max-width: 620px; }
.section-head--center { text-align: center; }
.section-head--center p { margin: 0 auto; }

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.95rem;
  transition: gap var(--t), opacity var(--t);
}
.section-link:hover { gap: 0.9rem; opacity: 0.85; }
.section-link svg { width: 16px; height: 16px; transform: rotate(180deg); }

/* ── NAVIGATION ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t), box-shadow var(--t), backdrop-filter var(--t);
}

.nav--scrolled {
  background: rgba(9,12,20,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201,168,76,.12);
}

.nav__inner {
  width: 100%;
  max-width: var(--cw);
  margin: 0 auto;
  padding: 0 var(--cp);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.nav__logo-name {
  font-family: var(--fdisp);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.nav__logo-title {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__link {
  position: relative;
  padding: 0.4rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--t2);
  transition: color var(--t);
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0.8rem; left: 0.8rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--t);
  transform-origin: left;
}
.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.active { color: var(--cream); }
.nav__link.active::after { transform: scaleX(1); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__lang {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffffff;
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--r);
  transition: color var(--t), border-color var(--t), box-shadow var(--t);
  font-family: var(--fui);
  box-shadow: 0 0 8px rgba(255,255,255,0.18);
}
.nav__lang:hover { color: var(--gold); border-color: var(--gold-b); box-shadow: 0 0 10px rgba(201,168,76,0.3); }

.nav__cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--gold);
  padding: 0.45rem 1.1rem;
  border-radius: var(--r);
  transition: background var(--t), transform var(--t);
  white-space: nowrap;
}
.nav__cta:hover { background: var(--gold-l); transform: translateY(-1px); }

/* Mobile hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--t1);
  transition: transform var(--t), opacity var(--t);
  border-radius: 2px;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); right: 0; left: 0; bottom: 0;
  background: rgba(9,12,20,.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link {
  font-size: 1.3rem;
  padding: 0.5rem 1.5rem;
  color: var(--t1);
}
.nav__mobile .nav__link::after { right: 1.5rem; left: 1.5rem; }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 8%;
  filter: brightness(0.35) saturate(0.8);
  transform: scale(1.12);
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(9,12,20,.96) 0%,
    rgba(9,12,20,.85) 45%,
    rgba(9,12,20,.3) 100%
  );
}
.hero__bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--cw);
  margin: 0 auto;
  padding: clamp(48px, 8vh, 96px) var(--cp);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: flex-start;
}

.hero__text { max-width: 680px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s ease forwards;
}
.hero__badge span.dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

.hero__name {
  font-family: var(--fdisp);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.0;
  margin-bottom: 0.6rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s ease forwards;
}
.hero__name em {
  font-style: normal;
  color: var(--gold);
}

.hero__tagline {
  font-family: var(--fhe);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 300;
  color: var(--t1);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s ease forwards;
}

.hero__desc {
  font-size: 1.0rem;
  color: var(--t2);
  line-height: 1.85;
  margin-bottom: 2.2rem;
  max-width: 540px;
  opacity: 0;
  animation: fadeUp 0.7s 0.65s ease forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s ease forwards;
}

.hero__portrait {
  position: relative;
  opacity: 0;
  animation: fadeIn 1s 0.6s ease forwards;
}
.hero__portrait img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: var(--rl);
  box-shadow: var(--sg), var(--sh);
}
.hero__portrait::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--gold-b);
  border-radius: 18px;
  pointer-events: none;
}
.hero__portrait-caption {
  position: absolute;
  bottom: -1px; right: -1px; left: -1px;
  background: linear-gradient(to top, rgba(9,12,20,1) 0%, rgba(9,12,20,.6) 60%, transparent 100%);
  padding: 3rem 1.2rem 1rem;
  border-radius: 0 0 var(--rl) var(--rl);
  font-size: 0.78rem;
  color: var(--t2);
  text-align: center;
  letter-spacing: 0.1em;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--t3);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
  animation: fadeIn 1s 1.2s ease both;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-b), transparent);
  animation: scrollLine 1.5s 1.5s ease infinite;
}

/* ── CREDENTIALS STRIP ───────────────────────────────────────────── */
.credentials {
  background: var(--bg2);
  border-top: 1px solid rgba(201,168,76,.08);
  border-bottom: 1px solid rgba(201,168,76,.08);
  padding: 1.5rem 0;
  overflow: hidden;
}
.credentials__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.credentials__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,.06);
}
.credentials__item:last-child { border-right: none; }
.credentials__icon {
  width: 32px; height: 32px;
  color: var(--gold);
  flex-shrink: 0;
}
.credentials__text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--t1);
  line-height: 1.2;
}
.credentials__text span {
  font-size: 0.72rem;
  color: var(--t3);
  letter-spacing: 0.08em;
}

/* ── ABOUT PREVIEW ───────────────────────────────────────────────── */
.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}
.about-preview__text .section-label { display: block; }
.about-preview__text h2 { margin-bottom: 1.2rem; }
.about-preview__text p { margin-bottom: 1.2rem; }

.about-preview__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.stat-box {
  background: var(--bg3);
  border: 1px solid var(--gold-b);
  border-radius: var(--rl);
  padding: 1.2rem 1.4rem;
}
.stat-box__num {
  font-family: var(--fdisp);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-box__label {
  font-size: 0.82rem;
  color: var(--t2);
  line-height: 1.4;
}

.about-preview__photo {
  position: relative;
}
.about-preview__photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--rl);
  filter: grayscale(0.15);
}
.about-preview__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
  border-radius: var(--rl);
  pointer-events: none;
}
.about-preview__photo-tag {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--gold-a);
  border: 1px solid var(--gold-b);
  backdrop-filter: blur(8px);
  border-radius: var(--r);
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  color: var(--gold-l);
}

/* ── BOOK SECTION ────────────────────────────────────────────────── */
.book-featured {
  background: var(--bg5);
  position: relative;
  overflow: hidden;
}
.book-featured::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}

.book-featured__grid {
  display: grid;
  grid-template-columns: 425px 1fr;
  gap: 4rem;
  align-items: center;
}

.book-featured__cover {
  position: relative;
}
.book-featured__cover img {
  width: 100%;
  border-radius: var(--rl);
  box-shadow: -20px 20px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(201,168,76,.15);
  transition: transform var(--ts), box-shadow var(--ts);
}
.book-featured__cover:hover img {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: -24px 28px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(201,168,76,.25);
}
.book-featured__award {
  position: absolute;
  top: -12px; left: -12px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: var(--r);
  white-space: nowrap;
}

.book-featured__text .section-label { display: block; }
.book-featured__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 0.4rem;
}
.book-featured__subtitle {
  font-family: var(--fhe);
  font-size: 1rem;
  color: var(--t2);
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.book-featured__desc {
  font-size: 1.0rem;
  color: var(--t2);
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

.book-featured__quote {
  background: var(--gold-c);
  border-right: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--r) var(--r) 0;
  margin-bottom: 1.8rem;
}
.book-featured__quote p {
  font-family: var(--fdisp);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--t1);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.book-featured__quote cite {
  font-size: 0.78rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.book-featured__logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.book-featured__logos span {
  font-size: 0.8rem;
  color: var(--t3);
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.7;
  transition: opacity var(--t);
}
.book-featured__logos span:hover { opacity: 1; color: var(--t2); }
.book-featured__logos-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.1);
}

/* ── SERIES SECTION ──────────────────────────────────────────────── */
.series__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 2.5rem;
  gap: 2rem;
}
.series__featured {
  position: relative;
  border-radius: var(--rl);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.series__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* ── VIDEO EMBED ─────────────────────────────────────────────────── */
.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg3);
  border-radius: var(--rl);
  overflow: hidden;
  cursor: pointer;
}
.video-embed.video-embed--sm { border-radius: var(--r); }

.video-embed__thumb {
  position: absolute;
  inset: 0;
}
.video-embed__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--ts), filter var(--ts);
}
.video-embed:hover .video-embed__thumb img {
  transform: scale(1.03);
  filter: brightness(0.75);
}
.video-embed__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,12,20,.85) 0%, transparent 50%);
}
.video-embed__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 64px; height: 64px;
  background: rgba(201,168,76,.15);
  border: 2px solid var(--gold-b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), border-color var(--t), transform var(--t);
  backdrop-filter: blur(8px);
}
.video-embed:hover .video-embed__play {
  background: rgba(201,168,76,.3);
  border-color: var(--gold);
  transform: translate(-50%,-50%) scale(1.1);
}
.video-embed__play svg {
  width: 28px; height: 28px;
  color: var(--gold);
  margin-right: -2px;
}
.video-embed--sm .video-embed__play {
  width: 42px; height: 42px;
}
.video-embed--sm .video-embed__play svg {
  width: 18px; height: 18px;
}

.video-embed__info {
  position: absolute;
  bottom: 0; right: 0; left: 0;
  padding: 1.5rem 1.2rem 1.2rem;
}
.video-embed__info h4 {
  font-family: var(--fhe);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 0.3rem;
}
.video-embed__info span {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.video-embed__info--sm h4 { font-size: 0.8rem; }

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── QUOTE SECTION ───────────────────────────────────────────────── */
.quotes { background: var(--bg3); }

.quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.quote-card {
  background: var(--bg4);
  border: 1px solid var(--gold-b);
  border-radius: var(--rl);
  padding: 2rem 1.8rem;
  position: relative;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.quote-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--sg);
}
.quote-card__mark {
  font-family: var(--fen);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem; right: 1.5rem;
  font-style: normal;
}
.quote-card__text {
  font-family: var(--fdisp);
  font-size: 1rem;
  font-style: italic;
  color: var(--t1);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.quote-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.quote-card__author strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cream);
}
.quote-card__author span {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.quote-intl {
  background: var(--bg5);
  border: 1px solid var(--gold-b);
  border-radius: var(--rl);
  padding: 2.5rem 2.5rem;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  direction: ltr;
}
.quote-intl__item blockquote {
  font-family: var(--fen);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--t1);
  border-right: none;
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
  padding-right: 0;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.quote-intl__item cite {
  font-style: normal;
  font-family: var(--fui);
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  display: block;
}
.quote-intl__item cite span {
  display: block;
  color: var(--t2);
  font-weight: 400;
  margin-top: 0.15rem;
}

/* ── PODCAST CARDS ───────────────────────────────────────────────── */
.podcast-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--rl);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
  display: flex;
  flex-direction: column;
}
.podcast-card:hover {
  border-color: var(--gold-b);
  transform: translateY(-4px);
}
.podcast-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.podcast-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--ts);
}
.podcast-card:hover .podcast-card__thumb img { transform: scale(1.04); }
.podcast-card__thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,12,20,.7), transparent);
}
.podcast-card__body {
  padding: 1.3rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.podcast-card__topic {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.podcast-card__title {
  font-family: var(--fhe);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--t1);
  line-height: 1.4;
  margin-bottom: 0.7rem;
  flex: 1;
}
.podcast-card__desc {
  font-size: 0.84rem;
  color: var(--t2);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.podcast-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.podcast-card__host {
  font-size: 0.72rem;
  color: var(--t3);
}
.podcast-card__listen {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--t);
}
.podcast-card__listen:hover { gap: 0.7rem; }
.podcast-card__listen svg { width: 14px; height: 14px; transform: rotate(180deg); }

/* ── ARTICLE CARDS ───────────────────────────────────────────────── */
.article-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--rl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), transform var(--t);
}
.article-card:hover {
  border-color: var(--gold-b);
  transform: translateY(-4px);
}
.article-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
}
.article-card--featured .article-card__body { padding: 2rem 2.5rem; }
.article-card__img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.article-card--featured .article-card__img {
  width: 45%;
  flex-shrink: 0;
  aspect-ratio: auto;
}
.article-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--ts);
}
.article-card:hover .article-card__img img { transform: scale(1.04); }
.article-card__body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-card__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}
.article-card__cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.article-card__date {
  font-size: 0.72rem;
  color: var(--t3);
}
.article-card__read {
  font-size: 0.72rem;
  color: var(--t3);
  margin-right: auto;
}
.article-card__title {
  font-family: var(--fdisp);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 0.7rem;
}
.article-card--featured .article-card__title { font-size: 1.5rem; }
.article-card__excerpt {
  font-size: 0.88rem;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 1rem;
  flex: 1;
}
.article-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--t);
}
.article-card__link:hover { gap: 0.7rem; }
.article-card__link svg { width: 14px; height: 14px; transform: rotate(180deg); }

/* ── LECTURE CARDS ───────────────────────────────────────────────── */
.lecture-card {
  border-radius: var(--rl);
  overflow: hidden;
  transition: transform var(--t);
}
.lecture-card:hover { transform: translateY(-4px); }
.lecture-card__video { position: relative; }
.lecture-card__body {
  background: var(--bg3);
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(255,255,255,.06);
  border-top: none;
  border-radius: 0 0 var(--rl) var(--rl);
}
.lecture-card__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.lecture-card__title {
  font-family: var(--fhe);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--t1);
  line-height: 1.4;
}

/* ── EXPERTISE SECTION ───────────────────────────────────────────── */
.expertise { background: var(--bg2); }
.expertise__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.expertise__item {
  background: var(--bg3);
  border: 1px solid var(--gold-b);
  border-radius: var(--rl);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.expertise__item:hover {
  background: var(--bg4);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.expertise__icon {
  font-size: 2rem;
  margin-bottom: 0.7rem;
  display: block;
}
.expertise__item h4 {
  font-family: var(--fhe);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 0.4rem;
}
.expertise__item p {
  font-size: 0.78rem;
  color: var(--t3);
  line-height: 1.5;
}

/* ── INVITE CTA ──────────────────────────────────────────────────── */
.invite-cta {
  background: var(--bg3);
  border-radius: var(--rl);
  padding: 4rem 3.5rem;
  border: 1px solid var(--gold-b);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.invite-cta::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,.08), transparent 70%);
  pointer-events: none;
}
.invite-cta h2 { margin-bottom: 0.8rem; }
.invite-cta p { max-width: 560px; margin: 0 auto 2rem; }
.invite-cta__topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.topic-tag {
  background: var(--gold-a);
  border: 1px solid var(--gold-b);
  color: var(--gold-l);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}
.invite-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--fhe);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  border-radius: var(--r);
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-l);
  border-color: var(--gold-l);
  box-shadow: 0 8px 24px rgba(201,168,76,.25);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-b);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-a);
  color: var(--gold-l);
}

.btn-ghost {
  background: rgba(255,255,255,.05);
  color: var(--t1);
  border-color: rgba(255,255,255,.08);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
}

.btn-dark {
  background: var(--bg3);
  color: var(--t1);
  border-color: rgba(255,255,255,.08);
}
.btn-dark:hover { background: var(--bg4); }

.btn--sm { padding: 0.45rem 1.1rem; font-size: 0.82rem; }
.btn--lg { padding: 0.9rem 2.2rem; font-size: 1rem; }

.btn svg { width: 16px; height: 16px; }

/* ── CONTACT SECTION ─────────────────────────────────────────────── */
.contact-cta {
  background: var(--bg2);
}
.contact-card {
  background: var(--bg3);
  border: 1px solid var(--gold-b);
  border-radius: var(--rl);
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.contact-card__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--gold-b);
}
.contact-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.contact-card__info { flex: 1; }
.contact-card__name {
  font-family: var(--fdisp);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.contact-card__title {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.contact-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.contact-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--t2);
  transition: color var(--t);
}
.contact-card__link:hover { color: var(--gold); }
.contact-card__link svg { width: 14px; height: 14px; color: var(--gold); }

/* Contact form */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--t2);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 0.75rem 1rem;
  color: var(--t1);
  font-size: 0.92rem;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-b);
  box-shadow: 0 0 0 3px rgba(201,168,76,.08);
  outline: none;
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer {
  background: var(--bg5);
  border-top: 1px solid rgba(201,168,76,.1);
  padding: 3rem 0 1.5rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 1.5rem;
  align-items: start;
}
.footer__brand {}
.footer__logo {
  font-family: var(--fdisp);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 0.3rem;
}
.footer__slogan {
  font-size: 0.78rem;
  color: var(--t3);
  line-height: 1.6;
  max-width: 240px;
}
.footer__col h5 {
  font-family: var(--fhe);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a {
  font-size: 0.85rem;
  color: var(--t3);
  transition: color var(--t);
}
.footer__col a:hover { color: var(--t1); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.75rem;
  color: var(--t3);
}
.footer__copy a { color: var(--gold); }
.footer__lang {
  display: flex;
  gap: 0.5rem;
  direction: ltr;
}
.footer__lang a {
  font-size: 0.75rem;
  color: var(--t3);
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  transition: color var(--t), border-color var(--t);
}
.footer__lang a:hover, .footer__lang a.active {
  color: var(--gold);
  border-color: var(--gold-b);
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  background: var(--bg2);
  position: relative;
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero .section-label { display: block; margin-bottom: 0.8rem; }
.page-hero h1 { margin-bottom: 0.8rem; }
.page-hero p { max-width: 640px; }

/* ── LOGO STRIP ──────────────────────────────────────────────────── */
.logo-strip {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.logo-strip__item {
  padding: 0.4rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--t3);
  letter-spacing: 0.08em;
  border-left: 1px solid rgba(255,255,255,.08);
  transition: color var(--t);
}
.logo-strip__item:first-child { border-left: none; }
.logo-strip__item:hover { color: var(--t2); }

/* ── PRESS KIT ───────────────────────────────────────────────────── */
.presskit__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
}
.presskit__sidebar {}
.presskit__photo-card {
  background: var(--bg3);
  border: 1px solid var(--gold-b);
  border-radius: var(--rl);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.presskit__photo-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.presskit__photo-card-footer {
  padding: 1rem 1.2rem;
}
.presskit__downloads { display: flex; flex-direction: column; gap: 0.6rem; }
.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r);
  font-size: 0.84rem;
  color: var(--t2);
  transition: border-color var(--t), color var(--t);
  text-decoration: none;
}
.download-item:hover { border-color: var(--gold-b); color: var(--t1); }
.download-item__icon { color: var(--gold); }
.download-item svg { width: 16px; height: 16px; }

/* ── ANIMATIONS ──────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}
@keyframes shimmer {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,.3); }
  50%       { box-shadow: 0 0 0 12px rgba(201,168,76,.0); }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--ts), transform var(--ts);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Gold shimmer text */
.text-gold {
  color: var(--gold);
}
.text-gold-shimmer {
  background: linear-gradient(90deg, var(--gold-d), var(--gold-l), var(--gold-d));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.text-cream { color: var(--cream); }
.text-muted { color: var(--t2); }

/* Divider */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem auto;
  border-radius: 2px;
}
.divider--right { margin: 1.2rem 0; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}
.badge-gold {
  background: var(--gold);
  color: var(--bg);
}
.badge-outline {
  background: var(--gold-a);
  border: 1px solid var(--gold-b);
  color: var(--gold-l);
}
.badge-red {
  background: rgba(139,31,31,.2);
  border: 1px solid rgba(192,57,43,.3);
  color: var(--red-l);
}

/* Empty state / placeholder */
.placeholder-thumb {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--t3);
  font-size: 0.78rem;
}
.placeholder-thumb svg { width: 32px; height: 32px; opacity: 0.4; }

/* ── UTILITY ─────────────────────────────────────────────────────── */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.py-1 { padding-top: 1rem; padding-bottom: 1rem; }
.text-center { text-align: center; }
.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr 340px; gap: 2rem; }
  .book-featured__grid { grid-template-columns: 350px 1fr; gap: 2.5rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .expertise__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .presskit__grid { grid-template-columns: 260px 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__actions .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__portrait { display: none; }
  .hero__bg-overlay {
    background: linear-gradient(to bottom, rgba(9,12,20,.9) 0%, rgba(9,12,20,.7) 100%);
  }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .about-preview__grid { grid-template-columns: 1fr; }
  .about-preview__photo { display: none; }
  .book-featured__grid { grid-template-columns: 1fr; }
  .book-featured__cover { max-width: 280px; margin: 0 auto; min-width: 0; }
  .book-featured__text { min-width: 0; overflow-wrap: break-word; word-break: break-word; }
  .series__grid { grid-template-columns: repeat(2, 1fr); }
  .quotes__grid { grid-template-columns: 1fr; }
  .quote-intl { grid-template-columns: 1fr; direction: rtl; }
  .quote-intl__item blockquote { border-left: none; border-right: 3px solid var(--gold); padding-right: 1.2rem; padding-left: 0; }
  .presskit__grid { grid-template-columns: 1fr; }
  .contact-card { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  :root { --nav-h: 60px; }
  .grid-3 { grid-template-columns: 1fr; }
  .series__grid { grid-template-columns: 1fr; }
  .expertise__grid { grid-template-columns: 1fr 1fr; }
  .credentials__inner { flex-direction: column; gap: 0.5rem; }
  .credentials__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); width: 100%; justify-content: center; }
  .footer__top { grid-template-columns: 1fr; gap: 1.5rem; }
  .invite-cta { padding: 2rem 1.5rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .article-card--featured { flex-direction: column; }
  .article-card--featured .article-card__img { width: 100%; aspect-ratio: 16/9; }
  .about-preview__stats { grid-template-columns: 1fr 1fr; }
  /* Fix about heading size and nowrap on mobile */
  .about-preview__text h2 { font-size: clamp(1.35rem, 5.5vw, 2rem) !important; }
  .about-preview__text h2 span { white-space: normal !important; }
  /* Fix nowrap text overflow in page heroes and section heads */
  .page-hero p, .section-head p { white-space: normal !important; }
  /* Fix book section */
  .book-featured__cover { max-width: 220px; }
  .book-featured__text .flex { flex-direction: column; align-items: stretch; }
  .book-featured__text .flex .btn { width: 100%; text-align: center; justify-content: center; }
}

@media (max-width: 420px) {
  .expertise__grid { grid-template-columns: 1fr; }
  .hero__badge { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .hero__badge span.dot { display: none; }
}

/* ── ENGLISH LTR OVERRIDES ───────────────────────────────────────── */
html[lang="en"] {
  direction: ltr;
}
html[lang="en"] body {
  font-family: var(--fui);
}
html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] h4 {
  font-family: var(--fen);
}
html[lang="en"] .nav__logo-name { font-family: var(--fen); }
html[lang="en"] .section-label {
  letter-spacing: 0.2em;
  font-family: var(--fui);
}
html[lang="en"] blockquote {
  border-right: none;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  padding-right: 0;
}
html[lang="en"] .nav__link::after { transform-origin: right; }
html[lang="en"] .nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
html[lang="en"] .footer__top { direction: ltr; }
html[lang="en"] .credentials__item { border-right: none; border-left: 1px solid rgba(255,255,255,.06); }
html[lang="en"] .credentials__item:last-child { border-left: none; }
html[lang="en"] .quote-intl { direction: ltr; }
html[lang="en"] .hero__bg-overlay {
  background: linear-gradient(
    75deg,
    rgba(9,12,20,.96) 0%,
    rgba(9,12,20,.85) 45%,
    rgba(9,12,20,.3) 100%
  );
}

/* ── VIDEO GRID ──────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.video-card {}
.video-card .video-embed {
  aspect-ratio: 16/9;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: var(--bg3);
  overflow: hidden;
}
.video-card__info h3 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
  line-height: 1.4;
}
.video-card__info p { font-size: 0.82rem; color: var(--t2); }

.video-embed--featured {
  aspect-ratio: 16/9;
  max-width: 860px;
  margin: 0 auto;
}

/* ── GENERIC CARDS GRID ──────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--bg3);
  border: 1px solid var(--gold-b);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.card:hover { border-color: var(--gold); transform: translateY(-3px); }
.card__body { padding: 1.6rem; }
.card__icon {
  padding: 1.5rem 1.5rem 0;
  margin-bottom: 0.5rem;
}
.card__title {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.card--topic .card__title { font-size: 1.25rem; }
.card__text { font-size: 0.85rem; color: var(--t2); line-height: 1.7; }
.card__meta {
  display: inline-block;
  font-size: 0.75rem;
  margin-bottom: 0.6rem;
}
.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}
.card__tags span {
  font-size: 0.72rem;
  background: rgba(201,168,76,.1);
  color: var(--gold);
  border: 1px solid var(--gold-b);
  border-radius: 20px;
  padding: 0.15rem 0.6rem;
}
.card__num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(201,168,76,.15);
  font-family: var(--fdisp);
  padding: 1rem 1.5rem 0;
  line-height: 1;
}
.card--topic { display: flex; flex-direction: column; }
.card--topic .card__num { flex-shrink: 0; }
.card--media { display: flex; flex-direction: column; }

/* ── SECTION CTA ─────────────────────────────────────────── */
.section--cta {
  background: linear-gradient(135deg, var(--bg2) 0%, #0e1020 100%);
  border-top: 1px solid var(--gold-b);
  border-bottom: 1px solid var(--gold-b);
}

/* ── CREDENTIALS STRIP (EN alias) ───────────────────────── */
.cred-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.cred-item__icon { font-size: 1.4rem; }
.cred-item strong { display: block; color: var(--cream); font-size: 0.9rem; }
.cred-item span { display: block; color: var(--t2); font-size: 0.75rem; }

/* ── RESPONSIVE ADDITIONS ────────────────────────────────── */
@media (max-width: 900px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER CREDIT ───────────────────────────────────────────────── */
.footer__credit {
  border-top: 1px solid rgba(201,168,76,.1);
  padding: 0.6rem 2rem 0.75rem;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.footer__credit p {
  margin: 0;
  line-height: 1.6;
}
.footer__credit-he {
  font-size: 0.72rem;
  color: var(--t3);
  direction: rtl;
}
.footer__credit-brand {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  direction: ltr;
  letter-spacing: 0.03em;
}
.footer__credit-en {
  font-size: 0.65rem;
  color: var(--t3);
  opacity: 0.65;
  direction: ltr;
  letter-spacing: 0.04em;
}
.footer__credit strong {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.72rem;
}
.footer__credit-sep { opacity: 0.35; }

/* Print */
@media print {
  .nav, .hero__scroll, .btn, footer { display: none !important; }
  body { background: white; color: black; }
}
