:root {
  --purple: #4a1942;
  --purple-dark: #35102f;
  --orange: #e8772e;
  --cream: #fcefe6;
  --text: #2c2c2c;
  --muted: #6b6b6b;
  --border: #e7dcd3;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

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

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

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand img { width: 42px; height: 42px; }

nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav a {
  font-weight: 600;
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

nav a:hover, nav a.active { border-color: var(--purple); }

.phone-pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  white-space: nowrap;
}

/* Hero */
.hero {
  background: linear-gradient(120deg, var(--orange), #f4a259);
  padding: 60px 0 70px;
}

.hero-card {
  background: var(--cream);
  border: 1px solid var(--purple);
  border-radius: 6px;
  max-width: 460px;
  padding: 40px 36px;
}

.hero-card h1 {
  font-size: 2rem;
  margin: 0 0 16px;
}

.hero-card .rule {
  width: 60px;
  height: 3px;
  background: var(--purple);
  margin-bottom: 18px;
}

.hero-card p { color: var(--muted); margin: 0; }

.hero-photo {
  margin-top: -70px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

/* Section titles */
.section { padding: 70px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 1.8rem; margin: 0 0 10px; }
.section-title .rule {
  width: 60px; height: 3px; background: var(--purple); margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.service-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.service-card img { height: 200px; object-fit: cover; width: 100%; }
.service-card .body { padding: 20px; }
.service-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.service-card p { color: var(--muted); margin: 0; font-size: .95rem; }

.intro-text { max-width: 760px; margin: 0 auto; text-align: center; color: var(--muted); }

/* About */
.about { background: var(--cream); }
.about-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.about-inner img { border-radius: 8px; flex: 1 1 360px; }
.about-inner .text { flex: 1 1 360px; }
.about-inner h2 { font-size: 1.6rem; }
.about-inner p { color: var(--muted); }

/* Donate */
.donate-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px;
  max-width: 520px;
  margin: 0 auto;
}

.donate-box p { color: var(--muted); }

form.stack { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }

form.stack label { font-size: .9rem; font-weight: 600; }

form.stack input, form.stack select, form.stack textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: .95rem;
}

.btn {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
}

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

.note { font-size: .82rem; color: var(--muted); margin-top: 10px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hero-photo { margin-top: 24px; }
}

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info .row { display: flex; gap: 10px; align-items: flex-start; }
.contact-info .label { color: var(--muted); font-size: .9rem; }

/* Footer */
footer {
  background: var(--purple);
  color: #fff;
  padding: 40px 0 24px;
  margin-top: 40px;
}

footer .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

footer nav ul { justify-content: center; }
footer nav a { color: #fff; }
footer .copyright { font-size: .82rem; opacity: .8; }

.float-actions {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 30;
}

.float-actions a {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.float-actions .wa { background: #25d366; }
.float-actions .tel { background: var(--orange); }
