:root {
  --primary: #023C39;
  --primary-2: #07564F;
  --gold: #DCA05B;
  --gold-2: #E9B779;
  --ivory: #F8F5EF;
  --mint: #EAF3EF;
  --text: #384342;
  --muted: #6E7A78;
  --line: rgba(2, 60, 57, .13);
  --white: #FFFFFF;
  --shadow: 0 22px 55px rgba(2, 60, 57, .12);
  --soft-shadow: 0 10px 28px rgba(2, 60, 57, .08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --font: "Noto Kufi Arabic", "Tajawal", "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  direction: rtl;
  text-align: right;
  color: var(--text);
  background: var(--ivory);
  font-family: var(--font);
  line-height: 1.8;
}

html[dir="ltr"] body {
  direction: ltr;
  text-align: left;
}

html[dir="ltr"] .section-heading,
html[dir="ltr"] .project-body,
html[dir="ltr"] .news-card,
html[dir="ltr"] .doc-card,
html[dir="ltr"] .contact-form label {
  text-align: left;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.section {
  padding: 96px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(248, 245, 239, .72);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(248, 245, 239, .96);
  border-color: rgba(2, 60, 57, .1);
  box-shadow: 0 12px 35px rgba(2, 60, 57, .08);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary), #012a28);
  box-shadow: inset 0 0 0 1px rgba(220, 160, 91, .24), 0 12px 26px rgba(2, 60, 57, .18);
}

.brand-mark svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.2;
}

.brand-mark circle:first-child {
  fill: var(--gold);
  stroke: none;
}

.brand-copy {
  display: grid;
  line-height: 1.35;
}

.brand-copy strong {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 850;
}

.brand-copy small {
  color: var(--muted);
  font-size: .75rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
}

.desktop-nav a {
  padding: 10px 11px;
  border-radius: 999px;
  color: #263b39;
  font-size: .84rem;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--primary);
  background: rgba(2, 60, 57, .07);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(2, 60, 57, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
}

.lang-option {
  min-width: 38px;
  height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: .76rem;
  font-weight: 900;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.lang-option:hover,
.lang-option.active {
  color: var(--primary);
  background: var(--mint);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: #163330;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 12px 26px rgba(220, 160, 91, .28);
}

.btn-soft {
  color: var(--primary);
  background: rgba(234, 243, 239, .9);
  border-color: rgba(2, 60, 57, .12);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .07);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .13);
}

.btn-large {
  min-height: 54px;
  padding-inline: 30px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 5px;
  background: var(--primary);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 160px 0 95px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 17% 20%, rgba(220, 160, 91, .28), transparent 28%),
    radial-gradient(circle at 78% 75%, rgba(234, 243, 239, .17), transparent 30%),
    linear-gradient(135deg, #012825 0%, #023C39 54%, #011b1a 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(to top, var(--ivory), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .75fr);
  align-items: center;
  gap: 70px;
}

.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ring {
  position: absolute;
  left: 8%;
  top: 19%;
  border: 1px solid rgba(220, 160, 91, .26);
  border-radius: 50%;
  animation: pulse 7s ease-in-out infinite;
}

.ring-1 { width: 190px; height: 190px; }
.ring-2 { width: 330px; height: 330px; transform: translate(-70px, -70px); animation-delay: .8s; }
.ring-3 { width: 500px; height: 500px; transform: translate(-155px, -155px); animation-delay: 1.6s; }
.ring-4 { width: 680px; height: 680px; transform: translate(-245px, -245px); animation-delay: 2.4s; }

.dot-grid {
  position: absolute;
  inset: 110px auto auto 54%;
  width: 360px;
  height: 280px;
  opacity: .2;
  background-image: radial-gradient(var(--gold) 1.3px, transparent 1.3px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 16px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(220, 160, 91, .13);
  font-size: .82rem;
  font-weight: 850;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
  line-height: 1.13;
  letter-spacing: 0;
}

.hero h2 {
  margin: 22px 0 14px;
  color: var(--gold-2);
  font-size: clamp(1.28rem, 2.4vw, 2.15rem);
}

.hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.impact-panel {
  position: relative;
  min-height: 440px;
  padding: 42px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05)),
    radial-gradient(circle at 50% 35%, rgba(220, 160, 91, .24), transparent 45%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
}

.hero-photo-card {
  padding: 0;
  isolation: isolate;
}

.hero-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 36% center;
  filter: saturate(.95) contrast(1.04);
  transform: scale(1.01);
  transition: transform .7s ease;
}

.hero-photo-card:hover img {
  transform: scale(1.045);
}

.hero-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 15%, rgba(220, 160, 91, .25), transparent 30%),
    linear-gradient(180deg, transparent 35%, rgba(1, 31, 29, .9));
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 24px;
}

.hero-photo-overlay {
  position: absolute;
  inset: auto 28px 28px;
  z-index: 3;
}

.impact-panel span {
  color: var(--gold-2);
  font-weight: 800;
}

.impact-panel strong {
  color: var(--white);
  font-size: 2.25rem;
  line-height: 1.25;
}

.panel-orbit {
  position: absolute;
  inset: 44px 44px auto auto;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(220, 160, 91, .42);
  border-radius: 50%;
}

.panel-orbit::before,
.panel-orbit::after {
  content: "";
  position: absolute;
  inset: 36px;
  border: inherit;
  border-radius: inherit;
}

.panel-orbit::after {
  inset: 78px;
  background: var(--gold);
  box-shadow: 0 0 45px rgba(220, 160, 91, .6);
}

.intro-strip {
  position: relative;
  z-index: 4;
  margin-top: -54px;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mini-card,
.value-card,
.program-card,
.news-card,
.doc-card,
.person-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--soft-shadow);
}

.mini-card {
  padding: 24px;
}

.mini-card span,
.project-body span,
.news-card span {
  color: var(--gold);
  font-weight: 900;
  font-size: .82rem;
}

.mini-card h3,
.value-card h3,
.program-card h3,
.project-card h3,
.news-card h3,
.doc-card h3,
.person-card h3,
.event-item h3 {
  margin: 8px 0;
  color: var(--primary);
  line-height: 1.45;
}

.mini-card p,
.value-card p,
.program-card p,
.project-card p,
.news-card p,
.doc-card p,
.person-card p,
.event-item p,
.section-heading p {
  margin: 0;
  color: var(--muted);
}

.two-column,
.resonance-grid,
.contact-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 58px;
  align-items: center;
}

.section-heading h2 {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.32;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.centered .section-kicker {
  margin-inline: auto;
}

.value-stack {
  display: grid;
  gap: 16px;
}

.value-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  padding: 26px;
}

.value-card .icon {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--primary);
  background: var(--mint);
  font-weight: 900;
}

.resonance {
  background: linear-gradient(180deg, var(--ivory), var(--mint));
}

.resonance-visual {
  position: relative;
  min-height: 450px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(220, 160, 91, .26), transparent 9%),
    linear-gradient(145deg, var(--primary), #011f1d);
  box-shadow: var(--shadow);
}

.resonance-visual span {
  position: absolute;
  top: 50%;
  right: 50%;
  border: 1px solid rgba(220, 160, 91, .42);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.resonance-visual span:nth-child(1) { width: 110px; height: 110px; }
.resonance-visual span:nth-child(2) { width: 210px; height: 210px; }
.resonance-visual span:nth-child(3) { width: 320px; height: 320px; }
.resonance-visual span:nth-child(4) { width: 455px; height: 455px; }

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-right: 26px;
  color: #42504e;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: .72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.stats {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(220, 160, 91, .25), transparent 32%),
    linear-gradient(135deg, #012a28, var(--primary));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  padding: 34px 22px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.stat-card strong {
  color: var(--gold-2);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.stat-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .78);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.program-card {
  padding: 30px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.program-card:hover,
.project-card:hover,
.news-card:hover,
.doc-card:hover,
.person-card:hover,
.mini-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.program-icon,
.doc-icon,
.avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--primary);
  background: linear-gradient(145deg, var(--mint), #fff);
  border: 1px solid var(--line);
  font-weight: 950;
}

.program-card a,
.project-body a,
.news-card a,
.doc-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 900;
}

.projects {
  background: #fffaf2;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.project-art {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  background-color: var(--mint);
}

.project-art img {
  width: 100%;
  height: 100%;
  min-height: 206px;
  display: block;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.project-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(1, 31, 29, .66)),
    radial-gradient(circle at 14% 12%, rgba(220, 160, 91, .28), transparent 28%);
  opacity: .9;
  pointer-events: none;
}

.project-card:hover .project-art img {
  transform: scale(1.06);
  filter: saturate(1.04) contrast(1.03);
}

.project-body,
.news-card,
.doc-card,
.person-card {
  padding: 26px;
}

.news-grid,
.doc-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.news-card time {
  display: block;
  color: var(--muted);
  font-size: .86rem;
}

.events {
  background: var(--mint);
}

.event-list {
  display: grid;
  gap: 16px;
}

.event-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .74);
  box-shadow: var(--soft-shadow);
}

.event-date {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--white);
  background: var(--primary);
  line-height: 1.1;
}

.event-date strong {
  font-size: 1.65rem;
}

.event-date span {
  color: var(--gold-2);
  font-size: .78rem;
}

.doc-card .doc-icon {
  width: 66px;
  color: #6a3a11;
  background: rgba(220, 160, 91, .18);
}

.partners {
  background: #fffaf2;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.logo-wall span {
  min-height: 90px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--primary);
  background: var(--white);
  font-weight: 900;
}

.team-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -20px 0 30px;
}

.team-tabs span {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary);
  background: var(--white);
  font-weight: 850;
}

.person-card {
  text-align: center;
}

.person-card .avatar {
  margin: 0 auto 16px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  color: var(--gold);
  background: var(--primary);
  font-size: 1.5rem;
}

.cta {
  padding: 90px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 0%, rgba(220, 160, 91, .24), transparent 28%),
    linear-gradient(135deg, #011f1d, var(--primary));
}

.cta-inner {
  max-width: 900px;
}

.cta h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.cta p {
  max-width: 650px;
  color: rgba(255, 255, 255, .8);
  font-size: 1.08rem;
}

.contact-grid {
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 7px;
  margin-top: 26px;
}

.contact-info p {
  margin: 0;
}

.map-placeholder {
  min-height: 190px;
  display: grid;
  place-items: center;
  margin-top: 26px;
  border: 1px dashed rgba(2, 60, 57, .3);
  border-radius: var(--radius);
  color: var(--primary);
  background:
    linear-gradient(90deg, rgba(2,60,57,.06) 1px, transparent 1px),
    linear-gradient(rgba(2,60,57,.06) 1px, transparent 1px),
    var(--mint);
  background-size: 22px 22px;
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--primary);
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(2, 60, 57, .16);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--text);
  background: #fbfaf7;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(220, 160, 91, .15);
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 28px;
  margin: 0;
  color: var(--primary);
  font-weight: 850;
}

.footer {
  padding: 70px 0 26px;
  color: rgba(255, 255, 255, .75);
  background: #011f1d;
}

.footer .brand-copy strong {
  color: var(--white);
}

.footer .brand-copy small {
  color: rgba(255, 255, 255, .62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 38px;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--gold-2);
}

.footer p {
  margin: 0 0 10px;
}

.footer a:not(.brand) {
  display: block;
  margin: 0 0 9px;
}

.footer a:not(.brand):hover {
  color: var(--gold-2);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: var(--gold-2);
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% { opacity: .65; }
  50% { opacity: 1; }
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-shell {
    justify-content: space-between;
  }

  .mobile-menu {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    gap: 4px;
    max-height: calc(100vh - 82px);
    overflow: auto;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(248, 245, 239, .98);
    box-shadow: 0 24px 50px rgba(2, 60, 57, .14);
    transform: translateY(-120%);
    transition: transform .25s ease;
  }

  .mobile-menu.open {
    transform: translateY(0);
  }

  .mobile-language {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
    background: var(--white);
  }

  .mobile-menu a {
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--primary);
    font-weight: 850;
  }

  .mobile-menu a:hover {
    background: var(--mint);
  }

  .mobile-menu-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .resonance-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .impact-panel {
    min-height: 330px;
  }

  .mini-cards,
  .stats-grid,
  .project-grid,
  .logo-wall,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid,
  .news-grid,
  .doc-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 26px, var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: .92rem;
  }

  .brand-copy small {
    font-size: .68rem;
  }

  .brand-copy small {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

  .nav-actions > .language-switcher {
    display: inline-flex;
    padding: 3px;
    gap: 2px;
  }

  .nav-actions > .language-switcher .lang-option {
    min-width: 31px;
    height: 30px;
    padding: 0 7px;
    font-size: .7rem;
  }

  .hero {
    padding-top: 132px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 14vw, 3.8rem);
  }

  .hero-actions,
  .cta-actions,
  .mobile-menu-actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .mini-cards,
  .stats-grid,
  .project-grid,
  .news-grid,
  .doc-grid,
  .team-grid,
  .logo-wall,
  .card-grid,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .value-card,
  .event-item {
    grid-template-columns: 1fr;
  }

  .event-item .btn {
    width: 100%;
  }

  .resonance-visual,
  .impact-panel {
    min-height: 300px;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-bottom {
    display: grid;
  }
}
