:root {
  --bg: #FDFBF7;
  --text-main: #2D2A26;
  --text-muted: #6B655F;
  --accent: #C27A58;
  --btn-bg: #2C362B;
  --btn-text: #FDFBF7;
  --card-bg: #FFFFFF;
  --border: rgba(45, 42, 38, 0.08);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --radius-lg: 24px;
  --radius-full: 9999px;
  --max-w: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: var(--text-main);
  background-color: var(--bg);
  background-image: radial-gradient(circle at 15% 50%, rgba(194, 122, 88, 0.03), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(44, 54, 43, 0.03), transparent 25%);
  line-height: 1.6;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin: 0;
  color: var(--text-main);
}

.subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 24px 0;
  background: rgba(253, 251, 247, 0.85);
  /* Semi-transparent cream */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'Caveat', cursive;
  font-size: 32px;
  color: var(--text-main);
  text-decoration: none;
  line-height: 1;
  transition: color 0.3s ease;
}

.brand:hover {
  color: var(--accent);
}

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

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--accent);
}


/* Hero Section */
.hero {
  padding: 80px 0 100px;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
}

.hero .lead {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 540px;
}

.actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


.hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
}

.rounded-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  border-top-right-radius: 120px;
  /* subtle asymmetrical touch */
  box-shadow: var(--shadow-md);
}

/* About Section */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}

.about-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
}

.about-card-number {
  font-family: 'Lato', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.about-card-label {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 24px;
}

.about-card-divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
}

.about-card-quote {
  font-family: 'Caveat', cursive;
  font-size: 32px;
  color: var(--text-main);
  line-height: 1.2;
}

.about-content h2 {
  font-size: 42px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-content em {
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
}

.about-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* Donate Section */
.donate-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.donate-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
}

.donate-text h2 {
  font-size: 42px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.donate-text em {
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
}

.donate-text p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.donate-action {
  margin-bottom: 0;
}

/* Common Sections */
.section {
  padding: 80px 0;
}

.section h2 {
  font-size: 40px;
  margin-bottom: 48px;
  text-align: center;
}

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

.mb-large {
  margin-bottom: 64px;
}

.mt-large {
  margin-top: 64px;
}

/* Platforms Section */
.platforms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 80px;
}

.platform-card {
  text-decoration: none;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  margin-bottom: 0;
  /* Override generic card margin */
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 24px -8px rgba(194, 122, 88, 0.15), 0 4px 6px -2px rgba(45, 42, 38, 0.05);
  background: rgba(255, 255, 255, 0.9);
}

.platform-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.platform-icon svg {
  width: 28px;
  height: 28px;
}

.platform-icon.spotify {
  background: rgba(30, 215, 96, 0.1);
  color: #1DB954;
}

.platform-icon.youtube {
  background: rgba(255, 0, 0, 0.1);
  color: #FF0000;
}

.platform-icon.insight {
  background: rgba(230, 169, 58, 0.1);
  color: #c98818;
}

.platform-icon.apple {
  background: rgba(250, 36, 60, 0.1);
  color: #FA243C;
}

.platform-card h3 {
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.platform-card p {
  line-height: 1.5;
  margin: 0;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-family: 'Lato', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.1;
  margin-bottom: 12px;
}

.stat-label {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
}

/* Cards & Embeds */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.embed {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f8f8f8;
  /* Soft placeholder bg for embeds before load */
  border: 1px solid var(--border);
}

.embed iframe {
  display: block;
  /* removes bottom margin gap */
}


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-main);
}

.btn:hover {
  border-color: var(--text-main);
  background: rgba(45, 42, 38, 0.03);
}

.btn.primary {
  background: var(--btn-bg);
  color: var(--btn-text);
  border-color: transparent;
}

.btn.primary:hover {
  background: #1f261e;
  /* Darker green */
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn svg {
  opacity: 0.8;
}

/* Utility */
.muted {
  color: var(--text-muted);
}

.small {
  font-size: 14px;
}

.mono {
  font-family: ui-monospace, Consolas, monospace;
  letter-spacing: -0.02em;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  padding: 64px 0 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}


/* Responsive */
@media (max-width: 900px) {

  .hero-wrap,
  .about-wrap,
  .donate-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .actions {
    justify-content: center;
  }

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .header-row {
    flex-direction: column;
    gap: 16px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .section h2 {
    font-size: 32px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}