    :root {
      --ink: #1c1b1a;
      --ink-muted: #534f4b;
      --paper: #f6f2ec;
      --cream: #f2e5d7;
      --rose: #cc4b5f;
      --berry: #8b2d3b;
      --sun: #f2c57c;
      --sea: #3a6b7a;
      --outline: rgba(28, 27, 26, 0.12);
      --shadow: 0 24px 60px rgba(28, 27, 26, 0.18);
      --radius: 20px;
    }

    * {
      box-sizing: border-box;
    }

body {
  margin: 0;
  font-family: "Source Sans 3", "Avenir Next", "Helvetica Neue", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: radial-gradient(circle at top, #fffaf3 0%, var(--paper) 45%, #efe3d5 100%);
}

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(246, 242, 236, 0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--outline);
    }

    .nav-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: "Fraunces", "Georgia", serif;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-size: 0.95rem;
    }

    .logo-badge {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: conic-gradient(from 90deg, var(--rose), var(--sun), var(--sea), var(--rose));
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
    }

    .nav-links {
      display: flex;
      gap: 18px;
      font-size: 0.9rem;
      color: var(--ink-muted);
    }

    .nav-links a {
      padding: 6px 0;
      border-bottom: 2px solid transparent;
    }

    .nav-links a:hover {
      border-color: var(--rose);
      color: var(--ink);
    }

    .nav-links a:focus-visible,
    .btn:focus-visible,
    .gallery-trigger:focus-visible,
    .lightbox-close:focus-visible {
      outline: 2px solid var(--sea);
      outline-offset: 3px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.01em;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn-primary {
      background: var(--rose);
      color: #fff;
      box-shadow: 0 12px 30px rgba(204, 75, 95, 0.25);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(204, 75, 95, 0.35);
    }

    .btn-outline {
      border-color: var(--ink);
      color: var(--ink);
    }

    .hero {
      max-width: 1120px;
      margin: 0 auto;
      padding: 80px 24px 60px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
      gap: 48px;
      align-items: center;
    }

    .hero h1 {
      font-family: "Fraunces", "Georgia", serif;
      font-size: clamp(2.5rem, 4vw, 4rem);
      margin: 0 0 16px;
      line-height: 1.05;
    }

.hero p {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.78;
}

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .tagline {
      display: inline-flex;
      gap: 10px;
      align-items: center;
      padding: 10px 16px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--outline);
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--berry);
    }

    .hero-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
      border: 1px solid var(--outline);
      display: grid;
      gap: 20px;
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(140deg, rgba(204, 75, 95, 0.12), rgba(58, 107, 122, 0.12));
      opacity: 0.7;
      pointer-events: none;
    }

    .hero-card > * {
      position: relative;
      z-index: 1;
    }

    .hero-stat {
      display: flex;
      align-items: baseline;
      gap: 12px;
      font-family: "Fraunces", "Georgia", serif;
    }

    .hero-stat span {
      font-size: 2rem;
      color: var(--berry);
    }

    .section {
      max-width: 1120px;
      margin: 0 auto;
      padding: 70px 24px;
    }

    .section h2 {
      font-family: "Fraunces", "Georgia", serif;
      font-size: clamp(2rem, 3vw, 2.8rem);
      margin: 0 0 16px;
    }

.section p {
  color: var(--ink-muted);
  line-height: 1.75;
}

    .grid {
      display: grid;
      gap: 24px;
    }

    .grid-2 {
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .card {
      background: #fff;
      border-radius: var(--radius);
      padding: 24px;
      border: 1px solid var(--outline);
      box-shadow: 0 16px 40px rgba(28, 27, 26, 0.08);
    }

    .accent-card {
      background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
    }

    .pill {
      display: inline-block;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: var(--cream);
      color: var(--berry);
    }

    .events {
      display: grid;
      gap: 16px;
      margin-top: 24px;
    }

    .event-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid var(--outline);
    }

.event-item strong {
  font-size: 1rem;
  line-height: 1.4;
}

.event-item span {
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.section-divider {
  position: relative;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(28, 27, 26, 0.22), transparent);
}

    .image-placeholder {
      height: 220px;
      border-radius: var(--radius);
      background: linear-gradient(135deg, rgba(204, 75, 95, 0.2), rgba(58, 107, 122, 0.25));
      border: 1px dashed rgba(28, 27, 26, 0.2);
      display: grid;
      place-items: center;
      font-family: "Fraunces", "Georgia", serif;
      color: var(--ink-muted);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.8rem;
    }

    .photo-frame {
      width: 100%;
      border-radius: var(--radius);
      border: 1px solid var(--outline);
      box-shadow: 0 16px 40px rgba(28, 27, 26, 0.14);
      overflow: hidden;
      background: #fff;
    }

    .photo-frame img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .photo-tall {
      min-height: 280px;
      aspect-ratio: 4 / 5;
    }

.photo-wide {
  min-height: 180px;
  aspect-ratio: 16 / 10;
}

.mt-20 {
  margin-top: 20px;
}

.mt-16 {
  margin-top: 16px;
}

    .gallery-shell {
      margin-top: 28px;
      display: grid;
      gap: 18px;
    }

    .gallery-spotlight {
      position: relative;
      background: linear-gradient(180deg, #fff 0%, #f7f1e9 100%);
    }

    .gallery-stage {
      width: 100%;
      min-height: 380px;
      aspect-ratio: 16 / 10;
      border: 0;
      padding: 0;
      display: block;
      background: transparent;
      cursor: zoom-in;
    }

    .gallery-stage img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .gallery-nav {
      position: absolute;
      top: calc(50% - 30px);
      width: 48px;
      height: 48px;
      border: 0;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(28, 27, 26, 0.72);
      color: #fff;
      cursor: pointer;
      z-index: 1;
      backdrop-filter: blur(6px);
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .gallery-nav:hover {
      transform: scale(1.04);
      background: rgba(28, 27, 26, 0.85);
    }

    .gallery-nav-prev {
      left: 16px;
    }

    .gallery-nav-next {
      right: 16px;
    }

    .gallery-rail {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(120px, 156px);
      gap: 12px;
      overflow-x: auto;
      padding-bottom: 8px;
      scroll-snap-type: x proximity;
    }

    .gallery-rail::-webkit-scrollbar {
      height: 8px;
    }

    .gallery-rail::-webkit-scrollbar-thumb {
      background: rgba(28, 27, 26, 0.18);
      border-radius: 999px;
    }

    .gallery-photo {
      aspect-ratio: 1 / 1;
      scroll-snap-align: start;
    }

    .gallery-trigger {
      border: 2px solid transparent;
      padding: 0;
      width: 100%;
      height: 100%;
      display: block;
      cursor: pointer;
      background: transparent;
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .gallery-trigger img {
      transition: transform 0.25s ease;
    }

    .gallery-trigger:hover img,
    .gallery-trigger.is-active img {
      transform: scale(1.03);
    }

    .gallery-trigger.is-active {
      border-color: rgba(204, 75, 95, 0.55);
      box-shadow: 0 10px 24px rgba(204, 75, 95, 0.18);
    }

    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(20, 18, 17, 0.8);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      z-index: 30;
    }

    .lightbox.is-open {
      display: flex;
    }

    .lightbox-content {
      position: relative;
      width: min(960px, 100%);
      max-height: 90vh;
      border-radius: var(--radius);
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--outline);
      box-shadow: var(--shadow);
    }

    .lightbox-content img {
      width: 100%;
      max-height: 90vh;
      object-fit: contain;
      display: block;
      background: #f5f1ea;
    }

    .lightbox-close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 0;
      background: rgba(28, 27, 26, 0.72);
      color: #fff;
      font-size: 1.3rem;
      line-height: 1;
      cursor: pointer;
    }

    .donate {
      background: linear-gradient(140deg, rgba(204, 75, 95, 0.18), rgba(242, 197, 124, 0.24));
      border-radius: var(--radius);
      padding: 32px;
      border: 1px solid var(--outline);
      display: grid;
      gap: 18px;
    }

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

    .footer {
      padding: 40px 24px 60px;
      text-align: center;
      color: var(--ink-muted);
      font-size: 0.9rem;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(16px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .reveal {
      animation: fadeUp 0.8s ease both;
    }

    .reveal-delay-1 {
      animation-delay: 0.1s;
    }

    .reveal-delay-2 {
      animation-delay: 0.2s;
    }

    .reveal-delay-3 {
      animation-delay: 0.3s;
    }

    @media (max-width: 860px) {
      .hero {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .nav-links {
        width: 100%;
        order: 3;
        overflow-x: auto;
        white-space: nowrap;
        gap: 14px;
        padding-bottom: 4px;
      }

      .nav-inner {
        flex-wrap: wrap;
        align-items: center;
        padding: 14px 16px;
      }

      .logo {
        font-size: 0.82rem;
      }

      .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
      }
    }

    @media (max-width: 640px) {
      .hero {
        padding-top: 60px;
        gap: 30px;
      }

      .gallery-stage {
        min-height: 260px;
        aspect-ratio: 4 / 5;
      }

      .gallery-nav {
        top: calc(50% - 24px);
        width: 42px;
        height: 42px;
      }

      .gallery-rail {
        grid-auto-columns: 108px;
      }

      .event-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
      }

      .hero-actions .btn {
        width: 100%;
      }

  .section {
    padding: 56px 18px;
  }

  .section-divider::before {
    left: 18px;
    right: 18px;
  }

      .lightbox {
        padding: 12px;
      }

      .lightbox-close {
        width: 40px;
        height: 40px;
      }
    }
