:root {
  --sky: #68c1ec;
  --red: #f8493a;
  --yellow: #e6db3c;
  --blue: #00469f;
  --ink: #11111b;
  --paper: #fffdf2;
  --white: #ffffff;
  --soft: rgba(17, 17, 27, 0.1);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--yellow);
  font-family: "Inter", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

.construction-body {
  min-height: 100svh;
  overflow-x: hidden;
  background: var(--yellow);
}

a {
  color: inherit;
  text-decoration: none;
}

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

[hidden] {
  display: none !important;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(16px, 4vw, 42px);
  background: var(--yellow);
  transition: background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(230, 219, 60, 0.72);
  box-shadow: 0 14px 40px rgba(17, 17, 27, 0.12);
  backdrop-filter: blur(18px) saturate(1.25);
}

.brand {
  width: clamp(126px, 13vw, 170px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.main-nav a {
  color: var(--ink);
  border-radius: 14px;
  padding: 13px 16px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.42);
  outline: none;
}

.main-nav .nav-cta {
  color: var(--yellow);
  background: var(--ink);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  color: var(--ink);
  background: var(--sky);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 5px 0 rgba(17, 17, 27, 0.14);
  padding: 11px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 4px 0;
  border-radius: 99px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 170px clamp(18px, 4vw, 56px) 70px;
  text-align: center;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(92px, 14vw, 168px);
  background: var(--red);
  border-radius: 50% 50% 0 0 / 38% 38% 0 0;
  transform: scaleX(1.16) translateY(46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(1040px, 100%);
}

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

.nowrap {
  white-space: nowrap;
}

h1,
h2,
h3,
.hero-claim,
.quick-info strong,
.pillars strong {
  font-family: "Archivo Black", Impact, sans-serif;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 11ch;
  margin: 18px 0 18px;
  font-size: clamp(3.9rem, 11vw, 8.6rem);
}

.hero-title {
  max-width: 11ch;
  margin: 18px 0 18px;
  font-size: clamp(3.9rem, 11vw, 8.6rem);
}

.title-word,
.title-letters {
  display: block;
  overflow: hidden;
}

.title-rise {
  animation: titleRise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.title-rise-delay {
  animation-delay: 140ms;
}

.title-letters {
  display: flex;
  justify-content: center;
}

.title-letters span {
  display: inline-block;
  animation: letterIn 540ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.title-letters span:nth-child(1) {
  animation-delay: 360ms;
}

.title-letters span:nth-child(2) {
  animation-delay: 430ms;
}

.title-letters span:nth-child(3) {
  animation-delay: 500ms;
}

.title-letters span:nth-child(4) {
  animation-delay: 570ms;
}

.title-letters span:nth-child(5) {
  animation-delay: 640ms;
}

@keyframes titleRise {
  from {
    opacity: 0;
    transform: translateY(110%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes letterIn {
  from {
    opacity: 0;
    transform: translateY(0.8em) rotate(4deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 7vw, 6.6rem);
}

h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.3rem);
}

.hero-copy {
  max-width: 54ch;
  margin-bottom: 22px;
  color: rgba(17, 17, 27, 0.58);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.24;
}

.hero-claim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin: 0 0 24px;
  border-radius: 999px;
  color: var(--yellow);
  background: var(--blue);
  font-size: clamp(1.15rem, 2.7vw, 2.2rem);
  padding: 10px 24px;
  transform: rotate(-2deg);
}

.photo-placeholder {
  width: min(760px, 88vw);
  aspect-ratio: 16 / 8.4;
  overflow: hidden;
  margin: 8px auto 26px;
  border: 4px solid var(--ink);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(-1.4deg);
}

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

.hero-actions,
.join-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 7px 0 var(--ink);
  font-weight: 900;
  padding: 14px 22px;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button-label {
  display: inline-block;
  transition: transform 180ms ease;
}

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

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

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

.button.secondary {
  background: var(--sky);
}

.season-alert {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  z-index: 30;
  width: min(390px, calc(100vw - 28px));
  border: 4px solid var(--ink);
  border-radius: 24px;
  background: var(--yellow);
  box-shadow: 9px 9px 0 var(--ink);
  padding: 20px 54px 20px 20px;
  text-align: left;
  overflow: hidden;
  transform: translateY(28px) rotate(1deg) scale(0.96);
  opacity: 0;
  transition: opacity 240ms ease, transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.season-alert.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(1deg) scale(1);
}

.season-alert::before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: -22px;
  width: 152px;
  height: 132px;
  background: rgba(17, 17, 27, 0.14);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.season-alert::after {
  content: "!";
  position: absolute;
  right: 69px;
  bottom: 4px;
  color: rgba(17, 17, 27, 0.14);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 5.4rem;
  line-height: 1;
  pointer-events: none;
}

.season-alert > * {
  position: relative;
  z-index: 1;
}

.season-alert-kicker {
  width: max-content;
  max-width: 100%;
  margin: 0 0 8px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--sky);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  padding: 6px 10px;
  text-transform: uppercase;
}

.season-alert strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.season-alert p:not(.season-alert-kicker) {
  margin: 0 0 12px;
  color: rgba(17, 17, 27, 0.7);
  font-weight: 800;
  line-height: 1.2;
}

.season-alert a {
  display: inline-flex;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  padding: 9px 13px;
}

.season-alert-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.quick-info {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 4px solid var(--ink);
  background: var(--paper);
}

section[id] {
  scroll-margin-top: 112px;
}

.quick-info article {
  min-height: 130px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 26px clamp(18px, 4vw, 54px);
  border-right: 4px solid var(--ink);
}

.quick-info article:last-child {
  border-right: 0;
}

.quick-info span,
.section-kicker {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-info strong {
  font-size: clamp(1.5rem, 3vw, 2.8rem);
}

.section {
  position: relative;
  z-index: 3;
  border-top: 4px solid var(--ink);
  padding: clamp(70px, 10vw, 126px) clamp(18px, 5vw, 72px);
}

.intro-section,
.style-section {
  background: var(--paper);
}

.intro-section {
  z-index: 3;
}

.saturday-section {
  z-index: 4;
  background: var(--yellow);
}

.intro-grid,
.section-heading,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.intro-grid p,
.section-heading p,
.contact-copy p,
.join-inner p {
  color: rgba(17, 17, 27, 0.62);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 600;
  line-height: 1.34;
}

.saturday-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.saturday-flow article {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  display: grid;
  align-content: space-between;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--ink);
  padding: 22px;
}

.saturday-flow article::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 122px;
  height: 122px;
  border: 14px solid currentColor;
  border-radius: 50%;
  opacity: 0.1;
}

.saturday-flow article:nth-child(2) {
  background: var(--sky);
}

.saturday-flow article:nth-child(3) {
  color: var(--white);
  background: var(--blue);
}

.saturday-flow article:nth-child(4) {
  background: var(--white);
}

.saturday-flow article:nth-child(5) {
  color: var(--white);
  background: var(--red);
}

.saturday-flow .saturday-extra {
  grid-column: 2 / span 3;
  min-height: 185px;
  color: var(--white);
  background: var(--blue);
}

.saturday-flow .saturday-extra::after {
  border-radius: 22px;
  transform: rotate(-8deg);
}

.saturday-flow span,
.saturday-flow strong,
.saturday-flow p {
  position: relative;
  z-index: 1;
}

.saturday-flow span {
  width: max-content;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 10px;
}

.saturday-flow strong {
  display: block;
  margin: 34px 0 10px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.45rem, 2.1vw, 2.25rem);
  line-height: 0.98;
}

.saturday-flow p {
  margin: 0;
  color: rgba(17, 17, 27, 0.66);
  font-weight: 800;
  line-height: 1.22;
}

.saturday-flow article:nth-child(3) p,
.saturday-flow article:nth-child(5) p,
.saturday-flow .saturday-extra p {
  color: rgba(255, 255, 255, 0.78);
}

.sections-band {
  z-index: 5;
  background: var(--blue);
}

.sections-band .section-kicker,
.sections-band h2,
.sections-band .section-heading p {
  color: var(--white);
}

.age-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.age-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 var(--ink);
  padding: 28px;
}

.age-card p {
  width: max-content;
  margin-bottom: 40px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  padding: 8px 12px;
}

.age-card span {
  color: rgba(17, 17, 27, 0.68);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.28;
}

.age-card.chiqui {
  background: var(--yellow);
}

.age-card.preas {
  background: var(--sky);
}

.age-card.jovenes {
  background: var(--red);
}

.age-card.jovenes span {
  color: rgba(255, 255, 255, 0.86);
}

.style-section {
  position: relative;
  z-index: 6;
}

.section-heading.compact {
  margin-bottom: 46px;
}

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

.pillars article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
  padding: 26px;
}

.pillars strong,
.pillars span {
  position: relative;
  z-index: 1;
}

.pillar-icon {
  position: absolute;
  right: -18px;
  bottom: -20px;
  width: 152px;
  height: 152px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  opacity: 0.14;
}

.pillars article:nth-child(2) {
  background: var(--sky);
}

.pillars article:nth-child(3) {
  background: var(--yellow);
}

.pillars article:nth-child(4) {
  color: var(--white);
  background: var(--blue);
}

.pillars strong {
  display: block;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  margin-bottom: 12px;
}

.pillars span {
  color: rgba(17, 17, 27, 0.62);
  font-size: 1.1rem;
  font-weight: 800;
}

.pillars article:nth-child(4) span {
  color: rgba(255, 255, 255, 0.76);
}

.join-section {
  position: relative;
  z-index: 7;
  border-top: 4px solid var(--ink);
  padding: clamp(70px, 10vw, 126px) clamp(18px, 5vw, 72px);
  background: var(--red);
}

.join-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  color: var(--white);
}

.join-actions {
  grid-column: 1 / -1;
}

.join-inner .section-kicker,
.join-inner p {
  color: rgba(255, 255, 255, 0.82);
}

.join-inner h2 {
  max-width: 10.5ch;
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
}

.join-inner .button.primary {
  color: var(--ink);
  background: var(--white);
}

.join-photo {
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(1.2deg);
}

.join-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-section {
  z-index: 8;
  min-height: 100svh;
  background: var(--paper);
}

.contact-copy h2 {
  font-size: clamp(2.4rem, 5.5vw, 5.2rem);
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a {
  display: block;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
  color: var(--blue);
  font-weight: 900;
  overflow-wrap: anywhere;
  padding: 20px;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  background: var(--sky);
  outline: none;
}

.map-card {
  position: relative;
  overflow: hidden;
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  min-height: 190px;
  align-content: end;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--yellow);
  box-shadow: 8px 8px 0 var(--ink);
  color: var(--ink);
  padding: 24px;
}

.map-card::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -36px;
  width: 170px;
  height: 170px;
  border: 14px solid rgba(17, 17, 27, 0.13);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-card span,
.map-card strong,
.map-card p {
  position: relative;
  z-index: 1;
}

.map-card span {
  width: max-content;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 7px 10px;
  text-transform: uppercase;
}

.map-card strong {
  display: block;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.95;
}

.map-card p {
  max-width: 54ch;
  margin: 0;
  color: rgba(17, 17, 27, 0.66);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 800;
}

.social-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.social-grid a {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--ink);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  line-height: 0.98;
  padding: 18px;
}

.social-grid a:nth-child(2) {
  background: var(--sky);
}

.social-grid a:nth-child(3) {
  background: var(--red);
}

.social-grid a:nth-child(4) {
  color: var(--white);
  background: var(--blue);
}

.social-grid span {
  width: max-content;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 7px 10px;
}

.closing-band {
  position: relative;
  z-index: 9;
  display: grid;
  justify-items: center;
  border-top: 4px solid var(--ink);
  background: var(--blue);
  color: var(--white);
  padding: clamp(54px, 8vw, 90px) clamp(18px, 5vw, 72px);
  text-align: center;
}

.closing-band p {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 900;
  text-transform: uppercase;
}

.closing-band strong {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.shop-hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 142px clamp(18px, 5vw, 72px) 80px;
  text-align: center;
}

.shop-locked .site-footer {
  display: none;
}

.shop-gate {
  height: 100svh;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(8px, 1.4vh, 14px);
  padding: 112px clamp(18px, 5vw, 72px) 28px;
  overflow: hidden;
  text-align: center;
}

.shop-gate .construction-logo {
  width: clamp(98px, 8vw, 118px);
}

.shop-gate-panel {
  display: grid;
  justify-items: center;
  gap: clamp(8px, 1.4vh, 14px);
  width: min(820px, 100%);
}

.shop-gate-copy {
  display: grid;
  justify-items: center;
  width: min(720px, 100%);
}

.shop-gate-copy h1 {
  max-width: 12ch;
  margin: 0 auto 8px;
  font-size: clamp(2.55rem, 5vw, 4.7rem);
}

.shop-gate-copy p:not(.section-kicker):not(.shop-password-error) {
  max-width: 58ch;
  margin: 0 auto 12px;
  color: rgba(17, 17, 27, 0.64);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 800;
  line-height: 1.24;
}

.shop-gate .construction-art-wrap {
  width: min(18vh, 190px);
}

.shop-password {
  display: grid;
  gap: 10px;
  width: min(520px, 100%);
  margin-top: 0;
  padding: 14px;
  border: 4px solid var(--ink);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.shop-password label {
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.shop-password-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.shop-password input {
  width: 100%;
  min-height: 56px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  padding: 0 18px;
  outline: none;
}

.shop-password input:focus {
  box-shadow: 0 0 0 4px rgba(104, 193, 236, 0.42);
}

.shop-password-error {
  margin: 0;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: left;
}

.shop-content {
  display: grid;
  justify-items: center;
  width: min(1320px, 100%);
}

.shop-title {
  display: grid;
  justify-items: center;
  margin-bottom: 18px;
  overflow: hidden;
}

.shop-title.is-visible {
  transform: none;
}

.shop-title h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.8rem, 10vw, 8.2rem);
}

.shop-title-word {
  display: block;
  overflow: hidden;
}

.coin-letter {
  display: inline-grid;
  width: 0.82em;
  height: 0.82em;
  align-items: center;
  justify-items: center;
  border: 0.06em solid transparent;
  border-radius: 50%;
  line-height: 0.82;
  transform-origin: center;
  animation: coinToLetter 980ms 340ms cubic-bezier(0.18, 0.8, 0.2, 1) both;
}

@keyframes coinToLetter {
  0% {
    color: transparent;
    background: var(--yellow);
    border-color: var(--ink);
    box-shadow: 0.06em 0.06em 0 var(--ink);
    transform: translateY(0.5em) rotateY(0deg) scale(0.82);
  }

  62% {
    color: transparent;
    background: var(--yellow);
    border-color: var(--ink);
    box-shadow: 0.06em 0.06em 0 var(--ink);
    transform: translateY(-0.05em) rotateY(720deg) scale(1.04);
  }

  100% {
    color: inherit;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    transform: translateY(0) rotateY(720deg) scale(1);
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1320px, 100%);
  margin: 24px 0 36px;
  text-align: left;
}

.product-card {
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
}

.product-card:nth-child(1) {
  transform: rotate(-1deg);
}

.product-card:nth-child(2) {
  transform: rotate(1deg);
}

.product-card:nth-child(3) {
  transform: rotate(-0.6deg);
}

.product-image {
  min-height: 260px;
  display: grid;
  place-items: center;
  border-bottom: 4px solid var(--ink);
  overflow: hidden;
}

.product-image-large {
  min-height: clamp(420px, 54vw, 680px);
  border: 0;
  border-radius: 28px;
}

.product-image span {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  text-transform: uppercase;
}

.product-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 38%;
}

.product-pack-photo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--ink);
}

.product-pack-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-pack-photo img:first-child {
  border-right: 4px solid var(--ink);
  object-position: center 42%;
}

.product-pack-photo img:last-child {
  object-position: center 34%;
}

.product-shirt {
  color: var(--yellow);
  background:
    linear-gradient(var(--blue) 0 0) center 54% / 46% 66% no-repeat,
    radial-gradient(circle at 50% 24%, var(--sky) 0 12%, transparent 13%),
    var(--red);
}

.product-hoodie {
  color: var(--blue);
  background:
    radial-gradient(circle at 50% 28%, var(--paper) 0 12%, transparent 13%),
    linear-gradient(var(--yellow) 0 0) center 60% / 52% 62% no-repeat,
    var(--sky);
}

.product-pack {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(124, 58, 168, 0.92) 0 49%, transparent 50%) left / 50% 100% no-repeat,
    linear-gradient(135deg, transparent 0 49%, rgba(47, 170, 101, 0.9) 50%) right / 50% 100% no-repeat,
    var(--yellow);
}

.product-pack span {
  max-width: 8ch;
  color: var(--white);
  font-size: clamp(1.7rem, 3.1vw, 3.25rem);
  line-height: 0.95;
  text-align: center;
}

.product-info {
  padding: 24px;
}

.product-tag {
  width: max-content;
  margin-bottom: 14px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 7px 10px;
  text-transform: uppercase;
}

.product-info h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.product-info p:not(.product-tag) {
  color: rgba(17, 17, 27, 0.62);
  font-weight: 700;
  line-height: 1.32;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.product-footer strong {
  white-space: nowrap;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.product-footer .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.product-detail {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: 176px clamp(18px, 5vw, 72px) 80px;
}

.product-preview,
.product-form {
  border: 4px solid var(--ink);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
}

.product-preview {
  overflow: hidden;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: var(--ink);
}

.product-gallery img,
.gallery-placeholder {
  width: 100%;
  height: clamp(280px, 31vw, 430px);
  border: 0;
  background-color: var(--paper);
  object-fit: cover;
  object-position: center;
}

.product-gallery img:nth-child(odd),
.gallery-placeholder:nth-child(odd) {
  border-right: 4px solid var(--ink);
}

.pack-gallery img:nth-child(-n + 2),
.pack-gallery .gallery-placeholder:nth-child(-n + 2) {
  border-bottom: 4px solid var(--ink);
}

.gallery-placeholder {
  display: grid;
  place-items: center;
  padding: 20px;
}

.gallery-placeholder span {
  max-width: 8ch;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3.7rem);
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.product-form {
  padding: clamp(22px, 4vw, 42px);
}

.product-form h1 {
  max-width: 10ch;
  margin: 10px 0 18px;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.product-form p {
  color: rgba(17, 17, 27, 0.62);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.34;
}

.back-link {
  display: inline-flex;
  width: max-content;
  margin-bottom: 24px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--sky);
  box-shadow: 0 5px 0 var(--ink);
  font-weight: 900;
  padding: 9px 13px;
}

.detail-price {
  display: block;
  margin: 24px 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

fieldset {
  border: 0;
  margin: 0 0 24px;
  padding: 0;
}

legend {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

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

.option-grid input,
.color-options input {
  position: absolute;
  opacity: 0;
}

.option-grid span,
.color-options span {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 5px 0 var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.option-grid input:checked + span,
.color-options input:checked + span {
  background: var(--yellow);
  transform: translateY(3px);
  box-shadow: 0 2px 0 var(--ink);
}

.color-options {
  display: grid;
  gap: 10px;
}

.color-options span {
  justify-content: flex-start;
  gap: 12px;
  padding: 0 14px;
}

.color-options span::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--swatch);
}

.selection-summary {
  margin: 24px 0 18px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: var(--sky);
  font-weight: 900;
  padding: 16px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.site-footer img {
  width: 142px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.site-footer span {
  color: var(--red);
  font-size: 1.25em;
}

.construction-page {
  width: 100%;
  height: 100svh;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  justify-items: center;
  align-content: center;
  gap: clamp(8px, 1.5vh, 16px);
  padding: clamp(10px, 2.4vw, 28px);
  overflow: hidden;
  text-align: center;
}

.construction-logo {
  width: clamp(98px, 9vw, 126px);
}

.construction-panel {
  display: contents;
}

.construction-copy h1 {
  max-width: 13ch;
  margin: 0 auto clamp(8px, 1.4vh, 14px);
  font-size: clamp(2.45rem, 5vw, 4.8rem);
}

.construction-copy,
.construction-art-wrap {
  min-width: 0;
}

.construction-copy {
  width: 100%;
  max-width: 100%;
}

.construction-copy p:not(.section-kicker) {
  max-width: 56ch;
  margin: 0 auto;
  color: rgba(17, 17, 27, 0.62);
  font-size: clamp(0.98rem, 1.45vw, 1.2rem);
  font-weight: 800;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.construction-art-wrap {
  width: min(32vh, 320px);
  display: grid;
  place-items: center;
  align-self: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  transform: none;
}

.construction-art {
  width: 100%;
  filter: none;
}

.construction-note {
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  border: 4px solid var(--ink);
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 5px 0 var(--ink);
  color: var(--yellow);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(0.92rem, 1.7vw, 1.25rem);
  line-height: 1;
  padding: 12px 18px;
  text-align: center;
}

.construction-enter {
  animation: constructionIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.construction-panel .construction-enter:nth-child(1) {
  animation-delay: 120ms;
}

.construction-panel .construction-enter:nth-child(2) {
  animation-delay: 240ms;
}

.construction-note.construction-enter {
  animation-delay: 360ms;
}

@keyframes constructionIn {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 86px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 4px solid var(--ink);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 8px 8px 0 var(--ink);
  }

  .main-nav a {
    color: var(--ink);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 15px;
  }

  .hero {
    padding-top: 118px;
  }

  .quick-info,
  .intro-grid,
  .section-heading,
  .contact-section,
  .join-inner,
  .construction-panel {
    grid-template-columns: 1fr;
  }

  .quick-info article {
    border-right: 0;
    border-bottom: 4px solid var(--ink);
  }

  .quick-info article:last-child {
    border-bottom: 0;
  }

  .age-grid,
  .pillars,
  .saturday-flow,
  .product-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .saturday-flow article {
    min-height: 205px;
  }

  .saturday-flow .saturday-extra {
    grid-column: auto;
  }

  .age-card {
    min-height: 255px;
  }

  .join-actions {
    justify-content: flex-start;
  }

  .section,
  .join-section {
    position: relative;
    min-height: auto;
  }

  .join-actions {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px;
  }

  .brand {
    width: 116px;
  }

  h1 {
    font-size: clamp(3.3rem, 16vw, 4.7rem);
  }

  .hero-title {
    font-size: clamp(3.3rem, 16vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .photo-placeholder {
    width: min(360px, 94vw);
    aspect-ratio: 1.25;
  }

  .button,
  .hero-actions,
  .join-actions {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .construction-page {
    align-content: center;
    width: auto;
    padding: 14px 20px;
  }

  .construction-panel {
    display: contents;
    width: auto;
    max-width: none;
    overflow: hidden;
  }

  .construction-copy {
    margin-bottom: 0;
  }

  .construction-copy h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.35rem);
  }

  .construction-copy p:not(.section-kicker) {
    width: 100%;
    max-width: 100%;
    font-size: 0.96rem;
  }

  .construction-art-wrap {
    width: min(58vh, 330px);
  }

  .shop-gate {
    padding: 112px 18px 28px;
  }

  .shop-gate-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .shop-gate-copy .nowrap {
    white-space: normal;
  }

  .shop-gate .construction-art-wrap {
    width: min(22vh, 190px);
  }

  .shop-password-row {
    grid-template-columns: 1fr;
  }

  .product-footer {
    align-items: stretch;
    flex-direction: column;
  }

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

@media (max-width: 980px) {
  .product-detail {
    grid-template-columns: 1fr;
    padding-top: 132px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.pop {
  transform: translateY(34px) scale(0.96);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-claim.reveal.is-visible {
  transform: rotate(-2deg) scale(1);
}

.photo-placeholder.reveal.is-visible {
  transform: rotate(-1.4deg) scale(1);
}

.join-photo.reveal.is-visible {
  transform: rotate(1.2deg) scale(1);
}

.product-card:nth-child(1).reveal.is-visible {
  transform: rotate(-1deg) scale(1);
}

.product-card:nth-child(2).reveal.is-visible {
  transform: rotate(1deg) scale(1);
}

.product-card:nth-child(3).reveal.is-visible {
  transform: rotate(-0.6deg) scale(1);
}

.quick-info .reveal:nth-child(2),
.age-grid .reveal:nth-child(2),
.pillars .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.quick-info .reveal:nth-child(3),
.age-grid .reveal:nth-child(3),
.pillars .reveal:nth-child(3) {
  transition-delay: 180ms;
}

.pillars .reveal:nth-child(4) {
  transition-delay: 270ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.pop {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .title-rise,
  .title-letters span,
  .construction-enter {
    animation: none;
  }

  .button,
  .button-label {
    transition: none;
  }
}
