@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: #15383c;
  --paper: #fffdf6;
  --cream: #fff3dd;
  --sun: #f4c95d;
  --blue: #1b71b8;
  --line: rgba(21, 56, 60, 0.16);
  --shadow: rgba(21, 56, 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:
    radial-gradient(circle at 18px 18px, rgba(69, 105, 107, 0.16) 0 2px, transparent 2px) 0 0 / 44px 44px,
    var(--paper);
  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);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 253, 246, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

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

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

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

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

.header-cta,
.button.primary {
  color: var(--paper);
  background: var(--orange);
  border: 2px solid var(--orange);
}

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

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px var(--shadow);
  outline: 3px solid var(--sun);
  outline-offset: 2px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100svh - 79px);
  padding: clamp(54px, 8vw, 112px) clamp(22px, 6vw, 88px) 72px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10vw -18vw 36vw;
  height: 44vw;
  min-height: 440px;
  background: var(--teal);
  border-radius: 50% 0 0 0;
  opacity: 0.6;
}

.hero-copy,
.creative-board {
  position: relative;
  z-index: 2;
}

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

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

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

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

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

.hero-copy p:not(.eyebrow),
.section-intro p,
.feature-copy p,
.brand-copy p,
.impact p {
  max-width: 690px;
  font-size: 1.08rem;
}

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

.creative-board {
  min-height: 680px;
}

.creative-board img,
.board-note {
  position: absolute;
  box-shadow: 0 22px 48px var(--shadow);
}

.board-logo {
  top: 18px;
  left: 10%;
  width: 190px;
  border-radius: 50%;
  background: var(--paper);
}

.board-family {
  top: 92px;
  right: 0;
  width: 70%;
  border: 10px solid var(--paper);
}

.board-gear {
  left: 0;
  bottom: 60px;
  width: 68%;
  border: 10px solid var(--paper);
}

.board-note {
  right: 8%;
  bottom: 10px;
  width: 240px;
  padding: 22px;
  color: var(--paper);
  background: var(--orange);
}

.board-note strong {
  display: block;
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 1;
}

.board-note span {
  display: block;
  margin-top: 8px;
  font-weight: 900;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--paper);
}

.quick-strip div {
  min-height: 132px;
  display: grid;
  place-content: center;
  gap: 6px;
  padding: 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 253, 246, 0.22);
}

.quick-strip div:nth-child(2) {
  background: var(--green);
}

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

.quick-strip div:nth-child(4) {
  background: var(--orange);
  border-right: 0;
}

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

.quick-strip strong {
  font-family: var(--display);
  font-size: 1.5rem;
}

.kits,
.events,
.impact {
  padding: clamp(70px, 9vw, 132px) clamp(22px, 6vw, 88px);
}

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

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

.kit-card {
  min-height: 248px;
  display: grid;
  align-content: space-between;
  justify-items: start;
  padding: 24px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
}

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

.kit-card:nth-child(3) {
  background: #fff6c8;
}

.kit-card:nth-child(4) {
  background: #ffe2d9;
}

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

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

.kit-card strong {
  font-family: var(--display);
  font-size: 1.55rem;
}

.kit-card em {
  font-style: normal;
  font-weight: 800;
}

.kit-result {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 26px;
  color: var(--paper);
  background: var(--green);
}

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

.feature-band,
.brand-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 98px);
  align-items: center;
  padding: clamp(70px, 9vw, 132px) clamp(22px, 6vw, 88px);
  background: var(--cream);
}

.feature-image,
.brand-art {
  overflow: hidden;
  background: var(--paper);
}

.feature-image img,
.brand-art img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.brand-art img {
  object-position: top center;
}

.events {
  background: var(--paper);
}

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

.event-gallery article {
  min-height: 240px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.event-gallery article:nth-child(2n) {
  background: #e8f8f8;
}

.event-gallery span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 10px;
  color: var(--paper);
  background: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-section {
  color: var(--paper);
  background: var(--green);
}

.brand-section .section-label,
.impact .section-label {
  color: var(--ink);
  background: var(--teal);
}

.impact {
  color: var(--paper);
  background: var(--ink);
}

.impact-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 253, 246, 0.25);
}

.impact-list p {
  min-height: 180px;
  display: grid;
  align-content: start;
  gap: 12px;
  margin: 0;
  padding: 22px;
  background: rgba(255, 253, 246, 0.08);
}

.impact-list strong {
  font-family: var(--display);
  font-size: 1.25rem;
}

.impact-list span {
  font-size: 0.95rem;
}

.status-note {
  margin-top: 28px;
  padding: 18px;
  color: var(--ink);
  background: var(--teal);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px clamp(18px, 4vw, 58px);
  color: var(--paper);
  background: var(--orange);
}

.site-footer strong {
  font-family: var(--display);
  font-size: 1.3rem;
}

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero,
  .feature-band,
  .brand-section,
  .kit-result,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .creative-board {
    min-height: 560px;
  }

  .quick-strip,
  .kit-grid,
  .impact-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

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

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

  .header-cta {
    display: none;
  }

  .hero {
    padding: 50px 18px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  .creative-board {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .creative-board img,
  .board-note {
    position: static;
    width: 100%;
  }

  .board-logo {
    max-width: 170px;
    justify-self: center;
  }

  .quick-strip,
  .kit-grid,
  .event-gallery,
  .impact-list {
    grid-template-columns: 1fr;
  }

  .kits,
  .events,
  .impact,
  .feature-band,
  .brand-section {
    padding: 54px 18px;
  }

  .kit-card {
    min-height: 180px;
  }
}
