@import url("https://fonts.googleapis.com/css2?family=Patua+One&family=Nunito:wght@500;700;800;900&display=swap");

:root {
  --teal: #19b4a5;
  --teal-deep: #087f78;
  --teal-soft: #d9faf4;
  --gold: #ffd642;
  --gold-deep: #efad23;
  --cream: #fff7df;
  --cream-2: #fffdf4;
  --coral: #ff6b57;
  --berry: #c53cad;
  --leaf: #6fac45;
  --ink: #123c49;
  --muted: #5c7478;
  --line: rgba(18, 60, 73, 0.14);
  --shadow: 0 26px 70px rgba(8, 127, 120, 0.22);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 214, 66, 0.52), transparent 20rem),
    radial-gradient(circle at 95% 0%, rgba(25, 180, 165, 0.32), transparent 24rem),
    linear-gradient(180deg, var(--cream-2), var(--teal-soft) 48%, var(--cream));
  font-family: "Nunito", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.52;
  background-image:
    radial-gradient(circle, rgba(18, 60, 73, 0.08) 1.2px, transparent 1.5px),
    linear-gradient(120deg, rgba(255, 214, 66, 0.18), transparent 32%);
  background-size: 24px 24px, 100% 100%;
}

a {
  color: var(--teal-deep);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--berry);
  outline-offset: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(255, 247, 223, 0.9);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 8px 30px rgba(18, 60, 73, 0.08);
  backdrop-filter: blur(16px) saturate(1.25);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: min(245px, 48vw);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(9px, 1.5vw, 18px);
  flex-wrap: wrap;
  width: 100%;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  color: var(--ink);
  border-radius: 999px;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  color: var(--teal-deep);
  background: #fff;
  transform: translateY(-2px);
}

.nav-links a[aria-current="page"] {
  background: var(--gold);
  box-shadow: 4px 4px 0 var(--teal);
}

.hero {
  position: relative;
  min-height: clamp(720px, calc(100svh - 86px), 920px);
  display: grid;
  grid-template-columns: minmax(390px, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 88px);
  padding-block: clamp(54px, 7vw, 96px) clamp(60px, 8vw, 108px);
  padding-inline: max(clamp(18px, 5vw, 64px), calc((100vw - 1440px) / 2 + 48px));
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 42%, rgba(255, 255, 255, 0.78), transparent 18rem),
    linear-gradient(135deg, rgba(255, 247, 223, 0.9), rgba(217, 250, 244, 0.82) 48%, rgba(25, 180, 165, 0.28));
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 7% auto auto 50%;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border: 22px solid rgba(255, 214, 66, 0.5);
  border-radius: 50%;
  transform: translateX(-4%) rotate(-8deg);
}

.hero::after {
  left: -4vw;
  right: -4vw;
  bottom: -38px;
  height: 94px;
  background: var(--cream-2);
  clip-path: polygon(0 42%, 8% 68%, 18% 48%, 30% 70%, 43% 44%, 55% 67%, 68% 40%, 80% 64%, 92% 45%, 100% 62%, 100% 100%, 0 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(100%, 610px);
  min-width: 0;
}

.hero > * {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.split-heading {
  margin: 0;
  color: var(--ink);
  font-family: "Patua One", Georgia, serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(56px, 7vw, 112px);
}

.hero-lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
}

.event-highlight {
  width: min(100%, 560px);
  margin-top: 24px;
  padding: 16px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 24px;
  box-shadow: 8px 8px 0 rgba(25, 180, 165, 0.32);
}

.event-highlight p {
  margin: 0 0 10px;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.date-pair span {
  display: grid;
  gap: 2px;
  padding: 12px;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.date-pair strong {
  color: var(--ink);
  font-family: "Patua One", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 50px;
  padding: 0 20px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 6px 6px 0 var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  white-space: normal;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--gold);
}

.button.primary {
  background: var(--gold);
}

.button.ghost {
  background: var(--cream-2);
  box-shadow: 6px 6px 0 var(--teal);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
}

.stat-strip div {
  padding: 16px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: 6px 6px 0 rgba(25, 180, 165, 0.32);
}

.stat-strip dt {
  color: var(--teal-deep);
  font-family: "Patua One", Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.stat-strip dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  z-index: 1;
  justify-self: start;
  width: 100%;
  max-width: 700px;
  min-width: 0;
  min-height: min(70vh, 760px);
  display: grid;
  place-items: center;
}

.hero-stage::before {
  position: absolute;
  width: min(92%, 620px);
  aspect-ratio: 1;
  content: "";
  background: var(--teal);
  border: 6px solid #fff;
  border-radius: 42% 58% 52% 48% / 56% 44% 58% 42%;
  box-shadow: var(--shadow);
  animation: blob-wobble 9s ease-in-out infinite;
}

.stage-trophy {
  position: relative;
  z-index: 2;
  width: min(66%, 420px);
  mix-blend-mode: normal;
  filter: drop-shadow(0 26px 26px rgba(18, 60, 73, 0.22));
  border-radius: 34px;
}

.stage-bud,
.stage-tip {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0 18px 18px rgba(18, 60, 73, 0.22));
}

.stage-bud-one {
  width: min(27%, 170px);
  left: 2%;
  top: 14%;
  transform: rotate(-12deg);
  animation: float-a 6s ease-in-out infinite;
}

.stage-bud-two {
  width: min(26%, 165px);
  right: 0;
  bottom: 18%;
  transform: rotate(11deg);
  animation: float-b 7s ease-in-out infinite;
}

.stage-tip {
  width: min(18%, 110px);
  left: 12%;
  bottom: 8%;
  transform: rotate(-8deg);
  animation: float-c 8s ease-in-out infinite;
}

.section {
  position: relative;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 64px);
  background: var(--cream-2);
}

.section:nth-of-type(even) {
  background: var(--teal-soft);
}

.inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 50px);
}

.split-heading {
  font-size: clamp(48px, 7vw, 94px);
}

.split-heading strong {
  color: var(--teal-deep);
  font-weight: 400;
  text-shadow: 4px 4px 0 var(--gold);
}

.lead {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
}

.feature-grid,
.two-column,
.image-grid,
.thanks-grid,
.product-ribbon,
.schedule-grid,
.lp-grid,
.history-grid,
.photo-placeholder-grid,
.year-selector,
.archive-feature,
.exhibitor-gallery,
.trophy-collage {
  display: grid;
  gap: clamp(18px, 3vw, 32px);
}

.schedule-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: clamp(30px, 5vw, 58px);
}

.date-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 34px;
  box-shadow: 12px 12px 0 var(--gold);
}

.date-card::after {
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 150px;
  aspect-ratio: 1;
  content: "";
  background: var(--teal-soft);
  border: 18px solid rgba(255, 214, 66, 0.72);
  border-radius: 50%;
}

.date-card span {
  color: var(--teal-deep);
  font-family: "Patua One", Georgia, serif;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.9;
}

.date-card h3 {
  position: relative;
  z-index: 1;
  margin: 14px 0 10px;
  color: var(--ink);
  font-family: "Patua One", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.02;
}

.date-card p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.date-card .button {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: 22px;
}

.feature-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.two-column {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
}

.media-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 30px;
  box-shadow: 12px 12px 0 var(--gold);
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.summary-card {
  display: grid;
  align-content: center;
  grid-column: 1 / -1;
  min-height: clamp(520px, 58vw, 760px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(217, 250, 244, 0.96)),
    repeating-linear-gradient(-18deg, rgba(25, 180, 165, 0.08) 0 12px, transparent 12px 26px);
}

.summary-card img {
  height: auto;
  min-height: 0;
  max-height: clamp(460px, 52vw, 700px);
  object-fit: contain;
  padding: clamp(10px, 1.8vw, 20px);
}

.summary-card .button {
  justify-self: center;
  margin: 0 0 clamp(18px, 3vw, 28px);
}

.media-card:hover img,
.image-grid img:hover {
  transform: scale(1.025) rotate(-0.6deg);
  filter: saturate(1.08) contrast(1.03);
}

.media-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-ribbon {
  grid-template-columns: 0.9fr 1fr 1fr 0.75fr;
  align-items: end;
  margin-top: clamp(32px, 5vw, 62px);
  padding: clamp(20px, 3vw, 34px);
  background: linear-gradient(135deg, var(--teal), #58d9ca);
  border: 4px solid var(--ink);
  border-radius: 34px;
  box-shadow: 14px 14px 0 rgba(255, 214, 66, 0.82);
}

.product-ribbon img {
  max-height: 260px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 12px rgba(18, 60, 73, 0.24));
}

.product-ribbon img:nth-child(2) {
  transform: rotate(-4deg) translateY(-8px);
}

.product-ribbon img:nth-child(3) {
  transform: rotate(5deg);
}

.product-ribbon img:nth-child(4) {
  max-height: 300px;
  transform: rotate(-8deg);
}

.sponsor {
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 214, 66, 0.7), transparent 20rem),
    linear-gradient(135deg, #ffffff, var(--cream) 58%, var(--teal-soft));
}

.karma-page .hero {
  min-height: auto;
}

.karma-page .hero h1 {
  max-width: none;
  font-size: clamp(72px, 8.5vw, 132px);
  white-space: nowrap;
}

.sponsor-page .hero h1 {
  font-size: clamp(54px, 8vw, 116px);
}

.archive-page .hero h1 {
  font-size: clamp(58px, 8vw, 122px);
}

.archive-hero {
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  min-height: min(920px, calc(100vh - 86px));
}

.year-hero {
  min-height: auto;
}

.year-selector {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 560px);
  margin-top: 30px;
  gap: 12px;
}

.year-selector a {
  display: grid;
  gap: 4px;
  min-height: 86px;
  align-content: center;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 24px;
  box-shadow: 7px 7px 0 var(--gold);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.year-selector a:hover {
  background: var(--cream);
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--teal);
}

.year-selector strong {
  color: var(--teal-deep);
  font-family: "Patua One", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 0.95;
}

.year-selector span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-year-menu {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(30px, 3vw, 44px) clamp(18px, 2.4vw, 30px);
  align-items: stretch;
}

.archive-year-menu a {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(14px, 2vw, 20px);
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 223, 0.96)),
    repeating-linear-gradient(-24deg, rgba(25, 180, 165, 0.08) 0 10px, transparent 10px 22px);
  border: 4px solid var(--ink);
  border-radius: 10px 28px 30px 30px;
  box-shadow: 10px 10px 0 var(--gold);
  text-decoration: none;
  transform: rotate(var(--tile-tilt, -1deg));
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.archive-year-menu a::before {
  position: absolute;
  left: -4px;
  top: -27px;
  z-index: -1;
  width: min(68%, 150px);
  height: 38px;
  content: "";
  background: var(--gold);
  border: 4px solid var(--ink);
  border-bottom: 0;
  border-radius: 18px 24px 0 0;
}

.archive-year-menu a:hover {
  background:
    linear-gradient(145deg, #fff, var(--cream)),
    repeating-linear-gradient(-24deg, rgba(25, 180, 165, 0.1) 0 10px, transparent 10px 22px);
  box-shadow: 5px 14px 0 var(--teal);
  transform: translateY(-6px) rotate(0deg);
}

.archive-year-menu a:nth-child(2n) {
  --tile-tilt: 1deg;
}

.archive-year-menu a:nth-child(3n) {
  --tile-tilt: -0.5deg;
}

.archive-year-menu a:nth-child(4n) {
  --tile-tilt: 1.4deg;
}

.archive-year-menu a.latest-year {
  background:
    linear-gradient(145deg, var(--gold), #fff2a6),
    repeating-linear-gradient(-24deg, rgba(255, 255, 255, 0.22) 0 10px, transparent 10px 22px);
  box-shadow: 10px 10px 0 var(--teal);
}

.archive-year-menu a.latest-year::before {
  background: var(--teal);
}

.archive-year-thumb {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.95), transparent 4.5rem),
    linear-gradient(145deg, var(--teal-soft), var(--cream) 58%, #ffffff);
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: inset 0 0 0 8px rgba(255, 214, 66, 0.24);
}

.archive-year-thumb::before,
.archive-year-thumb::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.archive-year-thumb::before {
  inset: 14% 18%;
  border: 10px solid rgba(255, 214, 66, 0.66);
  border-radius: 50%;
}

.archive-year-thumb::after {
  left: 50%;
  top: 50%;
  width: 42px;
  aspect-ratio: 1;
  background: url("assets/favicon.png") center / contain no-repeat;
  transform: translate(-50%, -50%);
  opacity: 0.88;
}

.latest-year .archive-year-thumb {
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.88), transparent 4.2rem),
    linear-gradient(145deg, var(--gold), var(--cream) 70%);
  box-shadow: inset 0 0 0 8px rgba(25, 180, 165, 0.24);
}

.archive-year-menu strong {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-family: "Patua One", Georgia, serif;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
}

.archive-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.archive-subnav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.archive-subnav a:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--teal);
}

.archive-jump-section {
  padding-block: clamp(18px, 3vw, 30px);
  background: rgba(255, 247, 223, 0.68);
}

.archive-subnav-centered {
  justify-content: center;
  margin-top: 0;
}

.archive-hero-art {
  position: relative;
  z-index: 1;
  min-height: min(76vh, 790px);
}

.archive-hero-art::before {
  position: absolute;
  inset: 7% 3% 4% 18%;
  content: "";
  background: var(--teal);
  border: 6px solid #fff;
  border-radius: 38% 62% 49% 51% / 55% 46% 54% 45%;
  box-shadow: var(--shadow);
  animation: blob-wobble 9s ease-in-out infinite;
}

.archive-roster-card {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 5%;
  width: min(47%, 320px);
  border: 4px solid var(--ink);
  border-radius: 28px;
  box-shadow: 10px 10px 0 var(--gold);
  transform: rotate(3deg);
}

.archive-hero-stack {
  min-height: min(78vh, 790px);
}

.archive-stack-card {
  position: absolute;
  z-index: 3;
  width: min(39%, 270px);
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 26px;
  box-shadow: 12px 12px 0 var(--gold);
}

.stack-card-one {
  right: 7%;
  top: 12%;
  transform: rotate(6deg);
}

.stack-card-two {
  left: 13%;
  top: 30%;
  z-index: 4;
  transform: rotate(-8deg);
}

.stack-card-three {
  right: 18%;
  bottom: 8%;
  z-index: 2;
  box-shadow: 12px 12px 0 var(--teal);
  transform: rotate(4deg);
}

.archive-trophy {
  position: absolute;
  z-index: 3;
  width: min(42%, 300px);
  filter: drop-shadow(0 22px 22px rgba(18, 60, 73, 0.24));
}

.trophy-white {
  left: 8%;
  bottom: 4%;
  transform: rotate(-8deg);
}

.trophy-yellow {
  right: 16%;
  top: 3%;
  transform: rotate(9deg);
}

.karma-page .section:nth-of-type(2) {
  background: var(--cream-2);
}

.lp-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-card,
.history-card,
.ticket-card,
.photo-placeholder {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 34px;
}

.lp-card,
.history-card {
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 12px 12px 0 var(--gold);
}

.lp-card:nth-child(2),
.history-card:nth-child(2) {
  box-shadow: 12px 12px 0 var(--teal);
}

.lp-card::after,
.history-card::after {
  position: absolute;
  right: -42px;
  top: -42px;
  width: 150px;
  aspect-ratio: 1;
  content: "";
  background: var(--teal-soft);
  border: 18px solid rgba(255, 214, 66, 0.7);
  border-radius: 50%;
}

.card-kicker,
.history-card span {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-card h3,
.history-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--ink);
  font-family: "Patua One", Georgia, serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  line-height: 1;
}

.lp-card p:not(.card-kicker),
.history-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 800;
}

.lp-card .button {
  position: relative;
  z-index: 1;
}

.judge-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 214, 66, 0.7), transparent 18rem),
    linear-gradient(135deg, var(--teal-soft), var(--cream-2));
}

.ticket-section {
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 107, 87, 0.16), transparent 19rem),
    linear-gradient(135deg, var(--cream-2), var(--teal-soft));
}

.ticket-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
  padding: clamp(26px, 5vw, 50px);
  box-shadow: 14px 14px 0 var(--gold);
}

.ticket-card::before {
  position: absolute;
  inset: auto -30px -38px auto;
  width: 210px;
  aspect-ratio: 1;
  content: "";
  background: var(--teal);
  border: 22px solid rgba(255, 214, 66, 0.74);
  border-radius: 50%;
}

.ticket-copy {
  position: relative;
  z-index: 1;
}

.ticket-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
}

.disabled-button,
.disabled-button:hover {
  cursor: default;
  background: var(--cream);
  box-shadow: 6px 6px 0 rgba(18, 60, 73, 0.18);
  opacity: 0.72;
  transform: none;
}

.judge-art {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  background: var(--teal);
  border: 4px solid var(--ink);
  border-radius: 42px;
  box-shadow: -12px 12px 0 var(--gold);
  overflow: hidden;
}

.judge-art::before {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  content: "";
  border: 18px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
}

.judge-art img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 16px rgba(18, 60, 73, 0.24));
}

.judge-art img:first-child {
  width: min(58%, 280px);
  transform: rotate(-8deg);
}

.judge-art img:last-child {
  position: absolute;
  right: 10%;
  bottom: 4%;
  width: min(24%, 120px);
  transform: rotate(8deg);
}

.canna-art {
  background: var(--cream);
}

.canna-art img:first-child {
  width: min(74%, 360px);
  padding: 14px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 26px;
  transform: rotate(-3deg);
}

.canna-art img:last-child {
  right: 5%;
  bottom: -10%;
  width: min(34%, 190px);
  transform: rotate(8deg);
}

.canna-sponsor-poster img {
  aspect-ratio: 4 / 5;
  min-height: 0;
  object-fit: contain;
  background: #97d8d1;
}

.sponsor-copy {
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 34px;
  box-shadow: 12px 12px 0 var(--teal);
}

.sponsor h3 {
  margin: 22px 0 18px;
  color: var(--teal-deep);
  font-family: "Patua One", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.05;
}

.sponsor p {
  margin: 0 0 16px;
  color: var(--ink);
  font-weight: 700;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.socials a {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.socials a:hover {
  transform: translateY(-3px) rotate(-3deg);
  background: var(--teal-soft);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--teal);
  border: 4px solid var(--ink);
  border-radius: 34px;
  box-shadow: -12px 12px 0 var(--gold);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sponsor-media-stack {
  display: grid;
  gap: 28px;
  align-content: start;
}

.sponsor-poster-card {
  margin: 0;
  overflow: hidden;
  background: #97d8d1;
  border: 4px solid var(--ink);
  border-radius: 34px;
  box-shadow: -12px 12px 0 var(--gold);
}

.sponsor-poster-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
}

.video-link-frame {
  display: grid;
  place-items: center;
  text-decoration: none;
}

.video-link-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-link-frame span {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 18px 0 54px;
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-link-frame span::before {
  position: absolute;
  left: 18px;
  width: 0;
  height: 0;
  content: "";
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--ink);
}

.sponsor-history {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 214, 66, 0.58), transparent 19rem),
    linear-gradient(135deg, var(--cream-2), var(--teal-soft));
}

.history-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-placeholder-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-feature {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: stretch;
}

.archive-poster img,
.competitor-poster-card img,
.canna-exhibitor-card img {
  aspect-ratio: 4 / 5;
  min-height: 0;
  object-fit: cover;
}

.event-details-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 34px;
  box-shadow: 12px 12px 0 var(--teal);
}

.event-details-card::after {
  position: absolute;
  right: -48px;
  bottom: -52px;
  width: 190px;
  aspect-ratio: 1;
  content: "";
  background: var(--teal-soft);
  border: 22px solid rgba(255, 214, 66, 0.74);
  border-radius: 50%;
}

.event-details-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: var(--ink);
  font-family: "Patua One", Georgia, serif;
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 400;
  line-height: 0.95;
}

.event-details-card dl {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}

.event-details-card dl div {
  padding: 14px;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 18px;
}

.event-details-card dt {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-details-card dd,
.event-details-card p {
  position: relative;
  z-index: 1;
  margin: 3px 0 0;
  color: var(--muted);
  font-weight: 900;
}

.archive-photo-grid {
  margin-top: clamp(28px, 4vw, 48px);
}

.standings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
  margin-top: clamp(28px, 4vw, 48px);
}

.standing-card {
  overflow: hidden;
  margin: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 223, 0.9));
  border: 4px solid var(--ink);
  border-radius: 28px;
  box-shadow: 10px 10px 0 var(--gold);
}

.standing-card:nth-child(2n) {
  box-shadow: 10px 10px 0 var(--teal);
}

.standing-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}

.standing-card figcaption,
.kc2022-photo-grid figcaption {
  padding: 12px 16px 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-standing {
  grid-column: 1 / -1;
}

.kc2022-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  margin-top: clamp(28px, 4vw, 46px);
}

.kc2022-photo-grid figure {
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 26px;
  box-shadow: 9px 9px 0 rgba(25, 180, 165, 0.55);
}

.kc2022-photo-grid figure:nth-child(3n + 2) {
  transform: translateY(14px) rotate(1deg);
  box-shadow: 9px 9px 0 var(--gold);
}

.kc2022-photo-grid figure:nth-child(3n) {
  transform: rotate(-1deg);
}

.kc2022-photo-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--teal-soft);
}

.exhibitors-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 214, 66, 0.56), transparent 18rem),
    linear-gradient(135deg, var(--teal-soft), var(--cream-2));
}

.exhibitor-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.exhibitor-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #9bd9d2;
  border: 4px solid var(--ink);
  border-radius: 28px;
  box-shadow: 9px 9px 0 var(--gold);
  transition: transform 500ms ease, filter 500ms ease, box-shadow 500ms ease;
}

.exhibitor-gallery img:hover {
  transform: translateY(-8px) rotate(-1deg);
  filter: saturate(1.08) contrast(1.03);
  box-shadow: 6px 13px 0 var(--teal);
}

.exhibitor-gallery img:nth-child(2),
.exhibitor-gallery img:nth-child(6) {
  margin-top: clamp(22px, 4vw, 56px);
}

.exhibitor-gallery img:nth-child(4),
.exhibitor-gallery img:nth-child(7) {
  margin-top: clamp(10px, 2vw, 28px);
}

.archive-winner-grid img:first-child {
  box-shadow: 12px 12px 0 var(--gold);
}

.archive-winner-grid img:nth-child(even) {
  box-shadow: 9px 9px 0 rgba(255, 214, 66, 0.72);
}

.archive-winner-grid-2024 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.archive-winner-grid-2024 img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 30px;
  box-shadow: 10px 10px 0 var(--gold);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.archive-winner-grid-2024 img:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 8px 14px 0 var(--teal);
}

.winner-reel {
  margin-top: clamp(26px, 4vw, 44px);
  background:
    linear-gradient(145deg, rgba(255, 247, 223, 0.9), rgba(255, 255, 255, 0.82)),
    repeating-linear-gradient(18deg, rgba(255, 214, 66, 0.16) 0 12px, transparent 12px 26px);
  box-shadow: 14px 14px 0 var(--teal);
}

.winner-reel .archive-reel-track {
  grid-auto-columns: minmax(300px, 46%);
}

.winner-reel .archive-reel-card img {
  box-shadow: 10px 10px 0 var(--gold);
}

.winner-reel .archive-reel-card figcaption {
  background: var(--teal-soft);
}

.finalists-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 214, 66, 0.54), transparent 18rem),
    radial-gradient(circle at 90% 24%, rgba(197, 60, 173, 0.12), transparent 18rem),
    linear-gradient(135deg, var(--teal-soft), var(--cream-2));
}

.archive-reel {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 3vw, 30px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 247, 223, 0.88)),
    repeating-linear-gradient(-18deg, rgba(25, 180, 165, 0.09) 0 12px, transparent 12px 26px);
  border: 4px solid var(--ink);
  border-radius: 36px;
  box-shadow: 14px 14px 0 var(--gold);
}

.archive-reel::before {
  position: absolute;
  right: -42px;
  top: -42px;
  width: 170px;
  aspect-ratio: 1;
  content: "";
  background: var(--teal);
  border: 18px solid rgba(255, 214, 66, 0.74);
  border-radius: 50%;
}

.archive-reel-controls {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.reel-button {
  min-height: 44px;
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--teal);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.reel-button:hover {
  background: var(--gold);
  box-shadow: 3px 3px 0 var(--teal);
  transform: translate(2px, 2px);
}

.archive-reel-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-columns: minmax(230px, 27%);
  grid-auto-flow: column;
  gap: clamp(14px, 2vw, 22px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 8px 18px 4px;
  scroll-padding-inline: 4px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--teal) rgba(255, 214, 66, 0.36);
}

.archive-reel-track:focus-visible {
  outline: 3px solid var(--berry);
  outline-offset: 4px;
}

.archive-reel-card {
  scroll-snap-align: start;
  margin: 0;
}

.archive-reel-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 28px;
  box-shadow: 8px 8px 0 var(--teal);
}

.archive-reel-card figcaption {
  width: fit-content;
  margin: 12px 0 0;
  padding: 7px 11px;
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 rgba(25, 180, 165, 0.5);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.finalist-category {
  display: grid;
  gap: clamp(16px, 2.5vw, 24px);
  margin-top: clamp(34px, 5vw, 58px);
}

.finalist-category + .finalist-category {
  padding-top: clamp(24px, 4vw, 44px);
  border-top: 3px solid rgba(18, 60, 73, 0.14);
}

.category-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.category-copy h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Patua One", Georgia, serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 400;
  line-height: 0.95;
}

.finalist-category-reel {
  box-shadow: 12px 12px 0 var(--teal);
}

.finalist-category-reel .archive-reel-track {
  grid-auto-columns: minmax(230px, 28%);
}

.finalist-category-reel .archive-reel-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.finalist-category-reel .archive-reel-card img {
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #98ded8;
  border-radius: 24px;
  box-shadow: 8px 8px 0 var(--gold);
}

.linked-finalist-card {
  transition: transform 180ms ease, filter 180ms ease;
}

.linked-finalist-card:hover {
  filter: saturate(1.08);
  transform: translateY(-5px) rotate(-0.8deg);
}

.profile-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.profile-link-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  color: var(--ink);
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.profile-link-grid a:hover {
  background: var(--teal-soft);
  box-shadow: 2px 2px 0 var(--teal);
  transform: translate(2px, 2px);
}

.profile-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
}

.profile-hero-gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: clamp(12px, 2vw, 22px);
  width: min(100%, 720px);
  margin-inline: auto;
}

.profile-hero-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #9fe0da;
  border: 4px solid var(--ink);
  border-radius: 24px;
  box-shadow: 9px 9px 0 var(--gold);
}

.profile-hero-gallery img:nth-child(2) {
  transform: translateY(-26px) rotate(2deg);
  box-shadow: 9px 9px 0 var(--teal);
}

.profile-hero-gallery img:nth-child(3n) {
  transform: translateY(18px) rotate(-2deg);
}

.profile-hero-gallery-duo {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  width: min(100%, 520px);
  gap: clamp(16px, 2.6vw, 30px);
}

.profile-hero-gallery-duo img:nth-child(n) {
  transform: none;
}

.profile-hero-gallery-duo img:nth-child(1) {
  aspect-ratio: 4 / 5;
  padding: clamp(8px, 1vw, 12px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(232, 252, 248, 0.9));
  transform: translateY(10px) rotate(-1.5deg);
}

.profile-hero-gallery-duo img:nth-child(2) {
  aspect-ratio: 9 / 16;
  padding: clamp(4px, 0.7vw, 8px);
  background: rgba(159, 224, 218, 0.92);
  box-shadow: 9px 9px 0 var(--teal);
  transform: translateY(-8px) rotate(1.5deg);
}

.profile-hero-gallery-balanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  width: min(100%, 560px);
  gap: clamp(14px, 2vw, 24px);
}

.profile-hero-gallery-balanced img {
  aspect-ratio: 1 / 1;
  padding: clamp(8px, 1.1vw, 14px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(223, 250, 246, 0.9));
}

.profile-hero-gallery-balanced img:nth-child(n) {
  transform: none;
}

.profile-hero-gallery-balanced img:nth-child(1) {
  transform: translateY(8px) rotate(-1deg);
}

.profile-hero-gallery-balanced img:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(159, 224, 218, 0.95), rgba(202, 245, 239, 0.88));
  box-shadow: 9px 9px 0 var(--teal);
  transform: translateY(-8px) rotate(1.5deg);
}

.profile-hero-gallery-balanced img[src*="2023-finalists"] {
  object-fit: contain;
  padding: clamp(6px, 0.9vw, 12px);
}

.profile-hero-gallery-balanced img:nth-child(3) {
  transform: translateY(-2px) rotate(-1.5deg);
}

.profile-hero-gallery-balanced img:nth-child(4) {
  transform: translateY(12px) rotate(1deg);
}

.profile-hero-gallery-product-set img:nth-child(2) {
  object-fit: contain;
  padding: clamp(14px, 2vw, 24px);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.92) 0 26%, transparent 27%),
    linear-gradient(145deg, rgba(159, 224, 218, 0.95), rgba(202, 245, 239, 0.88));
}

.profile-hero-gallery-product-set img:nth-child(3),
.profile-hero-gallery-product-set img:nth-child(4) {
  aspect-ratio: 9 / 16;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.profile-facts-card,
.profile-story-card {
  background: rgba(255, 255, 255, 0.9);
  border: 4px solid var(--ink);
  border-radius: 32px;
  box-shadow: 10px 10px 0 var(--gold);
}

.profile-facts-card {
  position: sticky;
  top: 118px;
  padding: clamp(22px, 3vw, 34px);
}

.profile-story-card {
  padding: clamp(24px, 4vw, 46px);
  box-shadow: 12px 12px 0 var(--teal);
}

.profile-detail-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.profile-detail-list p {
  margin: 0;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--teal-soft);
  border: 2px solid rgba(18, 60, 73, 0.28);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.profile-products-under-details {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 2px solid rgba(18, 60, 73, 0.18);
}

.profile-products-under-details .section-kicker {
  margin-bottom: 14px;
}

.profile-products-under-details .profile-product-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 300px;
  margin-inline: auto;
}

.profile-products-under-details .profile-product-card {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.profile-products-under-details .profile-product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 12px;
}

.profile-story-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 800;
}

.profile-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 210px));
  justify-content: center;
  gap: clamp(14px, 2.4vw, 24px);
}

.profile-product-card {
  display: grid;
  gap: 10px;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 223, 0.9)),
    repeating-linear-gradient(-18deg, rgba(25, 180, 165, 0.08) 0 12px, transparent 12px 26px);
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: 7px 7px 0 var(--gold);
}

.profile-product-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #98ded8;
  border: 2px solid var(--ink);
  border-radius: 16px;
}

.profile-product-card span {
  display: inline-block;
  margin-bottom: 3px;
  color: var(--teal-deep);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-product-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Patua One", Georgia, serif;
  font-size: clamp(20px, 2.1vw, 25px);
  font-weight: 400;
  line-height: 1;
}

.competitors-thanks {
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 214, 66, 0.54), transparent 19rem),
    linear-gradient(135deg, var(--cream-2), var(--teal-soft));
}

.competitor-poster-card img {
  object-position: top center;
}

.canna-exhibitor-card {
  box-shadow: -12px 12px 0 var(--gold);
}

.trophy-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(25, 180, 165, 0.3), transparent 18rem),
    linear-gradient(135deg, var(--cream), var(--cream-2));
}

.trophy-collage {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
}

.trophy-collage figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: clamp(440px, 56vw, 760px);
  display: grid;
  place-items: end center;
  padding: clamp(20px, 3vw, 34px);
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 36px;
  box-shadow: 12px 12px 0 var(--teal);
}

.trophy-collage figure:nth-child(2) {
  background: var(--gold);
  box-shadow: 12px 12px 0 var(--teal-deep);
}

.trophy-collage img {
  width: min(78%, 430px);
  max-height: 680px;
  object-fit: contain;
  filter: drop-shadow(0 22px 20px rgba(18, 60, 73, 0.18));
}

.trophy-collage figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 9px 12px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-placeholders {
  background:
    radial-gradient(circle at 88% 12%, rgba(197, 60, 173, 0.12), transparent 18rem),
    linear-gradient(135deg, var(--teal-soft), var(--cream));
}

.archive-year-card {
  min-height: 290px;
}

.placeholder-card-grid {
  margin-top: clamp(24px, 4vw, 42px);
}

.profile-section {
  background:
    radial-gradient(circle at 92% 20%, rgba(255, 214, 66, 0.55), transparent 18rem),
    linear-gradient(135deg, var(--cream-2), var(--teal-soft));
}

.profile-callout {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
  padding: clamp(26px, 5vw, 50px);
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 34px;
  box-shadow: 14px 14px 0 var(--gold);
}

.profile-callout::before {
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 190px;
  aspect-ratio: 1;
  content: "";
  background: var(--teal);
  border: 22px solid rgba(255, 214, 66, 0.72);
  border-radius: 50%;
}

.photo-placeholder {
  min-height: clamp(250px, 26vw, 360px);
  display: grid;
  align-content: space-between;
  padding: clamp(20px, 3vw, 30px);
  background:
    linear-gradient(135deg, rgba(255, 214, 66, 0.82), rgba(25, 180, 165, 0.28)),
    repeating-linear-gradient(-18deg, rgba(255, 255, 255, 0.54) 0 12px, rgba(255, 255, 255, 0.12) 12px 24px);
  box-shadow: 10px 10px 0 rgba(25, 180, 165, 0.45);
}

.photo-placeholder::before {
  width: 74px;
  aspect-ratio: 1;
  content: "";
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 50%;
  box-shadow: 6px 6px 0 var(--gold);
}

.photo-placeholder span,
.photo-placeholder figcaption {
  position: relative;
  z-index: 1;
}

.photo-placeholder span {
  max-width: 11ch;
  color: var(--ink);
  font-family: "Patua One", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.photo-placeholder figcaption {
  margin: 18px 0 0;
  width: fit-content;
  padding: 8px 12px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-grid img {
  width: 100%;
  overflow: hidden;
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 28px;
  box-shadow: 9px 9px 0 rgba(25, 180, 165, 0.45);
  transition: transform 500ms ease, filter 500ms ease, box-shadow 500ms ease;
}

.square-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.square-grid img:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.brand-grid {
  align-items: start;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 0;
}

.brand-grid img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
}

.brand-grid img:nth-child(2) {
  margin-top: 0;
}

.brand-showcase {
  padding: clamp(18px, 3vw, 30px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 247, 219, 0.92)),
    radial-gradient(circle at 88% 18%, rgba(255, 214, 66, 0.3), transparent 18rem);
  border: 3px solid var(--ink);
  border-radius: 30px;
  box-shadow: 10px 10px 0 rgba(25, 180, 165, 0.34);
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 32px 18px;
  color: var(--ink);
  background: var(--cream);
  border-top: 3px solid var(--gold);
  font-weight: 900;
}

.site-footer img {
  width: 34px;
  height: 34px;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

@keyframes blob-wobble {
  0%, 100% {
    border-radius: 42% 58% 52% 48% / 56% 44% 58% 42%;
    transform: rotate(-2deg) scale(1);
  }
  50% {
    border-radius: 56% 44% 40% 60% / 44% 60% 40% 56%;
    transform: rotate(3deg) scale(1.03);
  }
}

@keyframes float-a {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-16px); }
}

@keyframes float-b {
  0%, 100% { transform: rotate(11deg) translateY(0); }
  50% { transform: rotate(15deg) translateY(-14px); }
}

@keyframes float-c {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-12deg) translateY(14px); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

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

  .nav-links {
    justify-content: flex-start;
    gap: 8px 10px;
    font-size: 12px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 42px;
    min-height: auto;
  }

  .hero-stage {
    justify-self: center;
    max-width: 680px;
    min-height: 560px;
  }

  .section-head,
  .feature-grid,
  .two-column,
  .thanks-grid,
  .schedule-grid,
  .lp-grid,
  .history-grid,
  .photo-placeholder-grid,
  .ticket-card,
  .archive-feature,
  .trophy-collage,
  .profile-callout {
    grid-template-columns: 1fr;
  }

  .archive-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .archive-hero-art {
    min-height: 650px;
  }

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

  .archive-year-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .archive-winner-grid-2024 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .standings-grid,
  .kc2022-photo-grid {
    grid-template-columns: 1fr;
  }

  .winner-reel .archive-reel-track {
    grid-auto-columns: minmax(280px, 68%);
  }

  .archive-reel-track {
    grid-auto-columns: minmax(220px, 42%);
  }

  .square-grid img:first-child {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .brand img {
    width: 206px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    font-size: 10.5px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(42px, 12vw, 48px);
    line-height: 1.02;
  }

  .karma-page .hero h1 {
    max-width: none;
    font-size: clamp(44px, 13vw, 54px);
    white-space: nowrap;
  }

  .hero-copy,
  .hero-lead {
    width: min(100%, 260px);
    max-width: 260px;
  }

  .hero-copy {
    justify-self: center;
  }

  .hero .eyebrow {
    max-width: 24ch;
    letter-spacing: 0.11em;
    line-height: 1.35;
  }

  .stat-strip {
    width: min(100%, 340px);
    max-width: 340px;
  }

  .hero-stage {
    min-height: 430px;
  }

  .stage-trophy {
    width: min(72%, 320px);
  }

  .stage-bud-one {
    width: 28%;
    left: 0;
  }

  .stage-bud-two {
    width: 27%;
    right: 0;
  }

  .stage-tip {
    width: 18%;
  }

  .stat-strip,
  .image-grid,
  .square-grid,
  .product-ribbon,
  .date-pair,
  .year-selector,
  .exhibitor-gallery,
  .standings-grid,
  .kc2022-photo-grid {
    grid-template-columns: 1fr;
  }

  .kc2022-photo-grid figure:nth-child(n) {
    transform: none;
  }

  .archive-year-menu {
    grid-template-columns: minmax(0, 300px);
    justify-content: center;
  }

  .event-highlight {
    width: min(100%, 260px);
    max-width: 260px;
  }

  .product-ribbon img {
    max-height: 250px;
  }

  .split-heading {
    max-width: 9ch;
    font-size: clamp(40px, 11.5vw, 52px);
    line-height: 1;
  }

  .split-heading strong {
    text-shadow: 2px 2px 0 var(--gold);
  }

  .media-card img {
    min-height: 280px;
  }

  .judge-art {
    min-height: 360px;
  }

  .archive-hero-art {
    min-height: 430px;
  }

  .archive-hero-art::before {
    inset: 8% -8% 2% 10%;
  }

  .archive-roster-card {
    right: 3%;
    bottom: 9%;
    width: min(44%, 160px);
    border-width: 3px;
    border-radius: 20px;
  }

  .archive-hero-stack {
    min-height: 500px;
  }

  .archive-stack-card {
    width: min(58%, 190px);
    border-width: 3px;
    border-radius: 22px;
    box-shadow: 8px 8px 0 var(--gold);
  }

  .stack-card-one {
    right: 2%;
    top: 6%;
  }

  .stack-card-two {
    left: 0;
    top: 30%;
  }

  .stack-card-three {
    right: 8%;
    bottom: 5%;
    box-shadow: 8px 8px 0 var(--teal);
  }

  .archive-trophy {
    width: min(45%, 170px);
  }

  .trophy-white {
    left: 0;
    bottom: 6%;
  }

  .trophy-yellow {
    right: 7%;
    top: 4%;
  }

  .year-selector a {
    min-height: 74px;
  }

  .archive-year-menu {
    gap: 28px 14px;
  }

  .archive-year-menu a {
    width: auto;
    padding: 10px;
    border-width: 3px;
    border-radius: 10px 20px 22px 22px;
    box-shadow: 7px 7px 0 var(--gold);
    transform: none;
  }

  .archive-year-menu a::before {
    left: -3px;
    top: -25px;
    width: min(54%, 136px);
    height: 34px;
    border-width: 3px;
  }

  .archive-year-menu a:nth-child(n),
  .archive-year-menu a:hover {
    transform: none;
  }

  .archive-year-menu a:hover {
    box-shadow: 7px 7px 0 var(--teal);
  }

  .archive-year-menu strong {
    font-size: clamp(30px, 10vw, 40px);
  }

  .event-details-card {
    padding: 26px;
    border-width: 3px;
    border-radius: 28px;
    box-shadow: 8px 8px 0 var(--teal);
  }

  .archive-winner-grid-2024 {
    grid-template-columns: 1fr;
  }

  .archive-winner-grid-2024 img:nth-child(n) {
    margin-top: 0;
  }

  .winner-reel .archive-reel-track {
    grid-auto-columns: minmax(260px, 88%);
  }

  .archive-reel {
    padding: 14px;
    border-width: 3px;
    border-radius: 28px;
    box-shadow: 8px 8px 0 var(--gold);
  }

  .archive-reel-controls {
    justify-content: flex-start;
  }

  .archive-reel-track {
    grid-auto-columns: minmax(240px, 86%);
    gap: 14px;
    padding-bottom: 14px;
  }

  .archive-reel-card img {
    border-width: 3px;
    border-radius: 24px;
    box-shadow: 7px 7px 0 var(--teal);
  }

  .profile-callout {
    padding: 26px;
    border-width: 3px;
    border-radius: 28px;
    box-shadow: 8px 8px 0 var(--gold);
  }

  .exhibitor-gallery img,
  .trophy-collage figure {
    border-width: 3px;
    border-radius: 28px;
    box-shadow: 8px 8px 0 var(--gold);
  }

  .exhibitor-gallery img:nth-child(n) {
    margin-top: 0;
  }

  .trophy-collage figure {
    min-height: 420px;
  }

  .brand-grid img:nth-child(2) {
    margin-top: 0;
  }

  .section {
    padding-inline: 18px;
  }

  .inner,
  .stat-strip {
    width: 100%;
    max-width: 354px;
  }

  .hero-copy,
  .hero-lead,
  .event-highlight {
    width: 100%;
    max-width: 260px;
  }

  .karma-page .hero-copy,
  .karma-page .hero-lead,
  .karma-page .event-highlight {
    max-width: 320px;
  }

  .karma-page .hero-copy {
    justify-self: start;
  }

  .lp-card,
  .date-card,
  .sponsor-copy,
  .ticket-card,
  .history-card,
  .photo-placeholder,
  .event-details-card,
  .profile-callout {
    border-width: 3px;
    border-radius: 28px;
    box-shadow: 8px 8px 0 var(--gold);
  }

  .lp-card:nth-child(2),
  .history-card:nth-child(2) {
    box-shadow: 8px 8px 0 var(--teal);
  }

  .lp-card,
  .history-card,
  .ticket-card,
  .sponsor-copy,
  .event-details-card,
  .profile-callout {
    padding: 26px;
  }

  .profile-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .profile-hero-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-hero-gallery img:nth-child(n) {
    transform: none;
  }

  .profile-layout {
    grid-template-columns: 1fr;
  }

  .profile-facts-card {
    position: static;
  }

  .lp-card p,
  .history-card p,
  .date-card p,
  .ticket-copy p,
  .sponsor-copy p,
  .event-details-card p,
  .event-details-card dd,
  .lead {
    overflow-wrap: break-word;
    word-break: normal;
  }

  .lp-card .button,
  .ticket-card .button,
  .sponsor-copy .button {
    width: 100%;
  }

  .category-copy {
    align-items: flex-start;
    flex-direction: column;
  }

  .finalist-category-reel .archive-reel-track {
    grid-auto-columns: minmax(240px, 86%);
  }

  .profile-link-grid a {
    width: 100%;
    justify-content: center;
  }

  .profile-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .profile-product-card {
    padding: 8px;
    border-radius: 18px;
    box-shadow: 5px 5px 0 var(--gold);
  }

  .profile-product-card h3 {
    font-size: clamp(18px, 6vw, 22px);
  }
}
