@font-face {
  font-family: "Gelica Semibold";
  src: local("Gelica Semibold"), local("Gelica SemiBold"), local("Gelica-SemiBold");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Gelica Light";
  src: local("Gelica Light"), local("Gelica-Light");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

:root {
  --green: #45696b;
  --teal: #94d6da;
  --orange: #e6654a;
  --ink: #15393c;
  --cream: #fff6e4;
  --paper: #fffdf7;
  --yellow: #f4c95d;
  --blue: #1b71b8;
  --line: rgba(21, 57, 60, 0.18);
  --display: "Gelica Semibold", Georgia, "Times New Roman", serif;
  --display-alt: "Gelica Light", Georgia, "Times New Roman", serif;
  --body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(69, 105, 107, 0.08) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--cream);
  font-family: var(--body);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 3px solid var(--ink);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.topbar nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.topbar nav a,
.topbar-cta,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 900;
}

.topbar nav a:hover,
.topbar nav a:focus-visible {
  color: var(--paper);
  background: var(--green);
  outline: none;
}

.topbar-cta,
.button.primary {
  color: var(--paper);
  background: var(--orange);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: var(--teal);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.button:hover,
.button:focus-visible,
.topbar-cta:hover,
.topbar-cta:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
  outline: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 79px);
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--paper);
}

.hero-media {
  min-height: 640px;
  overflow: hidden;
  border-right: 3px solid var(--ink);
}

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

.hero-copy {
  display: grid;
  align-content: center;
  padding: clamp(32px, 7vw, 92px);
}

.badge,
.section-label {
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  color: var(--ink);
  background: var(--teal);
  border: 2px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-top: 18px;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7.8vw, 7.2rem);
  line-height: 0.9;
}

h2 {
  margin-top: 16px;
  font-family: var(--display-alt);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 0.96;
}

h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.08;
}

.hero-copy p:not(.badge) {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 1.16rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-ribbon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--paper);
  background: var(--ink);
}

.hero-ribbon span {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 8px;
  font-weight: 900;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 253, 247, 0.22);
}

.hero-ribbon span:nth-child(2) {
  background: var(--green);
}

.hero-ribbon span:nth-child(3) {
  color: var(--ink);
  background: var(--yellow);
}

.hero-ribbon span:nth-child(4) {
  background: var(--orange);
  border-right: 0;
}

.mission {
  display: grid;
  grid-template-columns: 0.4fr minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding: clamp(70px, 9vw, 128px) clamp(22px, 6vw, 88px);
  background: var(--cream);
}

.mission-mark {
  display: grid;
  place-items: center;
}

.mission-mark img {
  width: min(280px, 64vw);
  border-radius: 50%;
  filter: drop-shadow(12px 12px 0 rgba(21, 57, 60, 0.18));
}

.mission p:not(.section-label),
.section-intro p,
.merch-story p,
.impact-copy p {
  max-width: 720px;
  font-size: 1.06rem;
}

.give-shop,
.events {
  padding: clamp(70px, 9vw, 124px) clamp(22px, 6vw, 88px);
  background: var(--paper);
  border-top: 3px solid var(--ink);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gift-card {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  justify-items: start;
  padding: 22px;
  color: var(--ink);
  background: var(--cream);
  border: 3px solid var(--ink);
  text-align: left;
  cursor: pointer;
}

.gift-card:nth-child(2) {
  background: #e8f8f8;
}

.gift-card:nth-child(3) {
  background: #fff0c6;
}

.gift-card:nth-child(4) {
  background: #fce0d8;
}

.gift-card:hover,
.gift-card:focus-visible,
.gift-card.is-active {
  color: var(--paper);
  background: var(--green);
  outline: 4px solid var(--orange);
  outline-offset: 3px;
}

.gift-price {
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
}

.gift-card strong {
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
}

.gift-card span:last-child {
  font-weight: 900;
  text-transform: uppercase;
}

.gift-result {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 24px;
  color: var(--paper);
  background: var(--ink);
  border-top: 8px solid var(--orange);
}

.gift-result span {
  display: block;
  color: var(--teal);
  font-family: var(--display);
  font-size: 3rem;
  line-height: 1;
}

.gift-result p {
  margin-bottom: 0;
}

.merch-story {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: clamp(70px, 9vw, 126px) clamp(22px, 6vw, 88px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(148, 214, 218, 0.14) 0 25%, transparent 25% 50%, rgba(148, 214, 218, 0.14) 50% 75%, transparent 75%) 0 0 / 34px 34px,
    var(--green);
}

.merch-story figure {
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--paper);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--orange);
}

.merch-story img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink);
  border: 3px solid var(--ink);
}

.event-grid article {
  min-height: 240px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  background: var(--cream);
}

.event-grid article:nth-child(even) {
  background: var(--paper);
}

.event-grid span {
  width: fit-content;
  padding: 4px 9px;
  color: var(--paper);
  background: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.event-grid p {
  margin: 0;
}

.impact {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1fr);
  min-height: 760px;
  color: var(--paper);
  background: var(--ink);
}

.impact-photo {
  overflow: hidden;
}

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

.impact-copy {
  display: grid;
  align-content: center;
  padding: clamp(34px, 7vw, 92px);
}

.impact-copy .section-label {
  color: var(--ink);
}

.receipt-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 253, 247, 0.35);
}

.receipt-list p {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.22);
}

.status-note {
  margin-top: 24px;
  padding: 18px;
  color: var(--ink);
  background: var(--teal);
  border-left: 7px solid var(--orange);
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 30px clamp(18px, 4vw, 58px);
  color: var(--paper);
  background: var(--orange);
  border-top: 3px solid var(--ink);
}

.footer p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.3rem;
}

.footer span,
.footer a {
  font-weight: 900;
}

@media (max-width: 1040px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar nav {
    display: none;
  }

  .hero,
  .mission,
  .section-intro,
  .merch-story,
  .impact,
  .gift-result,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 420px;
    border-right: 0;
    border-bottom: 3px solid var(--ink);
  }

  .hero-copy {
    padding-bottom: 96px;
  }

  .gift-grid,
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-photo {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 10px 14px;
  }

  .brand span {
    font-size: 1rem;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .topbar-cta {
    display: none;
  }

  .hero-ribbon,
  .gift-grid,
  .event-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 34px 18px 210px;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .mission,
  .give-shop,
  .events,
  .merch-story,
  .impact-copy {
    padding: 54px 18px;
  }

  .gift-card {
    min-height: 160px;
  }
}
