﻿:root {
  --navy-950: #08162d;
  --navy-900: #0e274a;
  --navy-700: #1b3f73;
  --gold-500: #c8a56b;
  --gold-300: #e2cda8;
  --sand-50: #faf6ef;
  --sand-100: #f2eadb;
  --ink-900: #132238;
  --ink-700: #324966;
  --sky-100: #dde8f5;
  --red-500: #9f2a33;
  --white: #ffffff;
  --shadow-soft: 0 22px 48px rgba(8, 22, 45, 0.15);
  --shadow-hard: 0 16px 36px rgba(8, 22, 45, 0.24);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max-width: 1160px;
  --ease: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Outfit', 'Segoe UI', sans-serif;
  color: var(--ink-900);
  background: radial-gradient(
    circle at 12% -10%,
    #fcf5e6 0,
    #fcf5e6 24%,
    #f4efe4 56%,
    #f0e8d9 100%
  );
  line-height: 1.6;
}

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

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

.site-shell {
  position: relative;
  overflow-x: clip;
}

.page-ornament {
  position: absolute;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  filter: blur(0);
  pointer-events: none;
  opacity: 0.42;
  z-index: -1;
}

.page-ornament.top {
  top: -20rem;
  right: -14rem;
  background: radial-gradient(
    circle,
    #f9e6bf 0,
    rgba(249, 230, 191, 0.1) 65%,
    rgba(249, 230, 191, 0) 100%
  );
}

.page-ornament.mid {
  top: 28rem;
  left: -17rem;
  background: radial-gradient(
    circle,
    #dbe6f5 0,
    rgba(219, 230, 245, 0.15) 62%,
    rgba(219, 230, 245, 0) 100%
  );
}

.container {
  width: min(92vw, var(--max-width));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--white);
  color: var(--navy-950);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(8, 22, 45, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-inner {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  min-width: 0;
}

.brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.brand h1,
.brand p {
  margin: 0;
  line-height: 1.2;
}

.brand h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.brand p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 500;
  transition:
    background var(--ease),
    color var(--ease);
}

.nav-link:hover,
.nav-link[aria-current='page'] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--gold-500), #e7ce98);
  color: #1f1a10;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease);
}

.header-cta:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.35rem;
}

.hero {
  padding: 5.5rem 0 2.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-700);
  font-weight: 700;
}

.eyebrow::before {
  content: '';
  width: 1.9rem;
  height: 2px;
  background: var(--gold-500);
}

.hero h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.15rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  color: var(--navy-950);
}

.hero h2 span {
  color: var(--red-500);
}

.hero p {
  margin: 1rem 0 0;
  font-size: 1.08rem;
  color: var(--ink-700);
  max-width: 42ch;
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.73rem 1.22rem;
  font-weight: 600;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    background var(--ease);
}

.button.primary {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(27, 63, 115, 0.22);
  color: var(--navy-900);
}

.button.gold {
  background: linear-gradient(120deg, var(--gold-500), #eed9ac);
  color: #2a1e0b;
  box-shadow: var(--shadow-soft);
}

.button:hover {
  transform: translateY(-2px);
}

.hero-media {
  position: relative;
}

.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  border: 1px solid rgba(14, 39, 74, 0.2);
}

.hero-stamp {
  position: absolute;
  bottom: -1.1rem;
  left: -1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 0.8rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  max-width: min(84%, 19rem);
}

.hero-stamp img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
}

.hero-stamp p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.35;
  color: var(--ink-700);
}

.info-ribbon {
  margin-top: 2.5rem;
  background: linear-gradient(95deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.92);
  padding: 1.15rem;
  box-shadow: var(--shadow-hard);
}

.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ribbon-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
}

.ribbon-label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.ribbon-value {
  margin-top: 0.33rem;
  display: block;
  font-size: 0.98rem;
  color: var(--white);
  font-weight: 600;
}

.section {
  padding: 3.7rem 0;
}

.section-title {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  line-height: 1.1;
  color: var(--navy-950);
}

.section-subtitle {
  margin: 0.75rem 0 0;
  max-width: 66ch;
  color: var(--ink-700);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}

.card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(14, 39, 74, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  color: var(--navy-900);
}

.card p {
  margin: 0.75rem 0 0;
  color: var(--ink-700);
}

.stat-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.stat {
  background: linear-gradient(160deg, var(--white), #eef3fa);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  border: 1px solid rgba(27, 63, 115, 0.12);
}

.stat strong {
  display: block;
  color: var(--navy-900);
  font-size: 1.2rem;
}

.stat span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: var(--ink-700);
}

.timeline {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.9rem;
}

.timeline-item {
  position: relative;
  padding: 0.95rem 1rem 0.95rem 1.3rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(14, 39, 74, 0.12);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0.65rem;
  top: 1.1rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--red-500);
}

.timeline-item h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--navy-900);
}

.timeline-item p {
  margin: 0.45rem 0 0;
  color: var(--ink-700);
}

.grid-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.program {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(239, 245, 252, 0.94));
  border: 1px solid rgba(14, 39, 74, 0.12);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
}

.program h3 {
  margin: 0;
  font-size: 1.3rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--navy-900);
}

.program p {
  margin: 0.55rem 0 0;
  color: var(--ink-700);
}

.event-board {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.event-card {
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(14, 39, 74, 0.14);
  border-radius: var(--radius-md);
}

.event-card h3 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--navy-900);
}

.event-card p {
  margin: 0.5rem 0 0;
  font-size: 0.93rem;
  color: var(--ink-700);
}

.event-card span {
  margin-top: 0.55rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.56rem;
  font-size: 0.76rem;
  font-weight: 600;
  background: #ecf2fb;
  color: var(--navy-700);
}

.faq {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid rgba(14, 39, 74, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  overflow: clip;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0.95rem 1.05rem;
  text-align: left;
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  line-height: 1;
  color: var(--red-500);
}

.faq-item.open .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.05rem 1rem;
  color: var(--ink-700);
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.gallery figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(14, 39, 74, 0.16);
  box-shadow: var(--shadow-hard);
  background: var(--white);
}

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

.gallery figcaption {
  padding: 0.7rem 0.9rem;
  font-size: 0.83rem;
  color: var(--ink-700);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.contact-block {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(14, 39, 74, 0.13);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.contact-block h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-700);
}

.contact-block p {
  margin: 0.6rem 0 0;
  color: var(--ink-700);
}

.contact-block strong {
  color: var(--navy-900);
}

.contact-form {
  margin-top: 1.3rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14, 39, 74, 0.12);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.form-group {
  display: grid;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.86rem;
  color: var(--navy-900);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(14, 39, 74, 0.22);
  border-radius: 0.7rem;
  padding: 0.65rem 0.72rem;
  font: inherit;
  color: var(--ink-900);
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(27, 63, 115, 0.28);
  border-color: var(--navy-700);
}

textarea {
  resize: vertical;
  min-height: 7.8rem;
}

.form-note {
  margin: 0.85rem 0 0;
  color: var(--ink-700);
  font-size: 0.84rem;
}

.donation-wrap {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: stretch;
}

.donation-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(237, 244, 252, 0.95));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14, 39, 74, 0.13);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}

.donation-card h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  color: var(--navy-900);
}

.donation-card p {
  margin: 0.7rem 0 0;
  color: var(--ink-700);
}

.donation-list {
  margin: 0.95rem 0 0;
  padding: 0 0 0 1.1rem;
  color: var(--ink-700);
  display: grid;
  gap: 0.45rem;
}

.donation-list strong {
  color: var(--navy-900);
}

.payment-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button.zelle {
  background: linear-gradient(135deg, #6a6df7, #4f55da);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.donation-flyer-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(14, 39, 74, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard);
  padding: 1rem;
  min-height: 100%;
  display: grid;
  place-items: center;
}

.donation-flyer-image {
  width: min(100%, 420px);
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(14, 39, 74, 0.16);
  box-shadow: 0 14px 34px rgba(8, 22, 45, 0.18);
}

.donation-flyer-note {
  margin: 0.7rem 0 0;
  text-align: center;
  color: var(--ink-700);
  font-size: 0.84rem;
}

.cta-band {
  margin: 2.2rem 0 0;
  background: linear-gradient(130deg, var(--navy-900), #1f3f6c);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow-hard);
}

.cta-band h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.cta-band p {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.85);
}

.cta-actions {
  display: grid;
  gap: 0.65rem;
  justify-items: end;
}

.cta-actions .button {
  min-width: 11.5rem;
}

.site-footer {
  margin-top: 3.3rem;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(160deg, var(--navy-950), #102e58);
  padding: 2.25rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.footer-grid h3 {
  margin: 0;
  font-size: 1.06rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid li {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.footer-grid ul {
  margin: 0;
  padding-left: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 1rem;
  padding-top: 0.9rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 450ms ease,
    transform 450ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero {
    padding-top: 4.8rem;
  }

  .hero-grid,
  .split,
  .gallery,
  .footer-grid,
  .cta-band,
  .donation-wrap {
    grid-template-columns: 1fr;
  }

  .grid-three,
  .event-board,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ribbon-grid,
  .stat-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .nav-inner {
    min-height: 4.6rem;
  }

  .nav-panel {
    position: fixed;
    inset: 4.6rem 0 auto;
    background: rgba(8, 22, 45, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    transform: translateY(-130%);
    transition: transform 230ms ease;
    padding: 0.6rem 1rem 1rem;
  }

  .nav-panel.open {
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .nav-link,
  .header-cta {
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    justify-items: start;
    width: 100%;
  }

  .cta-actions .button {
    min-width: 0;
    width: 100%;
    max-width: 18rem;
  }
}

@media (max-width: 620px) {
  .brand h1 {
    font-size: 0.98rem;
  }

  .brand p {
    font-size: 0.7rem;
  }

  .hero h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .grid-three,
  .event-board,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-stamp {
    position: static;
    margin-top: 0.9rem;
    max-width: 100%;
  }
}
