:root {
  --bg: #f5f5f7;
  --bg-elevated: rgba(255, 255, 255, 0.72);
  --bg-strong: rgba(255, 255, 255, 0.9);
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(29, 29, 31, 0.08);
  --line-strong: rgba(29, 29, 31, 0.14);
  --accent: #0071e3;
  --accent-strong: #0057b8;
  --success: #16a34a;
  --shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 113, 227, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(0, 113, 227, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfbfd 0%, #f3f4f7 45%, #eef1f5 100%);
  line-height: 1.6;
}

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

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

code,
pre {
  font-family: "SFMono-Regular", Consolas, monospace;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(22px);
  background: rgba(245, 245, 247, 0.72);
  border-bottom: 1px solid rgba(29, 29, 31, 0.06);
}

.topbar-inner,
.section,
.footer-inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0071e3, #5ac8fa);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.brand-text strong,
.section-intro h2,
.hero-copy h1,
.card h3,
.detail-card h3,
.stats-card strong,
.feature-list h3 {
  letter-spacing: -0.03em;
}

.brand-text span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--bg-strong);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
}

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

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
}

.nav-links .nav-cta {
  background: var(--accent);
  color: #fff;
}

.nav-links .nav-cta:hover {
  background: var(--accent-strong);
  color: #fff;
}

.hero {
  padding: 56px 0 28px;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 40px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy,
.hero-media {
  padding: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
  margin: 20px 0 18px;
}

.hero-copy p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.hero-media {
  background:
    linear-gradient(160deg, rgba(0, 113, 227, 0.08), rgba(255, 255, 255, 0.45)),
    #eef3f9;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.glass-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.hero-quote {
  font-size: 1.3rem;
  line-height: 1.35;
}

.hero-visual {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 28px 0 64px;
}

.section-intro {
  margin-bottom: 22px;
}

.section-intro h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.section-intro p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.stats-grid,
.card-grid,
.gallery-grid,
.testimonial-grid,
.package-grid,
.detail-grid,
.two-column {
  display: grid;
  gap: 20px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-card,
.card,
.detail-card,
.testimonial-card,
.package-card,
.contact-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-xl);
}

.stats-card {
  padding: 22px;
}

.stats-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
}

.stats-card span {
  color: var(--muted);
}

.two-column {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.package-card,
.detail-card,
.testimonial-card,
.contact-card {
  overflow: hidden;
}

.card-copy,
.package-copy,
.detail-copy,
.testimonial-copy,
.contact-copy {
  padding: 24px;
}

.card h3,
.package-card h3,
.detail-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.card p,
.package-card p,
.detail-card p,
.testimonial-card p,
.contact-card p,
.list-copy {
  color: var(--muted);
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 14px 16px 18px;
  font-size: 0.95rem;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 24px;
}

.testimonial-card blockquote {
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-meta img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-meta strong {
  display: block;
}

.package-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-card .package-tag,
.status-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 600;
}

.package-highlights,
.feature-list ul,
.content-list,
.contact-list,
.spec-list {
  margin: 0;
  padding-left: 20px;
}

.package-highlights li,
.feature-list li,
.content-list li,
.contact-list li,
.spec-list li {
  margin-bottom: 10px;
}

.detail-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.detail-card {
  min-height: 100%;
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-block {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 24px;
  border-radius: 24px;
  margin-bottom: 18px;
}

.content-block h3,
.content-block h4 {
  margin-top: 0;
}

.content-block pre {
  overflow-x: auto;
  padding: 18px;
  border-radius: 20px;
  background: #111827;
  color: #f9fafb;
  font-size: 0.93rem;
}

.content-block table {
  width: 100%;
  border-collapse: collapse;
}

.content-block th,
.content-block td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 100%;
  border-radius: 24px;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list > div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.donor-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.donor-strip figure {
  margin: 0;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
  min-height: 120px;
  display: grid;
  place-items: center;
}

.donor-strip img {
  max-height: 60px;
  object-fit: contain;
}

.page-hero {
  padding: 42px 0 8px;
}

.page-hero .hero-panel {
  grid-template-columns: 1fr;
}

.page-hero .hero-copy {
  padding-bottom: 24px;
}

.footer {
  padding: 24px 0 48px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-panel,
  .detail-grid,
  .contact-layout,
  .two-column,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .card-grid,
  .gallery-grid,
  .testimonial-grid,
  .donor-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    align-items: flex-start;
    padding: 14px 0;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 12px;
  }

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

  .nav-links a {
    text-align: center;
  }

  .hero-copy,
  .hero-media {
    padding: 28px;
  }

  .stats-grid,
  .card-grid,
  .gallery-grid,
  .testimonial-grid,
  .donor-strip {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
