/* Arise FDN–inspired visual system for Sıraç campaign */
:root {
  --ink: #1b1b1b;
  --ink-soft: #1b1b1b;
  --cream: #f6f3f0;
  --cream-2: #fbeaea;
  --cream-3: #fbeaea;
  --gold: #a20301;
  --gold-deep: #a20301;
  --gold-soft: #fbeaea;
  --green: #fbeaea;
  --green-deep: #1b1b1b;
  --accent: #a20301;
  --panel: #fbeaea;
  --line: #eadede;
  --white: #ffffff;
  --radius-pill: 73px;
  --radius-card: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 20px 50px rgba(27, 27, 27, 0.08);
  --font: "Parkinsans", "Segoe UI", sans-serif;
  --font-display: "Poppins", "Parkinsans", sans-serif;
  --header-h: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: #1b1b1b;
  background: var(--cream);
  font-size: 19px;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

p,
.section-head p,
.hero-lead,
.method-body p,
.dmd-item .content,
.dmd-note,
.about-panel p,
.urgent .section-head p {
  font-size: 19px;
  color: #1b1b1b;
  line-height: 1.65;
}

h1,
h2,
.section-head h2,
.volunteer h2,
.diary-hero h1 {
  font-family: var(--font-display);
}

.section-head h2,
.volunteer h2 {
  font-size: 33px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #1b1b1b;
  font-family: var(--font-display);
  font-weight: 700;
}

.about-panel h3,
.method-body h3,
.dmd-item summary,
.impact-card h3 {
  font-family: var(--font-display);
  color: #1b1b1b;
}

body.rtl {
  direction: rtl;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
  max-width: 100%;
  box-sizing: border-box;
}

.container-wide {
  width: min(1400px, calc(100% - 40px));
  margin-inline: auto;
  max-width: 100%;
  box-sizing: border-box;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: grid;
  place-items: center;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--gold-soft);
  border-top-color: var(--gold);
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.scrolled {
  background: rgba(246, 243, 240, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.brand-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid #eadede;
  box-shadow: 0 4px 12px rgba(27, 27, 27, 0.12);
}

.brand-text {
  color: #1b1b1b;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--accent);
}

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

.lang-switch {
  display: flex;
  gap: 4px;
  background: rgba(27, 27, 27, 0.06);
  padding: 4px;
  border-radius: var(--radius-pill);
}

.lang-switch button {
  border: 0;
  background: transparent;
  padding: 6px 8px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: 0.2s;
  line-height: 0;
  display: grid;
  place-items: center;
}

.lang-switch button img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  box-shadow: 0 0 0 1px rgba(27, 27, 27, 0.12);
}

.lang-switch button:hover {
  background: rgba(162, 3, 1, 0.08);
}

.lang-switch button.active {
  background: #fff;
  box-shadow: 0 0 0 2px var(--accent);
}

.lang-switch button.active img {
  box-shadow: none;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s;
  white-space: normal;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  line-height: 1.3;
}

.theme-btn:hover {
  background: #6e0201;
  transform: translateY(-2px);
  color: #fff;
}

.theme-btn.dark {
  background: #1b1b1b;
  color: #fff;
}

.theme-btn.dark:hover {
  background: var(--accent);
}

.theme-btn.ghost {
  background: transparent;
  border: 1.5px solid rgba(27, 27, 27, 0.2);
  color: #1b1b1b;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: 0.25s;
}

/* Hero — desktop 2-col, mobile stacked */
.hero {
  position: relative;
  min-height: auto;
  padding: calc(var(--header-h) + 36px) 0 64px;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(162, 3, 1, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(251, 234, 234, 0.9), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, #f0ebe6 100%);
  overflow: hidden;
  display: block;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.hero-left,
.hero-right {
  min-width: 0;
  max-width: 100%;
}

.hero-right {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: start;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero-cta {
    flex-direction: row;
  }

  .hero-cta .theme-btn {
    width: auto;
    flex: 1 1 auto;
  }

  .hero-extra-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-extra-links .theme-btn {
    width: auto;
    flex: 1 1 calc(33.333% - 8px);
    min-width: 140px;
  }

  .iban-quick {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .kumbara-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
  }

  .kumbara-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .verify-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
  }

  .verify-actions .theme-btn {
    width: 100%;
  }
}

.hero-permit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a20301;
  line-height: 1.2;
}

.hero-permit .valilik-logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.hero-eyebrow {
  display: none;
}

.hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #1b1b1b;
  max-width: none;
}

.hero-lead {
  margin: 0 0 18px;
  font-size: 19px;
  color: #1b1b1b;
  max-width: none;
  line-height: 1.65;
  font-weight: 400;
}

.hero-visual {
  position: relative;
  width: 100%;
}

.hero-card {
  background: #fff;
  border: 3px solid #eadede;
  border-radius: var(--radius-card);
  padding: 8px;
  box-shadow: var(--shadow-soft);
  animation: floaty 5s ease-in-out infinite;
  width: 100%;
}

.hero-card-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-height: none;
  background: #fbeaea;
}

.hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-card-stats {
  display: none;
}

.progress-float {
  position: relative;
  left: auto;
  bottom: auto;
  width: 100%;
  margin-top: 20px;
  background: var(--white);
  border-radius: 20px;
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  animation: none;
}

.progress-float .label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1b1b1b;
  font-family: var(--font-display);
}

.progress-float .label strong {
  font-size: 1.45rem;
  color: var(--accent);
}

.progress-track {
  height: 10px;
  background: #eadede;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 16px;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: var(--accent);
  border-radius: 28px;
  transition: width 1.6s var(--ease);
}

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

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 0;
  width: 100%;
  max-width: 100%;
}

.hero-extra-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  width: 100%;
  max-width: 100%;
}

.hero-extra-links .theme-btn {
  flex: 1 1 100%;
  width: 100%;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.story-main .section-head {
  max-width: none;
}

.kumbara-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.kumbara-copy h2 {
  margin: 8px 0 12px;
  font-family: var(--font-display);
  font-size: 33px;
  line-height: 1.35;
  font-weight: 700;
  color: #1b1b1b;
}

.kumbara-copy p {
  margin: 0;
  font-size: 19px;
  color: #1b1b1b;
  line-height: 1.65;
}

.kumbara-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kumbara-contact {
  margin: 0;
  font-size: 17px;
  color: #1b1b1b;
}

.verify-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.verify-actions .theme-btn {
  width: 100%;
  background: #a20301;
  color: #fff;
}

.verify-actions .theme-btn:hover {
  background: #6e0201;
  color: #fff;
}

.video-label {
  margin: 0 0 12px;
  font-weight: 600;
  font-size: 17px;
  color: #1b1b1b;
}

.story-body {
  margin-top: 12px;
}

.story-body p {
  margin: 0 0 22px;
  font-size: 19px;
  color: #1b1b1b;
  line-height: 1.75;
}

.story-body p:last-child {
  margin-bottom: 0;
}

.progress-stack li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fbeaea;
  border-radius: 12px;
  border: 1px solid #eadede;
  min-width: 0;
}

.progress-stack li span {
  font-size: 17px;
  font-weight: 600;
  color: #1b1b1b;
  flex-shrink: 0;
}

.progress-stack li b {
  font-size: 17px;
  font-weight: 800;
  color: #a20301;
  font-family: var(--font-display);
  text-align: right;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-grid,
.hero-left,
.hero-right,
.hero-content,
.hero-card,
.progress-float,
.account-card,
.iban-quick,
.hero-sms {
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.nav-bar {
  max-width: 100%;
  min-width: 0;
}

.brand-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 42vw;
}

.hero-donate {
  margin-top: 22px;
}

.account-card {
  display: block;
  margin-top: 20px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #eadede;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.account-label {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #a20301;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.account-name-value {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #1b1b1b;
  line-height: 1.25;
  word-break: break-word;
}

.iban-quick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.iban-quick-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: #1b1b1b;
  text-align: left;
  transition: 0.2s;
}

.iban-quick-btn:hover,
.iban-quick-btn.done {
  border-color: var(--accent);
  background: #fbeaea;
}

.iban-quick-btn .cur-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  background: var(--accent);
}

.iban-quick-btn .cur-icon.tl { background: #a20301; }
.iban-quick-btn .cur-icon.usd { background: #1b5e20; }
.iban-quick-btn .cur-icon.eur { background: #003399; }
.iban-quick-btn .cur-icon.swift { background: #01224b; }

.iban-quick-copy {
  min-width: 0;
  flex: 1;
}

.iban-quick-btn .iban-num {
  display: block;
  font-size: 17px;
  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.01em;
  color: #1b1b1b;
  margin-top: 4px;
  word-break: break-word;
  line-height: 1.35;
}

.iban-quick-btn small {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: #5b5b5b;
  margin-top: 2px;
}

.hero-sms {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  background: #a20301;
  color: #fff;
  border-radius: 18px;
  padding: 18px 18px;
  border: 0;
  transition: transform 0.25s;
  text-decoration: none;
}

.hero-sms:hover {
  transform: scale(1.01);
  color: #fff;
}

.sms-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  place-self: center;
  margin: 0 auto;
  flex-shrink: 0;
}

.sms-icon-wrap i {
  font-size: 1.55rem;
  color: #fff;
  line-height: 1;
}

.sms-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-sms .sms-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: var(--font-display);
  margin-bottom: 6px;
}

.hero-sms strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
}

.hero-sms p {
  margin: 6px 0 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Sections common */
.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
  overflow-x: clip;
  max-width: 100%;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1b1b1b;
}

.section-head p {
  margin: 0;
  color: #1b1b1b;
  font-size: 19px;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* About / trust */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-panel {
  background: #fbeaea;
  color: #1b1b1b;
  border-radius: 28px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid #eadede;
}

.about-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(162, 3, 1, 0.08);
  top: -60px;
  right: -40px;
}

.about-panel h3 {
  margin: 0 0 16px;
  font-size: 33px;
  font-family: var(--font-display);
  position: relative;
  color: #1b1b1b;
}

.about-panel p {
  margin: 0;
  opacity: 1;
  position: relative;
  font-size: 19px;
  color: #1b1b1b;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.metric {
  background: #fff;
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  position: relative;
  border: 1px solid #eadede;
}

.metric strong {
  display: block;
  font-size: 1.4rem;
  color: var(--accent);
}

.metric span {
  font-size: 17px;
  opacity: 1;
  color: #1b1b1b;
}

/* Method cards — program style */
.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.method-top {
  height: 140px;
  background: #fbeaea;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 2.4rem;
}

.method-top.gold {
  background: var(--accent);
  color: #fff;
}

.method-top.cream {
  background: #fbeaea;
  color: var(--accent);
}

.method-body {
  padding: 24px;
}

.method-body h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.method-body p {
  margin: 0 0 18px;
  color: #1b1b1b;
  font-size: 19px;
}

/* Urgent appeal */
.urgent {
  background: #1b1b1b;
  color: #fff;
  border-bottom: 0;
  position: relative;
  overflow: hidden;
}

.urgent::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(162, 3, 1, 0.35), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(251, 234, 234, 0.12), transparent 45%);
  pointer-events: none;
}

.urgent-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  max-width: 100%;
  min-width: 0;
}

.urgent .eyebrow {
  color: #fbeaea;
}

.urgent h2 {
  color: #fff;
  font-size: 33px;
  font-family: var(--font-display);
  line-height: 1.35;
  font-weight: 700;
}

.urgent .section-head p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 19px;
}

.urgent-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(10px);
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.urgent-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 17px;
}

.urgent-stats > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  min-width: 0;
}

.urgent-stats strong {
  display: block;
  font-size: 17px;
  color: #fbeaea;
  margin-top: 0;
  text-align: right;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.amount-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0;
  width: 100%;
  max-width: 100%;
}

.amount-pills a,
.amount-pills button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  padding: 12px 14px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: 0.2s;
  text-align: center;
  justify-content: center;
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
  white-space: normal;
}

.amount-pills a:hover,
.amount-pills button:hover,
.amount-pills a.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.urgent-panel .theme-btn {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.amount-pills .sms-card {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 12px 14px !important;
  background: transparent !important;
  color: #fff !important;
  border-radius: var(--radius-pill);
  grid-template-columns: none !important;
  text-decoration: none;
}


/* IBAN block */
.iban-section {
  background: var(--cream-2);
}

.iban-box {
  background: var(--white);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.iban-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.bank-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 17px;
  font-weight: 600;
}

.account-name {
  font-size: 17px;
  color: var(--ink-soft);
}

.account-name strong {
  display: block;
  color: var(--ink);
  font-size: 1.15rem;
  margin-top: 4px;
}

.iban-rows {
  display: grid;
  gap: 12px;
}

.iban-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--cream);
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
}

.iban-row code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 17px;
  letter-spacing: 0.02em;
  word-break: break-all;
}

.copy-btn {
  border: 0;
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-weight: 600;
  font-size: 17px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  white-space: nowrap;
  transition: 0.2s;
}

.copy-btn:hover {
  background: #6e0201;
  color: #fff;
}

.copy-btn.done {
  background: #1b1b1b;
  color: #fff;
}

.sms-card:not(.hero-sms) {
  margin-top: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  background: #1b1b1b;
  color: #fff;
  border-radius: 20px;
  padding: 24px;
  transition: transform 0.25s;
}

.sms-card:not(.hero-sms):hover {
  transform: scale(1.01);
}

.sms-card:not(.hero-sms) .sms-num {
  font-size: 2rem;
  font-weight: 800;
  color: #fbeaea;
  line-height: 1;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* DMD accordion */
.dmd-grid {
  display: grid;
  gap: 14px;
}

.dmd-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.dmd-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.dmd-item summary::-webkit-details-marker {
  display: none;
}

.dmd-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-2);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: 0.25s;
}

.dmd-item[open] summary::after {
  content: "–";
  background: #fbeaea;
  color: var(--accent);
}

.dmd-item .content {
  padding: 0 26px 24px;
  color: var(--ink-soft);
}

.dmd-note {
  margin-top: 20px;
  font-size: 17px;
  color: var(--ink-soft);
  font-style: italic;
}

/* Verify */
.verify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.step {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.video-frame {
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 10;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.permit-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Volunteer */
.volunteer {
  background: #fbeaea;
  border-bottom: 0;
  text-align: center;
}

.volunteer h2 {
  margin: 0 0 10px;
  font-size: 33px;
  font-family: var(--font-display);
  color: #1b1b1b;
}

.volunteer p {
  margin: 0 0 28px;
  color: #1b1b1b;
  font-size: 19px;
}

/* Impact rings */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.impact-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border-radius: 22px;
  border: 1px solid var(--line);
}

.ring {
  --p: 0;
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) calc(var(--p) * 1%), #eadede 0);
  display: grid;
  place-items: center;
  animation: ringIn 1.4s var(--ease) forwards;
}

.ring::before {
  content: attr(data-label);
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.3rem;
}

@keyframes ringIn {
  from {
    filter: saturate(0.5);
  }
  to {
    filter: saturate(1);
  }
}

/* Footer */
.site-footer {
  background: var(--green-deep);
  color: rgba(246, 243, 240, 0.75);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.footer-logo-sirac {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-valilik {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 17px;
  font-weight: 600;
  transition: 0.2s;
}

.footer-social a:hover {
  background: #6e0201;
  color: #fff;
}

.footer-col h4 {
  color: var(--cream);
  margin: 0 0 16px;
  font-size: 17px;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
  opacity: 0.8;
}

.footer-col a:hover {
  opacity: 1;
  color: #fbeaea;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 17px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 17px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s var(--ease);
  z-index: 200;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Compact nav for medium screens: full links visible but smaller to prevent wrapping */
@media (min-width: 881px) and (max-width: 1300px) {
  .nav-bar {
    gap: 8px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .nav-actions {
    gap: 8px;
  }

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

  .lang-switch {
    gap: 2px;
    padding: 3px;
  }

  .lang-switch button {
    padding: 4px 5px;
  }

  .lang-switch button img {
    width: 20px;
    height: 14px;
  }

  .brand-text {
    font-size: 15px;
  }
}

/* Mobile / small-tablet: hamburger */
@media (max-width: 880px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-h) 16px auto;
    background: var(--white);
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 0;
    box-shadow: var(--shadow-soft);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

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

/* Mobile */
@media (max-width: 991px) {
  .hero-grid,
  .about-grid,
  .story-layout,
  .urgent-grid,
  .verify-grid,
  .footer-grid,
  .kumbara-layout {
    grid-template-columns: 1fr;
  }

  .hero-right {
    position: static;
  }

  .methods-grid,
  .impact-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: flex-start;
    padding-top: calc(var(--header-h) + 24px);
  }

  .hero h1 {
    max-width: none;
    font-size: 23px;
    line-height: 1.35;
    font-weight: 700;
  }

  .urgent-panel {
    padding: 18px;
  }

  .urgent .section-head,
  .urgent-panel {
    max-width: 100%;
    min-width: 0;
  }

  .amount-pills {
    grid-template-columns: 1fr 1fr;
  }

  .progress-float {
    position: relative;
    left: 0;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }

  .iban-quick {
    grid-template-columns: 1fr;
  }

  .iban-quick-btn .iban-num {
    font-size: 17px;
  }

  .iban-row {
    grid-template-columns: 1fr;
  }

  .hero-sms {
    grid-template-columns: 56px 1fr;
    align-items: center;
    text-align: left;
  }

  .sms-icon-wrap {
    place-self: center;
  }

  .hero-cta {
    width: 100%;
    flex-direction: column;
  }

  .hero-cta .theme-btn {
    width: 100%;
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .hero-extra-links {
    flex-direction: column;
  }

  .hero-extra-links .theme-btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .hero-permit {
    font-size: 17px;
  }

  .brand-text {
    font-size: 17px;
  }

  .step {
    grid-template-columns: 36px 1fr;
  }

  .step .copy-btn {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .container,
  .container-wide {
    width: calc(100% - 28px);
  }

  .section {
    padding: 64px 0;
  }

  .section-head h2,
  .volunteer h2,
  .about-panel h3 {
    font-size: 26px;
  }

  p,
  .section-head p,
  .hero-lead,
  .method-body p,
  .dmd-item .content,
  .dmd-note {
    font-size: 17px;
  }

  .hero {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: 23px;
    line-height: 1.35;
    font-weight: 700;
  }

  .hero-lead {
    font-size: 19px;
    line-height: 1.65;
  }

  .hero-card {
    padding: 6px;
  }

  .hero-card-image {
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .progress-float {
    padding: 18px 16px;
  }

  .progress-stack li {
    padding: 12px;
  }

  .progress-stack li b {
    font-size: 17px;
  }

  .iban-quick-btn {
    padding: 14px 12px;
  }

  .iban-quick-btn .iban-num {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .hero-sms {
    grid-template-columns: 52px 1fr;
    gap: 12px;
    padding: 16px 14px;
  }

  .sms-icon-wrap {
    width: 48px;
    height: 48px;
  }

  .video-frame {
    aspect-ratio: 16 / 10;
  }

  .video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .nav-bar {
    min-height: 72px;
    gap: 8px;
  }

  :root {
    --header-h: 72px;
  }

  .brand-photo {
    width: 40px;
    height: 40px;
  }

  .brand-text {
    max-width: none;
    font-size: 15px;
  }

  .lang-switch {
    gap: 2px;
    padding: 3px;
  }

  .lang-switch button {
    padding: 4px 5px;
  }

  .lang-switch button img {
    width: 20px;
    height: 14px;
  }

  .nav-actions {
    gap: 8px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .verify-grid,
  .about-grid {
    gap: 28px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .amount-pills {
    grid-template-columns: 1fr;
  }

  .amount-pills a {
    font-size: 17px;
    width: 100%;
  }
}

/* Extra-small phones */
@media (max-width: 380px) {
  .lang-switch button {
    padding: 5px 6px;
  }

  .hero-permit {
    gap: 8px;
  }

  .hero-permit .valilik-logo {
    width: 28px;
    height: 28px;
  }

  .hero-sms {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sms-icon-wrap {
    margin-inline: auto;
  }
}
