:root {
  --ink: #10151a;
  --steel: #32424d;
  --paper: #f6f2ea;
  --white: #fffaf0;
  --blue: #075c9a;
  --red: #c3312f;
  --gold: #dfa63b;
  --mint: #98d5c4;
  --line: rgba(16, 21, 26, .16);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(246, 242, 234, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 38px;
  height: 44px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

nav a:hover,
nav a:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.hero {
  min-height: 74vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  align-items: center;
  gap: clamp(24px, 6vw, 72px);
  padding: clamp(56px, 9vw, 112px) clamp(18px, 5vw, 64px) 56px;
  background:
    linear-gradient(90deg, #10151a 0 64%, #f6f2ea 64% 100%);
  color: var(--white);
}

.hero-copy {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(46px, 8vw, 104px);
  line-height: .9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 62px);
  line-height: .98;
  letter-spacing: 0;
}

h3 {
  font-size: 24px;
  line-height: 1.08;
}

p {
  font-size: 18px;
  line-height: 1.62;
}

.hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 250, 240, .88);
}

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

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

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

.hero-mark {
  justify-self: center;
  align-self: center;
  width: min(100%, 520px);
  padding: clamp(8px, 2vw, 18px);
}

.hero-mark img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, .34));
}

.recognition-section,
footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 5vw, 64px);
  background: var(--ink);
  color: var(--white);
}

.notice-band {
  padding: 14px clamp(18px, 5vw, 64px);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--steel);
}

.notice-band span {
  display: block;
  max-width: 1100px;
  padding-left: 14px;
  border-left: 5px solid var(--red);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.split-section,
.events-section,
.forms-section,
.store-section,
.contact-section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: var(--white);
}

.donation-panel {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin-top: 28px;
}

.donation-panel a,
.donation-panel span {
  padding: 16px 18px;
  background: var(--paper);
  border-left: 6px solid var(--blue);
  text-decoration: none;
  font-weight: 800;
}

.feature-image {
  width: 100%;
  border: 10px solid var(--ink);
  object-fit: cover;
}

.events-section {
  background: #dce9e6;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 34px;
}

.event-grid,
.store-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.event-card,
.product-card,
.resource-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.event-card.dark {
  background: var(--ink);
  color: var(--white);
}

.event-mark {
  display: grid;
  place-items: center;
  width: min(100%, 260px);
  min-height: 150px;
  margin-bottom: 22px;
  padding: 18px;
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, rgba(223, 166, 59, .18), rgba(255, 250, 240, .04));
  text-align: center;
}

.event-mark span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.event-mark strong {
  display: block;
  margin-top: 8px;
  font-size: 34px;
  line-height: .95;
  color: var(--white);
}

.event-card.poster {
  padding: 0;
  overflow: hidden;
}

.event-card.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card.light {
  background: var(--gold);
}

.event-card.blue-note {
  background: var(--blue);
  color: var(--white);
}

.event-card a {
  font-weight: 900;
  overflow-wrap: anywhere;
}

.recognition-section {
  align-items: center;
  background: var(--steel);
}

.recognition-section div,
.recognition-section p {
  max-width: 620px;
}

.store-section {
  background: var(--paper);
}

.forms-section {
  background: var(--white);
}

.resource-grid {
  grid-template-columns: minmax(0, 520px);
}

.product-card,
.resource-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  border-top: 8px solid var(--red);
}

.resource-card.protected {
  border-top-color: var(--blue);
}

.product-code {
  width: fit-content;
  padding: 6px 8px;
  background: var(--mint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}

button {
  align-self: flex-start;
  background: var(--ink);
  color: var(--white);
}

.resource-card a,
.product-card a {
  width: fit-content;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.form-page {
  background: #e8e8e8;
}

.print-form {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.lpp-sheet {
  padding: 42px;
  background: #fff;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
}

.form-title {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
  text-align: center;
  font-size: 20px;
  text-decoration: underline;
}

.field-row,
.signature-grid,
.signature-line {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 10px;
  align-items: end;
  margin-bottom: 18px;
}

.field-row span,
.signature-grid span,
.signature-line span {
  min-height: 26px;
  border-bottom: 1px solid #111;
}

.field-block {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.field-block span {
  min-height: 72px;
  border: 1px solid #111;
}

.form-note {
  margin: 28px 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.fine-print {
  font-size: 12px;
  line-height: 1.25;
}

.members-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px;
  background: linear-gradient(135deg, #10151a, #075c9a);
  color: var(--white);
}

.members-panel {
  max-width: 760px;
}

@media print {
  .no-print {
    display: none;
  }

  .print-form {
    max-width: none;
    padding: 0;
  }

  .lpp-sheet {
    padding: 0;
  }
}

.store-status {
  margin: 24px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 800;
}

.members-float {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 20;
  padding: 14px 18px;
  border: 2px solid var(--red);
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(16, 21, 26, .24);
}

.contact-section {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  background: var(--blue);
  color: var(--white);
}

address {
  font-style: normal;
  font-size: 22px;
  line-height: 1.5;
}

footer {
  font-size: 14px;
  background: var(--ink);
  border-top: 1px solid rgba(255, 250, 240, .2);
}

@media (max-width: 860px) {
  .site-header,
  .hero,
  .split-section,
  .contact-section,
  .recognition-section,
  footer {
    display: block;
  }

  nav {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .hero {
    min-height: auto;
    background: #10151a;
  }

  .hero-mark {
    width: min(78vw, 340px);
    margin: 34px auto 0;
  }

  .feature-image {
    margin-top: 28px;
  }

  .event-grid,
  .store-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    margin-top: 24px;
  }
}
