:root {
  --pine: #102b0d;
  --fairway: #526f05;
  --moss: #829400;
  --copper: #a45f3d;
  --blue-mist: #e1ecef;
  --cream: #f8f7f1;
  --mist: #eceee8;
  --ink: #172015;
  --muted: #5d6859;
  --white: #ffffff;
  --line: rgba(16, 43, 13, 0.14);
  --shadow: 0 22px 60px rgba(16, 43, 13, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background: var(--cream);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.9) 0 70px, transparent 72px),
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.8) 0 86px, transparent 88px),
    linear-gradient(120deg, rgba(130, 148, 0, 0.08), transparent 38%),
    linear-gradient(300deg, rgba(164, 95, 61, 0.08), transparent 42%),
    var(--cream);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 247, 241, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 4px solid var(--moss);
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset -3px -3px 0 rgba(16, 43, 13, 0.12);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--fairway);
}

.hero {
  min-height: calc(100vh - 73px);
  padding: clamp(54px, 9vw, 110px) clamp(18px, 5vw, 70px) clamp(44px, 7vw, 82px);
  background:
    linear-gradient(90deg, rgba(248, 247, 241, 1) 0%, rgba(248, 247, 241, 0.96) 42%, rgba(248, 247, 241, 0.16) 72%, rgba(248, 247, 241, 0) 100%),
    url("assets/fundraiserFlyer.png") right center / min(49vw, 720px) auto no-repeat;
}

.hero-content {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--fairway);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 680px;
  color: var(--pine);
  font-size: clamp(3.1rem, 6.3vw, 5.9rem);
}

h2 {
  max-width: 780px;
  color: var(--pine);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

h3 {
  margin: 0;
  color: var(--pine);
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--pine);
  box-shadow: 0 12px 28px rgba(16, 43, 13, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #1b3b15;
}

.button-secondary {
  color: var(--pine);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.event-card,
.info-panel,
.sponsor-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.event-card {
  display: grid;
  gap: 18px;
  max-width: 460px;
  margin-top: 30px;
  padding: 24px;
  border-top: 5px solid var(--copper);
}

.event-card strong {
  display: block;
  margin-top: 4px;
  color: var(--pine);
  font-size: 1.35rem;
}

.event-card p {
  margin: 0;
  color: var(--muted);
}

.event-label {
  color: var(--fairway);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(56px, 9vw, 104px) clamp(18px, 5vw, 70px);
}

.section-muted {
  background: linear-gradient(135deg, rgba(236, 238, 232, 0.78), rgba(225, 236, 239, 0.62));
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 32px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.info-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.55;
}

.feature-list strong {
  color: var(--pine);
}

.feature-list a {
  display: inline;
}

.text-link {
  color: var(--pine);
  font-weight: 800;
  text-underline-offset: 4px;
}

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

.sponsor-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 26px;
}

.sponsor-price {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #703d25;
  background: rgba(164, 95, 61, 0.13);
  font-size: 0.84rem;
  font-weight: 800;
}

.sponsor-card p,
.interest-copy p,
.flyer-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.interest-copy {
  display: grid;
  gap: 22px;
}

.copy-link-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.copy-link-panel span,
.copy-link-panel a {
  min-width: 0;
  overflow: hidden;
  font-size: 0.92rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.copy-status {
  min-height: 22px;
  margin: -10px 0 0;
  color: var(--fairway);
  font-weight: 800;
}

.payment-panel {
  gap: 20px;
}

.payment-select-label {
  display: grid;
  gap: 8px;
  color: var(--pine);
  font-weight: 800;
}

.payment-select {
  width: min(100%, 320px);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

.payment-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px);
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.payment-option[hidden] {
  display: none;
}

.payment-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.payment-link {
  overflow-wrap: anywhere;
  font-size: 1.08rem;
}

.payment-qr {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(16, 43, 13, 0.12);
}

.payment-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.form-frame {
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-frame iframe {
  width: 100%;
  height: 620px;
  border: 0;
}

.flyer-section {
  background: var(--pine);
}

.flyer-section .eyebrow,
.flyer-section h2 {
  color: var(--white);
}

.flyer-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.22fr);
  align-items: stretch;
  min-height: min(840px, calc(100vh - 73px));
}

.flyer-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(56px, 9vw, 110px) clamp(18px, 5vw, 70px);
}

.flyer-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.flyer-download {
  display: grid;
  place-items: center;
  padding: clamp(34px, 6vw, 72px);
  background: var(--cream);
}

.flyer-download img {
  width: min(100%, 620px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.flyer-download:hover img,
.flyer-download:focus-visible img {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(16, 43, 13, 0.24);
}

.contact-section {
  background: var(--pine);
  color: var(--white);
}

.contact-section .eyebrow,
.contact-section h2 {
  color: var(--white);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  padding: clamp(20px, 4vw, 34px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--pine);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.full-width,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.82);
  background: #071604;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero,
  .details-grid,
  .sponsor-grid,
  .section-split,
  .flyer-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background: var(--cream);
  }

  .sponsor-card {
    min-height: auto;
  }
}

@media (max-width: 1040px) {
  .hero {
    background: var(--cream);
  }
}

@media (max-width: 620px) {
  .brand {
    align-items: flex-start;
  }

  .site-nav {
    gap: 8px 14px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 2.9rem);
  }

  .hero-copy {
    max-width: 31ch;
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 1.75rem);
    line-height: 1.05;
  }

  .section-heading h2 {
    max-width: 12em;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .copy-link-panel {
    grid-template-columns: 1fr;
  }

  .payment-option {
    grid-template-columns: 1fr;
  }

  .payment-qr {
    max-width: 260px;
  }

  .form-frame,
  .form-frame iframe {
    min-height: 560px;
    height: 560px;
  }
}
