/* The Cedar Room */
:root {
  --ink: #080706;
  --ash: #100e0c;
  --leather: #1a1612;
  --line: rgba(207, 166, 106, .18);
  --line-hi: rgba(207, 166, 106, .45);
  --brass: #cfa66a;
  --brass-hi: #e6c98f;
  --cedar: #2f4a3a;
  --cream: #efe6d6;
  --muted: #a39884;
  --dim: #6b6252;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --caps: "Cinzel", "Cormorant Garamond", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --gutter: clamp(16px, 4vw, 48px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}
html[lang="ar"] {
  --serif: "Amiri", "Times New Roman", serif;
  --sans: "IBM Plex Sans Arabic", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; -webkit-text-size-adjust: 100%; }
body { background: var(--ink); color: var(--cream); font-family: var(--sans); font-weight: 300; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: clip; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--brass); color: var(--ink); }
:focus-visible { outline: 1px solid var(--brass-hi); outline-offset: 4px; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: fixed; top: 16px; inset-inline-start: 16px; z-index: 200; background: var(--brass); color: var(--ink); padding: 10px 16px; font-size: 13px; transform: translateY(-200%); opacity: 0; }
.skip:focus { transform: none; opacity: 1; }
.center { text-align: center; margin-top: 64px; }

/* type */
.eyebrow { font-size: 11px; letter-spacing: .38em; text-transform: uppercase; color: var(--brass); font-weight: 500; }
h1, h2, h3 { font-family: var(--serif); font-weight: 300; line-height: 1.08; }
h2 { font-size: clamp(40px, 5.5vw, 72px); margin-top: 18px; }
h1 em, h2 em { font-style: italic; color: var(--brass-hi); }
html[lang="ar"] * { letter-spacing: 0 !important; }
html[lang="ar"] em, html[lang="ar"] blockquote, html[lang="ar"] .marquee-track { font-style: normal !important; }
html[lang="ar"] .eyebrow { font-size: 14px; }
html[lang="ar"] h1, html[lang="ar"] h2 { line-height: 1.35; font-weight: 400; }
html[lang="ar"] body { line-height: 1.9; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 16px 30px; border: 1px solid var(--brass); color: var(--brass-hi); font-size: 12px; letter-spacing: .28em; text-transform: uppercase; font-weight: 500; transition: background .4s var(--ease), color .4s var(--ease); }
.btn svg { width: 14px; height: 14px; fill: currentColor; }
.btn:hover { background: var(--brass); color: var(--ink); }
.btn.solid { background: var(--brass); color: var(--ink); }
.btn.solid:hover { background: var(--brass-hi); }
.btn[disabled] { opacity: .6; cursor: progress; }
html[lang="ar"] .btn { font-size: 15px; }
.text-link { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: 4px; transition: color .3s, border-color .3s; }
.text-link:hover { color: var(--brass-hi); border-color: var(--brass); }
html[lang="ar"] .text-link { font-size: 14px; }

.anchor-rule { display: flex; align-items: center; gap: 14px; margin: 30px 0; }
.anchor-rule::before, .anchor-rule::after { content: ""; height: 1px; width: 48px; background: var(--brass); opacity: .7; }
.anchor-rule.center { justify-content: center; }
.i-anchor { width: 16px; height: 18px; stroke: var(--brass); fill: none; stroke-width: 1.3; }

section { padding: clamp(90px, 12vw, 160px) 0; position: relative; }

/* reveal on scroll */
.js .rv { opacity: 0; transform: translateY(22px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .rv.in { opacity: 1; transform: none; }

/* ---------- nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; padding: 18px 0; transition: background .4s, padding .4s, border-color .4s; background: linear-gradient(to bottom, rgba(8, 7, 6, .9), rgba(8, 7, 6, 0)); border-bottom: 1px solid transparent; }
.nav.is-solid, .is-sub .nav { background: rgba(8, 7, 6, .94); border-bottom-color: var(--line); padding: 12px 0; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.nav-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 44px; width: auto; }
.brand span { font-family: var(--caps); font-size: 15px; letter-spacing: .3em; text-transform: uppercase; color: var(--brass-hi); white-space: nowrap; }
.nav-links { display: flex; gap: 30px; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.nav-links a { transition: color .3s; }
.nav-links a:hover { color: var(--brass-hi); }
html[lang="ar"] .nav-links { font-size: 15px; }
.nav-tools { display: flex; align-items: center; gap: 10px; }
.lang-switch { border: 1px solid var(--line-hi); padding: 7px 14px; font-size: 12px; letter-spacing: .12em; color: var(--brass-hi); transition: background .3s, color .3s; }
.lang-switch:hover { background: var(--brass); color: var(--ink); }
.lang-switch[lang="ar"] { font-family: "IBM Plex Sans Arabic", var(--sans); font-size: 14px; padding: 5px 14px; }
.lang-switch[lang="en"] { font-family: "Manrope", system-ui, sans-serif; }
.burger { display: none; width: 44px; height: 36px; border: 1px solid var(--line); position: relative; }
.burger i { position: absolute; left: 12px; right: 12px; height: 1px; background: var(--brass-hi); }
.burger i:first-child { top: 13px; }
.burger i:last-child { top: 21px; }
@media (max-width: 1020px) { .nav-links { display: none; } .burger { display: block; } }
@media (max-width: 480px) { .brand span { display: none; } }

.menu { position: fixed; inset: 0; z-index: 60; background: rgba(8, 7, 6, .98); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s; }
.menu.is-open { opacity: 1; visibility: visible; }
.menu > img { width: 60px; height: auto; margin-bottom: 26px; }
.menu nav { display: flex; flex-direction: column; }
.menu nav a { font-family: var(--serif); font-size: 40px; font-weight: 300; line-height: 1.4; }
.menu nav a:hover { color: var(--brass-hi); }
.menu-social { margin-top: 34px; display: flex; gap: 26px; font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--brass); }
.menu-close { position: absolute; top: 18px; inset-inline-end: var(--gutter); width: 44px; height: 36px; border: 1px solid var(--line); color: var(--brass-hi); font-size: 16px; }
body.menu-open { overflow: hidden; }

/* ---------- hero ---------- */
.hero { min-height: 100vh; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 130px 0 110px; overflow: hidden; background: var(--ink); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.55) sepia(.25) brightness(.62) contrast(1.05); opacity: 0; transition: opacity 1.6s var(--ease); }
.hero-video.is-ready { opacity: 1; }
.no-video .hero-video { opacity: 1; }
.hero-shade { position: absolute; inset: 0; background:
  radial-gradient(ellipse 55% 50% at 50% 45%, rgba(8, 7, 6, .25), rgba(8, 7, 6, .82) 75%),
  linear-gradient(180deg, rgba(8, 7, 6, .75) 0%, rgba(8, 7, 6, .25) 30%, rgba(8, 7, 6, .35) 65%, var(--ink) 100%); }
.hero-in { position: relative; }
.hero-logo { width: min(330px, 66vw); height: auto; margin: 0 auto; filter: drop-shadow(0 0 40px rgba(0, 0, 0, .6)); animation: rise 1.8s var(--ease) both; }
.hero-eyebrow { margin-top: 40px; animation: rise 1.8s .2s var(--ease) both; }
.hero-lede { max-width: 560px; margin: 20px auto 0; color: #cdbfa8; font-size: 17px; animation: rise 1.8s .35s var(--ease) both; }
html[lang="ar"] .hero-lede { font-size: 19px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 40px; animation: rise 1.8s .5s var(--ease) both; }
.scroll-cue { position: absolute; left: 50%; bottom: 24px; width: 1px; height: 56px; background: linear-gradient(var(--brass), transparent); }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } }
@media (max-width: 700px) { .scroll-cue { display: none; } .hero-ctas .btn { width: min(320px, 100%); } }

/* ---------- marquee ---------- */
.marquee { direction: ltr; border-block: 1px solid var(--line); padding: 22px 0; overflow: hidden; white-space: nowrap; background: var(--ash); }
.marquee-track { display: inline-flex; align-items: center; animation: marquee 48s linear infinite; font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--muted); }
.marquee-track b { color: var(--brass); font-weight: 300; margin: 0 34px; font-size: 16px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- latest ---------- */
.latest h2 { margin-bottom: 60px; }
.latest-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
@media (max-width: 900px) { .latest-grid { grid-template-columns: 1fr; } }
.player { position: relative; aspect-ratio: 16 / 9; border: 1px solid var(--line); background: var(--leather); overflow: hidden; cursor: pointer; }
.player-thumb { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) brightness(.8); transition: transform 1.2s var(--ease), filter .6s; }
.player:hover .player-thumb { transform: scale(1.03); filter: saturate(1) brightness(.9); }
.player-btn { position: absolute; top: 50%; left: 50%; width: 86px; height: 86px; margin: -43px 0 0 -43px; border: 1px solid var(--brass); border-radius: 50%; display: grid; place-items: center; background: rgba(8, 7, 6, .45); transition: background .4s; }
.player-btn svg { width: 26px; height: 26px; fill: var(--brass-hi); margin-left: 4px; transition: fill .4s; }
.player:hover .player-btn { background: var(--brass); }
.player:hover .player-btn svg { fill: var(--ink); }
.player-tag { position: absolute; top: 18px; inset-inline-start: 18px; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; background: var(--ink); padding: 8px 12px; color: var(--brass); }
.player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.meta { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.meta span:empty { display: none; }
html[lang="ar"] .meta { font-size: 14px; }
.latest-info h3 { font-size: clamp(32px, 3.4vw, 48px); margin-bottom: 18px; }
.latest-info p { color: var(--muted); display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.latest-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px 30px; }

/* ---------- about ---------- */
.about { background: var(--ash); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about p { color: var(--muted); font-size: 17px; margin-bottom: 22px; }
.about blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(28px, 3vw, 40px); line-height: 1.3; color: var(--cream); border-inline-start: 1px solid var(--brass); padding-inline-start: 28px; margin-top: 40px; }

/* ---------- hosts ---------- */
.hosts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 64px; }
@media (max-width: 960px) { .hosts-grid { grid-template-columns: 1fr; } }
.host { display: grid; grid-template-columns: minmax(180px, 240px) 1fr; gap: 32px; border: 1px solid var(--line); padding: 28px; align-items: center; transition: border-color .4s; }
.host:hover { border-color: var(--line-hi); }
@media (max-width: 560px) { .host { grid-template-columns: 1fr; padding: 20px; } }
.host-photo { aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--line); background: var(--leather); }
.host-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.host:hover .host-photo img { transform: scale(1.03); }
.host-role { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--brass); font-weight: 500; }
html[lang="ar"] .host-role { font-size: 14px; }
.host h3 { font-size: 36px; margin: 8px 0 16px; }
.host-body p:last-child { color: var(--muted); font-size: 15px; }

/* ---------- guests ---------- */
.guests { background: var(--ash); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 64px; }
.guest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 28px; }
.guest { display: block; }
.guest-portrait { position: relative; aspect-ratio: 3 / 4; border: 1px solid var(--line); overflow: hidden; background: var(--leather); transition: border-color .6s; }
.guest-portrait img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(.8) contrast(1.05); transition: filter .8s var(--ease), transform 1.2s var(--ease); }
.guest-portrait.is-still img { object-position: 50% 40%; }
.guest-portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 7, 6, 0) 40%, rgba(8, 7, 6, .94)); pointer-events: none; }
.guest:hover .guest-portrait, .guest:focus-visible .guest-portrait { border-color: var(--brass); }
.guest:hover .guest-portrait img, .guest:focus-visible .guest-portrait img { filter: grayscale(0) brightness(.9); transform: scale(1.03); }
.guest-ep { position: absolute; z-index: 1; top: 16px; inset-inline-start: 16px; font-size: 10px; letter-spacing: .3em; color: var(--brass); text-transform: uppercase; background: rgba(8, 7, 6, .6); padding: 6px 10px; }
html[lang="ar"] .guest-ep { font-size: 13px; }
.guest-info { position: absolute; z-index: 1; left: 22px; right: 22px; bottom: 22px; }
.guest h3 { font-size: 30px; font-weight: 400; line-height: 1.1; }
.guest-cigar { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); font-family: var(--serif); font-style: italic; color: var(--brass-hi); font-size: 18px; line-height: 1.35; }
.guest-cigar span { font-family: var(--sans); font-style: normal; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 2px; }
html[lang="ar"] .guest-cigar span { font-size: 13px; }
.guest-cigar bdi { font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; }
.guest-watch { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--cream); }
.guest-watch svg { width: 11px; height: 11px; fill: var(--brass); }
html[lang="ar"] .guest-watch { font-size: 13px; }
@media (hover: hover) {
  .guest-more { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .6s var(--ease), opacity .5s var(--ease); }
  .guest-more > div { overflow: hidden; }
  .guest:hover .guest-more, .guest:focus-visible .guest-more { grid-template-rows: 1fr; opacity: 1; }
}
.guests-all { padding-top: 0; }
.cta-band { text-align: center; margin-top: 100px; }
.cta-band p { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 44px); margin-bottom: 30px; }

/* ---------- channels ---------- */
.channel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 60px; }
@media (max-width: 800px) { .channel-grid { grid-template-columns: 1fr; } }
.channel { border: 1px solid var(--line); padding: clamp(30px, 4vw, 54px); transition: border-color .4s, background .4s; display: block; }
.channel:hover { border-color: var(--brass); background: rgba(207, 166, 106, .04); }
.channel svg { width: 34px; height: 34px; fill: var(--brass); }
.channel h3 { font-size: 44px; margin: 26px 0 6px; }
.channel p { color: var(--muted); }
.channel span { display: inline-block; margin-top: 30px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--brass-hi); }
.ig-label { margin: 56px 0 18px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
html[lang="ar"] .ig-label { font-size: 14px; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
@media (max-width: 800px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
.ig-tile { position: relative; aspect-ratio: 1; overflow: hidden; background: linear-gradient(135deg, #221b14, #0f0c0a); border: 1px solid var(--line); display: block; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .6s; filter: saturate(.85); }
.ig-tile:hover img { transform: scale(1.06); filter: saturate(1); }
.ig-tile::after { content: ""; position: absolute; inset: 0; border: 1px solid transparent; transition: border-color .4s; }
.ig-tile:hover::after { border-color: var(--brass); }

/* ---------- privé ---------- */
.prive { padding: 80px 0; border-block: 1px solid var(--line); background: var(--ash); }
.prive-in { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; }
.prive img { width: min(300px, 70vw); height: auto; opacity: .92; }
.prive-place { color: var(--muted); font-size: 13px; letter-spacing: .3em; text-transform: uppercase; }
html[lang="ar"] .prive-place { font-size: 15px; }

/* ---------- faq ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 0; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary h3 { font-size: clamp(22px, 2.2vw, 28px); font-weight: 400; line-height: 1.3; transition: color .3s; }
.faq summary:hover h3, .faq details[open] summary h3 { color: var(--brass-hi); }
.faq-icon { position: relative; flex: none; width: 34px; height: 34px; border: 1px solid var(--line-hi); border-radius: 50%; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 1px; margin: -.5px 0 0 -6px; background: var(--brass); transition: transform .4s var(--ease); }
.faq-icon::after { transform: rotate(90deg); }
.faq details[open] .faq-icon::after { transform: rotate(0); }
.faq details p { color: var(--muted); padding: 0 0 28px; max-width: 640px; }

/* ---------- forms ---------- */
.anchor-target { position: absolute; top: 0; }
.forms h2 { margin-bottom: 50px; }
.tabs { display: flex; border-bottom: 1px solid var(--line); margin-bottom: 56px; flex-wrap: wrap; }
.tab { padding: 18px 0; margin-inline-end: 48px; font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); color: var(--muted); border-bottom: 1px solid transparent; margin-bottom: -1px; transition: color .3s, border-color .3s; }
.tab.is-on { color: var(--cream); border-bottom-color: var(--brass); }
.forms-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(40px, 6vw, 100px); }
@media (max-width: 900px) { .forms-grid { grid-template-columns: 1fr; } }
.forms aside p { color: var(--muted); margin-bottom: 20px; }
.forms aside ul { list-style: none; color: var(--muted); font-size: 14px; }
.forms aside li { padding: 12px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.forms aside li::before { content: "✦"; color: var(--brass); font-size: 9px; }
.forms .direct { margin-top: 30px; }
.forms .direct a { color: var(--brass-hi); }
.cr-form { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 28px; }
.cr-form[hidden] { display: none; }
.cr-form .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .cr-form { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--brass); margin-bottom: 10px; font-weight: 500; }
html[lang="ar"] .field label { font-size: 14px; }
.field input, .field textarea, .field select { width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; color: var(--cream); font: inherit; font-size: 16px; padding: 10px 0; outline: none; transition: border-color .3s; -webkit-appearance: none; appearance: none; }
html[lang="ar"] .field input[dir="ltr"] { text-align: right; }
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%), linear-gradient(135deg, var(--brass) 50%, transparent 50%); background-position: calc(100% - 12px) 55%, calc(100% - 7px) 55%; background-size: 5px 5px; background-repeat: no-repeat; cursor: pointer; }
html[dir="rtl"] .field select { background-position: 12px 55%, 7px 55%; }
.field select option { background: var(--ink); color: var(--cream); }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--brass); }
.field.is-invalid input, .field.is-invalid textarea { border-bottom-color: #c9735a; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.form-msg { font-size: 14px; color: #d79a7f; }
.hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; opacity: 0; pointer-events: none; }
.form-thanks { border: 1px solid var(--line); padding: clamp(30px, 5vw, 60px); }
.thanks-title { font-family: var(--serif); font-size: clamp(36px, 4vw, 52px); color: var(--brass-hi); }
.thanks-text { color: var(--muted); margin: 10px 0 30px; }

/* ---------- sub pages ---------- */
.page-head { padding: clamp(150px, 18vw, 220px) 0 clamp(50px, 7vw, 90px); }
.page-head h1 { font-size: clamp(52px, 8vw, 110px); margin-top: 18px; }
.page-lede { max-width: 560px; color: var(--muted); font-size: 17px; margin-top: 24px; }
.episodes { padding-top: 0; }
.ep-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 48px 28px; }
@media (max-width: 400px) { .ep-grid { grid-template-columns: 1fr; } }
.ep-card { display: block; }
.ep-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid var(--line); background: var(--leather); transition: border-color .4s; }
.ep-thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) brightness(.8); transition: transform 1.2s var(--ease), filter .6s; }
.ep-play { position: absolute; inset: 0; margin: auto; width: 60px; height: 60px; border-radius: 50%; border: 1px solid var(--brass); display: grid; place-items: center; background: rgba(8, 7, 6, .45); transition: background .4s; }
.ep-play svg { width: 20px; height: 20px; fill: var(--brass-hi); margin-left: 3px; }
.ep-card:hover .ep-thumb { border-color: var(--brass); }
.ep-card:hover .ep-thumb img { transform: scale(1.04); filter: saturate(1) brightness(.9); }
.ep-card:hover .ep-play { background: var(--brass); }
.ep-card:hover .ep-play svg { fill: var(--ink); }
.ep-meta { margin-top: 20px; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--brass); }
html[lang="ar"] .ep-meta { font-size: 13px; }
.ep-card h3 { font-size: 26px; margin-top: 8px; line-height: 1.25; }

/* ---------- modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; background: rgba(8, 7, 6, .94); display: grid; place-items: center; padding: var(--gutter); }
.modal[hidden] { display: none; }
.modal-frame { position: relative; width: min(1200px, 100%); aspect-ratio: 16 / 9; border: 1px solid var(--line); background: #000; }
.modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.modal-close { position: absolute; top: 18px; inset-inline-end: var(--gutter); width: 44px; height: 36px; border: 1px solid var(--line); color: var(--brass-hi); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 90px 0 40px; background: var(--ash); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.footer-big { font-family: var(--serif); font-size: clamp(46px, 9vw, 130px); line-height: .95; font-weight: 300; }
html[lang="ar"] .footer-big { line-height: 1.3; }
.footer-big em { font-style: italic; color: var(--brass-hi); }
.footer-top img { width: 72px; height: auto; opacity: .9; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 70px; font-size: 14px; color: var(--muted); }
@media (max-width: 800px) { .footer-cols { grid-template-columns: 1fr 1fr; } .footer-cols > div:nth-child(3) { grid-column: 1 / -1; order: 5; } }
.footer-cols h2 { font-family: var(--sans); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--brass); font-weight: 500; margin: 0 0 16px; line-height: 1.4; }
html[lang="ar"] .footer-cols h2 { font-size: 14px; }
.footer-cols a { display: block; margin-bottom: 8px; transition: color .3s; overflow-wrap: anywhere; }
.footer-cols a:hover { color: var(--cream); }
.legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 70px; padding-top: 26px; border-top: 1px solid var(--line); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); }
html[lang="ar"] .legal { font-size: 13px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .rv { opacity: 1; transform: none; }
}
.faq + .forms { border-top: 1px solid var(--line); }
