/* CIRG website v2 — CIRG-Vartovy "Square + Circle + Editorial" design system.
   Legacy class/variable names are kept (so the existing page components render
   unchanged) but re-aliased to the new design-system tokens: sharp 0px corners,
   circular icon discs, flat surfaces, e-Ukraine type, single-hue blue palette. */

/* ============================================================
   1. Token aliases — map legacy color / size / etc. names onto new DS tokens
   ============================================================ */
:root {
  /* surfaces / text */
  --surface-page: var(--bg-primary);
  --color-surface: var(--surface-card);
  --text-body: var(--text-primary);
  --color-text-body: var(--text-primary);
  --color-text-secondary: var(--text-secondary);
  --color-text-muted: var(--text-tertiary);
  --color-navy: #0F2438;
  --color-text-on-dark-muted: #A9C2D6;

  /* brand / accents */
  --color-action-blue: var(--brand-primary);
  --color-cirg-blue: var(--brand-primary);
  --color-cirg-cyan: #6FD9FF;
  --color-border: var(--border-primary);
  --color-border-strong: #9DB6CB;
  --color-bg-soft-blue: var(--bg-secondary);

  /* categorical accents (single-hue family + warm support + green) */
  --color-donate: #FF8C5A;            /* support / give */
  --color-donate-soft: var(--warning-tint);
  --color-donate-accent: #FFD2B8;
  --color-volunteer: #1FA463;         /* green */
  --color-volunteer-soft: var(--success-tint);
  --color-knowledge: var(--brand-primary-700); /* deep blue (was violet) */
  --color-knowledge-soft: var(--bg-tertiary);
  --color-success: #1FA463;
  --color-success-soft: var(--success-tint);

  /* gradients flattened to confident solids */
  --gradient-hero: linear-gradient(180deg, #EAF4FD 0%, #F7FBFE 100%);
  --gradient-navy: #0F2438;
  --gradient-primary: var(--bg-dark);

  /* corners — sharp rectangles only (circles handled per-element) */
  --radius-xs: 0; --radius-sm: 0; --radius-md: 0; --radius-lg: 0; --radius-xl: 0;

  /* type */
  --font-sans: var(--font-body);
  --font-head: var(--font-display);
  --fs-eyebrow: 0.8rem;
  --fs-lead: 1.125rem;
  --fs-hero: calc(clamp(2.8rem, 6vw, 4.5rem) * 0.9);
  --fs-h1: calc(clamp(2.2rem, 4.6vw, 3.4rem) * 0.9);
  --fs-h2: calc(clamp(1.8rem, 3.2vw, 2.5rem) * 0.9);
  --fs-h3: 1.575rem;
  --ls-eyebrow: 0.08em;
  --lh-normal: 1.55;

  /* elevation — subtle, polished (kept soft so sharp corners still read as intentional) */
  --shadow-sm: 0 1px 2px rgba(4, 21, 35, 0.06);
  --shadow-card: 0 2px 10px rgba(4, 21, 35, 0.06), 0 1px 3px rgba(4, 21, 35, 0.05);
  --shadow-lg: var(--shadow-overlay);

  /* spacing / rhythm */
  --section-pad-y: clamp(64px, 8vw, 104px);
  --section-pad-y-sm: clamp(40px, 5vw, 64px);
  --grid-gap: 24px;

  /* motion */
  --dur-slow: 280ms;
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   2. Base elements — editorial display headings on e-Ukraine Head
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text-primary); font-size: 15px; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display); font-weight: 700; color: var(--color-navy);
  letter-spacing: -0.03em; line-height: 0.98; margin: 0;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.05; }
p { margin: 0 0 1em; }
a { color: var(--brand-primary); }

/* ============================================================
   3. Component classes (provided by the bound DS' bundle/styles
   originally — re-expressed here as sharp, flat primitives)
   ============================================================ */
.container { width: 100%; max-width: var(--container-max, 1200px); margin-inline: auto; padding-inline: clamp(20px, 4vw, 40px); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 500; font-size: 15px; line-height: 1;
  padding: 12px 20px; border: 1px solid transparent; border-radius: 0; cursor: pointer;
  background: none; color: var(--color-navy); white-space: nowrap; text-decoration: none;
  transition: background var(--dur-base) var(--ease-standard), color var(--dur-base), border-color var(--dur-base), transform var(--dur-fast);
}
.btn:focus-visible { outline: none; box-shadow: var(--ring); }
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-sm { padding: 9px 14px; font-size: 14px; }
.btn-primary { background: var(--brand-primary); color: #fff; }
.btn-primary:hover { background: var(--brand-primary-700); }
.btn-secondary { background: #fff; color: var(--color-navy); border-color: var(--color-border); }
.btn-secondary:hover { background: var(--bg-secondary); border-color: var(--brand-primary); color: var(--brand-primary-700); }
.btn-ghost { background: none; color: var(--brand-primary); }
.btn-ghost:hover { background: var(--bg-secondary); }
.btn-donate { background: var(--color-donate); color: #fff; }
.btn-donate:hover { background: #F0743C; }
.btn-donate-soft { background: var(--color-donate-soft); color: #B84E1C; }
.btn-donate-soft:hover { background: var(--color-donate-accent); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.card { background: var(--surface-card); border: 1px solid var(--color-border); border-radius: 0; padding: 28px; box-shadow: var(--shadow-card); position: relative; z-index: 1; }

.badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); font-size: 12.5px; font-weight: 500; line-height: 1; padding: 6px 11px; border-radius: 0; }
.badge-blue { background: var(--info-tint); color: var(--brand-primary-700); }
.badge-teal, .badge-green { background: var(--success-tint); color: #1B8E45; }
.badge-amber, .badge-orange { background: var(--warning-tint); color: #B84E1C; }
.badge-violet { background: var(--bg-tertiary); color: var(--brand-primary-700); }
.badge-red { background: var(--error-tint); color: #C23434; }
.badge-muted { background: var(--bg-muted); color: var(--text-secondary); }

.input, .textarea, .select {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--color-navy);
  background: #fff; border: 1px solid var(--color-border); border-radius: 0; padding: 11px 14px;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--brand-primary); box-shadow: var(--ring); }
.textarea { resize: vertical; min-height: 96px; }
/* Select — design-system control look: 1.5px frame + custom chevron, native arrow hidden */
.select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  border-width: 1.5px; padding-right: 40px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A9BD' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 15px;
}
.select:hover:not(:disabled) { border-color: var(--brand-primary); }
.field-label { font-size: 13.5px; font-weight: 500; color: var(--color-navy); }

/* ============================================================
   4. Original layout styles (reused — corners come from tokens=0)
   ============================================================ */

.site { background: var(--surface-page); color: var(--text-body); min-height: 100vh; }
.section { padding-block: var(--section-pad-y); }
.section-sm { padding-block: var(--section-pad-y-sm); }
img { max-width: 100%; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--color-action-blue); color: #fff; font-weight: 500;
  padding: 12px 18px; border-radius: var(--radius-sm); text-decoration: none;
  transition: top var(--dur-base) var(--ease-out);
}
.skip-link:focus { top: 16px; }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.hdr-in { display: flex; align-items: center; gap: 20px; height: 72px; }
.hdr-logo { height: 34px; display: block; background: none; border: none; padding: 0; cursor: pointer; }
.hdr-logo img { height: 34px; display: block; }
.hdr-nav { display: flex; gap: 2px; margin-left: 6px; flex-wrap: wrap; }
.hdr-link {
  font-size: 14.5px; font-weight: 500; color: var(--color-text-secondary);
  padding: 8px 11px; border-radius: var(--radius-xs); cursor: pointer;
  background: none; border: none; font-family: var(--font-sans);
  transition: color var(--dur-base), background var(--dur-base);
}
.hdr-link:hover { color: var(--color-navy); background: var(--color-bg-soft-blue); }
.hdr-link.active { color: var(--color-action-blue); }
.hdr-link.has-dd { display: inline-flex; align-items: center; gap: 4px; }
.hdr-link .dd-caret { transition: transform var(--dur-base) var(--ease-standard); }
.hdr-link.open { color: var(--color-action-blue); background: var(--color-bg-soft-blue); }
.hdr-link.open .dd-caret { transform: rotate(180deg); }
.hdr-item { position: relative; }

/* Two-row header variant (single-line full menu under the header) */
.hdr-tworow .hdr-in { height: 66px; }
.hdr-row2 { border-top: 1px solid var(--color-border); background: rgba(255, 255, 255, 0.55); }
.hdr-nav-row { display: flex; justify-content: center; gap: 4px; margin-left: 0; padding: 5px 0; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
.hdr-nav-row::-webkit-scrollbar { display: none; }
.hdr-nav-row .hdr-link { white-space: nowrap; }
.dropdown.dd-list { padding: 8px; }
.dd-list .dd-entry { padding: 9px 12px; }

/* ---------- Dropdown ---------- */
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; z-index: 60;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 10px; animation: ddIn var(--dur-base) var(--ease-out);
}
.dropdown::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.dd-list { width: 320px; }
.dd-mega { width: 600px; }
@keyframes ddIn { from { transform: translateY(-6px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.dd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.dd-rows { display: flex; flex-direction: column; gap: 2px; }
.dd-entry {
  display: flex; align-items: center; gap: 12px; text-align: left; width: 100%;
  background: none; border: none; cursor: pointer; padding: 11px 12px; border-radius: var(--radius-md);
  font-family: var(--font-sans); transition: background var(--dur-fast) var(--ease-standard);
}
.dd-entry:hover { background: var(--color-bg-soft-blue); }
.dd-ic { width: 38px; height: 38px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex: none; }
.dd-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.dd-title { font-size: 14.5px; font-weight: 500; color: var(--color-navy); line-height: 1.25; }
.dd-sub { font-size: 12.5px; color: var(--color-text-muted); line-height: 1.3; }
.dd-foot {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  margin-top: 8px; padding: 12px 14px; border: none; cursor: pointer;
  background: var(--color-bg-soft-blue); border-radius: var(--radius-md);
  font-family: var(--font-sans); font-size: 14px; font-weight: 500; color: var(--color-action-blue);
  transition: background var(--dur-base) var(--ease-standard);
}
.dd-foot:hover { background: #dcebff; }
.hdr-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }

/* ---------- Language switch ---------- */
.lang { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.lang button {
  font-family: var(--font-sans); font-size: 13px; font-weight: 600; letter-spacing: .02em;
  padding: 7px 11px; background: none; border: none; cursor: pointer; color: var(--color-text-muted);
  transition: background var(--dur-base), color var(--dur-base);
}
.lang button + button { border-left: 1px solid var(--color-border); }
.lang button.on { background: var(--color-action-blue); color: #fff; }
.lang button:not(.on):hover { background: var(--color-bg-soft-blue); color: var(--color-navy); }

.hdr-burger { display: none; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-sm); width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; color: var(--color-navy); }
.hide-lg { display: none; }

/* ---------- Mobile drawer ---------- */
.drawer-scrim { position: fixed; inset: 0; z-index: 90; background: rgba(11,31,58,0.42); backdrop-filter: blur(2px); animation: fadeIn var(--dur-base) ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 100; width: min(86vw, 360px);
  background: #fff; box-shadow: var(--shadow-lg); display: flex; flex-direction: column;
  animation: slideIn var(--dur-base) var(--ease-out); overflow-y: auto;
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.drawer-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--color-border); position: sticky; top: 0; background: #fff; }
.drawer-top img { height: 30px; }
.drawer-close { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-sm); width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--color-navy); }
.drawer-nav { padding: 10px 12px; display: flex; flex-direction: column; gap: 2px; }
.drawer-nav button { text-align: left; background: none; border: none; font-family: var(--font-sans); font-size: 16px; font-weight: 500; color: var(--color-navy); padding: 13px 12px; border-radius: var(--radius-sm); cursor: pointer; }
.drawer-nav button:hover, .drawer-nav button.active { background: var(--color-bg-soft-blue); color: var(--color-action-blue); }
.drawer-group { display: flex; flex-direction: column; }
.drawer-acc { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.drawer-acc .acc-caret { flex: none; transition: transform var(--dur-base) var(--ease-standard); color: var(--color-text-muted); }
.drawer-acc.open { background: var(--color-bg-soft-blue); }
.drawer-acc.open .acc-caret { transform: rotate(180deg); color: var(--color-action-blue); }
.drawer-sub { display: flex; flex-direction: column; gap: 2px; padding: 2px 0 6px 10px; }
.drawer-sub button { display: flex !important; align-items: center; gap: 10px; font-size: 15px !important; font-weight: 400 !important; color: var(--color-text-secondary) !important; padding: 11px 12px; }
.drawer-sub button.active, .drawer-sub button:hover { color: var(--color-action-blue) !important; background: var(--color-bg-soft-blue); }
.drawer-cta { padding: 14px 18px 24px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--color-border); margin-top: auto; }

/* ---------- Generic ---------- */
.eyebrow { font-size: var(--fs-eyebrow); font-weight: 500; letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--color-action-blue); display: inline-flex; align-items: center; gap: 8px; }
.lead { font-size: var(--fs-lead); color: var(--color-text-secondary); font-weight: 300; line-height: var(--lh-normal); margin-top: 16px; }
/* Keep body text from merging into headings */
.section-head h2 + .lead, .why-grid h2 + .lead, .eco h2 + .lead { margin-top: 18px; }
.legal-sec h2 + p, .prose h2 + p, .prose h3 + p { margin-top: 12px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.section-head { max-width: 740px; margin-bottom: 40px; }
.section-head.center { margin-inline: auto; text-align: center; }
.prose p { max-width: 70ch; }

/* Card text-links (Читати більше / Дізнатися більше) — flat link feel */
.btn-ghost.btn-sm { transition: color var(--dur-base) var(--ease-standard); }
.btn-ghost.btn-sm:hover { background: transparent !important; color: var(--color-navy); }
.btn-ghost.btn-sm:active { background: transparent !important; }
.btn-ghost.btn-sm svg, .btn-ghost.btn-sm > i { transition: transform var(--dur-base) var(--ease-standard); }
.btn-ghost.btn-sm:hover svg, .btn-ghost.btn-sm:hover > i { transform: translateX(3px); }

/* ---------- Hero ---------- */
.hero { background: var(--gradient-hero); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding-block: clamp(48px, 7vw, 96px); }
.hero h1 { font-size: calc(var(--fs-hero) * 0.9); letter-spacing: var(--ls-tight); margin-bottom: 20px; }
.hero .lead { margin-bottom: 28px; max-width: 560px; }
.hero-visual { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3.4; border: 1px solid var(--color-border); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-chip { position: absolute; background: rgba(255,255,255,0.94); backdrop-filter: blur(6px); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 12px 16px; box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 12px; }
.hero-chip .ico { width: 38px; height: 38px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex: none; }
.hero-chip .v { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--color-navy); line-height: 1; }
.hero-chip .l { font-size: 12px; color: var(--color-text-muted); margin-top: 3px; }

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--color-border); background: #fff; }
.trust-in { display: flex; align-items: center; gap: 32px; padding-block: 26px; flex-wrap: wrap; }
.trust-lead { font-weight: 500; color: var(--color-navy); max-width: 340px; }
.trust-items { display: flex; gap: 28px; flex-wrap: wrap; margin-left: auto; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--color-text-secondary); }
.trust-item .dot { width: 30px; height: 30px; border-radius: 5px; background: var(--color-bg-soft-blue); color: var(--color-action-blue); display: flex; align-items: center; justify-content: center; }

/* ---------- Grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--grid-gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--grid-gap); }

.dir-card { display: flex; flex-direction: column; gap: 14px; height: 100%; }
.dir-ico { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex: none; }
.dir-n { font-size: 12px; font-weight: 600; letter-spacing: .12em; color: var(--color-text-muted); }
.dir-card h3 { font-size: var(--fs-h3); font-weight: 500; margin: 0; }
.dir-card p { font-size: 15px; margin: 0; color: var(--color-text-secondary); }

/* ---------- Why now (split) ---------- */
.why { background: var(--color-bg-soft-blue); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.chk { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--color-border); }
.chk:last-child { border-bottom: none; }
.chk .ic { width: 30px; height: 30px; border-radius: 5px; display: flex; align-items: center; justify-content: center; flex: none; margin-top: 2px; }
.chk b { color: var(--color-navy); font-weight: 500; display: block; font-size: 16px; }

/* ---------- Process ---------- */
.process { display: flex; align-items: stretch; gap: 0; flex-wrap: wrap; }
.proc-step { flex: 1 1 0; min-width: 150px; text-align: center; position: relative; padding: 0 12px; }
.proc-ico { width: 64px; height: 64px; border-radius: var(--radius-xl); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--color-border); color: var(--color-action-blue); box-shadow: var(--shadow-sm); }
.proc-step h4 { font-family: var(--font-head); font-size: 18px; color: var(--color-navy); margin: 0 0 4px; font-weight: 500; }
.proc-step .num { font-size: 12px; color: var(--color-text-muted); }
.proc-step:not(:last-child)::after { content: ""; position: absolute; top: 32px; right: -8px; width: 16px; height: 2px; background: var(--color-border-strong); }

/* ---------- Programs ---------- */
.prog-card { display: flex; flex-direction: column; gap: 14px; height: 100%; }
.prog-card .tag { align-self: flex-start; }

/* ---------- Ecosystem ---------- */
.eco { background: var(--gradient-navy); color: #fff; }
.eco h2 { color: #fff; }
.eco .lead { color: var(--color-text-on-dark-muted); }
.eco-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.eco-ring { position: relative; aspect-ratio: 1; max-width: 420px; margin-inline: auto; width: 100%; }
.eco-center { position: absolute; inset: 33%; border-radius: 50%; background: #fff; border: 1px solid rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center; box-shadow: 0 16px 50px rgba(24,167,242,0.5); }
.eco-center img { width: 56%; }
.eco-node { position: absolute; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(6px); color: #fff; font-size: 13px; font-weight: 500; padding: 9px 14px; border-radius: var(--radius-sm); white-space: nowrap; transform: translate(-50%, -50%); }

/* ---------- Row list (transparency / policies) ---------- */
.tr-list { display: flex; flex-direction: column; gap: 0; }
.tr-row { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--color-border); }
.tr-row:last-child { border-bottom: none; }
.tr-row .ic { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--color-bg-soft-blue); color: var(--color-action-blue); display: flex; align-items: center; justify-content: center; flex: none; }
.tr-row .t { font-weight: 500; color: var(--color-navy); font-size: 16px; }
.tr-row .s { margin-left: auto; }

/* ---------- Bands ---------- */
.band { border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 56px); position: relative; overflow: hidden; }
.band-blue { background: var(--gradient-primary); color: #fff; }
.band-blue h2 { color: #fff; }
.band-amber { background: var(--color-donate-soft); border: 1px solid var(--color-donate-accent); }
.band-navy { background: var(--gradient-navy); color: #fff; }
.band-navy h2 { color: #fff; }

/* ---------- News / media cards ---------- */
.news-card { display: flex; flex-direction: column; gap: 12px; padding: var(--space-6); overflow: hidden; height: 100%; }
.news-top { display: flex; align-items: center; justify-content: space-between; }
.news-date { font-size: 13px; color: var(--color-text-muted); }
.news-card h3 { font-size: 19px; font-weight: 500; margin: 0; }
.news-card p { font-size: 15px; margin: 0; }

/* ---------- Page intro (sub-pages) ---------- */
.page-intro { background: var(--gradient-hero); border-bottom: 1px solid var(--color-border); }
.crumb { font-size: 13px; color: var(--color-text-muted); margin-bottom: 14px; }
.crumb b { color: var(--color-action-blue); }
.crumb button { background: none; border: none; color: var(--color-text-muted); font-family: var(--font-sans); font-size: 13px; cursor: pointer; padding: 0; }
.crumb button:hover { color: var(--color-action-blue); text-decoration: underline; }

/* ---------- Notice / placeholder ---------- */
.notice { display: flex; gap: 14px; align-items: flex-start; background: var(--color-bg-soft-blue); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 18px 20px; }
.notice .ic { width: 38px; height: 38px; border-radius: var(--radius-sm); background: #fff; color: var(--color-action-blue); display: flex; align-items: center; justify-content: center; flex: none; }
.notice.amber { background: var(--color-donate-soft); border-color: var(--color-donate-accent); }
.notice.amber .ic { color: var(--color-donate); }
.notice p { margin: 0; font-size: 14.5px; color: var(--color-text-secondary); }
.notice strong { color: var(--color-navy); font-weight: 500; }

.empty-state { text-align: center; padding: 64px 28px; max-width: 560px; margin: 0 auto; }
.empty-state .ic { width: 64px; height: 64px; border-radius: var(--radius-xl); background: var(--color-bg-soft-blue); color: var(--color-action-blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.form-card { display: flex; flex-direction: column; gap: 16px; }
.form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--color-text-secondary); line-height: 1.5; }
.checkbox-row input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--color-action-blue); flex: none; }
.form-note { font-size: 12.5px; color: var(--color-text-muted); display: flex; gap: 6px; align-items: center; }
.success-box { display: flex; gap: 12px; align-items: center; background: var(--color-success-soft); color: var(--color-success); padding: 16px; border-radius: var(--radius-sm); font-weight: 500; }
/* Disabled form overlay state */
.form-disabled .field { opacity: 0.72; }
.input:disabled, .textarea:disabled, .select:disabled { background: #f1f5f9; color: var(--color-text-muted); cursor: not-allowed; border-color: #e2e8f0; }
.input:disabled::placeholder, .textarea:disabled::placeholder { color: #aab6c6; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius-md); background: #fff; overflow: hidden; transition: border-color var(--dur-base); }
.faq-item.open { border-color: var(--color-cirg-blue); box-shadow: var(--shadow-card); }
.faq-q { width: 100%; display: flex; align-items: center; gap: 16px; justify-content: space-between; text-align: left; background: none; border: none; padding: 20px 22px; cursor: pointer; font-family: var(--font-head); font-size: 17px; font-weight: 500; color: var(--color-navy); }
.faq-q .chev { transition: transform var(--dur-base); flex: none; color: var(--color-action-blue); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { padding: 0 22px 22px; font-size: 15px; color: var(--color-text-secondary); line-height: 1.6; }

/* ---------- Search ---------- */
.search-bar { display: flex; gap: 10px; max-width: 640px; }
.search-bar .input { flex: 1; }
.search-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.filter-chip { font-family: var(--font-sans); font-size: 13.5px; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm); border: 1px solid var(--color-border); background: #fff; color: var(--color-text-secondary); cursor: pointer; transition: all var(--dur-base); }
.filter-chip:hover { border-color: var(--color-cirg-blue); color: var(--color-navy); }
.filter-chip.on { background: var(--color-action-blue); color: #fff; border-color: var(--color-action-blue); }

/* ---------- Donate tiers ---------- */
.donate-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tier { border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 18px 16px; text-align: center; background: #fff; cursor: not-allowed; opacity: 0.78; }
.tier .amt { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--color-navy); }
.tier .desc { font-size: 12.5px; color: var(--color-text-muted); margin-top: 4px; }

/* ---------- Sitemap ---------- */
.sitemap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.sitemap-col h3 { font-size: 16px; font-weight: 500; margin: 0 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--color-border); }
.sitemap-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.sitemap-col button { background: none; border: none; padding: 0; font-family: var(--font-sans); font-size: 14.5px; color: var(--color-text-secondary); cursor: pointer; text-align: left; }
.sitemap-col button:hover { color: var(--color-action-blue); text-decoration: underline; }

/* ---------- Timeline ---------- */
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--color-border); }
.tl-item:last-child { border-bottom: none; }
.tl-q { font-family: var(--font-head); font-weight: 700; color: var(--color-action-blue); font-size: 15px; }
.tl-item .body b { color: var(--color-navy); font-weight: 500; display: block; font-size: 16px; margin-bottom: 3px; }

/* ---------- Values chips ---------- */
.value-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.value-chip { display: flex; align-items: center; gap: 12px; padding: 16px 18px; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); }
.value-chip .ic { width: 36px; height: 36px; border-radius: var(--radius-sm); background: var(--color-bg-soft-blue); color: var(--color-action-blue); display: flex; align-items: center; justify-content: center; flex: none; }
.value-chip span { font-weight: 500; color: var(--color-navy); font-size: 15px; }

/* ---------- Footer ---------- */
.ftr { background: var(--color-navy); color: var(--color-text-on-dark-muted); }
.ftr-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 36px; padding-block: 64px 48px; }
.ftr-brand img { height: 34px; margin-bottom: 18px; }
.ftr-desc { font-size: 14px; line-height: 1.6; max-width: 320px; }
.ftr h5 { color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 16px; font-weight: 500; }
.ftr ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.ftr button.flink { background: none; border: none; padding: 0; color: var(--color-text-on-dark-muted); font-family: var(--font-sans); font-size: 14.5px; cursor: pointer; text-align: left; }
.ftr button.flink:hover { color: #fff; text-decoration: underline; }
.ftr a { color: var(--color-text-on-dark-muted); font-size: 14.5px; text-decoration: none; }
.ftr a:hover { color: #fff; }
.ftr-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; align-items: center; }
.ftr-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.ftr-legal button { background: none; border: none; color: var(--color-text-on-dark-muted); font-family: var(--font-sans); font-size: 13px; cursor: pointer; padding: 0; }
.ftr-legal button:hover { color: #fff; text-decoration: underline; }
.ftr-soc { display: flex; gap: 10px; }
.ftr-soc a { width: 38px; height: 38px; border-radius: var(--radius-md); background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer; transition: background var(--dur-base); }
.ftr-soc a:hover { background: var(--color-action-blue); }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80;
  max-width: 1100px; margin: 0 auto;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 20px 24px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  animation: cookieIn var(--dur-slow) var(--ease-out);
}
@keyframes cookieIn { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie .ic { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--color-bg-soft-blue); color: var(--color-action-blue); display: flex; align-items: center; justify-content: center; flex: none; }
.cookie .ctxt { flex: 1; min-width: 240px; font-size: 14px; color: var(--color-text-secondary); }
.cookie .ctxt b { color: var(--color-navy); font-weight: 500; display: block; margin-bottom: 2px; }
.cookie .cbtns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Tag / status row ---------- */
.meta-row { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; font-size: 13.5px; color: var(--color-text-muted); }
.meta-row .mi { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Project cards ---------- */
.proj-card { display: flex; flex-direction: column; gap: 14px; height: 100%; }
.proj-card h3 { font-size: 20px; font-weight: 500; margin: 0; }
.proj-card .kv { display: flex; flex-direction: column; gap: 8px; margin-top: 2px; }
.proj-card .kv .row { display: flex; gap: 8px; font-size: 13.5px; }
.proj-card .kv .k { color: var(--color-text-muted); min-width: 96px; flex: none; }
.proj-card .kv .v { color: var(--color-navy); font-weight: 500; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hide-lg { display: inline-flex; }
  .hdr-nav { display: none; }
  .hdr-row2 { display: none; }
  .hdr-burger { display: flex; }
  .hdr-cta-desktop { display: none; }
}
@media (max-width: 980px) {
  .hero-grid, .why-grid, .eco-wrap, .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .eco-ring { display: none; }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
  .donate-tiers { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .trust-items { margin-left: 0; }
  .ftr-top { grid-template-columns: 1fr 1fr; }
  .form-grid2 { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .donate-tiers { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 1fr; gap: 6px; }
  .ftr-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Values (About) ---------- */
.value-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.value-grid.cols-4 { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; }
@media (max-width: 880px) { .value-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .value-grid.cols-4 { grid-template-columns: 1fr; } }

/* ---------- Team ---------- */
.team-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; height: 100%; }
.team-photo { width: 150px; height: 150px; border-radius: 50%; overflow: hidden; border: 1px solid var(--color-border); background: var(--color-bg-soft-blue); flex: none; }
.team-card h3 { font-size: 19px; font-weight: 500; margin: 0; }
.team-skills { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 2px; }
.skill-tag { font-size: 12.5px; font-weight: 500; padding: 5px 10px; border-radius: var(--radius-xs); background: var(--color-bg-soft-blue); color: var(--color-action-blue); white-space: nowrap; }

/* ---------- Announcement bar ---------- */
.announce { background: var(--gradient-navy); color: #fff; }
.announce-in { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 9px 0; position: relative; }
.announce-txt { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 500; color: #fff; text-align: center; }
.announce-txt > i, .announce-txt svg { color: var(--color-donate-accent); flex: none; }
.announce-close { position: absolute; right: 0; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: #fff; width: 28px; height: 28px; border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--dur-base); }
.announce-close:hover { background: rgba(255,255,255,0.22); }
@media (max-width: 560px) { .announce-txt { font-size: 12.5px; padding-right: 34px; } }

/* ---------- Leaflet map (Contacts) ---------- */
.cirg-map { height: 340px; width: 100%; z-index: 0; background: var(--color-bg-soft-blue); }
.cirg-map .leaflet-container { font-family: var(--font-sans); }
.map-foot { display: flex; flex-wrap: wrap; gap: 8px 18px; padding: 12px 16px; border-top: 1px solid var(--color-border); background: #fff; }
.map-foot .mi { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--color-text-secondary); font-weight: 500; }
.map-approx { padding: 0 16px 12px; font-size: 12px; color: var(--color-text-muted); display: flex; gap: 6px; align-items: center; background: #fff; }
.cirg-pin { width: 32px; height: 32px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); display: flex; align-items: center; justify-content: center; border: 2px solid #fff; box-shadow: 0 4px 10px rgba(11,31,58,0.35); }
.cirg-pin > i, .cirg-pin svg { transform: rotate(45deg); color: #fff; width: 16px; height: 16px; }
.leaflet-tooltip.cirg-tip { background: var(--color-navy); color: #fff; border: none; font-weight: 500; font-size: 12px; padding: 3px 9px; border-radius: 4px; box-shadow: 0 4px 12px rgba(11,31,58,0.25); white-space: normal; max-width: 200px; }
.leaflet-tooltip.cirg-tip-blue { background: var(--color-action-blue); }
.leaflet-tooltip.cirg-tip-violet { background: var(--color-knowledge); }
.leaflet-tooltip.cirg-tip-teal { background: var(--color-volunteer); }
.leaflet-tooltip.cirg-tip::before { display: none; }

/* ---------- Card cover / photo band ---------- */
.card-cover { width: 100%; border-radius: var(--radius-md); overflow: hidden; background: var(--color-bg-soft-blue); margin-bottom: 4px; }
.photo-band { width: 100%; height: clamp(220px, 32vw, 380px); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border); background: var(--color-bg-soft-blue); box-shadow: var(--shadow-card); }

/* ---------- Accessibility widget ---------- */
.a11y-fab { position: fixed; left: 18px; bottom: 18px; z-index: 85; display: flex; align-items: center; gap: 9px; height: 48px; padding: 0 18px; border: 1px solid rgba(255,255,255,0.16); border-radius: 999px; background: var(--color-navy); color: #fff; cursor: pointer; box-shadow: var(--shadow-lg); font-family: var(--font-sans); font-size: 14px; font-weight: 500; transition: background var(--dur-base), transform var(--dur-base); }
.a11y-fab:hover { background: #16305c; transform: translateY(-2px); }
.a11y-fab-label { white-space: nowrap; }
.a11y-panel { position: fixed; left: 18px; bottom: 78px; z-index: 86; width: 290px; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 16px; display: flex; flex-direction: column; gap: 12px; animation: ddIn var(--dur-base) var(--ease-out); }
.a11y-head { display: flex; align-items: center; justify-content: space-between; }
.a11y-title { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 500; color: var(--color-navy); font-size: 16px; }
.a11y-close { width: 32px; height: 32px; border: 1px solid var(--color-border); border-radius: var(--radius-xs); background: none; cursor: pointer; color: var(--color-navy); display: flex; align-items: center; justify-content: center; }
.a11y-row { display: flex; flex-direction: column; gap: 7px; }
.a11y-label { font-size: 13px; font-weight: 500; color: var(--color-text-secondary); }
.a11y-seg { display: flex; border: 1px solid var(--color-border); border-radius: var(--radius-sm); overflow: hidden; }
.a11y-seg button { flex: 1; border: none; background: #fff; padding: 9px 6px; cursor: pointer; font-family: var(--font-sans); font-weight: 600; color: var(--color-text-muted); line-height: 1; }
.a11y-seg button + button { border-left: 1px solid var(--color-border); }
.a11y-seg button.on { background: var(--color-action-blue); color: #fff; }
.a11y-toggle { display: flex; align-items: center; gap: 10px; width: 100%; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: #fff; padding: 10px 12px; cursor: pointer; font-family: var(--font-sans); font-size: 14px; font-weight: 500; color: var(--color-navy); }
.a11y-toggle > span:first-of-type { flex: 1; text-align: left; }
.a11y-switch { width: 36px; height: 20px; border-radius: 999px; background: var(--color-border-strong); position: relative; transition: background var(--dur-base); flex: none; }
.a11y-switch::after { content: ""; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: transform var(--dur-base); }
.a11y-toggle.on .a11y-switch { background: var(--color-action-blue); }
.a11y-toggle.on .a11y-switch::after { transform: translateX(16px); }
.a11y-reset { align-self: flex-start; }

/* Accessibility modes (applied on <html>) */
html.a11y-grayscale { filter: grayscale(1); }
html.a11y-spacing p, html.a11y-spacing li, html.a11y-spacing .lead { line-height: 1.9 !important; letter-spacing: 0.03em; }
html.a11y-underline a, html.a11y-underline .hdr-link, html.a11y-underline .flink, html.a11y-underline .sitemap-col button { text-decoration: underline !important; }
html.a11y-contrast {
  --surface-page: #ffffff; --color-surface: #ffffff;
  --text-body: #000000; --color-text-body: #000000;
  --color-text-secondary: #111111; --color-text-muted: #2a2a2a;
  --color-navy: #000000;
  --color-border: #000000; --color-border-strong: #000000;
  --color-bg-soft-blue: #eef1f6;
  --color-action-blue: #0b3aa0; --color-cirg-blue: #0b3aa0;
  --gradient-hero: #ffffff; --gradient-navy: #000000; --gradient-primary: #0b3aa0;
}
html.a11y-contrast a, html.a11y-contrast .hdr-link { text-decoration: underline; }
html.a11y-contrast .card { border-color: #000 !important; }

/* ---------- ORSA project page ---------- */
.orsa-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.orsa-fact { display: flex; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 16px 18px; }
.orsa-fact .ic { width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--color-bg-soft-blue); color: var(--color-action-blue); display: flex; align-items: center; justify-content: center; flex: none; }
.orsa-fact .k { font-size: 12px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--color-text-muted); }
.orsa-fact .v { font-size: 14.5px; font-weight: 500; color: var(--color-navy); }
@media (max-width: 880px) { .orsa-facts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .orsa-facts { grid-template-columns: 1fr; } }

.orsa-img { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border); box-shadow: var(--shadow-card); aspect-ratio: 16 / 10; }
.orsa-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.orsa-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.orsa-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--color-text-secondary); }
.orsa-list li svg, .orsa-list li > i { flex: none; margin-top: 2px; }
.orsa-list-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
@media (max-width: 720px) { .orsa-list-2col { grid-template-columns: 1fr; } .orsa-split .orsa-img { order: 2 !important; } .orsa-split > div { order: 1 !important; } }

.orsa-flow { display: flex; align-items: stretch; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.orsa-step { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 18px 14px; min-width: 132px; display: flex; flex-direction: column; align-items: center; gap: 9px; position: relative; text-align: center; }
.orsa-step .n { position: absolute; top: 8px; left: 10px; font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--color-border-strong); }
.orsa-step .ic { width: 46px; height: 46px; border-radius: 50%; background: var(--color-bg-soft-blue); color: var(--color-action-blue); display: flex; align-items: center; justify-content: center; }
.orsa-step .lb { font-size: 14.5px; font-weight: 500; color: var(--color-navy); }
.orsa-arrow { display: flex; align-items: center; color: var(--color-border-strong); }
@media (max-width: 640px) { .orsa-arrow { transform: rotate(90deg); } .orsa-flow { flex-direction: column; align-items: center; } }
.orsa-core { display: inline-flex; gap: 10px; align-items: center; background: var(--color-bg-soft-blue); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 14px 20px; font-size: 15px; font-weight: 500; color: var(--color-navy); margin-inline: auto; max-width: 760px; }
.orsa-core svg, .orsa-core > i { color: var(--color-action-blue); flex: none; }

.orsa-partner { display: flex; gap: 16px; align-items: center; padding: 18px; }
.orsa-partner b { display: block; color: var(--color-navy); font-size: 16px; margin-bottom: 3px; }
.orsa-partner span { font-size: 14px; color: var(--color-text-secondary); }
.orsa-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.orsa-stat { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 22px; text-align: center; }
.orsa-stat .v { font-family: var(--font-head); font-weight: 700; font-size: clamp(28px, 4vw, 40px); color: var(--color-action-blue); letter-spacing: -0.02em; }
.orsa-stat .l { font-size: 13.5px; color: var(--color-text-secondary); margin-top: 4px; }
@media (max-width: 880px) { .orsa-stats { grid-template-columns: repeat(2, 1fr); } }
.orsa-contact { border-top: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); padding: 16px 0; display: flex; flex-direction: column; gap: 5px; }

/* ---------- Legal documents ---------- */
.legal-doc { margin-top: 8px; }
.legal-sec { padding: 22px 0; border-bottom: 1px solid var(--color-border); }
.legal-sec:last-child { border-bottom: none; }
.legal-sec h2 { font-size: 19px; font-weight: 500; color: var(--color-navy); margin: 0 0 10px; }
.legal-sec p { margin: 0; font-size: 15.5px; line-height: 1.7; color: var(--color-text-secondary); }
.legal-sec ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.legal-sec ul li { position: relative; padding-left: 20px; font-size: 15.5px; line-height: 1.6; color: var(--color-text-secondary); }
.legal-sec ul li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--color-action-blue); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ============================================================
   5. Square + Circle + Editorial overrides (the new DS signature)
   ============================================================ */

/* Flat, crisp header (no glass) */
.hdr { background: #fff; backdrop-filter: none; }
.hdr-tworow .hdr-row2 { background: var(--bg-muted); backdrop-filter: none; }

/* GeoMark eyebrow — circle + square in the eyebrow's own color */
.eyebrow { gap: 9px; }
.eyebrow > i, .eyebrow > svg { display: none; }
.eyebrow::before {
  content: ""; display: inline-block; flex: none; width: 17px; height: 7px;
  background:
    radial-gradient(circle at 3.5px 3.5px, currentColor 3.3px, transparent 3.6px) left center / 7px 7px no-repeat,
    linear-gradient(currentColor, currentColor) right center / 7px 7px no-repeat;
}

/* Circle-inside-square motif: every icon disc is a true circle on its sharp tile */
.dir-ico, .proc-ico, .hero-chip .ico, .trust-item .dot, .chk .ic, .tr-row .ic,
.notice .ic, .empty-state .ic, .value-chip .ic, .cookie .ic, .orsa-fact .ic,
.dd-ic, .ftr-soc a { border-radius: 50% !important; }

/* Editorial hero — light wash + faint concentric logo ring */
.hero { position: relative; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; top: -190px; right: -150px; width: 580px; height: 580px;
  pointer-events: none; z-index: 0; border-radius: 50%;
  background: repeating-radial-gradient(circle at center, transparent 0 54px, rgba(45,158,240,0.10) 54px 56px);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { line-height: 0.98; font-weight: 700; }
.hero-visual { box-shadow: none !important; }
.hero-chip { box-shadow: var(--shadow-overlay); }
/* Deep-blue blocks: flat #2787CC carrying concentric ring decoration */
.band-blue, .eco { background: var(--bg-dark) !important; position: relative; overflow: hidden; }
.band-blue > *, .eco > * { position: relative; z-index: 1; }
.band-blue::after, .eco::after {
  content: ""; position: absolute; top: -34%; right: -8%; width: 520px; height: 520px;
  pointer-events: none; z-index: 0; border-radius: 50%;
  background: repeating-radial-gradient(circle at center, transparent 0 46px, rgba(255,255,255,0.08) 46px 48px);
}

/* Flat-but-lifted surfaces — keep soft shadow on imagery for depth */
.hero-visual { box-shadow: var(--shadow-card) !important; }
.hero-chip { box-shadow: var(--shadow-overlay); }
