/*
 * © 2026 Association Seeraj — Tous droits réservés.
 * Développé par Ahmed M., Président de l'association Seeraj.
 * Toute reproduction, distribution ou réutilisation, totale ou partielle,
 * sans autorisation écrite préalable est strictement interdite.
 */

:root {

  --bordeaux: #6f1d2b;
  --bordeaux-dark: #531320;
  --bordeaux-soft: rgba(111, 29, 43, 0.10);

  --gold: #c29b40;
  --gold-bright: #d9b35a;
  --gold-line: rgba(194, 155, 64, 0.45);
  --gold-soft: rgba(194, 155, 64, 0.14);

  --cream: #fbf5ea;
  --card: #fffaf0;
  --sand: #ead9bb;

  --ink: #3a2a23;
  --ink-soft: #6d574c;

  --shadow-sm: 0 4px 14px rgba(83, 19, 32, 0.08);
  --shadow-md: 0 14px 40px rgba(83, 19, 32, 0.14);
  --shadow-lg: 0 24px 60px rgba(83, 19, 32, 0.22);

  --radius-lg: 22px;
  --radius: 18px;
  --radius-sm: 12px;

  --container: 1120px;
  --font-serif: "Iowan Old Style", "Apple Garamond", "Palatino Linotype",
    Palatino, Georgia, "Times New Roman", serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  background-color: var(--cream);
  background-image:
    radial-gradient(1100px 600px at 50% -8%, rgba(217, 179, 90, 0.28), rgba(217, 179, 90, 0) 60%),
    radial-gradient(900px 520px at 100% 0%, rgba(111, 29, 43, 0.10), rgba(111, 29, 43, 0) 55%),
    radial-gradient(800px 520px at 0% 10%, rgba(234, 159, 110, 0.16), rgba(234, 159, 110, 0) 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath d='M0 0 L30 30 M0 30 L30 0' fill='none' stroke='%23c29b40' stroke-opacity='0.07' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  background-position: center top, right top, left top, center;
  background-attachment: fixed, fixed, fixed, scroll;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  color: var(--bordeaux);
  font-weight: 600;
  line-height: 1.18;
  margin: 0;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

a {
  color: var(--bordeaux);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--bordeaux-dark);
}

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

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  z-index: 100;
  background: var(--bordeaux);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 8px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 84px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.divider {
  display: block;
  width: 64px;
  height: 2px;
  margin: 14px auto 18px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: 0;
}

.divider--left {
  margin-left: 0;
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
}

.section-subtitle {
  margin-top: 10px;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.25s ease,
    background-color 0.25s ease, color 0.2s ease, border-color 0.2s ease;
  text-align: center;
}

.btn--primary {
  background: var(--bordeaux);
  color: var(--cream);
  box-shadow: 0 8px 20px rgba(83, 19, 32, 0.25);
}

.btn--primary:hover {
  background: var(--bordeaux-dark);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(1px);
}

.btn--outline {
  background: transparent;
  color: var(--bordeaux);
  border-color: var(--bordeaux);
}

.btn--outline:hover {
  background: var(--bordeaux-soft);
  color: var(--bordeaux);
  transform: translateY(-2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 245, 234, 0.88);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--gold-line);
  isolation: isolate;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(83, 19, 32, 0.18));
}

.site-header__end {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  flex-shrink: 0;
}

.language-switcher {
  position: relative;
  display: inline-grid;
  grid-template-columns: 50px 50px;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
  padding: 4px;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid rgba(194, 155, 64, 0.38);
  background: rgba(255, 250, 240, 0.72);
  box-shadow:
    inset 0 1px 2px rgba(83, 19, 32, 0.06),
    0 2px 10px rgba(83, 19, 32, 0.06);
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
}

.language-switcher__indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 50px;
  height: calc(100% - 8px);
  border-radius: 999px;
  background: linear-gradient(
    155deg,
    var(--bordeaux) 0%,
    var(--bordeaux-dark) 100%
  );
  box-shadow:
    0 4px 14px rgba(83, 19, 32, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform 0.38s cubic-bezier(0.34, 1.25, 0.64, 1);
  pointer-events: none;
  z-index: 0;
}

.language-switcher[data-active="en"] .language-switcher__indicator {
  transform: translateX(50px);
}

.language-switcher__option {
  all: unset;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 32px;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(111, 29, 43, 0.48);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.28s ease;
}

.language-switcher__option:hover:not(.is-active) {
  color: var(--bordeaux);
}

.language-switcher__option.is-active {
  color: var(--cream);
}

.language-switcher__option.is-active:hover {
  color: var(--cream);
}

.language-switcher__option:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
  border-radius: 999px;
}

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

.nav a {
  color: var(--bordeaux);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 240, 0.85);
  color: var(--bordeaux);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle__bars {
  top: 50%;
  margin-top: -1px;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
}

.nav-toggle__bars::before {
  top: -7px;
}

.nav-toggle__bars::after {
  top: 7px;
}

.site-header.nav-open .nav-toggle__bars {
  background: transparent;
}

.site-header.nav-open .nav-toggle__bars::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.site-header.nav-open .nav-toggle__bars::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}

.hero {
  position: relative;
  text-align: center;
  padding: 118px 0 200px;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--bordeaux-dark);
  background-image: url("hero-bg.jpg");
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      180deg,
      rgba(58, 20, 28, 0.82) 0%,
      rgba(83, 19, 32, 0.66) 45%,
      rgba(58, 20, 28, 0.88) 100%
    ),
    radial-gradient(
      120% 80% at 50% 28%,
      rgba(111, 29, 43, 0.20),
      rgba(58, 20, 28, 0.55)
    );
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(232, 211, 165, 0.6);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  margin-bottom: 26px;
}

.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
}

.hero__title {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(40, 12, 18, 0.45);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: rgba(255, 250, 240, 0.96);
  max-width: 640px;
  margin: 0 auto 20px;
  text-shadow: 0 1px 12px rgba(40, 12, 18, 0.4);
}

.hero__text {
  font-size: 1.02rem;
  color: rgba(251, 245, 234, 0.88);
  max-width: 620px;
  margin: 0 auto 34px;
  text-shadow: 0 1px 10px rgba(40, 12, 18, 0.35);
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn--primary {
  background: var(--cream);
  color: var(--bordeaux);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.hero .btn--primary:hover {
  background: #fff;
  color: var(--bordeaux-dark);
}

.hero .btn--outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  border-color: rgba(255, 250, 240, 0.7);
}

.hero .btn--outline:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: #fff;
}

.hero__curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  display: block;
  width: 100%;
  height: 140px;
  pointer-events: none;
}

.donation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
  align-items: stretch;
}

.donation-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
}

.donation-card--featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.donation-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bordeaux);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(83, 19, 32, 0.25);
  white-space: nowrap;
}

.donation-card__title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.donation-card__text {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 0 auto 22px;
  max-width: 30ch;
}

.donation-card__btn {
  width: 100%;
  margin-top: auto;
}

.select-wrap {
  position: relative;
  margin-bottom: 18px;
}

.select-wrap__chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--bordeaux);
  pointer-events: none;
}

.donation-select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bordeaux);
  background: #fffdf8;
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  padding: 14px 44px 14px 16px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.donation-select:hover {
  border-color: var(--gold);
}

.donation-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(194, 155, 64, 0.25);
}

.info-card {
  background: var(--card);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(32px, 5vw, 56px);
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(var(--bordeaux), var(--gold));
}

.info-card .kicker {
  display: block;
}

.info-card__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.info-card p {
  font-size: 1.05rem;
  color: var(--ink);
}

.info-card p:last-child {
  margin-bottom: 0;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 32px auto 0;
}

.highlight {
  background: var(--card);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.highlight__icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bordeaux);
  color: var(--cream);
  box-shadow: 0 6px 14px rgba(83, 19, 32, 0.22);
}

.highlight__icon svg {
  width: 22px;
  height: 22px;
}

.highlight h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.highlight p {
  font-size: 0.92rem;
  margin: 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item.is-open {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--bordeaux);
  line-height: 1.4;
}

.faq-question:hover {
  color: var(--bordeaux-dark);
}

.faq-icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bordeaux-soft);
  color: var(--bordeaux);
  transition: transform 0.3s ease, background-color 0.2s ease, color 0.2s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--bordeaux);
  color: var(--cream);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-answer__inner {
  padding: 0 26px 24px;
}

.faq-answer p {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  font-size: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: var(--bordeaux);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--gold);
}

.faq-answer a:hover {
  color: var(--bordeaux-dark);
  text-decoration-color: var(--bordeaux-dark);
}

.callout {
  position: relative;
  overflow: hidden;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-dark) 100%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
  box-shadow: var(--shadow-lg);
}

.callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M0 0 L40 40 M0 40 L40 0' fill='none' stroke='%23d9b35a' stroke-opacity='0.18' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  pointer-events: none;
}

.callout::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 320px at 50% 0%, rgba(217, 179, 90, 0.22), rgba(217, 179, 90, 0) 60%);
  pointer-events: none;
}

.callout > * {
  position: relative;
  z-index: 1;
}

.callout .kicker {
  color: var(--gold-bright);
}

.callout .divider {
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

.callout__title {
  color: #fff;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  margin-bottom: 16px;
}

.callout__text {
  color: rgba(251, 245, 234, 0.9);
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto 28px;
}

.email-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(217, 179, 90, 0.55);
  color: #fff;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.18s ease;
}

.email-pill:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-2px);
}

.email-pill svg {
  width: 20px;
  height: 20px;
  color: var(--gold-bright);
  flex: none;
}

.about-card {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(36px, 5vw, 56px);
}

.about-card__emblem {
  width: 108px;
  height: 108px;
  object-fit: contain;
  margin: 0 auto 18px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.about-card .kicker {
  display: block;
}

.about-card__title {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  margin-bottom: 12px;
}

.about-card__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.32rem);
  color: var(--bordeaux);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.about-card__text {
  font-size: 1.05rem;
  color: var(--ink);
  max-width: 60ch;
  margin: 0 auto 28px;
}

.about-card__note {
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.newsite {
  text-align: center;
}

.newsite__inner {
  max-width: 680px;
  margin: 0 auto;
}

.newsite__icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--card);
  color: var(--bordeaux);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gold-line);
}

.newsite__icon svg {
  width: 30px;
  height: 30px;
}

.newsite__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.newsite__text {
  font-size: 1.05rem;
  color: var(--ink);
}

.newsite__note {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--bordeaux);
  font-size: 1.12rem;
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(36px, 5vw, 56px);
}

.contact-card__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.contact-card__text {
  font-size: 1.05rem;
  color: var(--ink);
  max-width: 520px;
  margin: 0 auto 22px;
}

.contact-card__email {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--bordeaux);
  margin-bottom: 26px;
  font-weight: 700;
}

.contact-card__note {
  margin: 16px auto 0;
  max-width: 500px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.contact-card__note strong {
  color: var(--bordeaux);
}

.contact-socials {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(194, 155, 64, 0.25);
}

.contact-socials__label {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.contact-socials__list {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 20px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: var(--card);
  color: var(--bordeaux);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.2s ease,
    border-color 0.2s ease, background-color 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: var(--cream);
  color: var(--bordeaux);
  box-shadow: var(--shadow-md);
}

.social-btn__icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: none;
}

.social-btn__icon svg {
  width: 22px;
  height: 22px;
}

.social-btn__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.social-btn__net {
  font-weight: 700;
  font-size: 0.95rem;
}

.social-btn__handle {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.site-footer {
  border-top: 1px solid var(--gold-line);
  background: rgba(255, 250, 240, 0.6);
  padding: 40px 0;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.site-footer__logo {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(83, 19, 32, 0.16));
}

.site-footer__meta {
  text-align: right;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.site-footer__meta a {
  color: var(--bordeaux);
  font-weight: 700;
}

.site-footer__meta a:hover {
  color: var(--bordeaux-dark);
}

@media (max-width: 820px) {
  .highlights {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .donation-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 28px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
    background-attachment: scroll;
  }

  .section {
    padding: 60px 0;
  }

  .site-header__end {
    gap: 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 0;
    background: rgba(251, 245, 234, 0.98);
    backdrop-filter: saturate(150%) blur(10px);
    border-bottom: 1px solid var(--gold-line);
    box-shadow: var(--shadow-md);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .site-header.nav-open .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav a {
    padding: 15px 24px;
    border-top: 1px solid rgba(194, 155, 64, 0.18);
  }

  .nav a:first-child {
    border-top: none;
  }

  .nav a::after {
    display: none;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: var(--bordeaux-soft);
  }

  .language-switcher {
    justify-self: center;
    margin: 16px auto 8px;
  }

  .hero {
    padding: 80px 0 116px;
    background-position: center 42%;
  }

  .hero__curve {
    height: 80px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .brand__logo {
    height: 42px;
  }

  .faq-question {
    padding: 18px;
    font-size: 1.04rem;
  }

  .faq-answer__inner {
    padding: 0 18px 20px;
  }

  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer__meta {
    text-align: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }

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