/* ==========================================================================
   FourTissimo — site styles
   Identity per fourtissimo-brand-sheet.html (revision 2):
   ink #14110F · gold #A97C2F · gold light #D7AE68 · ivory #F5EFE4
   Playfair Display (display) + Inter (utility)
   ========================================================================== */

:root {
  --ink:        #14110F;
  --ink-2:      #1E1A17;
  --ink-3:      #2A2421;
  --gold:       #A97C2F;
  --gold-l:     #D7AE68;
  --ivory:      #F5EFE4;
  --paper:      #FBF8F3;

  --text:       var(--ivory);
  --text-soft:  rgba(245, 239, 228, .70);
  --text-mute:  rgba(245, 239, 228, .48);
  --line:       rgba(215, 174, 104, .22);
  --line-soft:  rgba(215, 174, 104, .12);

  --serif: 'Playfair Display', Didot, 'Bodoni MT', Georgia, serif;
  --sans:  'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --gutter: clamp(20px, 5vw, 64px);
  --measure: 62ch;
  --rhythm: clamp(72px, 11vw, 148px);
  --radius: 2px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* Hebrew tunes the display face down slightly — Playfair has no Hebrew,
   so Hebrew display text falls to Frank Ruhl Libre. */
html[lang="he"] {
  --serif: 'Frank Ruhl Libre', 'Playfair Display', Georgia, serif;
  --sans:  'Heebo', 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* --------------------------------------------------------------- reset -- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(15px, .55vw + 13.5px, 17px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video, iframe { max-width: 100%; display: block; }
img { height: auto; }

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

:focus-visible {
  outline: 2px solid var(--gold-l);
  outline-offset: 3px;
  border-radius: 1px;
}

.skip {
  position: absolute;
  inset-inline-start: -9999px;
  top: 0;
  z-index: 100;
  background: var(--gold-l);
  color: var(--ink);
  padding: 12px 20px;
  font-size: 13px;
  letter-spacing: .08em;
}
.skip:focus { inset-inline-start: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------ wordmark -- */
/* Set in live type rather than outlines so it stays selectable, reflows on
   small screens and keeps the FOUR/TISSIMO colour split of the brand sheet. */

.logotype {
  font-family: 'Playfair Display', Didot, Georgia, serif;
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 21px);
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.logotype__four { color: var(--gold-l); margin-inline-end: -.14em; }
.logotype__rest { color: var(--ivory); }

.header__logo,
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.1vw, 15px);
}
.header__mark,
.footer__mark { width: 26px; height: 26px; flex: 0 0 auto; }
.footer__mark { width: 30px; height: 30px; }
[dir="rtl"] .header__logo,
[dir="rtl"] .footer__logo { direction: ltr; }

/* ------------------------------------------------------------- helpers -- */

.wrap {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin: 0 0 18px;
  font-weight: 400;
}
html[lang="he"] .eyebrow { letter-spacing: .12em; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.14;
  margin: 0;
  text-wrap: balance;
}

h2 { font-size: clamp(29px, 3.9vw, 46px); letter-spacing: -.01em; }
h3 { font-size: clamp(19px, 1.5vw, 23px); }

p { margin: 0 0 1.1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

.section {
  padding-block: var(--rhythm);
  position: relative;
  /* An anchor lands on the section's border box, and the section then has a
     full --rhythm of top padding — so a nav click left the heading a third of
     the way down the screen. Scroll past that padding instead, leaving a fixed
     gap under the header. Negative on desktop, positive on phones, because
     --rhythm shrinks there. */
  scroll-margin-top: calc(74px + 46px - var(--rhythm));
}
/* sections that carry their own heading inside the grid */
.section--flush .section__head { display: none; }
.section + .section { border-top: 1px solid var(--line-soft); }

.section__head { margin-bottom: clamp(38px, 5vw, 64px); }
.section__head p { color: var(--text-soft); margin-top: 20px; }

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

/* -------------------------------------------------------------- header -- */

.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 60;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: var(--ink);
  border-bottom-color: var(--line-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding-block: 14px;
}

.header__logo { flex: 0 0 auto; position: relative; z-index: 2; }

.nav {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.7vw, 30px);
}

.nav__link {
  /* Two-word items must not wrap: the header is a single 74px band, and a
     wrapped label pushes its own baseline off the others. */
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color .25s var(--ease);
  position: relative;
  padding-block: 6px;
}
.nav__link::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold-l);
  transform: scaleX(0);
  transform-origin: var(--origin, left);
  transition: transform .16s var(--ease);
}
[dir="rtl"] .nav__link::after { --origin: right; }
.nav__link:hover { color: var(--ivory); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--ivory); }

/* The press kit sits in the navigation because that is where a promoter looks
   for it. Outlined rather than underlined, so it reads as something to take
   away rather than another section of the page. */
.nav__kit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-l);
  text-decoration: none;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  white-space: nowrap;
  transition: border-color .25s var(--ease), color .25s var(--ease), background-color .25s var(--ease);
}
.nav__kit svg { width: 13px; height: 13px; flex: 0 0 auto; }
.nav__kit:hover,
.nav__kit:focus-visible {
  color: var(--ink);
  background: var(--gold-l);
  border-color: var(--gold-l);
}

/* Language-specific sizing for the horizontal bar only. These used to be
   unscoped, which quietly shrank the Hebrew mobile menu to 13px; below 1025px
   the navigation is a full-screen panel with room for everyone. */
@media (min-width: 1025px) {
  html[lang="he"] .nav__link { letter-spacing: .06em; font-size: 13px; }
  html[lang="he"] .nav__kit { letter-spacing: .04em; font-size: 12px; }

  /* Russian sets the longest labels of the three — "Заказать выступление"
     alone is as wide as two English items — and the bar is the one place that
     runs out of room. */
  html[lang="ru"] .nav { gap: clamp(13px, 1.35vw, 23px); }
  html[lang="ru"] .nav__link { font-size: 11px; letter-spacing: .09em; }
  html[lang="ru"] .nav__kit { font-size: 10.5px; letter-spacing: .09em; padding-inline: 11px; }
}

.langs {
  display: flex;
  align-items: center;
  gap: 2px;
  padding-inline-start: clamp(12px, 2vw, 24px);
  margin-inline-start: clamp(4px, 1vw, 12px);
  border-inline-start: 1px solid var(--line);
}
.langs a {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--text-mute);
  padding: 6px 9px;
  border-radius: var(--radius);
  transition: color .25s, background .25s;
}
.langs a:hover { color: var(--ivory); }
.langs a[aria-current="true"] {
  color: var(--gold-l);
  box-shadow: inset 0 -1px 0 var(--gold-l);
}
/* A language switcher is a fixed inventory, not prose: keep EN · עב · RU in the
   same order whichever direction the page runs. */
.langs { direction: ltr; }

.burger {
  display: none;
  position: relative;
  z-index: 2;
  margin-inline-start: auto;
  width: 44px; height: 44px;
  background: none; border: 0; padding: 0;
  cursor: pointer;
  color: var(--ivory);
}
.burger span {
  display: block;
  width: 22px; height: 1px;
  background: currentColor;
  margin: 5px auto;
  transition: transform .3s var(--ease), opacity .2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Russian nav labels are long; shrink them before the burger takes over. */
@media (min-width: 1025px) and (max-width: 1200px) {
  .nav { gap: 18px; }
  .nav__link { font-size: 11px; letter-spacing: .10em; }
}

@media (max-width: 1024px) {
  .burger { display: block; }
  .nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--ink);
    border: 0;
    padding: calc(76px + 12px) var(--gutter) 32px;
    margin: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
  }
  .nav.is-open { opacity: 1; transform: none; visibility: visible; }
  .nav__link {
    font-size: 16px;
    letter-spacing: .14em;
    padding-block: 18px;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav__link::after { display: none; }
  /* Last item in the list has no rule under it, so the kit needs its own
     breathing room; full width because it is also the largest tap target. */
  .nav__kit {
    margin-top: 22px;
    justify-content: center;
    font-size: 12px;
    padding: 15px 18px;
  }
  .langs {
    border-inline-start: 0;
    padding: 28px 0 0;
    margin-top: auto;
    gap: 8px;
  }
  .langs a {
    font-size: 13px;
    min-width: 56px;
    min-height: 46px;
    display: grid;
    place-items: center;
    padding: 0 14px;
    border: 1px solid var(--line);
  }
}

/* --------------------------------------------------------------- hero -- */

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-block: 124px 92px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  /* the warm hotspot belongs behind the type, not behind the empty half */
  background:
    radial-gradient(100% 80% at 34% 34%, rgba(169, 124, 47, .19), transparent 64%),
    radial-gradient(80% 70% at 92% 88%, rgba(169, 124, 47, .10), transparent 62%),
    var(--ink);
}
.hero__bg::after {
  /* fine tooth of grain so the flat ink doesn't band on large screens */
  content: '';
  position: absolute;
  inset: 0;
  opacity: .30;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -1;
  object-fit: cover;
  width: 100%; height: 100%;
  opacity: .26;
  filter: grayscale(.4) contrast(1.05);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.9) 10%, transparent 92%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9) 10%, transparent 92%);
}

.hero__inner { display: grid; gap: clamp(20px, 2.4vw, 30px); justify-items: start; }

.hero__title {
  display: grid;
  gap: clamp(14px, 1.8vw, 22px);
  justify-items: start;
  margin: 0;
}
.hero__mark-glyph {
  /* locked to roughly 0.7 x the wordmark cap-height at every width, so the
     lockup keeps its proportion on phones */
  width: clamp(32px, 5.4vw, 76px);
  height: auto;
  opacity: .92;
}
.hero__wordmark {
  font-family: 'Playfair Display', Didot, Georgia, serif;
  font-weight: 400;
  /* sized so the wordmark clears the portrait strip on the right rather than
     running under the first face — see .hero__faces */
  font-size: clamp(38px, 6.6vw, 96px);
  /* +0.14em is a small-lockup value; at display size it has to come down */
  letter-spacing: .085em;
  text-transform: uppercase;
  line-height: .95;
  display: block;
  /* the tracking adds a trailing gap; pull it back so the block aligns left */
  margin-inline-end: -.11em;
}
/* The brand sheet's dark-ground variant sets FOUR in gold light, not deep gold:
   at display size the deep gold is far darker in value than the ivory and the
   word splits in two. Gold light keeps it reading as one run of ink. */
.hero__wordmark__four {
  color: var(--gold-l);
  /* close the seam so the colour change lands on a normal letter gap rather
     than the widest one — otherwise it reads as a word break */
  margin-inline-end: -.085em;
}
.hero__wordmark__rest { color: var(--ivory); }
@media (max-width: 900px) {
  .hero__wordmark { font-size: clamp(38px, 11vw, 92px); }
}
@media (max-width: 420px) {
  .hero__wordmark { letter-spacing: .06em; font-size: 12.5vw; }
}

.hero__strapline {
  font-size: clamp(10px, .9vw, 12px);
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin: 0;
}
html[lang="he"] .hero__strapline { letter-spacing: .14em; }
/* Russian runs ~30% longer here and overflows below ~400px */
@media (max-width: 430px) {
  .hero__strapline { font-size: 10px; letter-spacing: .16em; }
}

.hero__lede {
  font-family: var(--serif);
  font-size: clamp(25px, 3.6vw, 50px);
  line-height: 1.16;
  margin: 0;
  max-width: 21ch;
  color: var(--ivory);
  text-wrap: balance;
}
html[lang="he"] .hero__lede { max-width: 22ch; }

.hero__sub {
  color: var(--text-soft);
  max-width: 56ch;
  margin: 0;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 600px) {
  .hero__actions { display: grid; grid-template-columns: 1fr; width: 100%; gap: 12px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* The four portraits fill the hero's open field, mirroring the share card so a
   promoter who clicked through from WhatsApp sees the same thing. Falls back to
   the ghost mark below when fewer than two portraits exist. */
.hero__faces {
  --fade: right;
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0;
  /* The cap used to be 560px, which pinned the strip to the right edge of a
     wide monitor and opened a dead gap beside the text. It now keeps growing
     with the viewport; 36vw is the fraction that clears the wordmark at every
     width (the wordmark's right edge peaks at ~62% of the viewport). */
  width: clamp(300px, 36vw, 900px);
  z-index: -1;
  display: flex;
  gap: 2px;
  pointer-events: none;
}
[dir="rtl"] .hero__faces { --fade: left; }

.hero__faces img {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(1) contrast(1.04) brightness(.74);
}
/* Povolotsky's portrait is markedly darker at source than the other three —
   dark suit, dim hall — so it needs a lift to sit at the same value as them. */
.hero__faces img:first-child { filter: grayscale(1) contrast(1) brightness(1.02); }
.hero__faces::after {
  content: '';
  position: absolute;
  inset: 0;
  /* second layer keeps the header band on clean ink so the nav and the
     language switcher stay legible over the photographs */
  background:
    linear-gradient(to bottom, var(--ink) 0, rgba(20, 17, 15, .55) 92px, transparent 150px),
    linear-gradient(to var(--fade),
      var(--ink) 0%,
      rgba(20, 17, 15, .74) 7%,
      rgba(20, 17, 15, .34) 30%,
      rgba(20, 17, 15, .30) 100%);
}

/* On a phone the strip becomes a band across the foot of the hero — the people
   are the point, and this is the screen most enquiries start on. */
@media (max-width: 900px) {
  .hero { padding-block: 116px calc(30svh + 28px); }
  .hero__faces {
    inset: auto 0 0 0;
    width: auto;
    height: 32svh;
  }
  .hero__faces img { object-position: center 18%; filter: grayscale(1) contrast(1.06) brightness(.66); }
  .hero__faces::after {
    background: linear-gradient(to top,
      rgba(20, 17, 15, .30) 0%,
      rgba(20, 17, 15, .55) 46%,
      var(--ink) 100%);
  }
}

/* ---- heroStyle: photo-full — full bleed behind the type ------------------ */

.hero--photo-full .hero__shot {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero--photo-full .hero__shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 64% 26%;
  filter: grayscale(1) contrast(1.06) brightness(.62);
}
.hero--photo-full .hero__shot::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--ink) 0, rgba(20, 17, 15, .5) 110px, transparent 190px),
    linear-gradient(to right, var(--ink) 0%, rgba(20, 17, 15, .88) 26%, rgba(20, 17, 15, .55) 56%, rgba(20, 17, 15, .48) 100%);
}
@media (max-width: 900px) {
  .hero--photo-full .hero__shot img { object-position: 58% 24%; }
  .hero--photo-full .hero__shot::after {
    background:
      linear-gradient(to bottom, var(--ink) 0, rgba(20, 17, 15, .55) 100px, rgba(20, 17, 15, .35) 190px),
      linear-gradient(to top, var(--ink) 6%, rgba(20, 17, 15, .55) 46%, rgba(20, 17, 15, .45) 100%);
  }
}

/* A large, quiet counterweight in the right field — used only when there are
   not yet enough portraits to fill it. */
.hero__ghost {
  position: absolute;
  inset-block: 0;
  inset-inline-end: -11%;
  z-index: -1;
  display: grid;
  align-items: center;
  color: var(--gold);
  pointer-events: none;
}
.hero__ghost-mark {
  width: clamp(300px, 36vw, 560px);
  height: auto;
  opacity: .045;
}
@media (max-width: 900px) { .hero__ghost { display: none; } }

.hero__scroll-wrap {
  position: absolute;
  inset-inline: 0;
  bottom: 30px;
}
.hero__scroll {
  display: inline-flex;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--text-mute);
  align-items: center;
  gap: 12px;
}
.hero__scroll i {
  display: block;
  width: 46px; height: 1px;
  background: linear-gradient(to right, var(--gold-l), transparent);
  animation: sweep 2.6s var(--ease) infinite;
}
[dir="rtl"] .hero__scroll i { background: linear-gradient(to left, var(--gold-l), transparent); }
@keyframes sweep { 0%,100% { opacity: .25; } 50% { opacity: 1; } }
@media (max-width: 700px) { .hero__scroll-wrap { display: none; } }

/* In RTL the wordmark still reads left-to-right, so the mark has to stay at the
   word's beginning — physical left — rather than mirroring to its end. */
[dir="rtl"] .hero__title { justify-items: left; }

/* ------------------------------------------------------------ buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--ivory);
  background: transparent;
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
html[lang="he"] .btn { letter-spacing: .06em; font-size: 13px; }
.btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.btn--solid { background: var(--gold); color: var(--ink); }
.btn--solid:hover { background: var(--gold-l); border-color: var(--gold-l); }

.btn--ghost { border-color: var(--line); color: var(--text-soft); }
.btn--ghost:hover { border-color: var(--gold-l); background: transparent; color: var(--ivory); }

/* --------------------------------------------------------------- about -- */

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
}
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; align-items: start; } }

/* The one thing the site could not say before: here are the four of them, on a
   stage, playing. Greyscale so it sits with the portraits rather than punching
   a bright hole in the page. */
.about__photo {
  position: relative;
  margin: clamp(48px, 6vw, 82px) 0 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
}
.about__photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(1) contrast(1.06) brightness(.8);
}
.about__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(115% 95% at 50% 42%, transparent 42%, rgba(20, 17, 15, .42) 100%),
    linear-gradient(to top, rgba(20, 17, 15, .40) 0%, transparent 34%);
}
.about__photo figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 34px clamp(18px, 2.4vw, 30px) 18px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-soft);
}
html[lang="he"] .about__photo figcaption { letter-spacing: .05em; font-size: 12.5px; }

.about__credits { margin-top: clamp(46px, 6vw, 78px); }
.about__credits .credits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 5vw, 76px);
}
@media (max-width: 700px) { .about__credits .credits { grid-template-columns: 1fr; } }

.about__body p { color: var(--text-soft); font-size: clamp(16px, .6vw + 14.5px, 18.5px); }
.about__body p:first-child { color: var(--ivory); }

.pull {
  font-family: var(--serif);
  font-size: clamp(21px, 1.9vw, 27px);
  line-height: 1.35;
  color: var(--ivory);
  border-inline-start: 1px solid var(--gold);
  padding-inline-start: clamp(20px, 2.4vw, 32px);
  margin: 0;
  max-width: none;
  text-wrap: pretty;
}

.credits { list-style: none; margin: 0; padding: 0; }
.credits li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 16px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.credits li:first-child,
.credits li:nth-child(2) { border-top: 1px solid var(--line-soft); }
@media (max-width: 700px) {
  .credits li:nth-child(2) { border-top: 0; }
}
.credits b {
  font-weight: 400;
  font-family: var(--serif);
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--ivory);
}
.credits span {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
  text-align: end;
  flex: 0 0 auto;
}
html[lang="he"] .credits span { letter-spacing: .04em; font-size: 12px; }

/* ----------------------------------------------------------- musicians -- */

.people {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border-block: 1px solid var(--line-soft);
}

/* At two columns the cells nearly double in width and a width-driven portrait
   balloons past its desktop size — cap it instead. */
@media (max-width: 1099px) {
  .people { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .person__portrait { max-width: 260px; }
}
@media (max-width: 619px) {
  .people { grid-template-columns: 1fr; }
  .person { padding-block: 30px; }
  .person__portrait { max-width: 220px; }
}

.person {
  background: var(--ink);
  padding: clamp(24px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background .4s var(--ease);
}
.person:hover { background: var(--ink-2); }

.person__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
}
.person__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(1) contrast(1.04) brightness(.92);
  transition: filter .6s var(--ease), transform .8s var(--ease);
}
.person:hover .person__portrait img { filter: grayscale(.2) contrast(1.02) brightness(1); transform: scale(1.03); }

/* Source portraits vary wildly in background; this settles them onto the
   same dark ground so the row reads as one set. */
.person__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(20,17,15,.72) 0%, rgba(20,17,15,.12) 42%, rgba(20,17,15,.30) 100%);
  transition: opacity .6s var(--ease);
}
.person:hover .person__portrait::after { opacity: .6; }

/* Typographic stand-in used until a real portrait is supplied. */
.person__portrait--empty {
  display: grid;
  place-items: center;
  background:
    radial-gradient(80% 70% at 50% 25%, rgba(169,124,47,.10), transparent 70%),
    var(--ink-2);
}
.person__initial {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(58px, 6.4vw, 88px);
  line-height: 1;
  /* an absent portrait should recede, not out-shout the real ones — gold at
     this size was the highest-chroma object in the section */
  color: var(--ivory);
  opacity: .12;
  user-select: none;
}

.person__role {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin: 0;
}
html[lang="he"] .person__role { letter-spacing: .08em; font-size: 12px; }

.person__name {
  font-family: var(--serif);
  font-size: clamp(21px, 1.7vw, 26px);
  line-height: 1.2;
  margin: 6px 0 12px;
  /* two names wrap to two lines and two don't; reserving both keeps every
     description starting on the same baseline across the row */
  min-height: 2.4em;
}
@media (max-width: 619px) { .person__name { min-height: 0; } }

.person__body { flex: 1 1 auto; }

.person__tagline {
  color: var(--text-soft);
  font-size: 15px;
  margin: 0;
}

.person__toggle {
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--gold-l);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
html[lang="he"] .person__toggle { letter-spacing: .06em; font-size: 12px; }
.person__toggle::after {
  content: '';
  width: 16px; height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.person__toggle:hover::after { width: 26px; }

/* ------------------------------------------------------ biography modal -- */

.bio {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
  color: var(--text);
  padding: 0;
  width: min(880px, calc(100vw - 2 * var(--gutter)));
  max-width: none;
  max-height: min(88svh, 760px);
  overflow: auto;
  overscroll-behavior: contain;
}
.bio::backdrop {
  background: rgba(10, 8, 7, .88);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.bio[open] { animation: bio-in .32s var(--ease); }
@keyframes bio-in { from { opacity: 0; transform: translateY(10px); } }

.bio__close-form { position: sticky; top: 0; height: 0; z-index: 2; }
.bio__close {
  position: absolute;
  inset-inline-end: 14px;
  top: 14px;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  background: rgba(20, 17, 15, .7);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ivory);
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.bio__close:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.bio__close svg { width: 16px; height: 16px; }

.bio__inner {
  display: grid;
  grid-template-columns: minmax(0, 230px) minmax(0, 1fr);
  gap: clamp(22px, 3.4vw, 44px);
  padding: clamp(26px, 3.4vw, 46px);
  align-items: start;
}
@media (max-width: 700px) {
  .bio__inner { grid-template-columns: 1fr; }
  .bio__portrait { max-width: 100%; aspect-ratio: 3 / 2; object-position: center 22%; }
}

.bio__portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius);
  filter: grayscale(.85) contrast(1.03) brightness(.95);
}
.bio__portrait--empty {
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 84px;
  color: var(--ivory);
  opacity: .12;
  background:
    radial-gradient(80% 70% at 50% 25%, rgba(169,124,47,.16), transparent 70%),
    var(--ink);
  border: 1px solid var(--line-soft);
}

.bio__name {
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.16;
  margin: 6px 0 20px;
}
.bio__text p:not(.person__role) {
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.72;
  margin: 0 0 1em;
  max-width: 58ch;
}
.bio__text p:last-child { margin-bottom: 0; }

/* A verified social handle belongs with the biography, not the contact block. */
.bio__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 0 !important;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  max-width: none !important;
}
.bio__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  direction: ltr;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--text-soft);
  text-decoration: none;
  transition: color .2s ease;
}
.bio__link svg { width: 19px; height: 19px; flex: 0 0 auto; color: var(--gold); }
.bio__link:hover,
.bio__link:focus-visible { color: var(--gold-l); }
.bio__link:hover span { text-decoration: underline; text-underline-offset: 3px; }

/* Quiet by design — the film is the thing on this section, the channel is the
   way out of it for anyone who wants more. */
.watch__channel {
  margin: 28px 0 0;
  text-align: center;
}
.watch__channel a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  padding: 10px 4px;
  transition: color .25s var(--ease);
}
.watch__channel svg { width: 21px; height: 21px; flex: 0 0 auto; color: var(--gold); transition: color .25s var(--ease); }
.watch__channel a:hover,
.watch__channel a:focus-visible { color: var(--ivory); }
.watch__channel a:hover span { text-decoration: underline; text-underline-offset: 4px; }
html[lang="he"] .watch__channel a { letter-spacing: .04em; font-size: 14px; }

/* --------------------------------------------------------------- prose -- */

/* The privacy page: one column of text on the same ground as the rest, set at
   a comfortable reading measure rather than the full grid. */
.prose {
  padding-block: calc(74px + var(--rhythm)) var(--rhythm);
}
.prose__inner { max-width: 68ch; }
.prose h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  margin: 10px 0 26px;
}
.prose__lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 8px;
}
.prose__section {
  padding-top: 34px;
  margin-top: 34px;
  border-top: 1px solid var(--line-soft);
}
.prose__section h2 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.prose__section p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.78;
  margin: 0 0 1em;
}
.prose__section p:last-child { margin-bottom: 0; }
.prose__section a {
  color: var(--ivory);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line);
  transition: text-decoration-color .25s var(--ease);
}
.prose__section a:hover { text-decoration-color: var(--gold-l); }
.prose__back {
  margin: 48px 0 0;
  padding-top: 34px;
  border-top: 1px solid var(--line-soft);
}
.prose__back a {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  transition: color .25s var(--ease);
}
.prose__back a:hover { color: var(--gold-l); }
html[lang="he"] .prose__section h2,
html[lang="he"] .prose__back a { letter-spacing: .06em; font-size: 13px; }

/* ----------------------------------------------------------- programme -- */

/* Five strands read better as a programme list than as an orphaned grid. */
.strands { border-top: 1px solid var(--line); }

.strand {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 21rem) minmax(0, 1fr);
  gap: clamp(14px, 2.2vw, 36px);
  align-items: baseline;
  padding-block: clamp(20px, 2.2vw, 28px);
  border-bottom: 1px solid var(--line-soft);
  transition: border-color .4s var(--ease);
}
.strand:hover { border-bottom-color: var(--line); }

.strand__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  line-height: 1.5;
}
.strand__title {
  font-size: clamp(19px, 1.55vw, 24px);
  color: var(--ivory);
  margin: 0;
}
.strand__text { color: var(--text-soft); font-size: 15px; margin: 0; max-width: 62ch; }

@media (max-width: 860px) {
  .strand {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 6px 18px;
    row-gap: 8px;
  }
  .strand__num { grid-row: 1; }
  .strand__text { grid-column: 2; }
}

/* On a phone the numeral gutter cost 14% of the viewport and gave the section
   two competing left edges. Number above the title, everything full-bleed. */
@media (max-width: 600px) {
  .strand { grid-template-columns: 1fr; row-gap: 6px; }
  .strand__num,
  .strand__title,
  .strand__text { grid-column: 1; }
  .strand__num { font-size: 12px; font-style: normal; letter-spacing: .18em; }
}

.prog__note {
  margin-top: 26px;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--text-mute);
}

.formats {
  margin-top: clamp(56px, 7vw, 88px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
}
@media (max-width: 760px) { .formats { grid-template-columns: 1fr; } }
.formats__head {
  grid-column: 1 / -1;
  max-width: none;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(23px, 2.2vw, 30px);
  line-height: 1.2;
  color: var(--ivory);
  letter-spacing: -.005em;
  text-transform: none;
  margin: 0 0 6px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.format { padding-top: 4px; }
.format h3 { font-size: 19px; margin-bottom: 10px; }
.format p { color: var(--text-soft); font-size: 14.5px; margin: 0; }

/* --------------------------------------------------------------- watch -- */

.videos { display: grid; gap: clamp(20px, 3vw, 34px); }

.video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  padding: 0;
  display: block;
}
.video__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold);
  background:
    radial-gradient(70% 80% at 50% 40%, rgba(169,124,47,.12), transparent 70%),
    var(--ink-2);
}
.video__fallback-mark { width: clamp(90px, 12vw, 150px); height: auto; opacity: .16; }

.video img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .72;
  filter: saturate(.85);
  transition: opacity .5s var(--ease), transform .8s var(--ease);
}
.video:hover img { opacity: .9; transform: scale(1.02); }
.video iframe { width: 100%; height: 100%; border: 0; display: block; }
/* once the player is in, the container is no longer a button */
.video--playing { cursor: default; background: #000; }

.video__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.video__play i {
  width: clamp(62px, 7vw, 86px);
  aspect-ratio: 1;
  border: 1px solid var(--gold-l);
  border-radius: 50%;
  background: rgba(20, 17, 15, .55);
  backdrop-filter: blur(3px);
  display: grid;
  place-items: center;
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.video:hover .video__play i { background: rgba(169, 124, 47, .85); transform: scale(1.06); }
.video__play svg { width: 20px; height: 20px; fill: var(--ivory); margin-inline-start: 3px; }
[dir="rtl"] .video__play svg { transform: scaleX(1); }

.video__caption {
  position: absolute;
  z-index: 2;
  inset-inline: 0;
  bottom: 0;
  padding: 34px clamp(18px, 3vw, 30px) 20px;
  background: linear-gradient(to top, rgba(20,17,15,.92), transparent);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ivory);
  pointer-events: none;
  text-align: start;
}
html[lang="he"] .video__caption { letter-spacing: .05em; font-size: 13px; }

.empty-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 48px);
  display: grid;
  gap: 22px;
  justify-items: start;
  background: var(--ink-2);
}
.empty-note p { color: var(--text-soft); margin: 0; }

/* ------------------------------------------------------------- booking -- */

.booking__grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: stretch;
}
@media (max-width: 900px) { .booking__grid { grid-template-columns: 1fr; } }

/* The heading used to sit above the grid, leaving the whole top-right quadrant
   empty and the contact details floating 165px clear of the form's last field.
   Heading into the column, contacts pushed to the foot of it. */
.booking__intro {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
}
.booking__intro h2 { margin-bottom: 20px; }
.booking__lede { color: var(--text-soft); }

.contact-block {
  margin-top: clamp(34px, 4vw, 56px);
  align-self: end;
  display: grid;
  gap: 24px;
  width: 100%;
}
@media (max-width: 900px) { .contact-block { align-self: start; } }
.contact-item { border-top: 1px solid var(--line); padding-top: 16px; }
.contact-item span {
  display: block;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
}
html[lang="he"] .contact-item span { letter-spacing: .08em; font-size: 12px; }
.contact-item a, .contact-item p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--ivory);
  margin: 0;
  transition: color .25s;
  word-break: break-word;
}
.contact-item a:hover { color: var(--gold-l); }

/* WhatsApp is the channel most Israeli enquiries actually arrive on, so it sits
   level with the email address rather than below it. */
.contact-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  direction: ltr;
}
.contact-wa svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--gold); }
.footer__meta .contact-wa { font-size: 14px; }
.footer__meta .contact-wa svg { width: 15px; height: 15px; }

.contact-item--kit .contact-kit-note {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--text-soft);
  margin: 0 0 16px;
  max-width: 34ch;
}
.contact-item--kit .btn { padding: 12px 22px; font-size: 11px; }
html[lang="he"] .contact-item--kit .btn { font-size: 12.5px; }

/* Quiet on the brand's own terms rather than a green bubble — and only on a
   phone, once the visitor is past the hero's own buttons. */
.wa-float {
  position: fixed;
  z-index: 55;
  inset-inline-end: 18px;
  bottom: 18px;
  width: 54px; height: 54px;
  display: none;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--gold);
  color: var(--gold-l);
  box-shadow: 0 6px 22px rgba(0, 0, 0, .45);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .25s, color .25s;
  pointer-events: none;
}
.wa-float svg { width: 26px; height: 26px; }
.wa-float:hover { background: var(--gold); color: var(--ink); }
@media (max-width: 900px) {
  .wa-float { display: grid; }
  .wa-float.is-in { opacity: 1; transform: none; pointer-events: auto; }
}
@media (prefers-reduced-motion: reduce) { .wa-float { transition: none; } }

/* form */

.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }

.field { display: grid; gap: 8px; }
.field label {
  font-size: 10.5px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--text-mute);
}
html[lang="he"] .field label { letter-spacing: .07em; font-size: 12px; }

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  color: var(--ivory);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 11px 2px;
  transition: border-color .3s var(--ease);
  width: 100%;
  min-width: 0;
}
.field textarea { resize: vertical; min-height: 108px; line-height: 1.6; }
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--ink-2); color: var(--ivory); }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--gold-l); }
.field input[aria-invalid="true"] { border-bottom-color: var(--gold-l); border-bottom-width: 2px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(245,239,228,.28); }
/* The date is a masked text field, not a native picker: the native control
   renders in the browser's locale, so DD/MM and MM/DD look identical and the
   visitor is never told which one they are looking at. */
.field__date {
  /* a date is an LTR object even on an RTL page … */
  direction: ltr;
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
}
/* … but it belongs at the field's inline-start, under its own label */
[dir="rtl"] .field__date { text-align: right; }
.field__date::placeholder { letter-spacing: .06em; }

.field--select { position: relative; }
.field--select::after {
  content: '';
  position: absolute;
  inset-inline-end: 4px;
  bottom: 20px;
  width: 7px; height: 7px;
  /* physical borders on purpose: with logical ones the caret mirrors under RTL
     and a down-chevron becomes a left-chevron */
  border-right: 1px solid var(--gold-l);
  border-bottom: 1px solid var(--gold-l);
  transform: rotate(45deg);
  pointer-events: none;
}

.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 8px; }
.form__hint { font-size: 12px; color: var(--text-mute); margin: 0; max-width: 34ch; }
.form__error { font-size: 13px; color: var(--gold-l); margin: 0; max-width: none; }

/* Outcome panel — a mail client either opens or it silently does not, and the
   visitor has no way to tell which. This says what should have happened and
   always leaves a way to finish the job by hand. */
.form__outcome {
  margin-top: 26px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-inline-start: 2px solid var(--gold);
  border-radius: var(--radius);
  background: var(--ink-2);
  display: grid;
  gap: 12px;
}
.form__outcome[hidden] { display: none; }
.form__outcome-lead { margin: 0; color: var(--ivory); font-size: 15px; max-width: 52ch; }
.form__outcome-help { margin: 0; color: var(--text-soft); font-size: 14px; max-width: 52ch; }
.form__outcome-help[hidden] { display: none; }
.form__outcome-help b { color: var(--ivory); font-weight: 500; }
.form__outcome-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 2px;
}
.form__outcome-actions[hidden] { display: none; }
.form__outcome-actions .btn { padding: 11px 22px; }
.form__outcome-mail {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--gold-l);
  transition: color .25s;
}
.form__outcome-mail:hover { color: var(--ivory); }
.form__error[hidden] { display: none; }

/* -------------------------------------------------------------- footer -- */

.footer {
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(44px, 6vw, 72px) 40px;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-end;
  justify-content: space-between;
}
.footer__tagline {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 18px 0 0;
}
html[lang="he"] .footer__tagline { letter-spacing: .08em; font-size: 12.5px; }
.footer__meta { text-align: end; display: grid; gap: 10px; }
.footer__meta a { color: var(--text-soft); font-size: 14px; }
.footer__meta a:hover { color: var(--gold-l); }
.footer__legal { font-size: 12px; color: var(--text-mute); margin: 0; }
@media (max-width: 620px) {
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__meta { text-align: start; }
}

/* ----------------------------------------------------------------- 404 -- */

.notfound {
  min-height: 100svh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(100% 80% at 34% 34%, rgba(169, 124, 47, .17), transparent 64%),
    var(--ink);
}
.notfound__inner { display: grid; justify-items: start; gap: 22px; }
.notfound__mark { width: clamp(52px, 6vw, 78px); height: auto; opacity: .9; margin-bottom: 6px; }
.notfound__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.1;
  margin: 0;
}
.notfound__text { color: var(--text-soft); margin: 0; }
.notfound__langs {
  margin: 18px 0 0;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--text-mute);
}
.notfound__langs a { transition: color .25s; }
.notfound__langs a:hover { color: var(--gold-l); }

/* ------------------------------------------------------- reveal on scroll */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* stagger steps — see build.mjs `delay()`; kept as classes so no element needs
   a style attribute and style-src can stay free of 'unsafe-inline' */
.reveal--d1 { --delay:  60ms; }
.reveal--d2 { --delay: 120ms; }
.reveal--d3 { --delay: 180ms; }
.reveal--d4 { --delay: 240ms; }
.reveal--d5 { --delay: 300ms; }
.reveal--d6 { --delay: 360ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
