:root {
  --burgundy: #6B1D3A;
  --burgundy-deep: #3D1F2B;
  --wine: #8B2942;
  --gold: #C9A227;
  --gold-light: #E8C547;
  --cream: #FBF7F0;
  --cream-dark: #F0E6D6;
  --warm-white: #FFFDF9;
  --text: #2C1810;
  --text-muted: #5C4A42;
  --shadow: rgba(61, 31, 43, 0.12);
  --shadow-deep: rgba(61, 31, 43, 0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--burgundy-deep);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--wine);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--gold); }

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 12px var(--shadow);
}

.brand svg {
  height: 44px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--burgundy);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--burgundy);
  background: var(--cream);
}

.main-nav a.active {
  font-weight: 600;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, var(--burgundy-deep) 0%, var(--burgundy) 45%, #7A2E4A 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 162, 39, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(232, 197, 71, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 45 C30 45 15 33 15 22 C15 15 20 10 25 10 C28 10 29 13 30 16 C31 13 32 10 35 10 C40 10 45 15 45 22 C45 33 30 45 30 45Z' fill='%23fff'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(232, 197, 71, 0.3);
  border-radius: 100px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--warm-white);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-text {
  color: rgba(255, 253, 249, 0.88);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--burgundy-deep);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.45);
  color: var(--burgundy-deep);
}

.btn-outline {
  background: transparent;
  color: var(--warm-white);
  border-color: rgba(255, 253, 249, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 253, 249, 0.1);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-wine {
  background: var(--wine);
  color: var(--warm-white);
}

.btn-wine:hover {
  background: var(--burgundy);
  color: var(--warm-white);
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--warm-white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
  border-color: rgba(201, 162, 39, 0.3);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-radius: 14px;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Quote block */
.quote-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 12rem;
  color: rgba(201, 162, 39, 0.12);
  line-height: 1;
  pointer-events: none;
}

.quote-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.quote-block blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: var(--burgundy-deep);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.quote-block cite {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 100%);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--warm-white), transparent);
}

.page-hero h1 {
  color: var(--warm-white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 253, 249, 0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* About content */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-deep);
}

.about-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.values-list {
  list-style: none;
  margin-top: 2rem;
}

.values-list li {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

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

.value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 10px;
  color: var(--wine);
  font-size: 1.1rem;
}

.value-text h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.value-text p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* Donate */
.donate-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.donate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.donate-card {
  background: var(--warm-white);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

.donate-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px var(--shadow);
}

.donate-card .platform-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.75rem;
  font-weight: 700;
}

.donate-card.paypal .platform-icon {
  background: #003087;
  color: #fff;
}

.donate-card.square .platform-icon {
  background: #006AFF;
  color: #fff;
}

.donate-card.cashapp .platform-icon {
  background: #00D632;
  color: #fff;
}

.donate-card.venmo .platform-icon {
  background: #008CFF;
  color: #fff;
}

.donate-card h3 {
  margin-bottom: 0.5rem;
}

.donate-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.donate-note {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.donate-note p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-white);
  border-radius: 12px;
  color: var(--wine);
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item p {
  font-size: 1.05rem;
  color: var(--burgundy-deep);
  margin: 0;
}

.contact-form {
  background: var(--warm-white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--warm-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(0, 214, 50, 0.08);
  border: 1px solid rgba(0, 214, 50, 0.25);
  border-radius: 8px;
  color: #1a6b2e;
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--wine) 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--warm-white);
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255, 253, 249, 0.85);
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* Footer */
.site-footer {
  background: var(--burgundy-deep);
  color: rgba(255, 253, 249, 0.7);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255, 253, 249, 0.7);
  font-size: 0.92rem;
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 253, 249, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about-content,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .brand .brand-text {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--cream-dark);
    padding: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 8px 32px var(--shadow);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.25rem;
  }

  .main-nav a {
    padding: 0.75rem 1rem;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-content {
    padding: 3rem 0;
  }

  section {
    padding: 3.5rem 0;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}