@charset "UTF-8";
/* ==========================================================================
   أبرشية الموصل وتوابعها للسريان الكاثوليك
   Light-first. Dark is an opt-in second skin, not an inversion.
   Palette derives from the 2023 coat of arms: navy #193769, gold #FECD07.
   ========================================================================== */

/* ---------- tokens : LIGHT (default) ---------- */
:root {
  --bg: #FAF8F3;
  /* warm paper */
  --bg-2: #F3F0E8;
  /* alternating band */
  --surface: #FFFFFF;
  --ink: #101C33;
  /* 15.6:1 on --bg */
  --ink-2: #3D4C6B;
  /*  8.3:1 */
  --muted: #6A7791;
  /*  4.6:1 — small text safe */
  --line: #E5E1D6;
  --line-2: #D8D3C5;

  --navy: #193769;
  --navy-2: #24487F;
  --gold: #C9971A;
  /* UI gold: rules, marks */
  --gold-ink: #92690A;
  /* text-safe gold, 5.3:1 */
  --gold-a: #B8860B;
  /* gradient stop a */
  --gold-b: #8A6410;
  /* gradient stop b */
  --red: #C0272D;

  --shadow-s: 0 1px 2px rgba(16, 28, 51, .05), 0 2px 8px rgba(16, 28, 51, .04);
  --shadow-m: 0 2px 4px rgba(16, 28, 51, .05), 0 14px 34px -14px rgba(16, 28, 51, .16);
  --shadow-l: 0 30px 70px -28px rgba(16, 28, 51, .28);
  --hero-sky: linear-gradient(180deg, #F7F4EC 0%, #EFEBE0 58%, #E6E1D3 100%);
  --tower: #D5CFBE;
  --grain-o: .035;

  /* type */
  --ar-display: "Amiri", "Traditional Arabic", "Noto Naskh Arabic", Georgia, serif;
  --ar-body: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, system-ui, sans-serif;
  --la-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --mono: "JetBrains Mono", "Cascadia Mono", ui-monospace, Consolas, monospace;

  /* rhythm — a sexagesimal scale, because base 60 came from this soil */
  --s1: 5px;
  --s2: 10px;
  --s3: 15px;
  --s4: 20px;
  --s5: 30px;
  --s6: 45px;
  --s7: 60px;
  --s8: 90px;
  --s9: 120px;
  --s10: 180px;

  --wrap: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-o: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- tokens : DARK (opt-in) ---------- */
:root[data-theme="dark"] {
  --bg: #080D16;
  --bg-2: #0D1524;
  --surface: #0F1929;
  --ink: #F2ECDC;
  /* warm cream, echoing Base60 */
  --ink-2: #B7C3D6;
  --muted: #8394AC;
  --line: #1E2A3F;
  --line-2: #2A3A54;

  --navy: #7DA0DA;
  --navy-2: #9DB8E6;
  --gold: #FECD07;
  --gold-ink: #FFD57A;
  --gold-a: #FFD57A;
  --gold-b: #F0B042;
  --red: #ED5B60;

  --shadow-s: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow-m: 0 2px 6px rgba(0, 0, 0, .45), 0 16px 40px -16px rgba(0, 0, 0, .7);
  --shadow-l: 0 34px 80px -30px rgba(0, 0, 0, .85);
  --hero-sky: linear-gradient(180deg, #0A1120 0%, #101C31 55%, #16253E 100%);
  --tower: #1B2A44;
  --grain-o: .05;
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 136px;
  /* clears both header tiers */
  -webkit-text-size-adjust: 100%;
}

body.menu-open {
  overflow: hidden;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ar-body);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color .4s var(--ease), color .4s var(--ease);
}

.defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

::selection {
  background: var(--gold);
  color: #12203B;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

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

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

.skip {
  position: absolute;
  inset-inline-start: -9999px;
  top: 0;
  z-index: 999;
  background: var(--navy);
  color: #fff;
  padding: 12px 22px;
  border-radius: 0 0 8px 0;
}

.skip:focus {
  inset-inline-start: 0;
}

/* ---------- shared type ----------
   NOTE: Arabic is cursive — letter-spacing breaks the joins between letters.
   It is never applied to Arabic text anywhere in this stylesheet. The
   micro-label look is carried by a gold rule + weight instead. */
.lbl {
  font-family: var(--ar-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: normal;
  color: var(--gold-ink);
  margin-bottom: var(--s3);
  display: flex;
  align-items: center;
  gap: 11px;
}

.lbl::before {
  content: "";
  width: 24px;
  height: 1.5px;
  flex: none;
  background: var(--gold);
  border-radius: 2px;
}

:root[data-theme="dark"] .lbl {
  color: var(--gold);
}

h1,
h2,
h3,
h4 {
  font-family: var(--ar-display);
  font-weight: 400;
  line-height: 1.3;
  text-wrap: balance;
}

h2 {
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.28;
  letter-spacing: -.005em;
  margin-bottom: var(--s3);
}

.sub {
  color: var(--ink-2);
  font-size: 17px;
  max-width: 56ch;
}

.grad {
  background: linear-gradient(148deg, var(--gold-a) 0%, var(--gold-b) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.prose p {
  color: var(--ink-2);
  margin-bottom: var(--s3);
  max-width: 54ch;
}

.prose p:last-child {
  margin-bottom: 0;
}

.lnk {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--ar-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-top: var(--s4);
  transition: gap .35s var(--ease), color .25s var(--ease);
}

.lnk span {
  transition: transform .35s var(--ease);
  display: inline-block;
}

.lnk:hover {
  gap: 14px;
  color: var(--gold-ink);
}

.lnk:hover span {
  transform: translateX(-4px);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ar-body);
  font-size: 15.5px;
  font-weight: 500;
  padding: 13px var(--s5);
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
    background-color .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}

.btn-p {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-m);
}

.btn-p:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-l);
}

:root[data-theme="dark"] .btn-p {
  background: var(--gold);
  color: #12203B;
}

:root[data-theme="dark"] .btn-p:hover {
  background: var(--gold-ink);
}

.btn-s {
  border-color: var(--line-2);
  color: var(--ink);
}

.btn-s:hover {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-2px);
}

:root[data-theme="dark"] .btn-s:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ==========================================================================
   header — two tiers: identity above, the twelve sections below

   PERF: this bar is fixed, so anything expensive here repaints on every
   scrolled frame. It deliberately uses a flat opaque background rather than
   backdrop-filter, which was a measurable cause of scroll jank.
   ========================================================================== */
.hdr {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  background: var(--bg);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow .3s var(--ease);
  will-change: box-shadow;
}

.hdr.is-stuck {
  box-shadow: 0 1px 0 0 var(--line), 0 10px 30px -18px rgba(16, 28, 51, .3);
}

.hdr-top {
  border-bottom: 1px solid var(--line);
}

.hdr-top-in {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 13px var(--s5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand img {
  width: 46px;
  height: auto;
}

.brand-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.brand-txt b {
  font-family: var(--ar-display);
  font-size: 19px;
  font-weight: 400;
}

.brand-txt i {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: normal;
}

.hdr-tools {
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.hdr-contact {
  font-size: 14.5px;
  color: var(--ink-2);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  transition: color .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease);
}

.hdr-contact:hover {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

:root[data-theme="dark"] .hdr-contact:hover {
  color: #12203B;
  background: var(--gold);
  border-color: var(--gold);
}

.tgl {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  flex: none;
  display: grid;
  place-items: center;
  color: var(--ink-2);
  border: 1px solid var(--line-2);
  transition: color .25s var(--ease), border-color .25s var(--ease), transform .4s var(--ease);
}

.tgl:hover {
  color: var(--gold-ink);
  border-color: var(--gold);
  transform: rotate(-18deg);
}

.tgl svg {
  width: 17px;
  height: 17px;
}

.tgl .i-moon {
  display: none;
}

:root[data-theme="dark"] .tgl .i-sun {
  display: none;
}

:root[data-theme="dark"] .tgl .i-moon {
  display: block;
}

.burger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  flex: none;
}

.burger span {
  display: block;
  width: 16px;
  height: 1.6px;
  background: var(--ink);
  margin: 3.5px auto;
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .2s var(--ease);
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.1px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.1px) rotate(-45deg);
}

/* ---------- the twelve sections ---------- */
.nav {
  background: var(--navy);
}

:root[data-theme="dark"] .nav {
  background: #12203A;
  border-block: 1px solid #24365A;
}

.nav-in {
  max-width: 1340px;
  margin-inline: auto;
  padding-inline: var(--s4);
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.nav a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 11px 13px;
  font-size: 13.5px;
  line-height: 1.3;
  color: rgba(255, 255, 255, .8);
  white-space: nowrap;
  transition: color .22s var(--ease), background-color .22s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline: 50%;
  height: 2.5px;
  background: var(--gold);
  transition: inset-inline .28s var(--ease);
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .07);
}

.nav a:hover::after,
.nav a[aria-current]::after {
  inset-inline: 10px;
}

.nav a[aria-current] {
  color: var(--gold);
}

.nav a:focus-visible {
  outline-offset: -3px;
}

/* ==========================================================================
   hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  /* fallback for browsers without svh */
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 190px var(--s5) var(--s9);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--hero-sky);
}

.glow {
  position: absolute;
  inset-block-start: -18%;
  inset-inline-start: 50%;
  transform: translateX(50%);
  width: min(1000px, 128vw);
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%,
      rgba(201, 151, 26, .16) 0%, rgba(201, 151, 26, .06) 38%, transparent 68%);
  pointer-events: none;
}

:root[data-theme="dark"] .glow {
  background: radial-gradient(circle at 50% 50%,
      rgba(254, 205, 7, .14) 0%, rgba(254, 205, 7, .05) 40%, transparent 70%);
}

.skyline {
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  height: 34%;
  /* dissolve upward so the towers never compete with the motto or the buttons */
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 42%, transparent 96%);
  mask-image: linear-gradient(to top, #000 0%, #000 42%, transparent 96%);
  opacity: .85;
}

.skyline svg {
  width: 100%;
  height: 100%;
  fill: var(--tower);
}

.skyline .ground {
  opacity: .5;
}

.sk {
  opacity: 0;
  transform: translateY(26px);
}

.sk-1 {
  animation: rise 1.25s var(--ease-o) .30s forwards;
}

.sk-2 {
  animation: rise 1.25s var(--ease-o) .42s forwards;
}

.sk-3 {
  animation: rise 1.25s var(--ease-o) .18s forwards;
}

.sk-4 {
  animation: rise 1.25s var(--ease-o) .52s forwards;
}

.sk-5 {
  animation: rise 1.25s var(--ease-o) .62s forwards;
}

@keyframes rise {
  to {
    opacity: .9;
    transform: translateY(0);
  }
}

/* The grain overlay was removed: a full-viewport noise texture inside a
   position:fixed stacking context repainted on every scrolled frame and was a
   contributor to the scroll jank. The gradient alone carries the warmth. */

.hero-in {
  position: relative;
  text-align: center;
  max-width: 900px;
}

.eyebrow {
  font-family: var(--ar-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: normal;
  color: var(--muted);
  margin-bottom: var(--s5);
}

/* Amiri carries full harakat; the vowel marks sit high above the baseline and
   the descenders hang low, so display sizes need a genuinely open line-height.
   1.45 is the point at which تَخَفْ stops colliding with the line beneath it. */
.motto {
  font-family: var(--ar-display);
  font-size: clamp(42px, 9vw, 104px);
  line-height: 1.45;
  letter-spacing: normal;
  margin-bottom: var(--s4);
}

.motto-ref {
  font-family: var(--ar-body);
  font-size: 13.5px;
  letter-spacing: normal;
  color: var(--muted);
}

.hero-name {
  font-family: var(--ar-display);
  font-size: clamp(19px, 2.5vw, 26px);
  line-height: 1.7;
  color: var(--ink-2);
  margin-block: var(--s5) var(--s6);
}

.hero-cta {
  display: flex;
  gap: var(--s3);
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  inset-block-end: var(--s5);
  inset-inline-start: 50%;
  transform: translateX(50%);
  width: 1px;
  height: 46px;
  background: var(--line-2);
  overflow: hidden;
}

.scroll-hint span {
  position: absolute;
  inset-inline: 0;
  height: 18px;
  background: var(--gold);
  animation: trickle 2.4s var(--ease) infinite;
}

@keyframes trickle {
  0% {
    top: -18px;
  }

  100% {
    top: 46px;
  }
}

/* ==========================================================================
   figures
   ========================================================================== */
.figures {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
}

.fig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fig {
  padding: var(--s6) var(--s4);
  text-align: center;
  border-inline-start: 1px solid var(--line);
}

.fig:first-child {
  border-inline-start: 0;
}

.fig b {
  display: block;
  font-family: var(--ar-display);
  font-size: clamp(32px, 4.6vw, 50px);
  font-weight: 400;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.fig span {
  display: block;
  margin-top: var(--s2);
  font-size: 13.5px;
  color: var(--muted);
}

/* ==========================================================================
   sections
   ========================================================================== */
.sec {
  padding-block: clamp(var(--s8), 12vw, var(--s10));
}

.sec-alt {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.two {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(var(--s6), 7vw, var(--s9));
  align-items: start;
}

.two-r {
  grid-template-columns: .85fr 1.15fr;
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s5);
  margin-bottom: var(--s7);
  flex-wrap: wrap;
}

.sec-head h2 {
  margin-bottom: 0;
}

.sec-head .lnk {
  margin-top: 0;
}

/* ---------- timeline ---------- */
.tl {
  list-style: none;
  position: relative;
  padding-inline-start: var(--s5);
}

.tl::before {
  content: "";
  position: absolute;
  inset-block: 6px 6px;
  inset-inline-start: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--line-2), var(--line-2) 60%, transparent);
}

.tl li {
  position: relative;
  padding-bottom: var(--s5);
}

.tl li:last-child {
  padding-bottom: 0;
}

.tl li::before {
  content: "";
  position: absolute;
  inset-inline-start: calc(var(--s5) * -1);
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1.5px solid var(--line-2);
  transform: translateX(3px);
}

.tl li.is-now::before {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 151, 26, .22);
  /* fallback */
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 22%, transparent);
}

.tl b {
  display: block;
  font-family: var(--ar-display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: normal;
  color: var(--gold-ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.4;
}

:root[data-theme="dark"] .tl b {
  color: var(--gold);
}

.tl p {
  font-size: 15.5px;
  color: var(--ink-2);
  margin-top: 3px;
}

.tl li.is-now p {
  color: var(--ink);
}

/* ---------- image figures ---------- */
.fig-img {
  margin: 0;
}

.fig-img img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}

.fig-img figcaption {
  margin-top: var(--s2);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- the four churches, as a list ---------- */
.ch-list {
  margin-top: var(--s6);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.ch-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s4);
  background: var(--surface);
  transition: background-color .3s var(--ease);
}

.ch-item:hover {
  background: var(--bg-2);
}

.ch-ico {
  width: 22px;
  height: 30px;
  fill: var(--navy);
  flex: none;
}

:root[data-theme="dark"] .ch-ico {
  fill: var(--gold);
}

.ch-item b {
  display: block;
  font-family: var(--ar-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.ch-item span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 1px;
}

/* ---------- history layout ---------- */
.hist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s6), 6vw, var(--s8));
  align-items: start;
  margin-top: var(--s7);
}

/* ---------- activities ---------- */
.act-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}

.act {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  padding: var(--s5) var(--s4);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  border-top: 3px solid var(--gold);
  transition: transform .4s var(--ease-o), box-shadow .4s var(--ease-o);
}

.act:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-m);
}

.act-d {
  font-size: 12.5px;
  color: var(--gold-ink);
  font-weight: 600;
}

:root[data-theme="dark"] .act-d {
  color: var(--gold);
}

.act b {
  font-family: var(--ar-display);
  font-size: 18.5px;
  font-weight: 400;
  line-height: 1.45;
}

.act-p {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: auto;
}

/* ---------- sections grid ---------- */
.sx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s7);
}

.sx {
  padding: var(--s5);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease-o), box-shadow .4s var(--ease-o), border-color .4s var(--ease-o);
}

.sx:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-m);
  border-color: var(--line-2);
}

.sx h3 {
  font-size: 22px;
  margin-bottom: var(--s2);
}

.sx p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: var(--s3);
}

.sx .lnk {
  margin-top: auto;
  font-size: 14px;
}

.sx-note {
  background: transparent;
  border-style: dashed;
  border-color: var(--line-2);
}

.sx-note:hover {
  transform: none;
  box-shadow: none;
}

.sx-note h3 {
  color: var(--gold-ink);
  font-size: 19px;
}

:root[data-theme="dark"] .sx-note h3 {
  color: var(--gold);
}

.sx-note p {
  color: var(--muted);
  margin-bottom: 0;
}

/* ---------- archbishop ---------- */
.bish-media {
  position: sticky;
  top: 120px;
}

.bish-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: var(--s6) var(--s5);
  box-shadow: var(--shadow-m);
  display: grid;
  place-items: center;
}

.bish-frame img {
  width: min(260px, 100%);
  height: auto;
}

.cap {
  margin-top: var(--s3);
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.bish-role {
  font-family: var(--ar-body);
  font-size: 16px;
  color: var(--gold-ink);
  margin-bottom: var(--s4);
}

:root[data-theme="dark"] .bish-role {
  color: var(--gold);
}

/* ---------- news ---------- */
.nw-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: var(--s4);
}

.nw {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .45s var(--ease-o), box-shadow .45s var(--ease-o), border-color .45s var(--ease-o);
}

.nw:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-m);
  border-color: var(--line-2);
}

.nw-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.nw-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transition: transform .7s var(--ease-o);
}

.nw:hover .nw-img img {
  transform: scale(1.04);
}

.nw-body {
  padding: var(--s5);
}

.nw-date {
  font-family: var(--ar-body);
  font-size: 13px;
  letter-spacing: normal;
  color: var(--muted);
  margin-bottom: var(--s2);
  font-variant-numeric: tabular-nums;
}

.nw h3 {
  font-size: 22px;
  line-height: 1.4;
  transition: color .3s var(--ease);
}

.nw:hover h3 {
  color: var(--navy);
}

:root[data-theme="dark"] .nw:hover h3 {
  color: var(--gold);
}

.nw-x {
  font-size: 15px;
  color: var(--ink-2);
  margin-top: var(--s3);
  line-height: 1.7;
}

.nw-side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: var(--s4);
}

.nw-sm {
  padding: var(--s4) var(--s5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nw-sm h3 {
  font-size: 18.5px;
}

/* ---------- radio ---------- */
.rd {
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: clamp(var(--s6), 6vw, var(--s8));
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: var(--s6);
  align-items: center;
  box-shadow: var(--shadow-l);
}

.rd::before {
  content: "";
  position: absolute;
  inset-block-start: -40%;
  inset-inline-end: -12%;
  width: 520px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(254, 205, 7, .24), transparent 66%);
  pointer-events: none;
}

:root[data-theme="dark"] .rd {
  background: var(--surface);
  border: 1px solid var(--line-2);
}

.rd-live {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--ar-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: normal;
  color: var(--gold);
  margin-bottom: var(--s3);
}

.rd-live .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ED1B26;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(237, 27, 38, .5);
  }

  50% {
    opacity: .75;
    box-shadow: 0 0 0 7px rgba(237, 27, 38, 0);
  }
}

.rd-h {
  font-family: var(--ar-display);
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--s1);
  line-height: 1.35;
}

.rd-sy {
  font-family: var(--ar-display);
  font-size: 21px;
  color: var(--gold);
  margin-bottom: var(--s3);
}

.rd-x {
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  max-width: 46ch;
}

.rd-x b {
  color: #fff;
  font-variant-numeric: tabular-nums;
}

:root[data-theme="dark"] .rd-h {
  color: var(--ink);
}

:root[data-theme="dark"] .rd-x {
  color: var(--ink-2);
}

.rd-r {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
}

.rd-r .btn-p {
  background: var(--gold);
  color: #12203B;
}

.rd-r .btn-p:hover {
  background: #fff;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 44px;
}

.bars i {
  width: 4px;
  background: var(--gold);
  border-radius: 2px;
  animation: eq 1.15s var(--ease) infinite;
}

.bars i:nth-child(1) {
  height: 40%;
  animation-delay: 0s;
}

.bars i:nth-child(2) {
  height: 75%;
  animation-delay: .13s;
}

.bars i:nth-child(3) {
  height: 55%;
  animation-delay: .26s;
}

.bars i:nth-child(4) {
  height: 95%;
  animation-delay: .39s;
}

.bars i:nth-child(5) {
  height: 60%;
  animation-delay: .52s;
}

.bars i:nth-child(6) {
  height: 82%;
  animation-delay: .65s;
}

.bars i:nth-child(7) {
  height: 45%;
  animation-delay: .78s;
}

@keyframes eq {

  0%,
  100% {
    transform: scaleY(.42);
  }

  50% {
    transform: scaleY(1);
  }
}

/* ==========================================================================
   footer
   ========================================================================== */
.ft {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding-block: var(--s8) var(--s5);
}

.ft-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: var(--s6);
}

.ft-brand img {
  width: 58px;
  margin-bottom: var(--s3);
}

.ft-name {
  font-family: var(--ar-display);
  font-size: 19px;
  line-height: 1.4;
}

.ft-motto {
  font-family: var(--ar-display);
  font-size: 16px;
  color: var(--gold-ink);
  margin-top: var(--s2);
}

:root[data-theme="dark"] .ft-motto {
  color: var(--gold);
}

.ft-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s2);
}

.ft-col h4 {
  font-family: var(--ar-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: normal;
  color: var(--ink);
  margin-bottom: var(--s2);
}

.ft-col a {
  font-size: 15px;
  color: var(--ink-2);
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.ft-col a:hover {
  color: var(--gold-ink);
  transform: translateX(-3px);
}

:root[data-theme="dark"] .ft-col a:hover {
  color: var(--gold);
}

.ft-addr {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: var(--s2);
  line-height: 1.6;
}

.ft-credits {
  border-top: 1px solid var(--line);
  margin-top: var(--s7);
  padding-top: var(--s4);
}

.ft-credits p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 92ch;
}

.ft-btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  margin-top: var(--s4);
  padding-top: var(--s4);
  font-size: 13px;
  color: var(--muted);
}

.ft-by a {
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-2);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.ft-by a:hover {
  color: var(--gold-ink);
  border-color: var(--gold);
}

/* ==========================================================================
   reveal on scroll
   ========================================================================== */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .85s var(--ease-o), transform .85s var(--ease-o);
}

.rv.in {
  opacity: 1;
  transform: none;
}

.rv-1 {
  transition-delay: .07s;
}

.rv-2 {
  transition-delay: .14s;
}

.rv-3 {
  transition-delay: .21s;
}

.rv-4 {
  transition-delay: .28s;
}

/* ==========================================================================
   responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .nav a {
    padding: 11px 10px;
    font-size: 13px;
  }

  .sx-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .act-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1040px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s6) var(--s5);
  }

  /* the twelve sections become a full-height sheet */
  .burger {
    display: block;
  }

  .hdr-contact {
    display: none;
  }

  /* the sheet slides out from behind this bar, so the bar needs its own
     opaque ground — otherwise the brand renders dark-on-navy */
  .hdr-top {
    position: relative;
    z-index: 2;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }

  .nav {
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    height: 100svh;
    overflow-y: auto;
    background: var(--navy);
    padding: 84px var(--s4) var(--s7);
    transform: translateY(-100%);
    transition: transform .5s var(--ease-o);
    z-index: -1;
  }

  :root[data-theme="dark"] .nav {
    background: #12203A;
  }

  .nav.is-open {
    transform: none;
  }

  .nav-in {
    flex-direction: column;
    align-items: stretch;
    padding-inline: 0;
    max-width: 560px;
  }

  .nav a {
    padding: 15px var(--s3);
    font-size: 16.5px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
  }

  .nav a::after {
    display: none;
  }

  .nav a[aria-current] {
    background: rgba(255, 255, 255, .08);
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 92px;
  }

  .two,
  .two-r,
  .hist {
    grid-template-columns: 1fr;
    gap: var(--s6);
  }

  .bish-media {
    position: static;
    order: -1;
  }

  .nw-grid {
    grid-template-columns: 1fr;
  }

  .nw-side {
    grid-template-rows: none;
  }

  .fig-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fig:nth-child(3) {
    border-inline-start: 0;
  }

  .fig:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .rd {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .rd-live {
    justify-content: center;
  }

  .rd-x {
    margin-inline: auto;
  }

  .bars {
    justify-content: center;
  }

  .hero {
    padding-top: 150px;
  }
}

@media (max-width: 620px) {
  .wrap {
    padding-inline: var(--s4);
  }

  .hdr-top-in {
    padding-inline: var(--s4);
  }

  .brand img {
    width: 38px;
  }

  .brand-txt b {
    font-size: 16px;
  }

  .brand-txt i {
    font-size: 11px;
  }

  .ch-list {
    grid-template-columns: 1fr;
  }

  .sx-grid,
  .act-grid {
    grid-template-columns: 1fr;
  }

  .ft-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .ft-btm {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s2);
  }
}

/* ==========================================================================
   accessibility & print
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .rv {
    opacity: 1;
    transform: none;
  }

  .sk {
    opacity: .9;
    transform: none;
  }
}

@media print {

  .hdr,
  .scroll-hint,
  .hero-bg,
  .burger,
  .tgl {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .rv {
    opacity: 1;
    transform: none;
  }

  .sec {
    padding-block: 20px;
  }
}