* {
  box-sizing: border-box;
}

:root {
  --ink: #182723;
  --ink-soft: #31524a;
  --bg: #f5f6f1;
  --surface: #ffffff;
  --line: #d8ddd4;
  --teal-700: #0d5c52;
  --teal-600: #0e7066;
  --teal-500: #1a9485;
  --gold-100: #f4e9cb;
  --orange-100: #fbe8dc;
  --shadow: 0 10px 36px rgba(13, 92, 82, 0.1);
}

html {
  scroll-behavior: smooth;
}

html[data-lang-pending="true"] body {
  visibility: hidden;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% -10%, #e9f6f3 0%, transparent 45%),
    radial-gradient(circle at 90% 8%, #fff4df 0%, transparent 35%),
    var(--bg);
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  margin: 0;
}

p {
  line-height: 1.68;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.section-pad {
  padding: 4.8rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(245, 246, 241, 0.88);
  border-bottom: 1px solid rgba(216, 221, 212, 0.82);
}

.header-inner {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line);
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  gap: 1.1rem;
  font-size: 0.93rem;
  font-weight: 600;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.main-nav a:hover {
  color: var(--teal-700);
  border-color: var(--teal-500);
}

.main-nav a.active {
  color: var(--teal-700);
  border-color: var(--teal-600);
}

.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.nav-toggle span {
  width: 16px;
  height: 1.8px;
  border-radius: 999px;
  background: var(--teal-700);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
}

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

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

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

.language-trigger {
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  border-radius: 999px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.38rem 0.72rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
  transition: transform 0.15s ease, border-color 0.2s ease, color 0.2s ease;
}

.language-trigger-text {
  white-space: nowrap;
}

.language-trigger-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.language-trigger-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.8;
}

.language-trigger:hover {
  transform: translateY(-1px);
  color: var(--teal-700);
  border-color: var(--teal-500);
}

.language-switcher.open .language-trigger {
  border-color: var(--teal-600);
  color: var(--teal-700);
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  min-width: 170px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.35rem;
  box-shadow: 0 10px 28px rgba(17, 52, 47, 0.14);
  z-index: 50;
}

.language-menu[hidden] {
  display: none;
}

.lang-option {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink-soft);
  text-align: left;
  font: inherit;
  font-weight: 600;
  padding: 0.5rem 0.6rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-option:hover {
  background: var(--mint-100);
  color: var(--teal-700);
}

.lang-option.active {
  background: var(--mint-100);
  color: var(--teal-700);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.6;
}

.hero-bg-shape-a {
  width: 280px;
  height: 280px;
  background: linear-gradient(130deg, #d3efe9, #f4e9cb);
  top: 8%;
  left: -80px;
}

.hero-bg-shape-b {
  width: 340px;
  height: 340px;
  background: linear-gradient(130deg, #ffe9d5, #dcf3ee);
  right: -120px;
  top: 16%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  text-align: center;
}

.hero-kicker {
  display: inline-block;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--gold-100);
  color: #6f5830;
  font-size: 0.81rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-org-name {
  margin: 0.9rem 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--teal-700);
}

.hero-logo {
  display: block;
  width: min(315px, 63vw);
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
}

.hero h1 {
  margin-top: 0.7rem;
  font-size: clamp(2.1rem, 5.7vw, 4.4rem);
  line-height: 1.03;
  color: #11342f;
}

.hero-lead {
  margin-top: 1rem;
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-row {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-mission {
  width: 100%;
  max-width: 72ch;
  margin: 0 auto;
}

.hero-mission h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: 0.45rem;
}

.hero-mission p {
  margin: 0;
  color: var(--ink-soft);
}

.hero-pathways {
  width: 100%;
  max-width: 76ch;
  margin: 0 auto;
}

.hero-pathways h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: 0.45rem;
}

.hero-pathways p {
  margin: 0;
  color: var(--ink-soft);
}

.pathway-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pathway-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.pathway-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.45rem;
}

.pathway-card .btn {
  margin-top: 1rem;
}

.quick-actions-row {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.68rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.btn-primary {
  background: var(--teal-600);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-700);
}

.btn-outline {
  background: transparent;
  border-color: var(--teal-600);
  color: var(--teal-700);
}

.btn-outline:hover {
  background: rgba(26, 148, 133, 0.08);
}

.hero-card,
.soft-card,
.pillar-card,
.timeline-item,
.project-card,
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.3rem 1.35rem;
  width: 100%;
}

.hero-card h2 {
  font-size: 2rem;
  margin-bottom: 0.35rem;
}

.hero-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.section-head {
  max-width: 62ch;
  margin-bottom: 1.45rem;
}

.section-head.left {
  margin-bottom: 0.9rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4.3vw, 3rem);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

.pillar-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pillar-card {
  padding: 1.2rem 1rem;
  text-align: center;
}

.pillar-card span {
  font-size: 1.4rem;
}

.pillar-card h3 {
  margin-top: 0.25rem;
  font-size: 1.7rem;
}

.timeline-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.actions-page {
  max-width: 960px;
}

.actions-page .section-head {
  max-width: 72ch;
  margin: 0 auto 1.35rem;
  text-align: center;
}

.actions-tabs {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  gap: 0.45rem;
  padding: 0.4rem;
  margin: 0 auto 1.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.actions-tab-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0.7rem 1.15rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
}

.actions-tab-btn.active {
  color: #fff;
  background: var(--teal-600);
}

.actions-tab-panel {
  display: none;
}

.actions-tab-panel.active {
  display: block;
}

.actions-panel-head {
  margin-bottom: 1rem;
}

.actions-panel-head p {
  margin: 0;
  color: var(--ink-soft);
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0.45rem 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
}

.filter-btn.active {
  color: #fff;
  border-color: var(--teal-600);
  background: var(--teal-600);
}

.timeline-list {
  display: grid;
  gap: 0.9rem;
}

.timeline-item {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.timeline-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.45rem;
}

.timeline-tags {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.timeline-tags {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.timeline-date {
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.timeline-tag {
  font-size: 0.78rem;
  border-radius: 999px;
  padding: 0.22rem 0.58rem;
  font-weight: 700;
}

.tag-human {
  color: #7b3c1f;
  background: #fdeadd;
}

.tag-animals {
  color: #23495f;
  background: #e3f4ff;
}

.tag-environment {
  color: #234d2c;
  background: #def5dc;
}

.timeline-item h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.timeline-thumb {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  margin-bottom: 0.6rem;
  max-height: 360px;
  object-fit: cover;
}

.timeline-title {
  margin-bottom: 0.2rem;
}

.timeline-open-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--teal-700);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.timeline-open-btn:hover {
  color: var(--teal-600);
}

.timeline-open-hint {
  font-family: 'Manrope', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--teal-700);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.timeline-media {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.timeline-media a {
  font-size: 0.84rem;
  color: var(--teal-700);
}

.timeline-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.timeline-gallery-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.timeline-gallery-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.timeline-empty-media {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}

.modal-open {
  overflow: hidden;
}

.timeline-carousel {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 18, 0.78);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 1rem;
}

.timeline-carousel.open {
  display: flex;
}

.timeline-carousel-dialog {
  position: relative;
  width: min(1100px, 94vw);
  max-height: 90vh;
  background: #0e1d1a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2.6rem 3.1rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
  user-select: none;
}

.carousel-image {
  width: auto;
  max-width: 100%;
  max-height: calc(90vh - 7rem);
  object-fit: contain;
  border-radius: 10px;
}

.carousel-close {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.carousel-nav.prev {
  left: 0.8rem;
}

.carousel-nav.next {
  right: 0.8rem;
}

.carousel-counter {
  position: absolute;
  bottom: 0.7rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.project-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.actions-page .project-columns {
  grid-template-columns: 1fr;
}

.actions-page #actions-panel-current .project-column {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.project-column {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.85rem;
}

.project-column h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.actions-page #actions-panel-current .project-column h3 {
  margin-bottom: 0.8rem;
}

.project-stack {
  display: grid;
  gap: 0.7rem;
}

.project-card {
  padding: 0.85rem;
}

.project-card h4 {
  margin: 0;
  font-size: 1rem;
}

.project-card p {
  margin: 0.3rem 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.progress-bar {
  width: 100%;
  background: #e4e8df;
  border-radius: 999px;
  height: 9px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-700), var(--teal-500));
}

.progress-meta {
  margin-top: 0.32rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.soft-card {
  padding: 1rem;
}

.about-intro-head {
  max-width: 72ch;
  margin: 0 auto;
  text-align: center;
}

.about-intro-head h2 + p {
  margin: 0.7rem auto 0;
}

.section-head p.about-mission-body {
  margin-top: 1.1rem;
}

.about-legal-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.about-legal-meta p {
  margin: 0;
  color: var(--ink-soft);
}

.about-legal-statement {
  margin: 1rem auto 0;
  max-width: 70ch;
  color: var(--ink-soft);
}

.about-founders {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2.2rem;
  margin-top: 0.8rem;
}

.about-team-card {
  margin-top: 2.4rem;
  text-align: center;
}

.about-team-card h2 {
  font-size: clamp(1.8rem, 4.3vw, 3rem);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.about-founders h3 {
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
}

.about-founders p {
  margin: 0;
  color: var(--ink-soft);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

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

.forms-stack {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.form-accordion {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  scroll-margin-top: 110px;
}

.form-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
}

.form-accordion summary::-webkit-details-marker {
  display: none;
}

.form-accordion summary::after {
  content: "+";
  float: right;
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  color: var(--teal-700);
}

.form-accordion[open] summary::after {
  content: "−";
}

.form-accordion-body {
  padding: 0 1rem 1rem;
}

.form-card {
  padding: 1rem;
}

.form-note {
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.form-note-muted {
  font-weight: 700;
}

.form-disabled-group {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 0.45rem;
}

.form-disabled-group:disabled {
  opacity: 0.68;
}

.form-disabled-group .btn[disabled] {
  background: #c7d4ce;
  border-color: #c7d4ce;
  color: #f8fbf9;
  cursor: not-allowed;
}

.form-card h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

form {
  display: grid;
  gap: 0.45rem;
}

label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink-soft);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9d5cd;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font-family: inherit;
  font-size: 0.92rem;
  background: #fff;
}

textarea {
  resize: vertical;
}

.donation-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.donate .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.donate-cta-row {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.bank-card h3 {
  text-align: center;
  margin-bottom: 1rem;
}

.donation-grid .soft-card h3 {
  text-align: center;
}

.bank-details-grid {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) auto;
  column-gap: 1rem;
  row-gap: 0.65rem;
  align-items: center;
}

.bank-details-grid strong {
  text-align: right;
}

.bank-details-grid span {
  text-align: left;
}

.copy-btn {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--teal-700);
  border-radius: 999px;
  width: 2rem;
  height: 2rem;
  padding: 0;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.copy-btn svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.copy-btn:hover {
  border-color: var(--teal-500);
  color: var(--teal-600);
  transform: translateY(-1px);
}

.copy-btn.copied {
  border-color: var(--teal-600);
  background: #edf7f4;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.42rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.contact-list a {
  color: var(--teal-700);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-action-list {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-icon-btn {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.15s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.contact-icon-btn svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.contact-icon-btn-whatsapp {
  color: #128c7e;
}

.contact-icon-btn-whatsapp:hover {
  border-color: #128c7e;
  background: rgba(18, 140, 126, 0.08);
}

.contact-icon-btn-viber {
  color: #7360f2;
}

.contact-icon-btn-viber:hover {
  border-color: #7360f2;
  background: rgba(115, 96, 242, 0.08);
}

.social-soon {
  margin: 0;
  color: var(--ink-soft);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--ink-soft);
}

.social-links a:hover {
  border-color: var(--teal-500);
  color: var(--teal-700);
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 2.2rem;
  text-align: center;
  padding: 1.2rem 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

@media (max-width: 1024px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 0.8rem;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .language-switcher {
    order: 3;
  }

  .main-nav {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.25rem 0 0.4rem;
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid,
  .two-col,
  .donation-grid,
  .project-columns,
  .pillar-grid,
  .pathway-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .actions-tabs {
    display: flex;
    width: 100%;
    border-radius: 18px;
  }

  .actions-tab-btn {
    flex: 1 1 220px;
    text-align: center;
  }

  .actions-page .project-columns,
  .header-inner {
    min-height: 74px;
  }

  .brand-name {
    display: none;
  }

  .section-pad {
    padding: 3.2rem 0;
  }
}
