/* ================================================================
   COMBRETIN.RO — Design System & Stylesheet
   Static HTML Redesign · 2026
   Terapie prin Escaladă
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ----------------------------------------------------------------
   CSS Custom Properties
---------------------------------------------------------------- */
:root {
  /* Brand palette */
  --c-green-950: #0D2B1E;
  --c-green-900: #1B4332;
  --c-green-800: #2D6A4F;
  --c-green-700: #40916C;
  --c-green-600: #52B788;
  --c-green-200: #B7E4C7;
  --c-green-100: #D8F3DC;
  --c-green-50:  #F0FAF4;

  --c-accent:     #C6F4F3;
  --c-accent-dk:  #A0DCDA;
  --c-accent-lt:  #C6F4F3;
  --c-accent-bg:  #E8FAFA;

  /* Neutrals */
  --c-bg:       #FAFAF8;
  --c-white:    #FFFFFF;
  --c-cream:    #F5F0E8;
  --c-cream-dk: #EDE8DF;
  --c-stone:    #D6D0C8;

  --c-text:     #1C1917;
  --c-text-2:   #57534E;
  --c-text-3:   #78716C;
  --c-text-4:   #A8A29E;

  --c-border:   #E8E3DC;
  --c-border-lt:#F0EDE8;

  /* Shadows */
  --sh-xs:   0 1px 2px rgba(0,0,0,.05);
  --sh-sm:   0 2px 6px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --sh-md:   0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.05);
  --sh-lg:   0 8px 32px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  --sh-xl:   0 20px 60px rgba(0,0,0,.12);
  --sh-card: 0 2px 12px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.04);
  --sh-card-h: 0 8px 32px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.07);
  --sh-green:  0 4px 20px rgba(45,106,79,.22);
  --sh-accent: 0 4px 20px rgba(198,244,243,.30);

  /* Radius */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  40px;
  --r-full: 9999px;

  /* Typography */
  --ff-h: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-b: 'Inter',               -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Transitions */
  --tr:       250ms ease;
  --tr-slow:  420ms cubic-bezier(.4,0,.2,1);
  --tr-spring:500ms cubic-bezier(.175,.885,.32,1.275);

  /* Layout */
  --nav-h:      72px;
  --sec-py:     clamp(4rem, 8vw, 6rem);
  --cont-max:   1200px;
  --cont-px:    clamp(1.25rem, 5vw, 2.5rem);
}

/* ----------------------------------------------------------------
   Reset & Base
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-b);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
strong { font-weight: 600; }

/* ----------------------------------------------------------------
   Layout
---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--cont-max);
  margin-inline: auto;
  padding-inline: var(--cont-px);
}

.section {
  padding-block: var(--sec-py);
}

.section--cream     { background: var(--c-cream); }
.section--green-soft{ background: var(--c-green-50); }
.section--dark      { background: var(--c-green-900); color: var(--c-white); }
.section--darkest   { background: var(--c-green-950); color: var(--c-white); }

.text-center { text-align: center; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ----------------------------------------------------------------
   Typography
---------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-h);
  font-weight: 700;
  line-height: 1.22;
  color: var(--c-text);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--darkest h1,
.section--darkest h2,
.section--darkest h3 { color: var(--c-white); }

.section-tag {
  display: inline-block;
  font-family: var(--ff-h);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-green-700);
  background: var(--c-green-100);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}

.section--dark .section-tag,
.section--darkest .section-tag {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  margin-bottom: .875rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--c-text-2);
  line-height: 1.75;
  max-width: 580px;
}

.section--dark .section-subtitle,
.section--darkest .section-subtitle { color: rgba(255,255,255,.72); }

.section-header { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-header.text-center .section-subtitle { margin-inline: auto; }

/* ----------------------------------------------------------------
   Buttons
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-h);
  font-size: .9375rem;
  font-weight: 600;
  padding: .75rem 1.875rem;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  transition: var(--tr);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background: #C6F4F3;
  color: var(--c-text);
  box-shadow: 0 4px 20px rgba(198,244,243,.40);
}
.btn-primary:hover {
  background: #A0DCDA;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(198,244,243,.55);
}

.btn-green {
  background: var(--c-green-800);
  color: #fff;
  box-shadow: var(--sh-green);
}
.btn-green:hover {
  background: var(--c-green-900);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(45,106,79,.30);
}

.btn-outline {
  border-color: var(--c-green-800);
  color: var(--c-green-800);
}
.btn-outline:hover {
  background: var(--c-green-800);
  color: #fff;
}

.btn-outline-white {
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.8);
}

.btn-ghost {
  color: var(--c-green-700);
  font-weight: 600;
  padding-inline: .25rem;
  border-radius: var(--r-sm);
}
.btn-ghost:hover { color: var(--c-green-900); }

.btn-lg { font-size: 1.0625rem; padding: .9375rem 2.25rem; }
.btn-sm { font-size: .875rem;  padding: .5rem 1.25rem; }

.btn svg { flex-shrink: 0; width: 18px; height: 18px; }

/* ----------------------------------------------------------------
   Header / Navigation
---------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--nav-h);
  z-index: 200;
  transition: background var(--tr), box-shadow var(--tr), backdrop-filter var(--tr);
}

.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--c-border);
}

.site-header.hero-top {
  background: transparent;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  flex-shrink: 0;
}

.nav-logo img { height: 38px; width: auto; }

.nav-logo-text {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 1.3125rem;
  color: var(--c-green-800);
  letter-spacing: -.01em;
}

.site-header.hero-top .nav-logo-text { color: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: var(--ff-h);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--c-text-2);
  transition: color var(--tr);
  position: relative;
  padding-block: .25rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: #C6F4F3;
  border-radius: var(--r-full);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}

.nav-links a:hover { color: var(--c-green-800); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--c-green-800); }
.nav-links a.active::after { transform: scaleX(1); }

.site-header.hero-top .nav-links a { color: rgba(255,255,255,.85); }
.site-header.hero-top .nav-links a:hover { color: #fff; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: .875rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 4px;
  border-radius: var(--r-sm);
  transition: background var(--tr);
}
.nav-toggle:hover { background: var(--c-green-50); }

.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-text);
  border-radius: var(--r-full);
  transition: var(--tr);
}
.site-header.hero-top .nav-toggle span { background: #fff; }

/* Nav icon buttons (portal shortcuts) */
@keyframes nav-icon-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(64,145,108,.55); }
  55%       { box-shadow: 0 0 0 8px rgba(64,145,108,0); }
}
@keyframes nav-icon-pulse-light {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198,244,243,.6); }
  55%       { box-shadow: 0 0 0 8px rgba(198,244,243,0); }
}

.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  color: var(--c-green-700);
  background: rgba(64,145,108,.1);
  flex-shrink: 0;
  transition: background var(--tr), color var(--tr), transform var(--tr);
  animation: nav-icon-pulse 2.4s ease-in-out infinite;
}
.nav-icon-btn + .nav-icon-btn { animation-delay: 1.2s; }

.nav-icon-btn:hover {
  background: var(--c-green-700);
  color: #fff;
  transform: scale(1.1);
  animation: none;
}
.site-header.hero-top .nav-icon-btn {
  color: var(--c-accent);
  background: rgba(198,244,243,.15);
  animation-name: nav-icon-pulse-light;
}
.site-header.hero-top .nav-icon-btn:hover {
  background: rgba(198,244,243,.3);
  color: #fff;
  animation: none;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(340px, 90vw);
  background: var(--c-white);
  z-index: 300;
  padding: 5rem 2rem 2rem;
  transform: translateX(-100%);
  transition: transform var(--tr-slow);
  box-shadow: var(--sh-xl);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-close {
  position: absolute;
  top: 1rem; left: 1rem;
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  background: var(--c-cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--c-text-3);
  transition: var(--tr);
}
.mobile-drawer-close:hover { background: var(--c-stone); color: var(--c-text); }

.mobile-nav { display: flex; flex-direction: column; gap: .25rem; }

.mobile-nav a {
  font-family: var(--ff-h);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--c-text);
  padding: .875rem 1rem;
  border-radius: var(--r-md);
  transition: background var(--tr), color var(--tr);
}
.mobile-nav a:hover {
  background: var(--c-green-50);
  color: var(--c-green-800);
}
.mobile-nav a.active {
  color: var(--c-green-800);
  font-weight: 700;
  position: relative;
  display: inline-block;
  align-self: flex-start;
}
.mobile-nav a.active::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .5rem;
  height: 3px;
  background: var(--c-green-600);
  border-radius: var(--r-full);
}

.mobile-drawer-cta { display: flex; flex-direction: column; gap: .75rem; }
.mobile-drawer-cta .btn { width: 100%; justify-content: center; }

.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 299;
  opacity: 0; pointer-events: none;
  transition: opacity var(--tr);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ----------------------------------------------------------------
   Hero Section
---------------------------------------------------------------- */
.hero {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    155deg,
    rgba(11,40,28,.88) 0%,
    rgba(27,67,50,.78) 45%,
    rgba(27,67,50,.65) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-block-start: var(--nav-h);
  padding-block-end: 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100svh - var(--nav-h) - 3rem);
  min-height: calc(100vh - var(--nav-h) - 3rem);
}

.hero-content { color: #fff; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-h);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.9);
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: var(--r-full);
  background: var(--c-accent-lt);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--ff-h);
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

.hero-title em {
  font-style: normal;
  color: var(--c-accent-lt);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  line-height: 1.8;
  color: rgba(255,255,255,.82);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.72);
}

.hero-trust-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.hero-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-card-body {
  padding: 1.25rem 1.5rem;
  color: #fff;
}

.hero-card-body strong {
  display: block;
  font-family: var(--ff-h);
  font-size: 1.0625rem;
  margin-bottom: .25rem;
}

.hero-card-body span {
  font-size: .875rem;
  color: rgba(255,255,255,.72);
}

.hero-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-mini-card {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  text-align: center;
  color: #fff;
}

.hero-mini-card-num {
  font-family: var(--ff-h);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--c-accent-lt);
  line-height: 1;
  margin-bottom: .35rem;
}

.hero-mini-card-label {
  font-size: .8125rem;
  color: rgba(255,255,255,.72);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .375rem;
  color: rgba(255,255,255,.5);
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  border-radius: var(--r-full);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ----------------------------------------------------------------
   Impact / Stats Strip
---------------------------------------------------------------- */
.stats-strip {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border-lt);
}

.stats-strip .container {
  padding-block: 2.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  background: var(--c-bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border-lt);
  transition: var(--tr);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-card);
  border-color: var(--c-green-200);
}

.stat-number {
  font-family: var(--ff-h);
  font-size: 2.625rem;
  font-weight: 800;
  color: var(--c-green-700);
  line-height: 1;
  margin-bottom: .375rem;
}

.stat-label {
  font-size: .9375rem;
  color: var(--c-text-2);
  font-weight: 500;
  line-height: 1.4;
}

/* ----------------------------------------------------------------
   About Section
---------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.about-img-wrap:hover img { transform: scale(1.04); }

.about-badge {
  position: absolute;
  bottom: 1.75rem; left: 1.75rem;
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: .875rem;
  max-width: 220px;
}

.about-badge-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--c-green-100);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
}

.about-badge-num {
  font-family: var(--ff-h);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--c-green-800);
  line-height: 1;
  margin-bottom: .2rem;
}

.about-badge-label { font-size: .8125rem; color: var(--c-text-3); }

.about-content { padding-block: 1rem; }

.about-text {
  font-size: 1.0625rem;
  color: var(--c-text-2);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  margin-block: 1.75rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: 1rem 1.25rem;
  background: #C6F4F3;
  border-radius: var(--r-md);
  border-left: 3px solid var(--c-green-600);
}

.about-feature-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: .1rem;
}

.about-feature h4 {
  font-size: 1rem;
  margin-bottom: .2rem;
}

.about-feature p {
  font-size: .9375rem;
  color: var(--c-text-2);
}

/* ----------------------------------------------------------------
   How It Works / Services
---------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.services-grid--2col { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .services-grid,
  .services-grid--2col { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--sh-card);
  border: 1px solid var(--c-border-lt);
  transition: var(--tr);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-card-h);
  border-color: var(--c-green-200);
}

.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--c-green-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.625rem;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.1875rem;
  font-family: var(--ff-h);
}

.service-card p {
  font-size: .9375rem;
  color: var(--c-text-2);
  line-height: 1.7;
  flex: 1;
}

/* ----------------------------------------------------------------
   Help / CTA Cards
---------------------------------------------------------------- */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.help-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--sh-card);
  border: 1px solid var(--c-border-lt);
  transition: var(--tr);
  display: flex;
  flex-direction: column;
}

.help-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-card-h);
}

.help-card--featured {
  background: linear-gradient(135deg, var(--c-green-800), var(--c-green-700));
  border-color: transparent;
  color: #fff;
}

.help-card--featured h3,
.help-card--featured p { color: #fff; }

.help-card--featured p { color: rgba(255,255,255,.82); }

.help-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--c-green-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: .5rem;
  flex-shrink: 0;
}

.help-card--featured .help-card-icon {
  background: rgba(255,255,255,.15);
}

.help-card h3 {
  font-size: 1.25rem;
  margin-bottom: .5rem;
}

.help-card p {
  font-size: .9375rem;
  color: var(--c-text-2);
  line-height: 1.7;
  flex: 1;
}

.help-card .btn { margin-top: 1.75rem; align-self: flex-start; }

/* ----------------------------------------------------------------
   Donation Section
---------------------------------------------------------------- */
.donation-section {
  position: relative;
  overflow: hidden;
}

.donation-bg {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, var(--c-green-950) 0%, var(--c-green-900) 55%, var(--c-green-800) 100%);
}

.donation-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.03) 0%, transparent 50%);
}

.donation-section .container { position: relative; z-index: 1; }

.donation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.donation-content h2 { color: #fff; margin-bottom: 1rem; }
.donation-content > p {
  color: rgba(255,255,255,.78);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.donation-methods {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.donation-method {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .875rem 1.25rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  color: rgba(255,255,255,.88);
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--tr), border-color var(--tr);
}

.donation-method:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
}

.donation-method-icon {
  font-size: 1.375rem;
  flex-shrink: 0;
}

.donation-method-text { flex: 1; }
.donation-method-text small {
  display: block;
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  margin-top: .125rem;
}

.donation-method-arrow {
  font-size: 1rem;
  color: rgba(255,255,255,.4);
  transition: var(--tr);
}

.donation-method:hover .donation-method-arrow {
  color: rgba(255,255,255,.7);
  transform: translateX(3px);
}

.donation-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}

.donation-card h3 {
  font-size: 1.375rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.amount-btn {
  padding: .75rem .5rem;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.18);
  border-radius: var(--r-md);
  color: #fff;
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 1.0625rem;
  cursor: pointer;
  transition: var(--tr);
  text-align: center;
}

.amount-btn:hover,
.amount-btn.active {
  background: #C6F4F3;
  border-color: #C6F4F3;
  color: var(--c-text);
  box-shadow: 0 4px 20px rgba(198,244,243,.40);
}

.donation-iban-box {
  background: rgba(255,255,255,.07);
  border-radius: var(--r-md);
  padding: 1.25rem 1.375rem;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.donation-iban-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.donation-iban-row small {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
}

.donation-iban-row strong {
  font-family: var(--ff-h);
  font-size: .9375rem;
  color: #fff;
  letter-spacing: .04em;
}

/* ----------------------------------------------------------------
   Gallery
---------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-grid--masonry {
  columns: 3;
  column-gap: 1rem;
}

.gallery-grid--masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  aspect-ratio: unset;
}

.gallery-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--c-stone);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
  display: block;
}

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--tr);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-zoom-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.7);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.95);
  color: var(--c-text);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--tr);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 500;
  background: rgba(0,0,0,.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 100%; max-height: 90vh;
  border-radius: var(--r-md);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-size: 2rem;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  transition: color var(--tr);
  line-height: 1;
}
.lightbox-close:hover { color: #fff; }

.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  transition: background var(--tr);
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

/* ----------------------------------------------------------------
   Team
---------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

.team-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-card);
  border: 1px solid var(--c-border-lt);
  transition: var(--tr);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-card-h);
}

.team-card-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--c-stone);
}

.team-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.team-card:hover .team-card-photo img { transform: scale(1.06); }

.team-card-info {
  padding: 1.5rem 1.5rem 1.75rem;
  text-align: center;
}

.team-card-info h3 {
  font-size: 1.25rem;
  margin-bottom: .35rem;
}

.team-card-info p {
  font-size: .9375rem;
  color: var(--c-text-3);
}

/* ----------------------------------------------------------------
   Partners
---------------------------------------------------------------- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.partner-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--sh-card);
  border: 1px solid var(--c-border-lt);
  transition: var(--tr);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-card-h);
}

.partner-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.partner-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--c-green-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}

.partner-card h3 {
  font-size: 1.25rem;
  color: var(--c-green-800);
}

.partner-card p {
  font-size: .9375rem;
  color: var(--c-text-2);
  line-height: 1.75;
  flex: 1;
}

.partner-details {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding-top: .5rem;
  border-top: 1px solid var(--c-border-lt);
}

.partner-detail {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .9375rem;
  color: var(--c-text-2);
}

.partner-detail a {
  color: var(--c-green-700);
  transition: color var(--tr);
}
.partner-detail a:hover { color: var(--c-green-900); }

.partner-detail-icon { font-size: 1rem; flex-shrink: 0; }

/* ----------------------------------------------------------------
   FAQ Accordion
---------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 780px;
  margin-inline: auto;
}

.faq-item {
  background: var(--c-white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  border: 1px solid var(--c-border-lt);
  overflow: hidden;
  transition: box-shadow var(--tr);
}

.faq-item.open { box-shadow: var(--sh-md); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.375rem 1.5rem;
  cursor: pointer;
  font-family: var(--ff-h);
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-text);
  transition: color var(--tr);
  gap: 1rem;
  user-select: none;
}

.faq-question:hover { color: var(--c-green-800); }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: var(--r-full);
  background: var(--c-green-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-green-700);
  font-size: 1.25rem;
  font-weight: 400;
  transition: var(--tr);
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--c-green-700);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr-slow);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: .9375rem;
  color: var(--c-text-2);
  line-height: 1.8;
}

.faq-item.open .faq-answer { max-height: 500px; }

/* ----------------------------------------------------------------
   Contact
---------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.375rem 1.5rem;
  background: var(--c-white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  border: 1px solid var(--c-border-lt);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-card-h);
  border-color: var(--c-green-200);
}

.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--c-green-50);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}

.contact-info-text strong {
  display: block;
  font-family: var(--ff-h);
  font-weight: 700;
  margin-bottom: .25rem;
}

.contact-info-text a {
  color: var(--c-green-700);
  transition: color var(--tr);
  font-size: .9375rem;
}
.contact-info-text a:hover { color: var(--c-green-900); }

.contact-info-text p {
  font-size: .9375rem;
  color: var(--c-text-2);
}

.contact-socials {
  display: flex;
  gap: .75rem;
  margin-top: .25rem;
}

.contact-social-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: var(--c-green-50);
  border-radius: var(--r-full);
  font-size: .875rem;
  font-weight: 600;
  color: var(--c-green-700);
  transition: var(--tr);
}

.contact-social-link:hover {
  background: var(--c-green-700);
  color: #fff;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-border-lt);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-family: var(--ff-h);
  font-size: .875rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: .5rem;
}

.form-control {
  width: 100%;
  padding: .8125rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-family: var(--ff-b);
  font-size: .9375rem;
  color: var(--c-text);
  background: var(--c-bg);
  transition: border-color var(--tr), box-shadow var(--tr);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--c-green-600);
  box-shadow: 0 0 0 3px rgba(82,183,136,.18);
  background: var(--c-white);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  font-family: var(--ff-h);
  font-size: .875rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: .5rem;
}

.form-check-wrap {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
}

.form-check {
  margin-top: .2em;
  accent-color: var(--c-green-700);
  flex-shrink: 0;
}

.form-check-label {
  font-size: .9rem;
  color: var(--c-text-2);
  line-height: 1.5;
}

.form-check-label a {
  color: var(--c-green-700);
  text-decoration: underline;
}

.form-title {
  font-family: var(--ff-h);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 1.75rem;
}

.form-success {
  margin-top: 1rem;
  padding: .875rem 1.125rem;
  border-radius: var(--r-md);
  background: var(--c-green-50);
  color: var(--c-green-800);
  font-weight: 600;
  font-size: .9375rem;
  display: none;
}

.form-success.visible { display: block; }

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.125rem;
  background: var(--c-green-50);
  border-radius: var(--r-md);
  font-size: .875rem;
  font-weight: 600;
  color: var(--c-green-700);
  transition: var(--tr);
  border: 1.5px solid transparent;
}

.contact-social-btn:hover {
  background: var(--c-green-700);
  color: #fff;
}

.contact-socials h4 {
  font-family: var(--ff-h);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: .75rem;
}

.contact-social-links {
  display: flex;
  gap: .625rem;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------------
   Page Banner (inner pages)
---------------------------------------------------------------- */
.page-banner {
  min-height: clamp(320px, 45vw, 500px);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 3rem;
  padding-top: var(--nav-h);
}

.page-banner-media {
  position: absolute; inset: 0;
}

.page-banner-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,40,28,.92) 0%, rgba(27,67,50,.55) 55%, rgba(27,67,50,.30) 100%);
}

.page-banner .container { position: relative; z-index: 2; color: #fff; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .875rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,.6);
  transition: color var(--tr);
}
.breadcrumb a:hover { color: rgba(255,255,255,.9); }
.breadcrumb-sep { font-size: .75rem; }

.page-banner h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #fff;
  margin-bottom: .75rem;
}

.page-banner p {
  font-size: 1.125rem;
  color: rgba(255,255,255,.78);
  max-width: 560px;
}

/* ----------------------------------------------------------------
   Footer
---------------------------------------------------------------- */
.site-footer {
  background: var(--c-green-950);
  color: rgba(255,255,255,.78);
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-desc {
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin: 1.5rem 0 2rem;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: .75rem;
  margin-top: .5rem;
}

.footer-social-link {
  width: 38px; height: 38px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75);
  transition: var(--tr);
}
.footer-social-link svg { display: block; }
.footer-social-link:hover {
  background: #C6F4F3;
  color: var(--c-text);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--ff-h);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: .75rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  font-size: .9375rem;
  color: rgba(255,255,255,.7);
  transition: color var(--tr);
}
.footer-links a:hover { color: #fff; }

.footer-donate-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 1.625rem;
}

.footer-donate-box p {
  font-size: .9375rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.footer-donate-box .btn { width: 100%; justify-content: center; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .875rem;
  color: rgba(255,255,255,.38);
}

.footer-bottom a {
  color: rgba(255,255,255,.45);
  transition: color var(--tr);
}
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------------
   Scroll Animations
---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
.reveal-d5 { transition-delay: .5s; }

/* Hero animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeUp .7s ease both;
}
.hero-content > *:nth-child(1) { animation-delay: .15s; }
.hero-content > *:nth-child(2) { animation-delay: .28s; }
.hero-content > *:nth-child(3) { animation-delay: .42s; }
.hero-content > *:nth-child(4) { animation-delay: .55s; }
.hero-content > *:nth-child(5) { animation-delay: .65s; }

.hero-visual {
  animation: fadeUp .8s .3s ease both;
}

/* ----------------------------------------------------------------
   Misc / Utilities
---------------------------------------------------------------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: var(--c-green-100);
  color: var(--c-green-800);
}

.divider {
  width: 48px; height: 3px;
  background: var(--c-green-600);
  border-radius: var(--r-full);
  margin-block: 1.25rem;
}

.text-center .divider { margin-inline: auto; }

.cta-strip {
  background: #C6F4F3;
  color: var(--c-text);
  text-align: center;
  padding: 1.25rem var(--cont-px);
  font-family: var(--ff-h);
  font-size: 1rem;
  font-weight: 600;
}

.cta-strip a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Video embed */
.video-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--c-green-950);
}

.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-thumbnail {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
}

.video-thumbnail img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.video-thumbnail:hover img { transform: scale(1.04); }

.video-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}

.video-play-inner {
  width: 68px; height: 68px;
  background: rgba(255,255,255,.92);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  box-shadow: var(--sh-lg);
  transition: var(--tr-spring);
  padding-left: 4px;
}

.video-thumbnail:hover .video-play-inner {
  transform: scale(1.12);
  background: #fff;
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* Map wrap */
.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16/7;
  background: var(--c-stone);
}

.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}

/* Two col layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.two-col--reverse .two-col-media { order: -1; }

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col--reverse .two-col-media { order: 0; }
}

/* Prose content */
.prose h2 { font-size: 1.625rem; margin-block: 1.75rem .875rem; }
.prose h3 { font-size: 1.25rem; margin-block: 1.5rem .75rem; }
.prose p  { color: var(--c-text-2); margin-bottom: 1rem; line-height: 1.8; }
.prose ul { margin-bottom: 1rem; padding-left: 1.5rem; list-style: disc; }
.prose ul li { color: var(--c-text-2); margin-bottom: .5rem; }

/* ----------------------------------------------------------------
   Responsive
---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-inner { min-height: calc(100svh - var(--nav-h)); }
  .hero-content { max-width: 640px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .nav-icon-btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions { order: -1; }

  .about-grid,
  .donation-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .about-img-wrap { aspect-ratio: 16/9; max-height: 380px; }
  #despre .about-img-wrap,
  [aria-labelledby="escalada-title"] .about-img-wrap,
  [aria-labelledby="natural-high-title"] .about-img-wrap,
  [aria-labelledby="kinesis-title"] .about-img-wrap { display: none; }

  .team-card-info p { display: none; }
  .team-card-info { padding: .875rem 1rem 1rem; }
  .team-card-info h3 { font-size: 1rem; margin-bottom: 0; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid--masonry { columns: 2; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  :root { --nav-h: 60px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .contact-form-wrap { padding: 1.5rem; }
  .contact-social-links { flex-wrap: nowrap; gap: .4rem; }
  .contact-social-btn { padding: .5rem .75rem; font-size: .75rem; gap: .35rem; }
  .contact-social-btn svg { width: 16px; height: 16px; }
  .donation-card { padding: 1.75rem 1.5rem; }
  .donation-amounts { grid-template-columns: repeat(2, 1fr); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-title { font-size: clamp(2rem, 9vw, 2.75rem); }

  .gallery-grid--masonry { columns: 1; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .page-banner { min-height: 260px; }
}

/* ----------------------------------------------------------------
   Print
---------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .hero-scroll-hint { display: none; }
  body { padding-top: 0; }
}

/* ----------------------------------------------------------------
   Scroll Progress Bar + Back-to-Top Button
---------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #C6F4F3, #A0DCDA);
  z-index: 201;
  transition: width 80ms linear;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px rgba(198,244,243,.6);
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: var(--c-green-800);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity var(--tr), visibility var(--tr), transform var(--tr), background var(--tr);
  z-index: 999;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--c-green-900);
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(0,0,0,.25);
}

.back-to-top svg { display: block; }

@media (max-width: 640px) {
  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
  }

  /* CTA buttons equal width when wrapped */
  .section--dark .btn { width: 100%; justify-content: center; }
}
