
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4fafc;
  color: #123;
}
header {
  background: linear-gradient(135deg, #0277bd, #00bcd4);
  color: #fff;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo {
  font-size: 1.4rem;
  font-weight: 700;
}
nav a {
  color: #e0f7fa;
  margin-left: 18px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
nav a:hover {
  text-decoration: underline;
}
main {
  max-width: 1100px;
  margin: 24px auto 40px auto;
  padding: 0 16px 40px 16px;
}
.hero {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.hero h1 {
  margin-top: 0;
  font-size: 2.1rem;
}
.hero p.lead {
  font-size: 1.05rem;
  line-height: 1.6;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.badge {
  background: #e1f5fe;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
}
.section {
  margin-top: 32px;
}
.section h2 {
  margin-bottom: 6px;
}
.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.04);
}
.button-primary, .button-ghost {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.button-primary {
  background: #0288d1;
  color: #fff;
}
.button-primary:hover {
  background: #0277bd;
}
.button-ghost {
  background: transparent;
  color: #0288d1;
  border: 1px solid #b3e5fc;
}
.button-ghost:hover {
  background: #e1f5fe;
}
.button-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  margin-top: 12px;
}
.donate-btn {
  width: 100%;
}
.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 22px;
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  nav {
    display: flex;
    flex-wrap: wrap;
  }
  nav a {
    margin: 4px 12px 0 0;
  }
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.highlight-box {
  border-left: 4px solid #0288d1;
  background: #e3f2fd;
  padding: 14px 16px;
  border-radius: 10px;
  margin-top: 8px;
}
.rose-stat {
  font-weight: 600;
}
.story-list .story {
  padding: 14px 0;
  border-bottom: 1px solid #e0e0e0;
}
.story-list .story:last-child {
  border-bottom: none;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.gallery-item {
  background: #ffffff;
  border-radius: 14px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
  text-align: center;
  padding: 8px;
}
form {
  display: grid;
  gap: 10px;
  max-width: 420px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid #cfd8dc;
  font-size: 0.9rem;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
footer {
  text-align: center;
  padding: 18px 12px 30px 12px;
  font-size: 0.8rem;
  color: #607d8b;
}
.small-note {
  font-size: 0.8rem;
  color: #607d8b;
  margin-top: 8px;
}
