:root {
  --blush:  #FCE8EA;
  --rose:   #F2B8BF;
  --pink:   #E07A8F;
  --mauve:  #B54E68;
  --deep:   #7A2840;
  --text:   #3D1A26;
  --cream:  #FEF6F7;
  --white:  #FFFFFF;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--cream); }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(254,246,247,0.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rose);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  color: var(--mauve); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--deep); }
.nav-donate {
  background: var(--mauve); color: var(--white) !important;
  padding: 0.5rem 1.3rem; border-radius: 50px;
  transition: background 0.2s !important;
}
.nav-donate:hover { background: var(--deep) !important; }

/* ── HERO ── */
.hero {
  min-height: 88vh;
  background: linear-gradient(160deg, #FCE8EA 0%, #FAD4D9 45%, #F2B8BF 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 6% 60px;
}
.hero-inner { max-width: 780px; }
.hero-logo { width: min(280px, 55vw); margin: 0 auto 2rem; display: block; }
.hero-eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--mauve);
  background: rgba(255,255,255,0.65); border-radius: 50px;
  padding: 0.35rem 1rem; margin-bottom: 1.4rem;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700; line-height: 1.18; color: var(--deep); margin-bottom: 1.2rem;
}
h1 span { color: var(--pink); }
.hero-sub {
  font-size: 1.12rem; font-weight: 300; line-height: 1.78;
  color: var(--text); opacity: 0.85; max-width: 580px;
  margin: 0 auto 2.4rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--mauve); color: var(--white);
  text-decoration: none; font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 0.95rem 2.4rem;
  border-radius: 50px; transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(181,78,104,0.3);
}
.btn-primary:hover { background: var(--deep); transform: translateY(-2px); }
.btn-outline {
  display: inline-block; border: 2px solid var(--mauve); color: var(--mauve);
  text-decoration: none; font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 0.85rem 2.2rem;
  border-radius: 50px; margin-left: 1rem; transition: all 0.2s;
}
.btn-outline:hover { background: var(--mauve); color: var(--white); }
.btn-donate {
  display: inline-block; background: var(--white); color: var(--mauve);
  text-decoration: none; font-size: 1rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 1.1rem 2.8rem;
  border-radius: 50px; transition: all 0.2s; box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.btn-donate:hover { background: var(--blush); transform: translateY(-2px); }

/* ── PAGE SECTIONS ── */
section { padding: 90px 6%; }
.section-inner { max-width: 920px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 0.8rem;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--deep); line-height: 1.2; margin-bottom: 1.4rem;
}
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--deep); margin-bottom: 0.5rem;
}
p { font-size: 1.05rem; line-height: 1.8; color: var(--text); opacity: 0.88; }
p + p { margin-top: 1rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(160deg, #FCE8EA 0%, #F2B8BF 100%);
  padding: 80px 6% 60px; text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); }

/* ── CARDS ── */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.6rem; margin-top: 2.5rem;
}
.card {
  background: var(--white); border-radius: 16px; padding: 1.8rem;
  box-shadow: 0 2px 16px rgba(181,78,104,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(181,78,104,0.14); }
.card-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 0.6rem;
}
.card p { font-size: 0.93rem; }
.card-dashed {
  text-align: center; padding: 3rem 2rem;
  background: var(--white); border-radius: 16px;
  border: 2px dashed var(--rose);
}
.card-dashed p { color: var(--mauve); font-weight: 600; }

/* ── PAST EVENT CARDS ── */
.past-card {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 2px 20px rgba(181,78,104,0.1);
  background: var(--cream);
  transition: transform 0.2s, box-shadow 0.2s;
}
.past-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(181,78,104,0.16); }
.past-card-photo {
  width: 100%; height: 210px;
  background: linear-gradient(135deg, #F2B8BF, #E07A8F);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.past-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.past-card-body { padding: 1.6rem; }
.raised-badge {
  display: inline-block; background: var(--blush); color: var(--mauve);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.3rem 0.9rem;
  border-radius: 50px; margin-bottom: 0.8rem;
}
.past-card-body p { font-size: 0.92rem; opacity: 0.8; }
.thanks {
  font-size: 0.82rem; font-weight: 600; color: var(--pink);
  border-top: 1px solid var(--rose); padding-top: 0.8rem; margin-top: 1rem;
}

/* ── DONATE BAND ── */
.donate-band {
  background: linear-gradient(135deg, var(--deep) 0%, var(--mauve) 100%);
  text-align: center; padding: 90px 6%;
}
.donate-band .section-inner { max-width: 680px; }
.donate-band .section-label { color: rgba(255,255,255,0.6); }
.donate-band h2 { color: var(--white); }
.donate-band p { color: rgba(255,255,255,0.8); margin: 0 auto 2.4rem; }
.donate-note { display: block; margin-top: 1.2rem; font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ── TWO-COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.callout-box {
  background: linear-gradient(135deg, #FCE8EA, #F2B8BF);
  border-radius: 20px; padding: 2.5rem; text-align: center;
}
.callout-box blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-style: italic; line-height: 1.6;
  color: var(--deep); border: none; padding: 0;
}
.callout-box cite {
  display: block; margin-top: 1rem; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--mauve); font-style: normal;
}

/* ── CONTACT ── */
.contact-email {
  display: inline-block; font-size: 1.1rem; font-weight: 600;
  color: var(--mauve); text-decoration: none;
  border-bottom: 2px solid var(--rose); padding-bottom: 2px; margin-bottom: 2.5rem;
}
.contact-email:hover { color: var(--deep); border-color: var(--mauve); }
.social-links { display: flex; justify-content: center; gap: 1.4rem; margin-top: 1rem; flex-wrap: wrap; }
.social-links a {
  font-size: 0.84rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  color: var(--mauve); transition: color 0.2s;
}
.social-links a:hover { color: var(--deep); }

/* ── FOOTER ── */
footer {
  background: var(--deep); color: rgba(255,255,255,0.5);
  text-align: center; padding: 1.6rem 5%; font-size: 0.8rem;
}
footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer a:hover { color: var(--white); }

/* ── HAMBURGER (mobile-first: always visible, hidden on desktop) ── */
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 200;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px;
  background: var(--mauve); border-radius: 3px;
}

/* Mobile nav: hidden by default, shown when .open */
.nav-links {
  display: none; flex-direction: column; gap: 0;
  position: absolute; top: 70px; left: 0; right: 0;
  background: rgba(254,246,247,0.98); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rose);
  padding: 0.5rem 0; z-index: 100;
}
.nav-links.open { display: flex; }
.nav-links li { width: 100%; }
.nav-links a {
  display: block; padding: 0.9rem 5%;
  border-bottom: 1px solid var(--blush);
}
.nav-donate {
  margin: 0.5rem 5% !important; border-radius: 8px !important;
  text-align: center; display: block;
}
nav { position: relative; }

/* Desktop: show nav links inline, hide hamburger */
@media (min-width: 701px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex !important; flex-direction: row; gap: 2rem;
    position: static; background: none; border: none;
    padding: 0; backdrop-filter: none;
  }
  .nav-links li { width: auto; }
  .nav-links a { display: inline; padding: 0; border: none; }
  .nav-donate {
    margin: 0 !important; border-radius: 50px !important;
    padding: 0.5rem 1.3rem !important; display: inline-block;
  }
  nav { position: sticky; }
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .btn-outline { margin-left: 0; margin-top: 0.8rem; display: block; text-align: center; }
}
