@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: #17363b;
  --cream: #fbf3df;
  --paper: #fffaf0;
  --sun: #f4c95d;
  --blue: #1b71b8;
  --shadow: #0b2328;
  --radius: 6px;
  --display-font: "Gelica Semibold", Georgia, "Times New Roman", serif;
  --display-alt-font: "Gelica Light", Georgia, "Times New Roman", serif;
  --body-font: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 2px 2px, rgba(23, 54, 59, 0.13) 1px, transparent 1px),
    linear-gradient(180deg, var(--cream), #f7ead0 55%, #eef8f8);
  background-size: 18px 18px, auto;
  font-family: var(--body-font);
  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);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px 28px;
  color: var(--paper);
  background: rgba(23, 54, 59, 0.92);
  border-bottom: 4px solid var(--orange);
  box-shadow: 0 7px 0 rgba(11, 35, 40, 0.22);
  backdrop-filter: blur(8px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display-font);
  font-size: 1.55rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-lockup img {
  width: 46px;
  height: 46px;
  border: 2px solid var(--paper);
  border-radius: 50%;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.site-nav a,
.nav-cta,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  border-radius: var(--radius);
}

.site-nav a {
  color: var(--paper);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--teal);
  outline: none;
}

.nav-cta,
.button-primary {
  color: var(--paper);
  background: var(--orange);
  border: 3px solid var(--shadow);
  box-shadow: 5px 5px 0 var(--shadow);
}

.button-secondary {
  color: var(--ink);
  background: var(--sun);
  border: 3px solid var(--shadow);
  box-shadow: 5px 5px 0 var(--shadow);
}

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

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 138px 28px 80px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(11, 35, 40, 0.84), rgba(11, 35, 40, 0.52) 45%, rgba(11, 35, 40, 0.28)),
    url("assets/web/hero-family.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 80% 16%, rgba(244, 201, 93, 0.35), transparent 28%),
    radial-gradient(circle at 15% 82%, rgba(148, 214, 218, 0.32), transparent 26%);
  mix-blend-mode: screen;
}

.retro-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  gap: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--teal);
  border-top: 4px solid var(--ink);
}

.retro-ticker span {
  min-width: 260px;
  padding: 12px 26px;
  font-weight: 900;
  text-transform: uppercase;
  border-right: 3px solid var(--ink);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  color: var(--ink);
  background: var(--teal);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display-font);
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  margin-top: 22px;
  font-size: 5.35rem;
  text-shadow: 5px 5px 0 rgba(230, 101, 74, 0.9);
}

.hero-copy {
  max-width: 720px;
  margin: 26px 0 0;
  font-size: 1.35rem;
  font-weight: 700;
}

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

.intro-band,
.impact-section,
.roadmap-section,
.give-section,
.status-note {
  padding: 86px 28px;
}

.intro-grid,
.split-section,
.section-heading,
.impact-grid,
.roadmap,
.gift-console,
.status-note,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-grid,
.split-section,
.section-heading,
.gift-console {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

h2 {
  margin-top: 18px;
  font-family: var(--display-alt-font);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--green);
}

h3 {
  font-size: 1.35rem;
  color: var(--ink);
}

p {
  font-size: 1.04rem;
}

.intro-grid p,
.copy-panel p,
.section-heading p,
.status-note p {
  max-width: 680px;
}

.mission-card,
.impact-card,
.roadmap article,
.gift-console,
.status-note {
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--shadow);
}

.mission-card {
  padding: 24px;
  background: var(--paper);
  transform: rotate(1deg);
}

.mission-card img {
  width: 180px;
  margin: 0 auto 16px;
  border-radius: 50%;
}

.mission-card p {
  margin-bottom: 0;
  font-weight: 800;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  background: var(--green);
}

.stats-strip div {
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 20px;
  color: var(--paper);
  text-align: center;
  border-right: 3px solid rgba(255, 250, 240, 0.38);
}

.stats-strip div:nth-child(2) {
  background: var(--orange);
}

.stats-strip div:nth-child(3) {
  color: var(--ink);
  background: var(--sun);
}

.stats-strip div:last-child {
  border-right: 0;
  color: var(--ink);
  background: var(--teal);
}

.stats-strip strong {
  font-family: var(--display-font);
  font-size: 2.35rem;
  line-height: 1;
}

.stats-strip span {
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split-section {
  padding: 94px 0;
}

.why-section {
  align-items: stretch;
}

.image-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--shadow);
  background: var(--paper);
}

.image-panel::before {
  content: "CBG";
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 12px;
  color: var(--paper);
  background: var(--orange);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 900;
}

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

.copy-panel {
  padding: 28px 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 16px 14px 46px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 15px;
  height: 15px;
  background: var(--orange);
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.impact-section {
  background:
    linear-gradient(135deg, rgba(148, 214, 218, 0.38) 25%, transparent 25%) 0 0 / 28px 28px,
    var(--paper);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.section-heading {
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 0;
  font-weight: 700;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.impact-card {
  min-height: 250px;
  padding: 24px;
  background: var(--cream);
}

.impact-card:nth-child(2) {
  background: #eaf8f8;
}

.impact-card:nth-child(3) {
  background: #fff1c6;
}

.impact-number {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-family: var(--display-font);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.roadmap-section {
  background: var(--cream);
}

.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.roadmap article {
  position: relative;
  min-height: 230px;
  padding: 24px;
  background: var(--paper);
}

.roadmap article:nth-child(2),
.roadmap article:nth-child(5) {
  transform: rotate(-1deg);
}

.roadmap article:nth-child(3),
.roadmap article:nth-child(4) {
  transform: rotate(1deg);
}

.roadmap span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 9px;
  color: var(--paper);
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.roadmap article:nth-child(3) span,
.roadmap article:nth-child(6) span {
  background: var(--orange);
}

.roadmap p {
  margin-bottom: 0;
}

.merch-section {
  align-items: stretch;
}

.sticker-panel::before {
  content: "Grom life";
}

.give-section {
  background:
    repeating-linear-gradient(90deg, rgba(69, 105, 107, 0.12) 0 10px, transparent 10px 20px),
    #fff7df;
  border-top: 4px solid var(--ink);
}

.gift-console {
  align-items: stretch;
  padding: 24px;
  background: var(--paper);
}

.gift-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gift-button {
  min-height: 108px;
  padding: 18px;
  color: var(--ink);
  background: #eaf8f8;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  font-family: var(--display-font);
  font-size: 1.45rem;
  font-weight: 900;
  cursor: pointer;
}

.gift-button:nth-child(2) {
  background: #fff1c6;
}

.gift-button:nth-child(3) {
  background: #fbe1d6;
}

.gift-button:nth-child(4) {
  background: var(--teal);
}

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

.gift-readout {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 28px;
  color: var(--paper);
  background: var(--green);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
}

.gift-readout span {
  font-family: var(--display-font);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
}

.gift-readout p {
  margin: 18px 0 26px;
  font-size: 1.2rem;
  font-weight: 800;
}

.status-note {
  margin-top: 70px;
  padding: 26px;
  background: var(--paper);
}

.status-note h2 {
  margin-top: 0;
  font-size: 2rem;
}

.status-note p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 34px max(20px, calc((100% - 1180px) / 2)) 50px;
  color: var(--paper);
  background: var(--ink);
  border-top: 4px solid var(--orange);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display-font);
  font-weight: 900;
}

.site-footer img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.site-footer a {
  font-weight: 900;
}

@media (max-width: 940px) {
  .site-header {
    position: sticky;
    padding: 12px 16px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 86svh;
    padding: 86px 20px 88px;
  }

  .hero h1 {
    font-size: 3.1rem;
    text-shadow: 3px 3px 0 rgba(230, 101, 74, 0.9);
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .intro-grid,
  .split-section,
  .section-heading,
  .gift-console {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 2.25rem;
  }

  .stats-strip,
  .impact-grid,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .stats-strip div {
    min-height: 118px;
    border-right: 0;
    border-bottom: 3px solid rgba(255, 250, 240, 0.38);
  }

  .intro-band,
  .impact-section,
  .roadmap-section,
  .give-section,
  .status-note {
    padding: 62px 18px;
  }

  .split-section {
    padding: 62px 18px;
  }

  .image-panel {
    min-height: 320px;
  }

  .impact-card,
  .roadmap article {
    min-height: auto;
  }

  .roadmap article:nth-child(n) {
    transform: none;
  }

  .gift-buttons {
    grid-template-columns: 1fr;
  }

  .gift-button {
    min-height: 76px;
  }

  .gift-readout span {
    font-size: 2.4rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 12px;
  }

  .brand-lockup span {
    display: none;
  }

  .nav-cta {
    padding-inline: 12px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .impact-number {
    font-size: 2.35rem;
  }
}
