/* =====================================================
   بيئات / Environments — Design System
   "Paper-cut nature" — built around the brand logo:
   deep teal ink, warm cream paper, sand & leaf accents.
   One stylesheet serves AR (rtl) and EN (ltr) via
   logical properties + [dir] / :lang() hooks.
   ===================================================== */

:root {
  /* Palette drawn from the paper-cut logo */
  --ink: #1d3a3d;          /* deep teal, near-black */
  --teal: #2d5a5e;
  --emerald: #0a8a5f;
  --leaf: #78a442;
  --leaf-soft: #e8f0db;
  --sand: #d9a45b;
  --sand-soft: #f3e6cd;
  --sky: #4a93b8;
  --sky-soft: #e2eef4;
  --cream: #faf6ec;        /* page paper */
  --paper: #ffffff;
  --line: #e5ddcb;

  --radius: 18px;
  --radius-lg: 28px;
  --cut-shadow: 7px 7px 0 rgba(29, 58, 61, 0.12);   /* paper-cut offset */
  --cut-shadow-sm: 4px 4px 0 rgba(29, 58, 61, 0.10);
  --transition: all .28s cubic-bezier(.4, 0, .2, 1);

  --font-display: 'Alexandria', 'Fraunces', serif;
  --font-body: 'IBM Plex Sans Arabic', 'Karla', sans-serif;
  --container: 1180px;
}

html:lang(en) {
  --font-display: 'Fraunces', serif;
  --font-body: 'Karla', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.8;
  overflow-x: hidden;
  /* faint paper grain */
  background-image: radial-gradient(rgba(29,58,61,.025) 1px, transparent 1px);
  background-size: 22px 22px;
}

img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button { font-family: inherit; cursor: pointer; }

.container { width: min(92%, var(--container)); margin-inline: auto; }

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

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}
html:lang(en) h1, html:lang(en) h2 { font-weight: 600; letter-spacing: -.01em; }

/* =====================  HEADER  ===================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--line);
}
/* blur lives on a child pseudo so position:fixed descendants aren't trapped */
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: rgba(250, 246, 236, .88); backdrop-filter: blur(12px);
}
.header-inner { position: relative; z-index: 1; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding-block: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 48px; width: auto; filter: drop-shadow(2px 3px 0 rgba(29,58,61,.12)); }
.brand .brand-name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--teal);
}
.brand .brand-sub { display: block; font-family: var(--font-body); font-size: .68rem; font-weight: 600; color: var(--emerald); letter-spacing: .06em; margin-top: -4px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > li > a, .nav-drop > button {
  display: flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: .98rem; color: var(--ink);
  padding: 9px 16px; border-radius: 999px; border: none; background: transparent;
}
.main-nav > li > a:hover, .nav-drop > button:hover { background: var(--leaf-soft); color: var(--emerald); }
.main-nav > li > a.active { background: var(--ink); color: var(--cream); }
.nav-drop { position: relative; }
.nav-drop i { font-size: .65rem; transition: var(--transition); }
.drop-panel {
  position: absolute; top: calc(100% + 10px); inset-inline-start: 0;
  min-width: 240px; background: var(--paper);
  border: 1.5px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--cut-shadow);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition);
}
.nav-drop:hover .drop-panel, .nav-drop:focus-within .drop-panel,
.nav-drop.is-open .drop-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop:hover i, .nav-drop.is-open i { transform: rotate(180deg); }
.drop-panel a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-radius: 12px; font-size: .92rem; font-weight: 600;
}
.drop-panel a:hover { background: var(--leaf-soft); color: var(--emerald); }
.drop-panel a .tag {
  font-size: .62rem; font-weight: 700; color: var(--sand);
  border: 1px solid var(--sand); border-radius: 999px; padding: 1px 8px;
}

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lang-pill {
  font-weight: 700; font-size: .85rem; padding: 7px 18px;
  border: 1.5px solid var(--ink); border-radius: 999px; color: var(--ink);
  background: var(--paper); box-shadow: var(--cut-shadow-sm);
}
.lang-pill:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(29,58,61,.14); }
.menu-btn { display: none; width: 44px; height: 44px; border-radius: 12px; background: var(--paper); border: 1.5px solid var(--ink); box-shadow: var(--cut-shadow-sm); font-size: 1.15rem; color: var(--ink); }
.menu-btn { align-items: center; justify-content: center; }

/* =====================  HERO  ===================== */
.hero { position: relative; overflow: hidden; padding-block: clamp(60px, 9vw, 120px) 0; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 40px; align-items: center; position: relative; z-index: 2;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 700; letter-spacing: .05em;
  color: var(--emerald); background: var(--leaf-soft);
  border-radius: 999px; padding: 6px 16px; margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); }
.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 800; line-height: 1.3;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--emerald); position: relative; white-space: nowrap; }
.hero h1 .accent svg { position: absolute; inset-inline: 0; bottom: -10px; width: 100%; }
.hero p.lede { font-size: 1.08rem; color: #46605f; max-width: 52ch; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .98rem; padding: 13px 28px;
  border-radius: 999px; border: 1.5px solid var(--ink); transition: var(--transition);
}
.btn-solid { background: var(--ink); color: var(--cream); box-shadow: var(--cut-shadow); }
.btn-solid:hover { background: var(--emerald); border-color: var(--emerald); transform: translate(-2px,-2px); box-shadow: 9px 9px 0 rgba(29,58,61,.16); }
.btn-ghost { background: var(--paper); color: var(--ink); box-shadow: var(--cut-shadow-sm); }
.btn-ghost:hover { background: var(--sand-soft); transform: translate(-2px,-2px); }

.hero-art { position: relative; display: flex; justify-content: center; }
.hero-art .logo-big {
  width: min(360px, 80%); filter: drop-shadow(10px 14px 0 rgba(29,58,61,.10));
  animation: floaty 7s ease-in-out infinite;
}
.hero-art .ring {
  position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%);
  width: 420px; height: 420px; border: 2px dashed rgba(45,90,94,.25); border-radius: 50%;
  animation: spin 60s linear infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-1deg);} 50% { transform: translateY(-16px) rotate(1.5deg);} }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg);} }

/* layered dunes at hero base */
.dunes { display: block; width: 100%; margin-top: clamp(30px, 6vw, 70px); }

/* staggered load-in */
.reveal { opacity: 0; transform: translateY(26px); animation: rise .8s cubic-bezier(.2,.7,.2,1) forwards; }
.reveal.d1 { animation-delay: .08s; } .reveal.d2 { animation-delay: .2s; }
.reveal.d3 { animation-delay: .34s; } .reveal.d4 { animation-delay: .5s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* =====================  SECTIONS  ===================== */
section { padding-block: clamp(56px, 8vw, 100px); }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; margin-top: 10px; }
.section-head p { color: #46605f; margin-top: 12px; }

.on-teal { background: var(--teal); color: var(--cream); }
.on-teal h2, .on-teal h3 { color: var(--cream); }
/* light-surface components keep ink headings even inside .on-teal */
.on-teal .area-card h3, .on-teal .member h3, .on-teal .rule h3,
.on-teal .pillar h3, .on-teal .form-card label,
.on-teal .profile-body h2, .on-teal .workarea-head h3,
.on-teal .org-node strong, .on-teal .info-group h3,
.on-teal .report-card h2, .on-teal .support-card h3,
.on-teal .support-goes h3, .on-teal .partner-card h3,
.on-teal .partner-info h3 { color: var(--ink); }
.on-teal .area-card, .on-teal .member, .on-teal .rule,
.on-teal .pillar, .on-teal .form-card,
.on-teal .profile-card, .on-teal .workarea, .on-teal .org-node,
.on-teal .info-group, .on-teal .report-card,
.on-teal .support-card, .on-teal .support-goes,
.on-teal .partner-card { color: var(--ink); }
.on-teal .org-node.apex strong { color: var(--cream); }
.on-teal .section-head p { color: #cfe0d8; }
.on-teal .eyebrow { background: rgba(255,255,255,.1); color: var(--sand); }
.on-teal .eyebrow::before { background: var(--sand); }

/* work-area cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.area-card {
  background: var(--paper); border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg); padding: 30px 26px;
  box-shadow: var(--cut-shadow); transition: var(--transition);
  position: relative; overflow: hidden;
}
.area-card:hover { transform: translate(-3px,-3px); box-shadow: 10px 10px 0 rgba(29,58,61,.15); }
.area-card .icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.4rem;
  margin-bottom: 18px; color: var(--ink);
}
.area-card:nth-child(1) .icon { background: var(--leaf-soft); color: var(--emerald); }
.area-card:nth-child(2) .icon { background: var(--sky-soft); color: var(--sky); }
.area-card:nth-child(3) .icon { background: var(--sand-soft); color: var(--sand); }
.area-card:nth-child(4) .icon { background: #ece8f5; color: #7a6bb0; }
.area-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.area-card p { font-size: .94rem; color: #4d6664; }

/* stats strip */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 18px; }
.stat {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 26px 22px; text-align: center;
}
.stat .num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; color: var(--sand); }
.stat .lbl { font-size: .88rem; color: #cfe0d8; margin-top: 4px; }

/* video frame */
.video-frame {
  border: 1.5px solid var(--ink); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--cut-shadow); background: var(--ink);
  max-width: 920px; margin-inline: auto;
}
.video-frame video { width: 100%; display: block; }

/* mission split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.pillar {
  border-radius: var(--radius-lg); padding: 36px 32px; position: relative; overflow: hidden;
  border: 1.5px solid var(--ink); box-shadow: var(--cut-shadow);
}
.pillar.vision { background: var(--sky-soft); }
.pillar.mission { background: var(--leaf-soft); }
.pillar h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.pillar h3 i { color: var(--emerald); }
.pillar p { color: #3e5a58; }
.pillar .corner {
  position: absolute; inset-inline-end: -22px; bottom: -22px; width: 110px; height: 110px;
  border-radius: 36px; transform: rotate(18deg); opacity: .5;
}
.pillar.vision .corner { background: var(--sky); }
.pillar.mission .corner { background: var(--leaf); }

/* board member cards */
.board-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }

/* board pyramid: chairman apex → vice chairman → members base */
.pyramid { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.pyramid-row { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; width: 100%; }
.pyramid-row .member { width: 260px; max-width: 100%; }
/* subtle connector line down the centre of the pyramid */
.pyramid-row.tier-1, .pyramid-row.tier-2 { position: relative; }
.pyramid-row.tier-1::after, .pyramid-row.tier-2::after {
  content: ''; position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 28px; background: rgba(255,255,255,.28);
}
.member {
  background: var(--paper); border: 1.5px solid var(--ink); border-radius: var(--radius-lg);
  padding: 34px 22px; text-align: center; box-shadow: var(--cut-shadow); transition: var(--transition);
}
.member:hover { transform: translate(-3px,-3px); box-shadow: 10px 10px 0 rgba(29,58,61,.15); }
.member .avatar {
  width: 86px; height: 86px; border-radius: 50%; margin: 0 auto 18px;
  display: grid; place-items: center; font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800; color: var(--cream);
  border: 3px solid var(--ink); box-shadow: inset 0 -6px 0 rgba(0,0,0,.12);
}
.member:nth-child(5n+1) .avatar { background: var(--teal); }
.member:nth-child(5n+2) .avatar { background: var(--emerald); }
.member:nth-child(5n+3) .avatar { background: var(--leaf); }
.member:nth-child(5n+4) .avatar { background: var(--sand); }
.member:nth-child(5n+5) .avatar { background: var(--sky); }
.member h3 { font-size: 1.1rem; font-weight: 800; }
.member .role {
  display: inline-block; margin-top: 8px; font-size: .8rem; font-weight: 700;
  color: var(--emerald); background: var(--leaf-soft); border-radius: 999px; padding: 4px 14px;
}
.member.chair .role { color: var(--ink); background: var(--sand-soft); }
/* email slot on each member card */
.m-email {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  font-size: .84rem; font-weight: 600; direction: ltr;
  padding: 7px 14px; border-radius: 999px; border: 1.5px dashed var(--line);
  color: var(--teal); transition: var(--transition);
}
.m-email i { font-size: .8rem; color: var(--leaf); }
a.m-email:hover { border-style: solid; border-color: var(--emerald); color: var(--emerald); background: var(--leaf-soft); }
.m-email.empty { color: #9aa6a2; font-style: italic; }
.m-email.empty i { color: #b9c3bf; }

/* rules / policy cards */
.rule-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 22px; counter-reset: rule; }
.rule {
  background: var(--paper); border: 1.5px solid var(--ink); border-radius: var(--radius-lg);
  padding: 28px 26px; box-shadow: var(--cut-shadow); position: relative;
}
.rule::before {
  counter-increment: rule; content: counter(rule, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 800; font-size: .95rem;
  color: var(--sand); display: block; margin-bottom: 8px; letter-spacing: .08em;
}
.rule h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; }
.rule li { display: flex; gap: 10px; font-size: .92rem; color: #4d6664; padding-block: 4px; }
.rule li::before { content: '✺'; color: var(--leaf); flex-shrink: 0; }
.rule p { font-size: .93rem; color: #4d6664; line-height: 1.85; }

/* shared: checkmark list (exec responsibilities, work-area bullets) */
.check-list { margin-top: 14px; }
.check-list li { display: flex; gap: 10px; font-size: .93rem; color: #4d6664; padding-block: 5px; line-height: 1.7; }
.check-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--leaf); font-size: .8rem; margin-top: .35em; flex-shrink: 0; }

/* closing note under a section */
.org-note {
  max-width: 780px; margin: 34px auto 0; text-align: center;
  font-size: .9rem; color: #cfe0d8; line-height: 1.9;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 20px 26px;
}

/* ===== Executive profile card ===== */
.profile-card {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  background: var(--paper); border: 1.5px solid var(--ink); border-radius: var(--radius-lg);
  padding: 30px 32px; box-shadow: var(--cut-shadow);
}
.profile-card .avatar {
  width: 96px; height: 96px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 800; color: var(--cream); background: var(--teal);
  border: 3px solid var(--ink); box-shadow: inset 0 -6px 0 rgba(0,0,0,.12);
}
.profile-body { flex: 1; min-width: 220px; }
.profile-body .role {
  display: inline-block; font-size: .8rem; font-weight: 700; color: var(--emerald);
  background: var(--leaf-soft); border-radius: 999px; padding: 4px 14px; margin-bottom: 8px;
}
.profile-body h2 { font-size: 1.5rem; font-weight: 800; }
.profile-body .profile-org { color: #4d6664; font-size: .92rem; margin-bottom: 12px; }

/* ===== Org chart ===== */
.org-chart { display: flex; flex-direction: column; align-items: center; }
.org-level { display: flex; justify-content: center; }
.org-node {
  background: var(--paper); border: 1.5px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--cut-shadow-sm); padding: 16px 26px; text-align: center; min-width: 240px;
}
.org-node strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.org-node span { display: block; font-size: .82rem; color: #4d6664; margin-top: 3px; }
.org-node.apex { background: var(--ink); }
.org-node.apex strong { color: var(--cream); }
.org-node.apex span { color: #b9cfc6; }
.org-node.lead { background: var(--leaf-soft); }
.org-node.cfo { background: var(--sand-soft); }
.org-connector { width: 2px; height: 26px; background: rgba(255,255,255,.32); }
.org-committees { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }
.org-node.committee {
  min-width: 200px; background: var(--sky-soft); font-weight: 700; font-size: .9rem;
  color: var(--ink); padding: 14px 20px;
}
.org-legend { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.org-legend-item { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: #cfe0d8; }
.org-legend .leg { width: 26px; height: 0; border-top: 2px solid var(--sand); display: inline-block; }
.org-legend .leg.dashed { border-top-style: dashed; }

/* ===== Areas of work ===== */
.workarea-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.workarea {
  background: var(--paper); border: 1.5px solid var(--ink); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--cut-shadow); transition: var(--transition);
}
.workarea:hover { transform: translate(-3px,-3px); box-shadow: 10px 10px 0 rgba(29,58,61,.15); }
.workarea-head { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.workarea-head .icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.4rem; flex-shrink: 0; background: var(--leaf-soft); color: var(--emerald);
}
.workarea:nth-child(2) .icon { background: var(--sky-soft); color: var(--sky); }
.workarea:nth-child(3) .icon { background: var(--sand-soft); color: var(--sand); }
.workarea:nth-child(4) .icon { background: #ece8f5; color: #7a6bb0; }
.workarea-num { font-family: var(--font-display); font-weight: 800; font-size: .8rem; color: var(--sand); letter-spacing: .1em; }
.workarea-head h3 { font-size: 1.25rem; font-weight: 800; }
.workarea > p { font-size: .95rem; color: #4d6664; }

/* ===== Association info ===== */
.info-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: start; }
@media (max-width: 760px) { .info-groups { grid-template-columns: 1fr; } }
.info-group {
  background: var(--paper); border: 1.5px solid var(--ink); border-radius: var(--radius-lg);
  padding: 28px 26px; box-shadow: var(--cut-shadow);
}
.info-group h3 {
  display: flex; align-items: center; gap: 10px; font-size: 1.1rem; font-weight: 800;
  padding-bottom: 14px; margin-bottom: 6px; border-bottom: 1.5px dashed var(--line);
}
.info-group h3 i { color: var(--emerald); font-size: 1rem; }
.info-field { display: flex; flex-direction: column; gap: 2px; padding-block: 11px; border-bottom: 1px solid var(--line); }
.info-field:last-child { border-bottom: none; padding-bottom: 0; }
.info-label { font-size: .78rem; font-weight: 700; color: var(--moss, #5e8a6e); letter-spacing: .01em; }
.info-value { font-size: .95rem; color: var(--ink); font-weight: 600; line-height: 1.6; }
.info-value[dir="ltr"] { font-family: var(--font-body); letter-spacing: .02em; }
html[dir="rtl"] .info-value[dir="ltr"] { text-align: right; }

/* ===== Annual reports ===== */
.report-card {
  max-width: 760px; margin-inline: auto; text-align: center;
  background: var(--paper); border: 1.5px solid var(--ink); border-radius: var(--radius-lg);
  padding: 44px 40px; box-shadow: var(--cut-shadow);
}
.report-icon {
  width: 76px; height: 76px; border-radius: 22px; margin: 0 auto 22px;
  display: grid; place-items: center; font-size: 1.9rem;
  background: var(--sand-soft); color: var(--sand); border: 1.5px solid var(--ink);
}
.report-card h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 14px; }
.report-card > p { color: #4d6664; font-size: .96rem; margin-bottom: 26px; }
.report-meta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.report-meta-item {
  background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 14px 22px; min-width: 180px;
}
.rm-label { display: block; font-size: .74rem; font-weight: 700; color: var(--moss, #5e8a6e); margin-bottom: 3px; }
.rm-value { display: block; font-size: 1rem; font-weight: 800; font-family: var(--font-display); color: var(--ink); }

/* ===== Support Us ===== */
.support-goes {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg); padding: 28px 30px; max-width: 720px; margin-inline: auto;
}
.support-goes h3 { display: flex; align-items: center; gap: 10px; color: var(--cream); font-size: 1.15rem; margin-bottom: 8px; }
.support-goes h3 i { color: var(--sand); }
.support-goes-list { columns: 2; column-gap: 30px; }
.support-goes-list li { color: #dceae2 !important; break-inside: avoid; }
.support-goes-list li::before { color: var(--sand) !important; }

.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.support-card {
  background: var(--paper); border: 1.5px solid var(--ink); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--cut-shadow); display: flex; flex-direction: column;
  transition: var(--transition);
}
.support-card:hover { transform: translate(-3px,-3px); box-shadow: 10px 10px 0 rgba(29,58,61,.15); }
.support-card .icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 18px; background: var(--leaf-soft); color: var(--emerald);
}
.support-card.donate .icon { background: var(--sand-soft); color: var(--sand); }
.support-card:nth-child(2) .icon { background: var(--sky-soft); color: var(--sky); }
.support-card:nth-child(4) .icon { background: #ece8f5; color: #7a6bb0; }
.support-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; }
.support-card p { font-size: .94rem; color: #4d6664; margin-bottom: 20px; flex: 1; }
.support-btn { align-self: flex-start; }
.support-card.donate { grid-column: 1 / -1; }
.donate .bank-box {
  background: var(--cream); border: 1.5px dashed var(--sand); border-radius: var(--radius);
  padding: 20px 22px; display: flex; flex-direction: column; gap: 6px;
}
.bank-label { font-weight: 800; color: var(--ink); font-size: .9rem; margin-bottom: 4px; }
.bank-line { font-size: .9rem; color: #4d6664; }
.bank-field { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.bank-k { font-size: .78rem; font-weight: 700; color: var(--moss, #5e8a6e); min-width: 54px; }
.bank-v { font-family: var(--font-body); font-weight: 700; letter-spacing: .04em; color: var(--ink); font-size: .95rem; }
html[dir="rtl"] .bank-v { text-align: left; }
@media (min-width: 720px){ .donate .bank-box { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 8px 26px; } }

/* ===== Supporters & Partners ===== */
.partner-bodies { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 24px; }
.partner-card {
  background: var(--paper); border: 1.5px solid var(--ink); border-radius: var(--radius-lg);
  box-shadow: var(--cut-shadow); transition: var(--transition);
}
.partner-card:hover { transform: translate(-3px,-3px); box-shadow: 10px 10px 0 rgba(29,58,61,.15); }
.partner-card.wide { display: flex; align-items: center; gap: 22px; padding: 26px 28px; }
.partner-logo {
  background: #fff; border-radius: 14px; display: grid; place-items: center;
  border: 1px solid var(--line); flex-shrink: 0;
}
.partner-card.wide .partner-logo { width: 110px; height: 110px; padding: 14px; }
.partner-card.wide .partner-logo img { max-height: 82px; max-width: 100%; object-fit: contain; }
.partner-info h3 { font-size: 1.12rem; font-weight: 800; margin: 6px 0 8px; }
.partner-info p { font-size: .9rem; color: #4d6664; }
.partner-tag {
  display: inline-block; font-size: .72rem; font-weight: 700; color: var(--emerald);
  background: var(--leaf-soft); border-radius: 999px; padding: 3px 12px;
}
.partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.partner-grid .partner-card { padding: 30px 24px; text-align: center; }
.partner-grid .partner-logo { width: 100%; height: 120px; padding: 20px; margin-bottom: 18px; }
.partner-grid .partner-logo img { max-height: 80px; max-width: 100%; object-fit: contain; }
.partner-grid h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: start; }
/* honeypot: kept off-screen, never seen or tabbed to by humans */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* submission status banner */
.form-status { display: none; margin-bottom: 18px; padding: 15px 20px; border-radius: 14px;
  font-weight: 600; font-size: .95rem; border: 1.5px solid; }
.form-status.show { display: block; }
.form-status.ok { background: var(--leaf-soft); color: #1c6b3f; border-color: var(--emerald); }
.form-status.err { background: #fbe6e2; color: #a3352a; border-color: #d9695a; }
.btn.is-sending { opacity: .7; pointer-events: none; }
.form-card {
  background: var(--paper); border: 1.5px solid var(--ink); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--cut-shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; font-family: inherit; font-size: .95rem;
  border: 1.5px solid var(--line); border-radius: 14px; background: var(--cream);
  color: var(--ink); transition: var(--transition);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--emerald); background: var(--paper);
  box-shadow: 0 0 0 4px rgba(10,138,95,.12);
}
.info-card {
  background: var(--teal); color: var(--cream); border-radius: var(--radius-lg);
  border: 1.5px solid var(--ink); box-shadow: var(--cut-shadow); padding: 34px 30px;
}
.info-card h3 { color: var(--cream); font-size: 1.2rem; margin-bottom: 20px; }
.info-row { display: flex; align-items: center; gap: 14px; padding-block: 12px; border-bottom: 1px dashed rgba(255,255,255,.2); }
.info-row:last-of-type { border: none; }
.info-row i { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.1); display: grid; place-items: center; color: var(--sand); flex-shrink: 0; }
.info-row a:hover { color: var(--sand); }
.info-row .sm { display: block; font-size: .75rem; color: #a8c5bb; }

.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  border: 1.5px solid rgba(255,255,255,.3); font-size: 1.05rem;
}
.socials a:hover { background: var(--sand); border-color: var(--sand); color: var(--ink); transform: translateY(-3px); }

/* CTA band */
.cta-band {
  background: var(--ink); color: var(--cream); border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-band h2 { color: var(--cream); font-size: clamp(1.4rem, 2.6vw, 2rem); max-width: 22ch; }
.cta-band p { color: #b9cfc6; margin-top: 8px; }
.cta-band .blob {
  position: absolute; width: 300px; height: 300px; border-radius: 42% 58% 60% 40% / 45% 40% 60% 55%;
  background: var(--emerald); opacity: .35; inset-inline-end: -80px; top: -110px;
}
.cta-band .blob.b2 { background: var(--sand); width: 200px; height: 200px; inset-inline-end: 120px; top: auto; bottom: -120px; opacity: .25; }
.cta-band .btn-solid { background: var(--sand); border-color: var(--sand); color: var(--ink); box-shadow: 6px 6px 0 rgba(0,0,0,.3); }
.cta-band .btn-solid:hover { background: var(--cream); border-color: var(--cream); }

/* =====================  FOOTER  ===================== */
.footer-dunes { display: block; width: 100%; margin-bottom: -2px; }
.site-footer {
  background: var(--ink); color: #c4d6cd; padding-block: 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-block: 48px 36px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-grid h3 { color: var(--cream); font-size: 1.02rem; margin-bottom: 18px; }
.footer-brand img { height: 64px; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.9; }
.footer-brand .lic { display: inline-block; margin-top: 12px; font-size: .78rem; font-weight: 700; color: var(--sand); border: 1px solid rgba(217,164,91,.5); border-radius: 999px; padding: 4px 14px; }
.footer-links li { padding-block: 6px; }
.footer-links a { font-size: .92rem; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--leaf); opacity: 0; transition: var(--transition); }
.footer-links a:hover { color: var(--sand); }
.footer-links a:hover::before { opacity: 1; }
.footer-bottom { text-align: center; padding-top: 24px; font-size: .82rem; color: #7e9a90; }

/* =====================  PAGE HERO (inner pages)  ===================== */
.page-hero { position: relative; padding-block: clamp(48px, 7vw, 84px) 0; text-align: center; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; margin-top: 14px; }
.page-hero p { max-width: 64ch; margin: 16px auto 0; color: #46605f; font-size: 1.04rem; }

/* coming soon */
.soon-wrap { min-height: 72vh; display: grid; place-items: center; text-align: center; padding-block: 60px; }
.soon-wrap img { width: 180px; margin: 0 auto 26px; animation: floaty 6s ease-in-out infinite; }
.soon-wrap h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
.soon-wrap p { color: #46605f; margin: 14px 0 30px; }

/* =====================  RESPONSIVE  ===================== */
@media (max-width: 1024px) {
  .menu-btn { display: flex; }
  .main-nav {
    position: fixed; top: 0; bottom: 0; width: min(86%, 360px);
    background: var(--paper); flex-direction: column; align-items: stretch;
    padding: 90px 24px 30px; gap: 8px; z-index: 99;
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
    overflow-y: auto;
  }
  html[dir="ltr"] .main-nav { right: 0; transform: translateX(110%); box-shadow: -10px 0 40px rgba(29,58,61,.15); }
  html[dir="rtl"] .main-nav { left: 0; transform: translateX(-110%); box-shadow: 10px 0 40px rgba(29,58,61,.15); }
  html[dir] .main-nav.open { transform: translateX(0); }
  .main-nav > li > a, .nav-drop > button { width: 100%; justify-content: space-between; border-radius: 14px; }
  .drop-panel {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: none; box-shadow: none; background: var(--cream);
    display: none; margin-top: 6px;
  }
  .nav-drop.is-open .drop-panel { display: block; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art .logo-big { width: min(240px, 60%); }
  .hero-art .ring { width: 300px; height: 300px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 560px) {
  .brand .brand-name { font-size: 1.1rem; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
