/* Together To Get Her — Coming Soon */

:root {
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-dark: #9a7b1a;
  --gold-glow: rgba(201, 162, 39, 0.35);
  --black: #0a0a0a;
  --black-soft: #141414;
  --white: #ffffff;
  --gray-100: #f7f7f5;
  --gray-200: #eceae4;
  --gray-400: #8a8680;
  --gray-600: #4a4844;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 16px 48px var(--gold-glow);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Header ── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.is-scrolled {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.site-header__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--white);
  transition: color 0.4s ease;
}

.site-header.is-scrolled .site-header__name {
  color: var(--black);
}

.site-header__name span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color 0.4s ease;
}

.site-header.is-scrolled .site-header__name span {
  color: var(--gold-dark);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header__logo img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  transition: box-shadow 0.4s ease;
}

.site-header.is-scrolled .site-header__logo img {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 56px var(--gold-glow);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 1.5rem 4rem;
  background: var(--black);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(201, 162, 39, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 55%),
    linear-gradient(165deg, var(--black) 0%, var(--black-soft) 50%, #1a1810 100%);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__content {
  animation: fadeUp 0.9s ease both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 999px;
}

.hero__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__logo-wrap {
  margin-bottom: 1.75rem;
}

.hero__logo-wrap img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  filter: drop-shadow(0 8px 32px rgba(201, 162, 39, 0.3));
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
  max-width: 480px;
}

.hero__reg {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 2rem;
  padding: 0.35rem 0.85rem;
  border-left: 3px solid var(--gold);
  background: rgba(201, 162, 39, 0.08);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__visual {
  display: flex;
  justify-content: center;
  animation: fadeUp 0.9s 0.2s ease both;
}

/* ── Donate embed ── */

.donate-card {
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 162, 39, 0.2);
}

.donate-card__header {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  text-align: center;
}

.donate-card__header h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.donate-card__header p {
  font-size: 0.85rem;
  color: rgba(10, 10, 10, 0.75);
}

.donate-card__body {
  position: relative;
  background: var(--gray-100);
}

.donate-embed {
  position: relative;
  width: 100%;
  min-height: 680px;
  background: var(--white);
}

.donate-embed iframe {
  display: block;
  width: 100%;
  height: 720px;
  min-height: 680px;
  border: none;
  background: var(--white);
}

.donate-card__footer {
  padding: 0.85rem 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-600);
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.donate-card__footer svg {
  display: inline-block;
  vertical-align: -2px;
  margin-right: 4px;
}

/* ── Mission ── */

.mission {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.mission__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.mission__text {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.mission__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.pillar {
  padding: 2rem 1.5rem;
  background: var(--gray-100);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.pillar__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 14px;
  color: var(--black);
}

.pillar__icon svg {
  width: 26px;
  height: 26px;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.pillar p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ── Donate section (standalone on mobile scroll) ── */

.donate-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.donate-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.donate-section__info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 1rem;
  color: var(--black);
}

.donate-section__info p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.donate-section__list {
  list-style: none;
}

.donate-section__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.925rem;
  color: var(--gray-600);
}

.donate-section__list li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.donate-alt {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.donate-alt__card,
.donate-alt__bank {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow);
}

.donate-alt__card {
  text-align: center;
}

.donate-alt__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  color: var(--black);
}

.donate-alt__card h3,
.donate-alt__bank h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
  color: var(--black);
}

.donate-alt__card p,
.donate-alt__bank p {
  font-size: 0.925rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.donate-alt__card .btn {
  margin-top: 1.25rem;
}

.donate-alt__bank {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(201, 162, 39, 0.02));
  border-color: rgba(201, 162, 39, 0.25);
}

.donate-alt__bank strong {
  color: var(--black);
}

/* ── Contact & Bank ── */

.contact {
  padding: 5rem 1.5rem;
  background: var(--black);
  color: var(--white);
}

.contact__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact .section-title {
  color: var(--white);
}

.contact .section-label {
  color: var(--gold-light);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.06);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.15);
  border-radius: 12px;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--gold-light);
}

.contact-card p,
.contact-card a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.contact-card a:hover {
  color: var(--gold-light);
}

.bank-card {
  grid-column: 1 / -1;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(201, 162, 39, 0.04));
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}

.bank-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 16px;
  color: var(--black);
}

.bank-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.bank-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.bank-details dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.25rem;
}

.bank-details dd {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

/* ── Footer ── */

.site-footer {
  padding: 2rem 1.5rem;
  background: var(--black-soft);
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  text-align: center;
}

.site-footer p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer strong {
  color: var(--gold);
  font-weight: 600;
}

/* ── Animations ── */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    padding: 6.5rem 1.25rem 3.5rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero__content {
    order: 1;
  }

  .hero__visual {
    order: 2;
    width: 100%;
  }

  .hero__visual .donate-card {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero__subtitle,
  .hero__reg {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__logo-wrap img {
    margin: 0 auto;
  }

  .donate-section__inner {
    grid-template-columns: 1fr;
  }

  .donate-section__info {
    text-align: center;
  }

  .mission__pillars {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .bank-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bank-card__icon {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .site-header.is-scrolled {
    padding: 0.65rem 1rem;
  }

  .site-header__name {
    display: none;
  }

  .hero {
    padding: 5.5rem 1rem 3rem;
  }

  .hero__inner {
    gap: 2rem;
  }

  .hero__title {
    font-size: 1.85rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .donate-card__header {
    padding: 1rem 1.15rem;
  }

  .donate-card__header h2 {
    font-size: 1.15rem;
  }

  .donate-embed iframe {
    height: 700px;
    min-height: 640px;
  }

  .donate-embed {
    min-height: 640px;
  }
}

@media (max-width: 400px) {
  .donate-embed iframe {
    height: 680px;
    min-height: 620px;
  }
}
