/* ───── Reset & Base ───── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2c2c2c;
  background: #faf8f5;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ───── Typography ───── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ───── Hero ───── */
.hero {
  background: #1a1a2e;
  color: #faf8f5;
  text-align: center;
  padding: 4rem 1.5rem 3.5rem;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero .subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c4a882;
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero .byline {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #e8e0d6;
}

.hero .byline strong,
.hero .credits strong {
  color: #fff;
  font-weight: 600;
}

.hero .credits {
  font-size: 0.85rem;
  color: #a8a0b0;
  line-height: 1.6;
  margin-top: 0.3rem;
}

/* ───── Image ───── */
.image-section {
  padding: 0 1.5rem;
  margin: -1.5rem auto 0;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.image-placeholder {
  background: #e8e0d6;
  border-radius: 8px;
  aspect-ratio: 2 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a7e72;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow: hidden;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ───── About ───── */
.about {
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

.about blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #5a3e2b;
  text-align: center;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
  border-top: 1px solid #d4c8b8;
  border-bottom: 1px solid #d4c8b8;
  line-height: 1.6;
}

.about-text p {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  color: #3d3d3d;
}

.about-text .workshop-note {
  font-style: italic;
  text-align: center;
  color: #6b6060;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e4ddd4;
  font-size: 0.9rem;
}

/* ───── Bios ───── */
.bios {
  background: #f0ebe4;
  padding: 3rem 1.5rem;
}

.bios h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #1a1a2e;
}

.bio {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.bio:last-child {
  margin-bottom: 0;
}

.bio h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: #1a1a2e;
}

.bio p {
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.75;
}

.bio .coming-soon {
  font-style: italic;
  color: #8a7e72;
}

/* ───── Support / How to Help ───── */
.support {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.support h2 {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: #1a1a2e;
}

.support-list {
  list-style: none;
  counter-reset: support-counter;
}

.support-list li {
  counter-increment: support-counter;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.8rem;
}

.support-list li::before {
  content: counter(support-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: #1a1a2e;
  color: #c4a882;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.support-list li strong {
  display: block;
  font-size: 1rem;
  color: #1a1a2e;
  margin-bottom: 0.3rem;
}

.support-list li p {
  font-size: 0.9rem;
  color: #4a4a4a;
}

.donate-button {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.75rem 2rem;
  background: #1a1a2e;
  color: #faf8f5;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.2s ease;
}

.donate-button:hover {
  background: #2d2d4a;
}

/* ───── Thank Yous ───── */
.thanks {
  background: #f0ebe4;
  padding: 3rem 1.5rem;
  text-align: center;
}

.thanks h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #1a1a2e;
}

.thanks ul {
  list-style: none;
  max-width: 400px;
  margin: 0 auto;
}

.thanks li {
  font-size: 0.95rem;
  color: #4a4a4a;
  padding: 0.4rem 0;
  border-bottom: 1px solid #ddd5ca;
}

.thanks li:last-child {
  border-bottom: none;
}

/* ───── Footer ───── */
footer {
  background: #1a1a2e;
  color: #a8a0b0;
  text-align: center;
  padding: 2rem 1.5rem;
}

.footer-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: #c4a882;
  margin-bottom: 0.3rem;
}

footer p:last-child {
  font-size: 0.8rem;
}

/* ───── Responsive ───── */
@media (min-width: 768px) {
  .hero {
    padding: 6rem 2rem 5rem;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .about blockquote {
    font-size: 1.4rem;
  }
}
