/* ===== Variables ===== */
:root {
  --blue: #00347B;
  --blue-dark: #002659;
  --blue-light: #4A7DB5;
  --navy: #00347B;
  --footer-bg: #011941;
  --pink: #F2375F;
  --pink-hover: #D9264C;
  --green: #43A047;
  --green-hover: #388E3C;
  --yellow: #F4C430;
  --orange: #F57C00;
  --white: #ffffff;
  --gray-100: #f8f9fb;
  --gray-200: #e8ecf1;
  --gray-600: #5a6474;
  --gray-800: #2d3748;
  --font-sans: 'Montserrat', system-ui, sans-serif;
  --font-script: 'Caveat', 'Dancing Script', cursive;
  --text-paragraph: 1.05rem;
  --text-paragraph-sm: 0.95rem;
  --radius: 12px;
  --radius-pill: 50px;
  --shadow: 0 4px 20px rgba(0, 52, 123, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 52, 123, 0.12);
  --transition: 0.25s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

section[id],
footer[id] {
  scroll-margin-top: 96px;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

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

.btn-pink {
  background: var(--pink);
  color: var(--white);
}
.btn-pink:hover { background: var(--pink-hover); }

.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover { background: var(--blue-dark); }

.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover { background: var(--green-hover); }

.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn-white:hover { background: var(--gray-100); }

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--white); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 10px 24px 8px;
  min-height: 88px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.logo-img {
  width: 260px;
  height: auto;
}

.logo-tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-600);
  margin-top: -4px;
  padding-left: 4px;
}

.logo--footer {
  display: inline-flex;
}

.logo--footer .logo-img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--blue-dark);
  padding: 7px 0;
  border-radius: 0;
  transition: color var(--transition);
}

.main-nav a:hover { color: var(--blue); }

.main-nav a.active {
  color: var(--blue);
  border-bottom: 3px solid var(--blue);
  padding-bottom: 5px;
}

.btn-donate-header {
  background: var(--pink);
  color: var(--white);
  padding: 12px 20px;
  font-size: 0.68rem;
  flex-shrink: 0;
}
.btn-donate-header:hover { background: var(--pink-hover); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 445px;
  padding-top: 0;
  overflow: hidden;
  background: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url('../hero.png') right top / auto 100% no-repeat;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.96) 25%,
    rgba(255, 255, 255, 0.82) 39%,
    rgba(255, 255, 255, 0.35) 53%,
    rgba(255, 255, 255, 0.05) 68%,
    transparent 78%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 381px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: max(clamp(24px, 5vw, 72px), calc((100vw - 1440px) / 2 + clamp(24px, 5vw, 72px)));
}

.hero-content.container {
  position: relative;
  width: min(49vw, 470px);
  max-width: 470px;
  min-width: 0;
  margin: 0;
  padding: 34px 0 54px;
  box-sizing: border-box;
  overflow: visible;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: 100%;
  min-width: 0;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  line-height: 1.08;
  max-width: 100%;
  min-width: 0;
}

.hero-headline-main {
  font-size: clamp(2.2rem, 3vw, 2.65rem);
  font-weight: 800;
  color: var(--blue-dark);
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: break-word;
  max-width: 100%;
}

.hero-headline-script {
  display: flex;
  align-items: flex-end;
  gap: 0.26em;
  font-size: clamp(2.8rem, 4.4vw, 4rem);
  font-weight: 700;
  color: var(--blue-dark);
  margin-top: 4px;
  max-width: 100%;
  line-height: 1.15;
}

.thrive-phrase {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  gap: 0.24em;
  padding-bottom: 0.08em;
}

.to-script {
  font-family: 'Dancing Script', var(--font-script);
  font-size: 1.08em;
  font-weight: 700;
  color: var(--blue);
  line-height: 0.82;
  transform: rotate(-4deg);
  transform-origin: 70% 80%;
}

.thrive-heart {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  margin-left: 0.2em;
  vertical-align: -0.12em;
  flex-shrink: 0;
  background-color: var(--yellow);
  -webkit-mask: url('../shapes/green_heart_v2.png') no-repeat center / contain;
  mask: url('../shapes/green_heart_v2.png') no-repeat center / contain;
}

.thrive-underline {
  position: absolute;
  left: 0.04em;
  right: 0;
  bottom: -0.04em;
  width: 100%;
  height: 0.18em;
  margin: 0;
  display: block;
  pointer-events: none;
}

.thrive {
  font-family: 'Dancing Script', var(--font-script);
  font-weight: 700;
  font-size: 1em;
  line-height: 0.86;
  letter-spacing: 0;
  white-space: nowrap;
}

.thrive-letter {
  display: inline-block;
}

.thrive-letter:nth-child(2n) {
  transform: translateY(0.03em) rotate(1deg);
}

.thrive-letter:nth-child(3n) {
  transform: translateY(-0.02em) rotate(-2deg);
}

.thrive-letter--pink { color: var(--pink); }
.thrive-letter--orange { color: var(--orange); }
.thrive-letter--green { color: var(--green); }
.thrive-letter--blue { color: var(--blue); }

.hero p {
  font-size: var(--text-paragraph);
  color: var(--navy);
  margin-bottom: 18px;
  max-width: 390px;
  line-height: 1.6;
  opacity: 0.85;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  width: min(58vw, 560px);
}

.hero-buttons .btn {
  padding: 10px 17px;
  font-size: 0.65rem;
}

.hero-buttons .btn-outline {
  background: var(--white);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 68px;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-wave-fill { fill: var(--white); }

.hero-wave-line {
  fill: none;
  stroke: #F89728;
  stroke-width: 4.5;
  stroke-linecap: round;
}

.doodle {
  position: absolute;
  font-size: 2rem;
  opacity: 0.7;
  animation: float 4s ease-in-out infinite;
}

.doodle-heart--pink { color: var(--pink); }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

/* ===== Section Titles ===== */
.section-title {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
}

.section-title--left {
  text-align: left;
  margin-bottom: 16px;
}

/* ===== Impact Section ===== */
.impact-section {
  padding: 36px 0 100px;
  background: var(--white);
  position: relative;
}

.title-doodle {
  display: inline-block;
  width: 34px;
  height: 34px;
  vertical-align: middle;
  margin-left: 10px;
}

.impact-section .section-title {
  margin-bottom: 8px;
}

.impact-subtitle {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--gray-600);
  font-size: var(--text-paragraph);
  line-height: 1.6;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.impact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid transparent;
  position: relative;
  overflow: visible;
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.impact-card--pink {
  background: #FFF5F8 url('../shapes/card1_shape.png') no-repeat center;
  background-size: 100% 100%;
  border-top: none;
  box-shadow: none;
}

.impact-card--pink:hover {
  box-shadow: none;
}

.card1-heart {
  position: absolute;
  pointer-events: none;
}

.card1-heart--lg {
  width: 38px;
  top: -16px;
  left: 14px;
  transform: rotate(-8deg);
}

.card1-heart--sm {
  width: 24px;
  top: 26px;
  left: -10px;
  transform: rotate(4deg);
}
.impact-card--green {
  background: #fff url('../shapes/card2_shape.png') no-repeat center;
  background-size: 100% 100%;
  border-top: none;
  box-shadow: none;
}

.impact-card--green:hover {
  box-shadow: none;
}

.card2-heart {
  position: absolute;
  width: 30px;
  top: 40%;
  left: -14px;
  transform: rotate(-6deg);
  pointer-events: none;
}
.impact-card--blue {
  background: #fff url('../shapes/card3_shape.png') no-repeat center;
  background-size: 100% 100%;
  border-top: none;
  box-shadow: none;
}

.impact-card--blue:hover {
  box-shadow: none;
}

.impact-card--orange {
  background: #fff url('../shapes/card4_shape.png') no-repeat center;
  background-size: 100% 100%;
  border-top: none;
  box-shadow: none;
}

.impact-card--orange:hover {
  box-shadow: none;
}

.card3-star {
  position: absolute;
  pointer-events: none;
}

.card3-star--sm {
  width: 22px;
  top: 30px;
  left: -16px;
  transform: rotate(-6deg);
}

.card3-star--lg {
  width: 32px;
  top: -12px;
  right: -4px;
  transform: rotate(10deg);
}

.card4-heart {
  position: absolute;
  width: 34px;
  bottom: -16px;
  right: -14px;
  transform: rotate(8deg);
  pointer-events: none;
}

.card4-sun {
  position: absolute;
  width: 48px;
  top: -20px;
  right: -10px;
  pointer-events: none;
}

.impact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.impact-icon img { width: 100%; height: 100%; object-fit: contain; }

.impact-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.impact-card p {
  font-size: var(--text-paragraph-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== Values Bar ===== */
.values-bar {
  background: var(--navy);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}

.values-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  color: var(--white);
}

.value-icon-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.value-text h3 {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.value-text p {
  font-size: var(--text-paragraph-sm);
  opacity: 0.85;
  line-height: 1.6;
}

.value-divider {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.values-star {
  position: absolute;
  pointer-events: none;
}

.values-star--left {
  width: 36px;
  top: 14px;
  left: 18px;
  transform: rotate(-12deg);
}

.values-star--right {
  width: 56px;
  bottom: 12px;
  right: 22px;
  transform: rotate(10deg);
}

/* ===== Director Section ===== */
.director-section {
  padding: 56px 0;
  background: var(--gray-100);
  border-top: 4px solid var(--blue);
}

.director-grid {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 40px;
  align-items: center;
}

.director-content .section-title--left {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  white-space: nowrap;
}

.director-name {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.2em;
}

.director-name-heart {
  display: inline-block;
  width: 0.85em;
  height: 0.85em;
  background-color: var(--yellow);
  -webkit-mask: url('../shapes/green_heart_v2.png') no-repeat center / contain;
  mask: url('../shapes/green_heart_v2.png') no-repeat center / contain;
}

.director-bio {
  font-size: var(--text-paragraph);
  color: var(--gray-600);
  margin-bottom: 14px;
  line-height: 1.8;
}

.director-quote {
  font-family: var(--font-script);
  font-size: 1.6rem;
  font-style: normal;
  color: var(--blue);
  font-weight: 700;
  margin: 18px 0 24px;
  line-height: 1.4;
  position: relative;
  padding: 0 8px;
}

.quote-mark {
  font-size: 2rem;
  color: var(--blue-light);
  font-style: normal;
  line-height: 0;
  vertical-align: -0.3em;
}

.director-content .btn {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-pill);
}

.director-image {
  position: relative;
}

.director-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.director-sun {
  position: absolute;
  width: 80px;
  top: -28px;
  right: -28px;
  pointer-events: none;
}

/* ===== Partners ===== */
.partners-section {
  padding: 48px 0;
  background: var(--gray-100);
}

.partners-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px 36px;
  text-align: center;
  box-shadow: var(--shadow);
}

.partners-card .section-title {
  margin-bottom: 32px;
}

.partners-title-heart {
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  vertical-align: -0.12em;
  background-color: var(--pink);
  -webkit-mask: url('../shapes/red_heart_v2.png') no-repeat center / contain;
  mask: url('../shapes/red_heart_v2.png') no-repeat center / contain;
}

.partners-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 16px;
  align-items: center;
  justify-items: center;
  margin: 0 auto 28px;
  max-width: 1080px;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  opacity: 0.92;
  transition: opacity var(--transition);
}

.partner-logo:hover { opacity: 1; }

.partner-logo-img {
  height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.partners-heart {
  position: absolute;
  pointer-events: none;
}

.partners-heart--top {
  width: 44px;
  top: 18px;
  right: 22%;
  transform: rotate(-8deg);
}

.partners-heart--bottom {
  width: 36px;
  top: 58px;
  right: 8%;
  transform: rotate(6deg);
}

.partners-section .btn {
  display: inline-flex;
  width: max-content;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
}

/* ===== Footer CTA ===== */
.footer-cta {
  position: relative;
  background: url('../footer.png') no-repeat center / cover;
  padding: 56px 0;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.footer-cta-content {
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.footer-cta-content h2 {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 3.8vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 0.2em;
}

.footer-cta-heart {
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background-color: var(--yellow);
  -webkit-mask: url('../shapes/green_heart_v2.png') no-repeat center / contain;
  mask: url('../shapes/green_heart_v2.png') no-repeat center / contain;
}

.footer-cta-content p {
  font-size: var(--text-paragraph);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  max-width: 420px;
}

.footer-cta-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.footer-cta-buttons .btn {
  padding: 12px 16px;
  font-size: 0.7rem;
}

/* ===== Site Footer ===== */
.site-footer {
  background: var(--footer-bg);
  color: var(--white);
  padding-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.15fr;
  gap: 0;
  padding-bottom: 40px;
}

.footer-brand {
  padding-right: 32px;
}

.footer-tagline {
  font-size: var(--text-paragraph-sm);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-top: 14px;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
}

.footer-links,
.footer-contact,
.footer-newsletter {
  padding: 0 32px;
}

.footer-links,
.footer-contact,
.footer-newsletter {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-grid h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--white);
}

.footer-links ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 8px 28px;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 18px;
}
.footer-email:hover { color: var(--white); }

.footer-email svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.social-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.social-link--facebook { background: #1877F2; }
.social-link--instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-link--linkedin { background: #0A66C2; }
.social-link--youtube { background: #FF0000; }

.footer-newsletter p {
  font-size: var(--text-paragraph-sm);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 14px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 11px 14px;
  border: none;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  outline: none;
  min-width: 0;
  color: var(--gray-800);
}

.newsletter-form input::placeholder {
  color: #9aa3ad;
}

.newsletter-form .btn {
  padding: 11px 18px;
  font-size: 0.72rem;
  flex-shrink: 0;
  border-radius: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal-sep {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  line-height: 1;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--white); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }

  .partners-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .partners-heart--top { right: 12%; }
  .partners-heart--bottom { right: 4%; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .footer-brand {
    grid-column: 1 / -1;
    padding: 0 0 28px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .footer-links {
    padding-left: 0;
    border-left: none;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
    border-left: none;
    padding: 28px 0 0;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }
}

@media (max-width: 768px) {
  .header-inner {
    justify-content: space-between;
  }

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

  .main-nav {
    margin-left: 0;
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .main-nav a {
    display: block;
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  .btn-donate-header { display: none; }

  .hero {
    min-height: auto;
    padding-top: 0;
  }

  .hero-media {
    left: 0;
    background-position: center 20%;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.97) 45%,
      rgba(255, 255, 255, 0.75) 65%,
      rgba(255, 255, 255, 0.35) 100%
    );
  }

  .hero-inner {
    min-height: auto;
    padding-left: 0;
  }

  .hero-content.container {
    width: 100%;
    max-width: 100%;
    padding: 28px 24px 40px;
    overflow: visible;
  }

  .hero h1 {
    max-width: 340px;
  }

  .hero-headline-main {
    white-space: normal;
    font-size: clamp(1.85rem, 7vw, 2.05rem);
  }

  .hero-headline-script {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .hero-buttons {
    width: 100%;
    max-width: 320px;
  }

  .impact-grid { grid-template-columns: 1fr; }

  .partners-card {
    padding: 32px 20px 28px;
  }

  .partners-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .partners-heart--top,
  .partners-heart--bottom {
    display: none;
  }

  .section-title {
    font-size: 1.25rem;
    line-height: 1.35;
    letter-spacing: 0.03em;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .values-grid { flex-direction: column; align-items: stretch; gap: 24px; }

  .value-divider { width: 100%; height: 1px; }

  .values-star { display: none; }

  .director-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .director-image { order: -1; }
  .director-photo { height: 300px; }

  .footer-cta-content { max-width: 100%; }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-brand {
    grid-column: auto;
    padding: 0;
    margin-bottom: 0;
    border-bottom: none;
  }

  .footer-links,
  .footer-contact,
  .footer-newsletter {
    padding: 0;
    border-left: none;
  }

  .footer-links,
  .footer-contact,
  .footer-newsletter {
    padding-top: 28px;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .footer-links {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .footer-newsletter {
    grid-column: auto;
  }

  .newsletter-form { flex-direction: column; }

  .footer-bottom-inner { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .footer-cta-buttons { flex-direction: column; }
  .footer-cta-buttons .btn { width: 100%; }
  .logo-img {
    width: auto;
    height: 42px;
  }
}
