/* ==========================================================================
   Saudi Classical Piano Competition — stylesheet
   Monochrome + warm gold. Bilingual EN / AR with full RTL support.
   Uses CSS logical properties throughout so RTL mirrors automatically.
   ========================================================================== */

/* --- Design tokens ------------------------------------------------------ */
:root {
  --ink:        #0F0F0F;
  --ink-2:      #1C1C1C;
  --ink-3:      #333330;
  --muted:      #6B6862;
  --line:       #DED7CC;
  --ivory:      #FAF7F2;
  --ivory-2:    #F2ECE3;
  --white:      #FFFFFF;

  --gold:       #B8892B;   /* surfaces, rules, accents */
  --gold-deep:  #8A6318;   /* gold used as text on light backgrounds */
  --gold-soft:  #EFE3CB;

  --font-en-display: "Cormorant Garamond", Georgia, serif;
  --font-en-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-ar-display: "Amiri", "Noto Naskh Arabic", serif;
  --font-ar-body:    "IBM Plex Sans Arabic", "Noto Sans Arabic", system-ui, sans-serif;

  --wrap: 1120px;
  --wrap-narrow: 760px;

  --sp-1: .5rem;  --sp-2: 1rem;   --sp-3: 1.5rem;
  --sp-4: 2rem;   --sp-5: 3rem;   --sp-6: 4.5rem;  --sp-7: 6rem;

  --radius: 3px;
  --shadow: 0 1px 2px rgba(15,15,15,.04), 0 8px 24px rgba(15,15,15,.06);
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink-2);
  font-family: var(--font-en-body);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

/* Cormorant Garamond ships old-style (text) figures by default, which sets
   digits at x-height — "2026" ends up looking like lowercase. Force lining
   figures everywhere so numerals sit at cap height. Both properties are
   given: the standard one, and the raw feature flag for older engines. */
body, h1, h2, h3, h4, .display, .facts__value, .prize__amount,
.nav__brand, .footer__title, .person__name, .prize__place {
  font-variant-numeric: lining-nums;
  -webkit-font-feature-settings: "lnum" 1;
  font-feature-settings: "lnum" 1;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-deep); text-underline-offset: 3px; }
h1, h2, h3, h4 { margin: 0 0 var(--sp-2); line-height: 1.2; font-weight: 600; color: var(--ink); }
p { margin: 0 0 var(--sp-2); }
ul, ol { margin: 0 0 var(--sp-2); padding-inline-start: 1.35em; }
li { margin-bottom: .4em; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--sp-5) 0; }

/* --- Language switching -------------------------------------------------
   Both languages ship in the HTML. The <html data-lang> attribute decides
   which one is visible, so there is no flash and no round trip.
   ------------------------------------------------------------------------ */
.l-ar { display: none; }
html[data-lang="ar"] .l-en { display: none; }
html[data-lang="ar"] .l-ar { display: inline; }
html[data-lang="ar"] .l-ar.block,
html[data-lang="ar"] p.l-ar,
html[data-lang="ar"] div.l-ar,
html[data-lang="ar"] ul.l-ar,
html[data-lang="ar"] li.l-ar { display: block; }
html[data-lang="ar"] li.l-ar { display: list-item; }

/* Arabic typography */
html[dir="rtl"] body { font-family: var(--font-ar-body); font-size: 17.5px; line-height: 1.95; }
html[dir="rtl"] h1, html[dir="rtl"] h2,
html[dir="rtl"] h3, html[dir="rtl"] h4 { font-family: var(--font-ar-display); line-height: 1.45; }
html[dir="rtl"] .display { letter-spacing: 0; }

/* Latin fragments inside Arabic text (piece titles, K numbers) stay LTR */
.ltr { direction: ltr; unicode-bidi: isolate; display: inline-block; }

/* --- Layout helpers ----------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.wrap-narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--sp-6); }
.section--tight { padding-block: var(--sp-5); }
.section--dark { background: var(--ink); color: #E8E4DC; }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--alt { background: var(--ivory-2); }
.center { text-align: center; }

.display {
  font-family: var(--font-en-display);
  font-weight: 600;
  letter-spacing: -.01em;
}

.eyebrow {
  font-family: var(--font-en-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--sp-2);
}
html[dir="rtl"] .eyebrow { font-family: var(--font-ar-body); letter-spacing: 0; font-size: .84rem; }
.section--dark .eyebrow { color: var(--gold); }

.lead { font-size: 1.12rem; color: var(--ink-3); }
.muted { color: var(--muted); font-size: .94rem; }

/* --- Header / navigation ------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav {
  display: flex; align-items: center; gap: var(--sp-3);
  min-height: 66px;
}
.nav__brand {
  font-family: var(--font-en-display);
  font-size: 1.05rem; font-weight: 600; font-style: italic;
  color: var(--white); text-decoration: none;
  margin-inline-end: auto; line-height: 1.25;
  padding-block: 8px;
}
html[dir="rtl"] .nav__brand { font-family: var(--font-ar-display); font-style: normal; }
.nav__links { display: none; gap: var(--sp-3); align-items: center; }
.nav__links a {
  color: #C9C4BA; text-decoration: none; font-size: .88rem;
  letter-spacing: .02em; white-space: nowrap; padding-block: 6px;
  border-bottom: 1px solid transparent;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--white); border-bottom-color: var(--gold); }

.nav__tools { display: flex; align-items: center; gap: var(--sp-1); }

.lang-btn {
  background: transparent; color: #C9C4BA;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  padding: 7px 12px; font-size: .8rem; cursor: pointer;
  font-family: inherit; letter-spacing: .04em;
}
.lang-btn:hover { color: var(--white); border-color: var(--gold); }

.menu-btn {
  background: transparent; border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius); color: #C9C4BA;
  padding: 7px 11px; font-size: 1rem; cursor: pointer; line-height: 1;
}
.menu-btn:hover { color: var(--white); }

.nav__drawer {
  display: none;
  background: var(--ink-2);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--sp-2) 0 var(--sp-3);
}
.nav__drawer.open { display: block; }
.nav__drawer a {
  display: block; color: #C9C4BA; text-decoration: none;
  padding: 11px 20px; font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__drawer a:last-child { border-bottom: 0; }
.nav__drawer a:hover, .nav__drawer a[aria-current="page"] { color: var(--white); background: rgba(184,137,43,.12); }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .menu-btn { display: none; }
  .nav__drawer { display: none !important; }
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .03em;
  padding: 13px 26px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: background .18s ease, color .18s ease;
}
.btn:hover { background: #A67B23; border-color: #A67B23; }
.btn--ghost { background: transparent; color: var(--gold); }
.btn--ghost:hover { background: var(--gold); color: var(--ink); }
.btn--lg { padding: 16px 34px; font-size: 1rem; }
.btn--block { display: block; width: 100%; text-align: center; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
html[dir="rtl"] .btn { letter-spacing: 0; }

/* --- Hero --------------------------------------------------------------- */
.hero {
  background: var(--ink);
  color: #E8E4DC;
  text-align: center;
  padding-block: var(--sp-6) var(--sp-6);
  border-bottom: 3px solid var(--gold);
}
/* The wordmark is a wide lockup (~2.9:1) cropped tight to its artwork, so the
   width below is the width of the mark itself, not a mostly-empty canvas. */
.hero__logo { width: min(380px, 80vw); margin: 0 auto var(--sp-4); height: auto; }
@media (min-width: 900px) { .hero__logo { width: 440px; } }
.hero h1 {
  font-family: var(--font-en-display);
  color: var(--white);
  font-size: clamp(2.1rem, 6.2vw, 3.6rem);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}
html[dir="rtl"] .hero h1 { font-family: var(--font-ar-display); }
.hero__meta {
  font-size: 1.02rem; color: var(--gold);
  letter-spacing: .09em; text-transform: uppercase;
  margin-bottom: var(--sp-1);
}
html[dir="rtl"] .hero__meta { letter-spacing: 0; text-transform: none; font-size: 1.1rem; }
.hero__venue { color: #ADA79C; margin-bottom: var(--sp-4); }
.hero__rule { width: 54px; height: 2px; background: var(--gold); margin: 0 auto var(--sp-4); }

/* Page header for interior pages */
.page-head {
  background: var(--ink); color: #E8E4DC;
  padding-block: var(--sp-5);
  border-bottom: 3px solid var(--gold);
}
.page-head h1 {
  font-family: var(--font-en-display); color: var(--white);
  font-size: clamp(1.9rem, 5vw, 2.9rem); margin-bottom: .35rem;
}
html[dir="rtl"] .page-head h1 { font-family: var(--font-ar-display); }
.page-head p { color: #ADA79C; margin: 0; }

/* --- Key facts strip ---------------------------------------------------- */
.facts { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.facts__item { background: var(--white); padding: var(--sp-3) var(--sp-3); }
.facts__label {
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
html[dir="rtl"] .facts__label { letter-spacing: 0; font-size: .82rem; text-transform: none; }
.facts__value { font-family: var(--font-en-display); font-size: 1.28rem; color: var(--ink); font-weight: 600; }
html[dir="rtl"] .facts__value { font-family: var(--font-ar-display); font-size: 1.32rem; }
@media (min-width: 720px) { .facts { grid-template-columns: repeat(4, 1fr); } }

/* --- Cards -------------------------------------------------------------- */
.grid { display: grid; gap: var(--sp-3); }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); }
                            .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-3);
  box-shadow: var(--shadow);
}
.card h3 { font-family: var(--font-en-display); font-size: 1.32rem; margin-bottom: .4rem; }
html[dir="rtl"] .card h3 { font-family: var(--font-ar-display); }
.card--flush { padding: 0; overflow: hidden; }
.card__body { padding: var(--sp-3); }

/* Numbered step cards */
.step { position: relative; padding-inline-start: 56px; margin-bottom: var(--sp-4); }
.step__n {
  position: absolute; inset-inline-start: 0; top: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 600;
}

/* --- People (judges / winners) ------------------------------------------ */
.person__photo {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  background: var(--ivory-2); filter: grayscale(100%);
  transition: filter .4s ease;
}
.person:hover .person__photo { filter: grayscale(0%); }
.person__role {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: .3rem;
}
html[dir="rtl"] .person__role { letter-spacing: 0; font-size: .85rem; text-transform: none; }
.person__name { font-family: var(--font-en-display); font-size: 1.3rem; margin-bottom: .5rem; }
html[dir="rtl"] .person__name { font-family: var(--font-ar-display); }

.judge { display: grid; gap: var(--sp-3); margin-bottom: var(--sp-5); align-items: start; }
.judge .person__photo { max-width: 320px; aspect-ratio: 3 / 4; }
@media (min-width: 760px) { .judge { grid-template-columns: 260px 1fr; gap: var(--sp-4); } }
.judge:last-child { margin-bottom: 0; }

.jury-head { margin-bottom: var(--sp-4); }

/* --- Founder opening -----------------------------------------------------
   Two shapes, chosen in build.py by whether a portrait exists. The lede
   version is a centred editorial opening that stands on its own, so the page
   never reads as a portrait card with an empty frame in it.
   ------------------------------------------------------------------------ */
.founder__name { font-size: clamp(1.9rem, 4.6vw, 2.9rem); margin-bottom: 0; }
.founder__rule { width: 48px; height: 2px; background: var(--gold); margin-block: var(--sp-3); }
.founder__bio p { color: var(--ink-3); }
.founder__bio p:last-child { margin-bottom: 0; }

/* No portrait: centred heading, measured body text below it */
.founder--lede { max-width: 720px; margin-inline: auto; text-align: center; }
.founder--lede .founder__rule { margin-inline: auto; }
.founder--lede .founder__bio {
  text-align: start;
  font-size: 1.08rem;
  line-height: 1.8;
  padding-top: var(--sp-1);
}
html[dir="rtl"] .founder--lede .founder__bio { line-height: 2; }

/* Portrait supplied: two-column lead, no other change needed */
.founder--portrait { display: grid; gap: var(--sp-3); align-items: start; }
.founder__photo { max-width: 320px; aspect-ratio: 3 / 4; }
@media (min-width: 760px) {
  .founder--portrait { grid-template-columns: 300px 1fr; gap: var(--sp-5); }
}

/* --- Awards ------------------------------------------------------------- */
.prize { text-align: center; border-top: 3px solid var(--line); }
.prize--1 { border-top-color: var(--gold); }
.prize__place {
  font-family: var(--font-en-display); font-size: 1.1rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  margin-bottom: var(--sp-1);
}
html[dir="rtl"] .prize__place { font-family: var(--font-ar-display); letter-spacing: 0; text-transform: none; font-size: 1.2rem; }
.prize__amount {
  font-family: var(--font-en-display); font-size: 2.5rem; font-weight: 600;
  color: var(--ink); line-height: 1.1; margin-bottom: .2rem;
}
.prize__currency { font-size: 1rem; color: var(--muted); letter-spacing: .1em; }

/* --- Repertoire --------------------------------------------------------- */
.rep { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); margin-bottom: var(--sp-3); }
.rep__head { padding: var(--sp-3); border-bottom: 1px solid var(--line); background: var(--ivory-2); }
.rep__head h3 { margin-bottom: .25rem; }
.rep__body { padding: var(--sp-3); }
.rep__label {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: .5rem;
}
html[dir="rtl"] .rep__label { letter-spacing: 0; text-transform: none; font-size: .85rem; }
.rep__required { font-size: 1.05rem; color: var(--ink); margin-bottom: var(--sp-3); }
.rep__choices { list-style: none; padding: 0; margin: 0; }
.rep__choices li {
  padding: 9px 0; border-bottom: 1px dashed var(--line);
  display: flex; gap: .7rem; align-items: baseline;
}
.rep__choices li:last-child { border-bottom: 0; }
.rep__choices li { padding: 0; display: block; }
.rep__choices .n { color: var(--gold-deep); font-size: .82rem; min-width: 1.4em; flex-shrink: 0; }

/* --- Score download rows ------------------------------------------------ */
.score {
  display: flex; align-items: center; gap: .75rem;
  padding: 11px 10px; margin-inline: -10px;
  text-decoration: none; color: inherit;
  border-radius: var(--radius);
  transition: background .15s ease;
}
a.score:hover, a.score:focus-visible { background: var(--gold-soft); outline: none; }
a.score:focus-visible { box-shadow: 0 0 0 2px var(--gold); }
.score__title { flex: 1; min-width: 0; }
.score__hint {
  display: block; font-size: .8rem; color: var(--muted); margin-top: 2px;
}
a.score:hover .score__title > .ltr { color: var(--gold-deep); }
.score__pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .1em;
  color: var(--gold-deep); border: 1px solid var(--gold);
  border-radius: 2px; padding: 4px 9px; white-space: nowrap; flex-shrink: 0;
}
html[dir="rtl"] .score__pill { letter-spacing: 0; font-size: .78rem; }
a.score:hover .score__pill { background: var(--gold); color: var(--ink); }
.score__icon { flex-shrink: 0; }
.score--none { cursor: default; }
.score--none .score__title { color: var(--muted); }
.score__pill--none {
  color: var(--muted); border-color: var(--line);
  border-style: dashed; font-weight: 400;
}

/* The required piece sits in a slightly heavier row of its own */
.rep__required .score { padding-inline: 12px; margin-inline: 0;
  background: var(--ivory); border: 1px solid var(--line); }
.rep__required a.score:hover { background: var(--gold-soft); border-color: var(--gold); }

/* --- Table -------------------------------------------------------------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; background: var(--white); font-size: .95rem; }
th, td { padding: 13px 16px; text-align: start; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--ivory-2); font-weight: 600; color: var(--ink); font-size: .84rem;
     letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
html[dir="rtl"] th { letter-spacing: 0; text-transform: none; font-size: .92rem; }
tbody tr:last-child td { border-bottom: 0; }

/* --- Callouts ----------------------------------------------------------- */
.note {
  background: var(--gold-soft);
  border-inline-start: 3px solid var(--gold);
  padding: var(--sp-3);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .96rem;
}
html[dir="rtl"] .note { border-radius: var(--radius) 0 0 var(--radius); }
.note p:last-child { margin-bottom: 0; }

.deadline {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--white); border: 1px solid var(--line);
  padding: 10px 18px; border-radius: var(--radius); font-size: .95rem;
}
.deadline strong { color: var(--ink); }

/* --- Form --------------------------------------------------------------- */
.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
        padding: var(--sp-4) var(--sp-3); box-shadow: var(--shadow); }
@media (min-width: 640px) { .form { padding: var(--sp-5) var(--sp-4); } }

.field { margin-bottom: var(--sp-3); }
.field > label, .field > .field__legend {
  display: block; font-weight: 600; font-size: .93rem;
  color: var(--ink); margin-bottom: .4rem;
}
.field__hint { font-size: .85rem; color: var(--muted); margin-bottom: .5rem; line-height: 1.6; }
.req { color: #A33; margin-inline-start: 2px; }

input[type="text"], input[type="email"], input[type="tel"], input[type="date"], select, textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--ivory); color: var(--ink);
  font-family: inherit; font-size: 1rem; line-height: 1.5;
}
html[dir="rtl"] input, html[dir="rtl"] select, html[dir="rtl"] textarea { text-align: right; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--gold); outline-offset: 1px;
  border-color: var(--gold); background: var(--white);
}
input::placeholder { color: #A8A29A; }
select { appearance: none; background-image:
  linear-gradient(45deg, transparent 50%, var(--muted) 50%),
  linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
html[dir="rtl"] select { background-position: 14px 50%, 20px 50%;
  background-image: linear-gradient(135deg, transparent 50%, var(--muted) 50%),
                    linear-gradient(45deg, var(--muted) 50%, transparent 50%); }

.field-row { display: grid; gap: var(--sp-2); }
@media (min-width: 640px) { .field-row--3 { grid-template-columns: repeat(3, 1fr); }
                            .field-row--2 { grid-template-columns: repeat(2, 1fr); } }

.check { display: flex; gap: .75rem; align-items: flex-start;
         background: var(--ivory-2); padding: var(--sp-3); border-radius: var(--radius);
         border: 1px solid var(--line); }
.check input[type="checkbox"] { width: 20px; height: 20px; margin-top: 3px; flex-shrink: 0; accent-color: var(--gold); }
.check label { font-size: .93rem; line-height: 1.7; }

.form__error { color: #A33; font-size: .86rem; margin-top: .35rem; display: none; }
.field.invalid .form__error { display: block; }
.field.invalid input, .field.invalid select { border-color: #A33; }

.form__status { margin-top: var(--sp-3); padding: var(--sp-3); border-radius: var(--radius); display: none; font-size: .95rem; }
.form__status.show { display: block; }
.form__status.ok { background: #E8F1E8; border: 1px solid #B6D2B6; color: #23471F; }
.form__status.err { background: #F7E9E9; border: 1px solid #D9B4B4; color: #6B2020; }

.fieldset-plain { border: 0; padding: 0; margin: 0 0 var(--sp-3); }

/* --- Gallery ------------------------------------------------------------ */
.gallery { display: grid; gap: var(--sp-2); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery img { aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius); }

.empty-slot {
  border: 1px dashed var(--line); border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-3); text-align: center; color: var(--muted);
  background: var(--white); font-size: .93rem;
}

/* --- Footer ------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #A8A29A; padding-block: var(--sp-5) var(--sp-4); font-size: .92rem; }
.site-footer a { color: #C9C4BA; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer__grid { display: grid; gap: var(--sp-4); margin-bottom: var(--sp-4); }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer__title { color: var(--white); font-family: var(--font-en-display); font-size: 1.15rem;
                 font-style: italic; margin-bottom: .6rem; }
html[dir="rtl"] .footer__title { font-family: var(--font-ar-display); font-style: normal; }
.footer__h { color: var(--white); font-size: .76rem; letter-spacing: .15em;
             text-transform: uppercase; margin-bottom: .7rem; }
html[dir="rtl"] .footer__h { letter-spacing: 0; text-transform: none; font-size: .9rem; }
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: .45rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: var(--sp-3);
                  font-size: .84rem; color: #7E7A72; }

/* --- Utilities ---------------------------------------------------------- */
.mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.stack > * + * { margin-top: var(--sp-3); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; inset-inline-start: -9999px; top: 0;
  background: var(--gold); color: var(--ink); padding: 10px 18px; z-index: 100;
}
.skip-link:focus { inset-inline-start: 0; }

@media print {
  .site-header, .site-footer, .btn, .lang-btn, .menu-btn { display: none !important; }
  body { background: #fff; font-size: 12pt; }
}
