/* Blossom Nursery — Eco-warm premium nursery system */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Manrope:wght@400;500;600;700;800&family=Noto+Kufi+Arabic:wght@400;500;600;700&display=swap');

:root {
  --ink: #1B2A3A;
  --ink-soft: #4A5868;
  --muted: #8A8478;
  --blossom-deep: #1A3680;
  --blossom-blue: #1FA0D8;
  --blossom-sky: #9ED9EE;
  --blossom-teal: #2BB8C4;
  --leaf: #84B440;
  --leaf-deep: #5F8E2E;
  --blush: #F4B6C2;
  --sand: #F6F1E8;
  --sand-warm: #EFE6D3;
  --paper: #FCFAF5;
  --line: #E7DFCF;
  --line-soft: #EFE8D9;
  --focus: #1FA0D8;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;

  --shadow-card: 0 2px 4px rgba(27,42,58,.03), 0 12px 32px -12px rgba(27,42,58,.10);
  --shadow-lift: 0 4px 8px rgba(27,42,58,.04), 0 24px 56px -20px rgba(27,42,58,.18);

  --display: 'Instrument Serif', 'Times New Roman', serif;
  --body: 'Manrope', system-ui, sans-serif;
  --arabic: 'Noto Kufi Arabic', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

[dir="rtl"] body, [dir="rtl"] {
  font-family: var(--arabic);
}

img { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blossom-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--blossom-deep);
  opacity: .5;
}
[dir="rtl"] .eyebrow { letter-spacing: 0; }

.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.02;
  color: var(--ink);
  margin: 0;
}
.display em {
  font-style: italic;
  color: var(--blossom-deep);
}
[dir="rtl"] .display { font-family: var(--arabic); font-weight: 700; letter-spacing: 0; line-height: 1.2; }

.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--blossom-deep);
  color: #fff;
}
.btn--primary:hover { background: #14296A; box-shadow: 0 10px 24px -10px rgba(26,54,128,.6); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(27,42,58,.18);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--leaf {
  background: var(--leaf);
  color: #fff;
}
.btn--leaf:hover { background: var(--leaf-deep); }
.btn--white {
  background: #fff;
  color: var(--ink);
}
.btn--white:hover { box-shadow: 0 8px 20px -8px rgba(0,0,0,.2); }
.btn--sm { padding: 10px 16px; font-size: 14px; }

.btn .arrow {
  width: 16px; height: 16px; display: inline-block;
  transition: transform .2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }
[dir="rtl"] .btn:hover .arrow { transform: translateX(-3px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(252, 250, 245, 0.78);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.is-scrolled {
  background: rgba(252, 250, 245, 0.92);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  height: 36px;
}
.nav__logo img { height: 36px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  margin-left: 24px;
}
[dir="rtl"] .nav__links { margin-left: 0; margin-right: 24px; }
.nav__link {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  padding: 8px 2px;
  position: relative;
  cursor: pointer;
}
.nav__link:hover { color: var(--blossom-deep); }
.nav__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav__locale {
  display: inline-flex;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  font-size: 12.5px;
  font-weight: 600;
}
.nav__locale button {
  background: none;
  border: 0;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-soft);
}
.nav__locale button.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
@media (max-width: 940px) {
  .nav__links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
}
.hero__title {
  font-size: clamp(48px, 6.4vw, 88px);
  margin-top: 18px;
  white-space: pre-line;
}
.hero__body {
  margin-top: 24px;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.6;
}
.hero__ctas {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero__phone {
  font-size: 14px;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 6px;
}
[dir="rtl"] .hero__phone { padding-left: 0; padding-right: 6px; }
.hero__phone strong { color: var(--ink); font-weight: 700; }

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--sand-warm);
  box-shadow: var(--shadow-lift);
}
.hero__visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 70%;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,.2);
}
[dir="rtl"] .hero__badge { left: auto; right: 24px; }
.hero__badge svg { flex-shrink: 0; }
.hero__badge-text { font-size: 13px; line-height: 1.4; color: var(--ink); }
.hero__badge-text strong { display: block; font-weight: 700; }

.hero__flowers {
  position: absolute;
  top: 30px;
  right: 56%;
  display: flex;
  gap: 6px;
  align-items: flex-end;
  pointer-events: none;
}
[dir="rtl"] .hero__flowers { right: auto; left: 56%; }
.flower {
  border-radius: 50%;
  display: inline-block;
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--blossom-deep);
  color: rgba(255,255,255,0.92);
  padding: 18px 0;
}
.trust__inner {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.trust__inner span { display: inline-flex; align-items: center; gap: 10px; }
.trust__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blossom-sky); opacity: .6; }

/* ---------- Section base ---------- */
section.block { padding: 96px 0; }
@media (max-width: 720px) { section.block { padding: 64px 0; } }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
}
.section-head h2 { font-size: clamp(36px, 4.4vw, 60px); }
.section-head p { color: var(--ink-soft); font-size: 17px; max-width: 50ch; }

/* ---------- Approach: 4 pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.pillar__img {
  aspect-ratio: 4/3;
  background: var(--sand);
  overflow: hidden;
}
.pillar__img img { width: 100%; height: 100%; object-fit: cover; }
.pillar__body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.pillar__tag {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--leaf-deep); margin-bottom: 10px;
}
.pillar__title { font-family: var(--display); font-size: 24px; line-height: 1.1; margin: 0 0 12px; }
[dir="rtl"] .pillar__title { font-family: var(--arabic); font-weight: 700; }
.pillar__body p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* ---------- Programmes + Ages ---------- */
.prog-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .prog-grid { grid-template-columns: 1fr; gap: 36px; } }

.prog-cards { display: grid; gap: 14px; }
.prog-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  transition: border-color .2s, box-shadow .2s;
}
.prog-card:hover { border-color: var(--blossom-blue); box-shadow: var(--shadow-card); }
.prog-card__num {
  font-family: var(--display);
  font-size: 32px;
  color: var(--blossom-deep);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sand);
  display: grid; place-items: center;
}
.prog-card__title { font-size: 20px; font-weight: 700; margin: 0 0 4px; color: var(--ink); }
.prog-card__blurb { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

.ages-panel {
  background: var(--sand);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
}
.ages-panel h3 {
  font-family: var(--display);
  font-size: 28px;
  margin: 0 0 6px;
}
[dir="rtl"] .ages-panel h3 { font-family: var(--arabic); }
.ages-panel p.note {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 22px;
}
.age-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.age-row:first-of-type { border-top: 0; padding-top: 0; }
.age-emirate { font-weight: 700; color: var(--ink); }
.age-range { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.age-tbc {
  font-size: 11px;
  font-weight: 700;
  color: #B07A19;
  background: #FFF1D9;
  border-radius: 6px;
  padding: 2px 8px;
  letter-spacing: 0.04em;
}

/* ---------- Branch finder ---------- */
.branches {
  background: linear-gradient(180deg, var(--paper) 0%, var(--sand) 100%);
}
.filter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-row .label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-right: 6px;
}
[dir="rtl"] .filter-row .label { margin-right: 0; margin-left: 6px; }
.chip {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .15s ease;
}
.chip:hover { border-color: var(--ink); }
.chip.active {
  background: var(--blossom-deep);
  border-color: var(--blossom-deep);
  color: #fff;
}
.chip__count {
  font-size: 11.5px;
  background: var(--sand);
  color: var(--ink-soft);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
}
.chip.active .chip__count { background: rgba(255,255,255,0.18); color: #fff; }

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .branch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .branch-grid { grid-template-columns: 1fr; } }

.branch-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--blossom-blue);
}
.branch-card__img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-warm) 100%);
  position: relative;
  overflow: hidden;
}
.branch-card__img img { width: 100%; height: 100%; object-fit: cover; }
.branch-card__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-image: repeating-linear-gradient(135deg, transparent 0 14px, rgba(0,0,0,0.025) 14px 15px);
}
.branch-card__emirate {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.95);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--blossom-deep);
}
[dir="rtl"] .branch-card__emirate { left: auto; right: 14px; }
.branch-card__map-dot {
  position: absolute; top: 14px; right: 14px;
  background: var(--leaf);
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(132,180,64,0.25);
}
[dir="rtl"] .branch-card__map-dot { right: auto; left: 14px; }
.branch-card__body { padding: 18px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.branch-card__name {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 4px;
}
[dir="rtl"] .branch-card__name { font-family: var(--arabic); font-weight: 700; }
.branch-card__area {
  color: var(--ink-soft);
  font-size: 13.5px;
  margin: 0 0 14px;
}
.branch-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--blossom-deep);
}
.branch-card__cta .arrow { transition: transform .2s; }
.branch-card:hover .branch-card__cta .arrow { transform: translateX(3px); }
[dir="rtl"] .branch-card:hover .branch-card__cta .arrow { transform: translateX(-3px); }

.show-more {
  text-align: center;
  margin-top: 32px;
}

/* ---------- Big Idea (Sustainable Education Approach®) ---------- */
.big-idea {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 88px 64px;
  position: relative;
  overflow: hidden;
}
.big-idea__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .big-idea { padding: 56px 32px; }
  .big-idea__inner { grid-template-columns: 1fr; }
}
.big-idea h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin: 18px 0 24px;
  font-weight: 400;
}
[dir="rtl"] .big-idea h2 { font-family: var(--arabic); font-weight: 700; }
.big-idea .eyebrow { color: var(--blossom-sky); }
.big-idea .eyebrow::before { background: var(--blossom-sky); }
.big-idea p { color: rgba(255,255,255,0.78); font-size: 17px; line-height: 1.65; max-width: 52ch; }
.big-idea__attribution {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.big-idea__visual {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}
.big-idea__visual img { width: 100%; height: 100%; object-fit: cover; }
.big-idea__bg-flower {
  position: absolute;
  font-size: 480px;
  line-height: 1;
  right: -120px;
  bottom: -240px;
  opacity: 0.06;
  font-family: var(--display);
  color: var(--blossom-sky);
  pointer-events: none;
}

.method-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.method-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}

/* ---------- Babilou strip ---------- */
.babilou {
  background: var(--sand);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.babilou__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
}
@media (max-width: 800px) {
  .babilou__inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
}
.babilou__logo {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--ink);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.babilou__logo img { width: 64px; height: auto; }
.babilou__text h3 {
  font-family: var(--display);
  font-size: 28px;
  margin: 0 0 6px;
  font-weight: 400;
}
[dir="rtl"] .babilou__text h3 { font-family: var(--arabic); font-weight: 700; }
.babilou__text p {
  color: var(--ink-soft); font-size: 15px; margin: 0; max-width: 60ch;
}
.babilou__stats {
  display: flex;
  gap: 22px;
  align-items: center;
}
.babilou__stat .n {
  font-family: var(--display);
  font-size: 28px;
  color: var(--blossom-deep);
  display: block;
  line-height: 1;
}
.babilou__stat .l {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}
.babilou__stat sup { font-size: 9px; color: var(--muted); font-weight: 700; }

/* ---------- Leadership ---------- */
.leaders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 800px) { .leaders { grid-template-columns: 1fr; } }
.leader-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.leader-card__img {
  aspect-ratio: 1/1;
  background: var(--sand-warm);
}
.leader-card__img img { width: 100%; height: 100%; object-fit: cover; }
.leader-card__body { padding: 22px 24px 26px; }
.leader-card__name { font-family: var(--display); font-size: 24px; margin: 0 0 4px; }
.leader-card__role { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

/* ---------- Final CTA band ---------- */
.cta-band {
  background: var(--blossom-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band__inner {
  padding: 96px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1.05;
  margin: 0 0 22px;
  font-weight: 400;
}
[dir="rtl"] .cta-band h2 { font-family: var(--arabic); font-weight: 700; }
.cta-band p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 56ch;
  margin: 0 auto 32px;
}
.cta-band .actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-band__flowers {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  align-items: flex-end;
  opacity: 0.6;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 28px;
  font-size: 14px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
}
.footer__brand img { height: 44px; margin-bottom: 18px; }
.footer__brand p { color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 36ch; }
.footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a:hover { color: #fff; }
.footer__bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}
.footer__bottom a { text-decoration: underline; text-decoration-color: rgba(255,255,255,0.2); }
.footer__socials {
  display: flex; gap: 14px; margin-top: 18px;
}
.footer__socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  transition: background .2s;
}
.footer__socials a:hover { background: rgba(255,255,255,0.15); }

/* ---------- Mobile sticky bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 70;
  background: var(--ink);
  border-radius: 999px;
  padding: 8px;
  display: none;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 32px -8px rgba(0,0,0,0.4);
}
.mobile-bar a {
  flex: 1; text-align: center;
  padding: 12px; border-radius: 999px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.mobile-bar a:first-child {
  background: var(--blossom-deep);
}
.mobile-bar a.leaf { background: var(--leaf); }
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 80px; }
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(27,42,58,0.45);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  padding: 24px;
  animation: fade .2s ease;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--paper);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow: auto;
  box-shadow: 0 24px 72px -20px rgba(0,0,0,0.4);
  animation: rise .25s ease;
}
@keyframes rise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal__head {
  padding: 24px 28px 8px;
  display: flex; justify-content: space-between; align-items: center;
}
.modal__close {
  background: none; border: 0; cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink-soft);
}
.modal__close:hover { background: var(--sand); }
.modal h2 { font-family: var(--display); font-size: 32px; margin: 0; font-weight: 400; }
[dir="rtl"] .modal h2 { font-family: var(--arabic); font-weight: 700; }
.modal__body { padding: 8px 28px 28px; }
.modal__body p.lede { font-size: 15px; margin: 0 0 22px; }

.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--ink); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blossom-blue);
  box-shadow: 0 0 0 3px rgba(31,160,216,0.18);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-error { color: #B22; font-size: 12px; margin-top: 4px; }
.modal__success {
  text-align: center;
  padding: 16px 0 8px;
}
.modal__success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--leaf);
  margin: 0 auto 18px;
  display: grid; place-items: center;
  color: #fff;
}
.modal__success h3 { font-family: var(--display); font-size: 28px; margin: 0 0 8px; font-weight: 400; }
.modal__success p { color: var(--ink-soft); margin: 0 0 22px; }

/* ---------- Disclosure notice (safeguarding banner) ---------- */
.safeguard-banner {
  background: #FFF7E6;
  border-bottom: 1px solid #F5E5B8;
  padding: 10px 0;
  text-align: center;
  font-size: 12.5px;
  color: #7A5A0E;
}
.safeguard-banner strong { color: #5A3F00; }

/* ---------- Tweaks panel overrides ---------- */
.dev-toggle {
  position: fixed; bottom: 12px; right: 12px;
  z-index: 50;
}

/* Print speeches: simple */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
