/* ===========================================================
   k.eltinaé — literary nocturne
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Space+Grotesk:wght@400;500;600&family=Noto+Naskh+Arabic:wght@400;500;600&family=Noto+Kufi+Arabic:wght@400;500&display=swap');

:root {
  /* palette — deep warm ink */
  --ink:        #0c0b0a;
  --ink-2:      #14110e;
  --ink-3:      #1c1814;
  --ivory:      #f3ece0;
  --ivory-dim:  #c9bfae;
  --muted:      #8a8073;
  --line:       rgba(243, 236, 224, 0.14);
  --line-soft:  rgba(243, 236, 224, 0.08);

  /* accents */
  --gold:       #cda349;
  --gold-soft:  #e3c478;
  --ember:      #c2552f;
  --ember-soft: #e07a4e;

  /* type */
  --display: 'Cormorant Garamond', Georgia, serif;
  --serif:   'EB Garamond', Georgia, serif;
  --label:   'Space Grotesk', system-ui, sans-serif;

  /* scale */
  --t-hero:    clamp(4.5rem, 13vw, 13rem);
  --t-h1:      clamp(2.8rem, 6vw, 5.5rem);
  --t-h2:      clamp(2rem, 3.6vw, 3.4rem);
  --t-h3:      clamp(1.5rem, 2.2vw, 2.1rem);
  --t-lead:    clamp(1.35rem, 1.9vw, 1.85rem);
  --t-body:    clamp(1.08rem, 1.25vw, 1.25rem);
  --t-label:   0.78rem;

  /* rhythm */
  --pad-x:     clamp(1.5rem, 6vw, 9rem);
  --sec-y:     clamp(6rem, 11vw, 12rem);
  --maxw:      1320px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: var(--t-body);
  line-height: 1.62;
  text-transform: lowercase;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle film grain over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--gold); color: var(--ink); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ---------- shared type helpers ---------- */
.label {
  font-family: var(--label);
  font-size: var(--t-label);
  letter-spacing: 0.32em;
  text-transform: lowercase;
  color: var(--gold);
  font-weight: 500;
}
.label-muted { color: var(--muted); }

.display { font-family: var(--display); font-weight: 400; line-height: 0.98; letter-spacing: -0.01em; }
.italic { font-style: italic; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.lead {
  font-size: var(--t-lead);
  line-height: 1.5;
  color: var(--ivory-dim);
  font-weight: 400;
}

/* ---------- layout ---------- */
section { position: relative; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-x); }
.section-pad { padding-block: var(--sec-y); }

.rule { height: 1px; background: var(--line-soft); border: 0; }

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem var(--pad-x);
  transition: background .4s ease, border-color .4s ease, padding .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12, 11, 10, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  padding-block: 1rem;
}
.nav__brand {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  color: var(--ivory);
}
.nav__brand .dot { color: var(--gold); }
.nav__links {
  display: flex;
  gap: 2.2rem;
  font-family: var(--label);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
}
.nav__links a {
  color: var(--ivory-dim);
  position: relative;
  white-space: nowrap;
  padding-bottom: 3px;
  transition: color .25s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav__links a:hover { color: var(--ivory); }
.nav__links a:hover::after { width: 100%; }
.nav__toggle { display: none; background: none; border: 0; color: var(--ivory); font-family: var(--label); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: lowercase; cursor: pointer; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 9rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  right: -12vw; top: -10vw;
  background: radial-gradient(circle, rgba(205,163,73,0.16), rgba(205,163,73,0) 62%);
  pointer-events: none;
  z-index: 0;
}
.hero__glow--ember {
  right: auto; left: -18vw; top: auto; bottom: -22vw;
  background: radial-gradient(circle, rgba(194,85,47,0.14), rgba(194,85,47,0) 62%);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 40%; filter: contrast(1.04) brightness(0.9); }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(12,11,10,0.97) 0%, rgba(12,11,10,0.84) 30%, rgba(12,11,10,0.34) 62%, rgba(12,11,10,0.62) 100%),
    linear-gradient(0deg, rgba(12,11,10,0.94), rgba(12,11,10,0) 52%);
}
.hero .wrap { position: relative; z-index: 1; width: 100%; }
.hero__name {
  font-family: var(--display);
  font-weight: 300;
  font-size: var(--t-hero);
  line-height: 0.86;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.hero__name .dot { color: var(--gold); }
.hero__tag {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: var(--t-lead);
  color: var(--ivory-dim);
  margin-top: 1.6rem;
}
.hero__meta {
  margin-top: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.4rem;
  align-items: center;
}
.hero__roles {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--label);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--ivory);
}
.hero__roles span { white-space: nowrap; }
.hero__roles .sep { color: var(--gold); }
.hero__scroll {
  position: absolute;
  bottom: 2.4rem; left: var(--pad-x);
  font-family: var(--label);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: lowercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 1;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 34px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrolldrop 2.2s ease-in-out infinite;
}
@keyframes scrolldrop { 0%,100%{transform:scaleY(.4);transform-origin:top;opacity:.4} 50%{transform:scaleY(1);transform-origin:top;opacity:1} }

/* ===========================================================
   ABOUT
   =========================================================== */
.about { background: var(--ink-2); }
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.about__portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
}
.about__portrait img {
  width: 100%; height: 100%; object-fit: cover; filter: contrast(1.03);
}
.about__portrait::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--gold);
  opacity: 0.4;
  z-index: -1;
}
.about__body h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-h2);
  line-height: 1.06;
  margin: 1.4rem 0 1.8rem;
  letter-spacing: -0.01em;
}
.about__body h2 em { font-style: italic; color: var(--gold-soft); }
.about__body p { margin-bottom: 1.2rem; color: var(--ivory-dim); }
.about__body p strong { color: var(--ivory); font-weight: 500; }
.about__facts {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.fact__num { font-family: var(--display); font-size: clamp(2.2rem,3.5vw,3rem); color: var(--gold); line-height: 1; }
.fact__txt { font-family: var(--label); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: lowercase; color: var(--muted); margin-top: 0.6rem; line-height: 1.5; }

/* ===========================================================
   THE BOOK
   =========================================================== */
.book__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.book__cover {
  width: min(100%, 420px);
  aspect-ratio: 659 / 1000;
  margin-inline: auto;
  position: relative;
  box-shadow: 0 50px 100px -34px rgba(0,0,0,0.9), 0 0 0 1px rgba(243,236,224,0.06);
}
.book__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.book__cover::after {
  content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 14px;
  background: linear-gradient(90deg, rgba(0,0,0,0.32), rgba(255,255,255,0.05) 40%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
.book__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-h1);
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin: 1.6rem 0 0.4rem;
}
.book__title em { font-style: italic; }
.book__sub { color: var(--muted); font-family: var(--label); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: lowercase; }
.book__desc { font-size: var(--t-lead); line-height: 1.5; color: var(--ivory-dim); margin: 2rem 0; }
.book__prizes { list-style: none; margin: 0 0 2.4rem; }
.book__prizes li {
  display: flex; gap: 1rem; align-items: baseline;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line-soft);
}
.book__prizes li:last-child { border-bottom: 1px solid var(--line-soft); }
.book__prizes .yr { font-family: var(--label); font-size: 0.78rem; color: var(--gold); letter-spacing: 0.08em; min-width: 3.4em; }
.book__prizes .pz { color: var(--ivory); }
.book__prizes .pz span { display: block; color: var(--muted); font-size: 0.92rem; }

.buy {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
}
.btn {
  font-family: var(--label);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--line);
  color: var(--ivory);
  transition: all .25s ease;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn:hover { border-color: var(--gold); color: var(--gold-soft); background: rgba(205,163,73,0.06); }
.btn--solid { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--solid:hover { background: var(--gold-soft); color: var(--ink); }

/* ===========================================================
   POEMS
   =========================================================== */
.poems { background: var(--ink-2); }
.poems__head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 4rem; }
.poems__head h2 { font-family: var(--display); font-weight: 300; font-size: var(--t-h1); letter-spacing: -0.015em; }
.poems__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.poem {
  background: var(--ink-2);
  padding: clamp(2rem, 3.5vw, 3.4rem);
  transition: background .35s ease;
}
.poem:hover { background: var(--ink-3); }
.poem__no { font-family: var(--label); font-size: 0.74rem; letter-spacing: 0.2em; color: var(--gold); }
.poem__title { font-family: var(--display); font-style: italic; font-weight: 400; font-size: var(--t-h3); margin: 1rem 0 1.4rem; color: var(--ivory); }
.poem__verse {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.3rem, 1.7vw, 1.65rem);
  line-height: 1.5;
  color: var(--ivory-dim);
}
.poem__verse span { display: block; }
.poems__note { margin-top: 2.5rem; color: var(--muted); font-size: 0.95rem; font-style: italic; }

/* ===========================================================
   PRESS
   =========================================================== */
.press__head { margin-bottom: 3.5rem; }
.press__head h2 { font-family: var(--display); font-weight: 300; font-size: var(--t-h1); letter-spacing: -0.015em; margin-top: 1.2rem; }
.press__list { border-top: 1px solid var(--line); }
.press__item {
  display: grid;
  grid-template-columns: 8rem 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.7rem 0.5rem;
  border-bottom: 1px solid var(--line-soft);
  transition: padding-left .3s ease, background .3s ease;
}
.press__item:hover { background: rgba(243,236,224,0.02); padding-left: 1.4rem; }
.press__src { font-family: var(--label); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: lowercase; color: var(--gold); }
.press__ttl { font-family: var(--display); font-size: var(--t-h3); font-weight: 400; line-height: 1.15; color: var(--ivory); }
.press__yr { font-family: var(--label); font-size: 0.8rem; color: var(--muted); }
.press__arrow { color: var(--muted); transition: transform .3s ease, color .3s ease; }
.press__item:hover .press__arrow { transform: translate(4px,-4px); color: var(--gold); }

/* ===========================================================
   DJ QAHLI — night side
   =========================================================== */
.dj {
  background:
    radial-gradient(120% 80% at 85% 0%, rgba(194,85,47,0.18), transparent 55%),
    radial-gradient(100% 90% at 0% 100%, rgba(40,28,60,0.5), transparent 60%),
    #07060a;
  position: relative;
  overflow: hidden;
}
.dj__head { max-width: 760px; }
.dj__head .label { color: var(--ember-soft); }
.dj__head .eyebrow::before { background: var(--ember-soft); }
.dj__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: var(--t-hero);
  line-height: 0.86;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.5rem;
}
.dj__title em { font-style: italic; color: var(--ember-soft); }
.dj__intro { font-size: var(--t-lead); line-height: 1.5; color: var(--ivory-dim); }
.dj__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2.5rem,5vw,5rem);
  margin-top: 4.5rem;
  align-items: start;
}
.mixes { display: flex; flex-direction: column; }
.mix {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(243,236,224,0.1);
  cursor: pointer;
  transition: background .3s ease, padding .3s ease;
}
.mix:last-child { border-bottom: 1px solid rgba(243,236,224,0.1); }
.mix:hover { background: rgba(224,122,78,0.06); }
.mix__play {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--ember-soft);
  display: grid; place-items: center;
  color: var(--ember-soft);
  transition: all .3s ease;
  flex-shrink: 0;
}
.mix:hover .mix__play { background: var(--ember-soft); color: var(--ink); }
.mix__play svg { width: 14px; height: 14px; margin-left: 2px; }
.mix__name { font-family: var(--display); font-size: var(--t-h3); font-weight: 400; color: var(--ivory); }
.mix__tags { font-family: var(--label); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: lowercase; color: var(--muted); margin-top: 0.3rem; }
.mix__len { font-family: var(--label); font-size: 0.8rem; color: var(--ember-soft); }

.dj__card {
  border: 1px solid rgba(243,236,224,0.12);
  padding: clamp(1.8rem,3vw,2.6rem);
  background: rgba(255,255,255,0.015);
}
.dj__card h3 { font-family: var(--display); font-style: italic; font-weight: 400; font-size: var(--t-h3); margin-bottom: 1.2rem; }
.dj__card p { color: var(--ivory-dim); font-size: 1.05rem; margin-bottom: 1.5rem; }
.dj__photo { aspect-ratio: 3 / 4; margin-bottom: 1.8rem; overflow: hidden; }
.dj__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; filter: contrast(1.06) brightness(0.95); }
.dj__listen { display: flex; flex-direction: column; gap: 0.6rem; }
.dj__listen a {
  font-family: var(--label); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: lowercase;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 0; border-bottom: 1px solid var(--line-soft);
  color: var(--ivory-dim); transition: color .25s ease;
}
.dj__listen a:hover { color: var(--ember-soft); }

/* ===========================================================
   EVENTS
   =========================================================== */
.events__head { margin-bottom: 3.5rem; }
.events__head h2 { font-family: var(--display); font-weight: 300; font-size: var(--t-h1); letter-spacing: -0.015em; margin-top: 1.2rem; }
.event {
  display: grid;
  grid-template-columns: 9rem 1fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.7rem 0.5rem;
  border-top: 1px solid var(--line-soft);
}
.events__list { border-bottom: 1px solid var(--line-soft); }
.event__date { font-family: var(--label); font-size: 0.82rem; letter-spacing: 0.06em; color: var(--gold); }
.event__date span { display: block; font-size: 1.7rem; font-family: var(--display); color: var(--ivory); letter-spacing: 0; }
.event__name { font-family: var(--display); font-size: var(--t-h3); font-weight: 400; color: var(--ivory); }
.event__type { font-family: var(--label); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: lowercase; margin-top: 0.6rem; }
.event__type.poetry { color: var(--gold); }
.event__type.set { color: var(--ember-soft); }
.event__place { color: var(--ivory-dim); }
.event__tag {
  font-family: var(--label); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: lowercase;
  padding: 0.35rem 0.8rem; border: 1px solid var(--line); color: var(--muted);
}

/* ===========================================================
   CONTACT / FOOTER
   =========================================================== */
.contact {
  background: var(--ink-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact__bg { position: absolute; inset: 0; z-index: 0; }
.contact__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; filter: grayscale(0.3) brightness(0.5); opacity: 0.3; }

/* ---------- full-bleed quote band ---------- */
.band {
  position: relative;
  min-height: 72vh;
  display: grid; place-items: center;
  text-align: center;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 9rem);
}
.band__bg { position: absolute; inset: 0; z-index: 0; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; filter: grayscale(0.25) contrast(1.05) brightness(0.72); }
.band__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(12,11,10,0.32), rgba(12,11,10,0.84)); }
.band .wrap { position: relative; z-index: 1; }
.band blockquote {
  font-family: var(--display); font-weight: 300; font-style: italic;
  font-size: clamp(2rem, 4.4vw, 4rem); line-height: 1.16; letter-spacing: -0.01em;
  color: var(--ivory); max-width: 22ch; margin: 0 auto; text-wrap: balance;
}
.band cite { display: block; margin-top: 2.2rem; font-family: var(--label); font-style: normal; font-size: 0.76rem; letter-spacing: 0.26em; text-transform: lowercase; color: var(--gold); }
.contact__glow {
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 120%, rgba(205,163,73,0.14), transparent 70%);
  pointer-events: none;
}
.contact .wrap { position: relative; z-index: 1; }
.contact h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: var(--t-h1);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 1.5rem auto 2.4rem;
  max-width: 14ch;
}
.contact h2 em { font-style: italic; color: var(--gold-soft); }
.contact__sub { color: var(--ivory-dim); font-size: var(--t-lead); max-width: 46ch; margin: 0 auto 3rem; }
.contact__email {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--ivory);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
  transition: color .3s ease;
}
.contact__email:hover { color: var(--gold-soft); }
.socials {
  margin-top: 4rem;
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0.8rem;
}
.socials a {
  font-family: var(--label); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: lowercase;
  padding: 0.8rem 1.4rem; border: 1px solid var(--line);
  color: var(--ivory-dim); transition: all .25s ease;
}
.socials a:hover { border-color: var(--gold); color: var(--gold-soft); }

.footer {
  padding: 2.5rem var(--pad-x);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid var(--line-soft);
  font-family: var(--label); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--muted);
}
.footer .dot { color: var(--gold); }

/* ===========================================================
   reveal on scroll
   =========================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__scroll::after { animation: none; }
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column; gap: 1.4rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(12,11,10,0.97); backdrop-filter: blur(14px);
    padding: 2rem var(--pad-x); border-bottom: 1px solid var(--line-soft);
  }
  .nav__toggle { display: block; }
  .about__grid, .book__grid, .poems__grid, .dj__layout { grid-template-columns: 1fr; }
  .book__cover { order: -1; }
  .press__item { grid-template-columns: 1fr auto; gap: 0.4rem 1.5rem; }
  .press__src { grid-column: 1 / -1; }
  .event { grid-template-columns: 6rem 1fr; gap: 0.5rem 1.5rem; }
  .event__place, .event__tag { grid-column: 2; }
  .about__portrait::after { display: none; }
}
@media (max-width: 560px) {
  .about__facts { grid-template-columns: 1fr; gap: 1.2rem; }
  .hero__roles { font-size: 0.7rem; flex-wrap: wrap; }
}

.mixes--soon { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); min-height: 340px; display: grid; place-items: center; padding: clamp(3rem,6vw,5rem) 1.5rem; text-align: center; }
.soon { max-width: 38ch; display: grid; gap: 1.1rem; justify-items: center; }
.soon__ttl { font-family: var(--display); font-size: var(--t-h2); line-height: 1; color: var(--ivory); }
.soon__ttl em { color: var(--ember-soft); font-style: italic; }
.soon__txt { font-family: var(--serif); font-size: var(--t-body); color: var(--ivory-dim); text-wrap: pretty; }

/* ===========================================================
   MOBILE / TABLET HARDENING
   =========================================================== */
html, body { overflow-x: hidden; max-width: 100%; }
img, svg { max-width: 100%; }
* { -webkit-tap-highlight-color: rgba(205,163,73,0.18); }
.nav { padding-left: max(var(--pad-x), env(safe-area-inset-left)); padding-right: max(var(--pad-x), env(safe-area-inset-right)); }
.nav__toggle { min-height: 44px; min-width: 44px; display: none; align-items: center; justify-content: flex-end; }
.band { min-height: 72svh; }
@media (max-width: 1024px) {
  .nav__links { gap: 1.6rem; }
}
@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__links.open a { min-height: 44px; display: flex; align-items: center; }
  .poems__grid { gap: 0; }
  .poem { padding-inline: 0; }
  .band { min-height: 60svh; }
}
@media (max-width: 640px) {
  :root { --pad-x: 1.35rem; --sec-y: clamp(4.5rem, 14vw, 7rem); --t-hero: clamp(3.4rem, 20vw, 6rem); }
  .wrap { padding-inline: max(var(--pad-x), env(safe-area-inset-left)) max(var(--pad-x), env(safe-area-inset-right)); }
  .hero__bg img { object-position: 62% 40%; }
  .buy { flex-wrap: wrap; gap: 0.7rem; }
  .btn { min-height: 46px; display: inline-flex; align-items: center; }
  .socials { flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
  .socials a { min-height: 44px; display: inline-flex; align-items: center; }
  blockquote { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .book__prizes .yr { min-width: 3.2rem; }
}
@media (max-width: 400px) {
  .poem__verse span { font-size: 1rem; }
}
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: 110svh; }
  .hero__scroll { display: none; }
}
input, select, textarea { font-size: 16px; }
@supports (-webkit-touch-callout: none) {
  .hero, .band { background-attachment: scroll; }
}

/* ===========================================================
   LANGUAGE SWITCHER + RTL / SCRIPT SUPPORT
   =========================================================== */
.lang { display: flex; gap: 0.15rem; margin-inline-start: auto; margin-inline-end: 2rem; }
.lang__btn { background: none; border: 0; cursor: pointer; font-family: var(--label); font-size: 0.66rem; letter-spacing: 0.14em; color: var(--muted); padding: 0.55rem 0.5rem; min-height: 40px; transition: color .25s ease; }
.lang__btn:hover { color: var(--ivory); }
.lang__btn[aria-current="true"] { color: var(--gold); }
.lang__btn[lang="ar"] { font-family: 'Noto Kufi Arabic', var(--label); font-size: 0.78rem; letter-spacing: 0; }
@media (max-width: 900px) { .lang { margin-inline-end: 1.1rem; gap: 0; } .lang__btn { padding: 0.5rem 0.32rem; font-size: 0.62rem; } }
@media (max-width: 400px) { .lang__btn { padding: 0.5rem 0.24rem; font-size: 0.58rem; letter-spacing: 0.06em; } }

html[lang="ar"] { --display: 'Noto Naskh Arabic', 'Cormorant Garamond', Georgia, serif; --serif: 'Noto Naskh Arabic', 'EB Garamond', Georgia, serif; --label: 'Noto Kufi Arabic', system-ui, sans-serif; }
html[lang="ar"] .label, html[lang="ar"] .lang__btn { letter-spacing: 0.04em; text-transform: none; }
html[lang="ar"] .book__title, html[lang="ar"] .book__title em { font-family: 'Cormorant Garamond', Georgia, serif; }
html[lang="ar"] .book__sub, html[lang="ar"] .btn, html[lang="ar"] .socials a, html[lang="ar"] .book__prizes .yr { font-family: 'Space Grotesk', system-ui, sans-serif; letter-spacing: 0.1em; }
html[lang="ar"] .hero__tag, html[lang="ar"] blockquote, html[lang="ar"] .poem__title, html[lang="ar"] em, html[lang="ar"] .loader__line { font-style: normal; }
html[dir="rtl"] .hero__roles .sep { transform: none; }
html[dir="rtl"] .press__arrow, html[dir="rtl"] .back__arrow { display: inline-block; transform: scaleX(-1); }
html[dir="rtl"] .about__portrait::after { display: none; }
html[dir="rtl"] .poem, html[dir="rtl"] .book__prizes li, html[dir="rtl"] .event { text-align: right; }
html[dir="rtl"] .hero__scroll { letter-spacing: 0.1em; }
html[lang="el"] .label, html[lang="el"] .lang__btn { text-transform: none; letter-spacing: 0.1em; }
html[lang="el"] { --label: 'EB Garamond', Georgia, serif; }
html[lang="tr"] .label { letter-spacing: 0.14em; }

.footer__credit { font-family: var(--label); font-size: 0.68rem; letter-spacing: 0.12em; color: var(--muted); }
@media (max-width: 640px) { .footer { flex-wrap: wrap; gap: 0.5rem; text-align: center; justify-content: center; } }

html[lang="ar"] .hero__name { font-family: 'Noto Naskh Arabic', serif; font-size: clamp(2.8rem, 8.5vw, 7.5rem); line-height: 1.35; letter-spacing: 0; white-space: nowrap; }
html[lang="ar"] .btn, html[lang="ar"] .contact__btn { white-space: nowrap; }
html[lang="ar"] .nav__brand, html[lang="ar"] .loader__mark { font-family: 'Noto Naskh Arabic', serif; letter-spacing: 0; }
html[lang="ar"] .loader__mark { font-size: clamp(2.2rem, 6vw, 4.4rem); line-height: 1.4; }
html[lang="ar"] .footer { font-family: var(--label); }
