:root {
  --cream: #fff8ef;
  --paper: #ffffff;
  --ink: #2d2a26;
  --rose: #d96c75;
  --peach: #f6b37f;
  --sage: #a9c9a4;
  --sky: #b9dcf2;
  --gold: #f5cf72;
  --muted: #6f6963;
  --shadow: 0 18px 50px rgba(45, 42, 38, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 248, 239, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(45, 42, 38, 0.08);
}

nav {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.1rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--rose), var(--peach), var(--gold));
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(217, 108, 117, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  background: var(--ink);
  color: white;
  font-weight: 750;
  box-shadow: 0 10px 22px rgba(45, 42, 38, 0.18);
  transition: 0.2s ease;
  text-align: center;
}

.button:hover {
  transform: translateY(-2px);
}

.button.secondary {
  background: white;
  color: var(--ink);
  border: 1px solid rgba(45, 42, 38, 0.12);
  box-shadow: none;
}

.hero {
  padding: 86px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(45, 42, 38, 0.08);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
  margin-bottom: 24px;
}

h1 .highlight {
  color: var(--rose);
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.art-card {
  background: var(--paper);
  border-radius: 34px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  min-height: 470px;
  overflow: hidden;
}

.card-paper {
  height: 100%;
  min-height: 426px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 25%, rgba(248, 215, 218, 0.9), transparent 24%),
    radial-gradient(circle at 78% 20%, rgba(185, 220, 242, 0.9), transparent 20%),
    radial-gradient(circle at 72% 76%, rgba(245, 207, 114, 0.9), transparent 20%),
    linear-gradient(145deg, #fffdf9, #fff1e3);
  border: 2px dashed rgba(45, 42, 38, 0.12);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
}

.card-paper h2 {
  font-size: 2.1rem;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 12px;
}

.card-paper p {
  margin: 0 auto;
  font-size: 1rem;
  max-width: 300px;
  color: var(--muted);
}

.floating {
  position: absolute;
  border-radius: 22px;
  background: white;
  padding: 14px 16px;
  box-shadow: 0 14px 34px rgba(45, 42, 38, 0.12);
  font-weight: 800;
}

.floating.one {
  top: 38px;
  left: 12px;
  transform: rotate(-8deg);
}

.floating.two {
  right: 18px;
  bottom: 44px;
  transform: rotate(7deg);
}

section {
  padding: 82px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-kicker {
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.contact-kicker {
  color: var(--gold);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
  margin-bottom: 14px;
}

.section-head p,
.mission-box p,
.program-card p,
.impact-card p,
.join-card p {
  color: var(--muted);
}

.mission-box,
.info-box {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.mission-statement,
.statement {
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  letter-spacing: -0.045em;
  line-height: 1.15;
  font-weight: 850;
}

.info-box p {
  color: var(--muted);
}

.color-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.color-strip span {
  height: 12px;
  border-radius: 999px;
}

.color-strip span:nth-child(1) { background: var(--rose); }
.color-strip span:nth-child(2) { background: var(--peach); }
.color-strip span:nth-child(3) { background: var(--gold); }
.color-strip span:nth-child(4) { background: var(--sage); }
.color-strip span:nth-child(5) { background: var(--sky); }

.program-grid,
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program-card,
.impact-card,
.join-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(45, 42, 38, 0.08);
  box-shadow: 0 12px 30px rgba(45, 42, 38, 0.06);
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  font-size: 1.55rem;
  background: #f8d7da;
}

.program-card:nth-child(2) .icon {
  background: var(--sky);
}

.program-card:nth-child(3) .icon {
  background: var(--sage);
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.impact-card strong {
  display: block;
  font-size: 2.3rem;
  letter-spacing: -0.06em;
  margin-bottom: 8px;
}

.join {
  background: linear-gradient(
    135deg,
    rgba(217, 108, 117, 0.13),
    rgba(245, 207, 114, 0.18),
    rgba(185, 220, 242, 0.2)
  );
  border-top: 1px solid rgba(45, 42, 38, 0.06);
  border-bottom: 1px solid rgba(45, 42, 38, 0.06);
}

.join-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.join-card.large {
  padding: clamp(30px, 5vw, 50px);
}

.join-buttons {
  margin-top: 26px;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  padding: 16px;
}

.step-number {
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 850;
}

.contact-box {
  background: var(--ink);
  color: white;
  border-radius: 32px;
  padding: clamp(30px, 5vw, 54px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.contact-box p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 720px;
}

.contact-box .button {
  background: white;
  color: var(--ink);
  box-shadow: none;
  white-space: nowrap;
}

.page-hero {
  padding: 86px 0 50px;
  text-align: center;
}

.page-hero p {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--muted);
  max-width: 820px;
  margin: 0 auto 30px;
}

.team-section {
  padding-top: 30px;
}

.team-heading {
  margin-bottom: 28px;
}

.team-heading p {
  color: var(--muted);
  max-width: 760px;
}

.team-category {
  margin-top: 42px;
  margin-bottom: 18px;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.member-card {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid rgba(45, 42, 38, 0.08);
  box-shadow: 0 12px 30px rgba(45, 42, 38, 0.06);
  padding: 22px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  align-items: start;
}

.photo-placeholder {
  width: 130px;
  height: 130px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(217, 108, 117, 0.18), rgba(185, 220, 242, 0.28)),
    #fff8ef;
  border: 2px dashed rgba(45, 42, 38, 0.16);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
  font-size: 0.9rem;
}

.member-photo {
  width: 130px;
  height: 130px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(45, 42, 38, 0.08);
  box-shadow: 0 10px 24px rgba(45, 42, 38, 0.1);
}

.member-info h3 {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.role {
  color: var(--rose);
  font-weight: 800;
  margin-bottom: 14px;
}

.description-box {
  min-height: 78px;
  border-radius: 16px;
  background: rgba(255, 248, 239, 0.9);
  border: 1px solid rgba(45, 42, 38, 0.08);
  padding: 14px;
  color: var(--muted);
}

.empty-board {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px dashed rgba(45, 42, 38, 0.18);
  padding: 28px;
  min-height: 100px;
  color: var(--muted);
}

.site-footer {
  background: #2d2a26;
  color: white;
  padding: 70px 0 55px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.35fr;
  gap: 56px;
}

.footer-column h3 {
  color: var(--sage);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.03rem;
  line-height: 1.7;
}

.footer-column ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.footer-column li a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.03rem;
  transition: 0.2s ease;
}

.footer-column li a:hover {
  color: white;
}

.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.social-icons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(169, 201, 164, 0.2);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: 0.2s ease;
}

.social-icons a:hover {
  background: var(--sage);
  transform: translateY(-3px);
}

.footer-email-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 26px;
  border-radius: 10px;
  padding: 15px 24px;
  background: var(--sage);
  color: var(--ink);
  font-weight: 800;
  transition: 0.2s ease;
}

.footer-email-button:hover {
  transform: translateY(-2px);
  background: var(--gold);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    gap: 34px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  header {
    position: static;
  }

  nav {
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    font-size: 1rem;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
  }

  .nav-links a {
    background: white;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(45, 42, 38, 0.08);
  }

  .nav-links .button {
    padding: 8px 12px;
    box-shadow: none;
    width: auto;
  }

  .hero {
    padding: 45px 0 45px;
  }

  .hero-grid,
  .mission-box,
  .info-box,
  .join-layout,
  .contact-box {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .art-card {
    min-height: 330px;
    border-radius: 26px;
  }

  .card-paper {
    min-height: 290px;
    padding: 24px;
  }

  .card-paper h2 {
    font-size: 1.75rem;
  }

  .floating {
    font-size: 0.85rem;
    padding: 10px 12px;
  }

  section {
    padding: 50px 0;
  }

  .program-grid,
  .impact-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mission-box,
  .info-box,
  .program-card,
  .impact-card,
  .join-card,
  .contact-box {
    padding: 24px;
    border-radius: 20px;
  }

  .mission-statement,
  .statement {
    font-size: 1.45rem;
  }

  .member-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .photo-placeholder,
  .member-photo {
    width: 100%;
    height: 260px;
  }

  .description-box {
    min-height: 65px;
  }

  .page-hero {
    padding: 45px 0 35px;
  }

  .site-footer {
    padding: 48px 0;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
  }

  .footer-column p,
  .footer-column li a {
    font-size: 0.98rem;
  }

  .footer-email-button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 0.8rem;
    padding: 7px 10px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    padding-top: 36px;
  }

  .eyebrow {
    font-size: 0.8rem;
  }

  .art-card {
    padding: 16px;
  }

  .card-paper {
    min-height: 260px;
  }

  .floating.one {
    top: 22px;
    left: 8px;
  }

  .floating.two {
    right: 8px;
    bottom: 28px;
  }

  .photo-placeholder,
  .member-photo {
    height: 230px;
  }
}