:root {
  --ink: #29112f;
  --deep: #520e59;
  --violet: #8d55c9;
  --pink: #ffb9ff;
  --cream: #e9ffc6;
  --lime: #afe35a;
  --coral: #fb3f58;
  --white: #fffdf8;
  --black: #160919;
  --shadow: 0 24px 70px rgba(47, 8, 53, 0.16);
  --radius: 2rem;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Bricolage Grotesque", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.modal-open,
body.age-pending {
  overflow: hidden;
}

body.age-pending > :not(.age-gate) {
  filter: blur(16px);
  pointer-events: none;
  user-select: none;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--cream);
  color: var(--deep);
  font-weight: 800;
}

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

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 12px 28px rgba(44, 11, 50, 0.2);
}

.button:focus-visible,
.text-link:focus-visible,
.filter:focus-visible,
.strain-card__trigger:focus-visible,
.santo-card:focus-visible,
.menu-toggle:focus-visible,
.modal__close:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.button--primary {
  background: var(--deep);
  color: var(--cream);
}

.button--ghost {
  border-color: var(--deep);
  background: transparent;
  color: var(--deep);
}

.button--dark {
  background: var(--black);
  color: var(--cream);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 2px solid currentColor;
  font-weight: 800;
}

.text-link span {
  font-size: 1.3rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(4px, 4px);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(26, 5, 30, 0.86);
  backdrop-filter: blur(14px);
}

.age-gate[hidden] {
  display: none;
}

.age-gate__card {
  width: min(100%, 520px);
  padding: clamp(1.35rem, 4vw, 2.5rem);
  border: 2px solid var(--deep);
  border-radius: 2rem;
  background: var(--pink);
  box-shadow: 14px 14px 0 var(--lime);
  text-align: center;
}

.age-gate__card img {
  width: 13rem;
  height: 6.8rem;
  margin: -0.75rem auto 0.75rem;
  border-radius: 1.25rem;
  object-fit: cover;
}

.age-gate__card h1 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 1;
}

.age-gate__card > p:not(.eyebrow) {
  max-width: 40ch;
  margin: 1rem auto 1.5rem;
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.age-gate__card small {
  display: block;
  margin-top: 1.25rem;
  opacity: 0.75;
}

.site-header {
  position: fixed;
  top: 1rem;
  right: 1rem;
  left: 1rem;
  z-index: 1000;
  display: flex;
  max-width: var(--max);
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0.55rem 0.65rem 0.55rem 1rem;
  border: 1px solid rgba(82, 14, 89, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 10px 35px rgba(34, 7, 39, 0.1);
  backdrop-filter: blur(16px);
  transition: transform 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.96);
}

.brand {
  display: block;
  width: 152px;
  height: 54px;
  overflow: hidden;
  border-radius: 999px;
  background: #ff3dab;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 150ms ease;
}

.site-nav a:hover {
  background: var(--cream);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--deep);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--cream);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  overflow: hidden;
  padding: 9.5rem max(5vw, calc((100vw - var(--max)) / 2)) 5rem;
  background: var(--coral);
}

.hero::after {
  position: absolute;
  right: -7vw;
  bottom: -13vw;
  width: 45vw;
  height: 25vw;
  border-radius: 50% 50% 0 0;
  background: var(--lime);
  content: "";
  opacity: 0.8;
}

.hero__cloud {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.85;
}

.hero__cloud::before,
.hero__cloud::after {
  position: absolute;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.hero__cloud--one {
  top: 10%;
  left: -5rem;
  width: 14rem;
  height: 8rem;
}

.hero__cloud--one::before {
  top: -3rem;
  left: 4rem;
  width: 9rem;
  height: 9rem;
}

.hero__cloud--one::after {
  top: -1.5rem;
  right: -5rem;
  width: 10rem;
  height: 10rem;
}

.hero__cloud--two {
  right: 21%;
  bottom: 3%;
  width: 9rem;
  height: 6rem;
  background: var(--deep);
}

.hero__content,
.hero__visual {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.7rem, 7.7vw, 8.8rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.hero h1 span {
  color: var(--cream);
}

.hero__lead {
  max-width: 54ch;
  margin: 2rem 0;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.hero__visual {
  justify-self: end;
  width: min(100%, 560px);
}

.hero__photo-wrap {
  overflow: hidden;
  border: 4px solid var(--deep);
  border-radius: 45% 45% 2.25rem 2.25rem;
  box-shadow: 14px 14px 0 var(--pink);
  transform: rotate(2deg);
}

.hero__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 54% center;
}

.hero__stamp {
  position: absolute;
  bottom: -1.5rem;
  left: -3rem;
  display: grid;
  padding: 1.15rem 1.4rem;
  border: 3px solid var(--deep);
  border-radius: 1.5rem;
  background: var(--cream);
  color: var(--deep);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 0.93;
  transform: rotate(-5deg);
}

.hero__badge {
  position: absolute;
  top: 10%;
  right: -1.5rem;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 3px solid var(--deep);
  border-radius: 50%;
  background: var(--lime);
  font-size: 1.45rem;
  font-weight: 800;
  transform: rotate(9deg);
}

.marquee {
  overflow: hidden;
  border-block: 3px solid var(--deep);
  background: var(--cream);
  color: var(--deep);
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem 0;
  animation: marquee 24s linear infinite;
}

.marquee span {
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.marquee i {
  width: 0.8rem;
  height: 0.8rem;
  flex: 0 0 0.8rem;
  border-radius: 50%;
  background: var(--coral);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: clamp(5rem, 9vw, 9rem) max(5vw, calc((100vw - var(--max)) / 2));
}

.section__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section__intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -0.5rem;
}

.section__intro h2,
.santo__intro h2,
.experience__copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(3.25rem, 7vw, 7.2rem);
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.section__intro h2 span,
.santo__intro h2 span,
.experience__copy h2 span,
.contact h2 span {
  color: var(--coral);
}

.brand-story {
  background: var(--white);
}

.brand-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.lead-copy {
  margin-top: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
}

.brand-story__copy > p:not(.lead-copy) {
  max-width: 60ch;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.value-grid div {
  display: grid;
  min-height: 96px;
  padding: 1rem;
  border: 2px solid var(--deep);
  border-radius: 1rem;
  background: var(--cream);
}

.value-grid div:nth-child(2) {
  background: var(--pink);
}

.value-grid div:nth-child(3) {
  background: var(--lime);
}

.value-grid div:nth-child(4) {
  background: var(--coral);
}

.value-grid span {
  font-size: 0.72rem;
  font-weight: 800;
}

.value-grid strong {
  align-self: end;
  font-size: 1.2rem;
}

.brand-story__image {
  position: relative;
  margin: 0;
}

.brand-story__image::before {
  position: absolute;
  top: -1rem;
  right: -1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: -1;
  border: 3px solid var(--deep);
  border-radius: var(--radius);
  background: var(--lime);
  content: "";
}

.brand-story__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
}

.brand-story__image figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--deep);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 700;
}

.strains {
  background: var(--black);
  color: var(--white);
}

.section__intro--light {
  align-items: end;
}

.section__intro--light > p:last-child {
  max-width: 46ch;
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 1.12rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.filter {
  padding: 0.75rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
}

.filter:hover,
.filter.is-active {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--deep);
}

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

.strain-card {
  min-width: 0;
}

.strain-card.is-hidden {
  display: none;
}

.strain-card__trigger {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 1.25rem;
  background: #2c0b32;
  cursor: pointer;
  text-align: left;
  transform: translateZ(0);
}

.strain-card__trigger::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(18, 3, 21, 0.94) 100%);
  content: "";
}

.strain-card img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  transition: transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 300ms ease;
}

.strain-card__trigger:hover img {
  transform: scale(1.05);
  filter: saturate(1.15);
}

.strain-card__overlay {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  display: grid;
  color: var(--white);
}

.strain-card__overlay span {
  color: var(--lime);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.strain-card__overlay strong {
  overflow: hidden;
  font-size: clamp(1.05rem, 1.65vw, 1.45rem);
  line-height: 1;
  text-overflow: ellipsis;
}

.strain-card__overlay em {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  font-style: normal;
  opacity: 0.75;
}

.content-note {
  max-width: 72ch;
  margin: 2rem 0 0;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.78rem;
}

.glitch-story {
  position: relative;
  overflow: hidden;
  background: var(--coral);
  color: var(--deep);
}

.glitch-story::before {
  position: absolute;
  top: -14rem;
  right: -10rem;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: var(--lime);
  content: "";
  opacity: 0.7;
}

.glitch-story__intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.glitch-story__intro h2 {
  max-width: 850px;
  margin: 0;
  color: var(--deep);
  font-size: clamp(3.25rem, 7vw, 7.2rem);
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.glitch-story__intro h2 span {
  color: var(--cream);
}

.glitch-story__intro > p {
  max-width: 42ch;
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.glitch-story__hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 1rem;
}

.glitch-feature {
  overflow: hidden;
  border: 3px solid var(--deep);
  border-radius: 2rem;
  background: var(--black);
  box-shadow: 10px 10px 0 var(--lime);
  color: var(--white);
}

.glitch-feature__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.glitch-feature video,
.glitch-clip video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #09020b;
  object-fit: cover;
}

.glitch-feature__copy {
  padding: 1.35rem 1.5rem 1.6rem;
}

.glitch-feature__copy h3,
.glitch-feature__copy p,
.glitch-clip h3 {
  margin: 0;
}

.glitch-feature__copy h3 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}

.glitch-feature__copy p {
  margin-top: 0.35rem;
  color: rgba(255, 253, 248, 0.7);
}

.glitch-art {
  position: relative;
  min-height: 100%;
}

.glitch-art figure {
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--deep);
  background: var(--deep);
}

.glitch-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glitch-art__cover {
  width: calc(100% - 2.5rem);
  height: 100%;
  border-radius: 2rem;
  transform: rotate(2deg);
}

.glitch-art__closeup {
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  width: 76%;
  aspect-ratio: 16 / 10;
  border-radius: 1.25rem;
  box-shadow: -8px 8px 0 var(--pink);
  transform: rotate(-3deg);
}

.glitch-reel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.glitch-clip {
  overflow: hidden;
  border: 2px solid var(--deep);
  border-radius: 1.25rem;
  background: var(--cream);
}

.glitch-clip > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
}

.glitch-clip span {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--deep);
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 800;
}

.glitch-clip h3 {
  font-size: 1rem;
}

.santo {
  background: var(--deep);
  color: var(--white);
}

.santo__intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 3rem;
  margin-bottom: 4rem;
}

.santo__intro > p {
  max-width: 43ch;
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: 1.15rem;
}

.santo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.santo-card {
  position: relative;
  grid-column: span 2;
  min-height: 330px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 1.5rem;
  background: var(--black);
  cursor: zoom-in;
  text-align: left;
}

.santo-card--wide {
  grid-column: span 3;
}

.santo-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 480ms ease;
}

.santo-card:hover img {
  transform: scale(1.04);
}

.santo-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 3, 24, 0.86));
  content: "";
}

.santo-card span {
  position: absolute;
  right: 1.25rem;
  bottom: 1.1rem;
  left: 1.25rem;
  z-index: 2;
  display: grid;
  color: var(--white);
}

.santo-card small {
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.santo-card strong {
  font-size: 1.3rem;
}

.santo__notice {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 830px;
  margin: 2.5rem auto 0;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.08);
}

.santo__notice span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  font-weight: 900;
}

.santo__notice p {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.8;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  background: var(--cream);
}

.experience__image {
  position: relative;
}

.experience__image::after {
  position: absolute;
  right: -1.25rem;
  bottom: -1.25rem;
  z-index: 0;
  width: 45%;
  height: 45%;
  border-radius: 1.5rem;
  background: var(--coral);
  content: "";
}

.experience__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 3px solid var(--deep);
  border-radius: var(--radius);
  object-fit: cover;
  transform: rotate(-2deg);
}

.experience__copy p:not(.eyebrow) {
  max-width: 42ch;
  margin: 2rem 0;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--pink);
  text-align: center;
}

.contact__shape {
  position: absolute;
  top: -12rem;
  left: 50%;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: var(--lime);
  transform: translateX(-50%);
}

.contact__content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
}

.contact__content > p:not(.eyebrow) {
  max-width: 52ch;
  margin: 2rem auto;
  font-size: 1.15rem;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.contact__actions > span {
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 3rem;
  padding: 3.5rem max(5vw, calc((100vw - var(--max)) / 2)) 2rem;
  background: var(--black);
  color: var(--white);
}

.brand--footer {
  width: 210px;
  height: 80px;
  border-radius: 1.25rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
  font-weight: 700;
}

.site-footer__links a:hover {
  color: var(--lime);
}

.site-footer__bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.site-footer__bottom p {
  margin: 0;
}

.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal[hidden],
.lightbox[hidden] {
  display: none;
}

.modal__backdrop,
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 2, 18, 0.86);
  backdrop-filter: blur(10px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 920px);
  max-height: min(88vh, 780px);
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  overflow: hidden;
  border-radius: 1.75rem;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.modal__panel > img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.modal__content {
  align-self: center;
  padding: clamp(2rem, 6vw, 4rem);
}

.modal__content h2 {
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.modal__strength {
  display: block;
  margin: 1.2rem 0;
  color: var(--coral);
  font-size: 1.65rem;
}

.modal__content small {
  display: block;
  margin-top: 1.5rem;
  opacity: 0.65;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--deep);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox figure {
  position: relative;
  z-index: 1;
  width: min(100%, 1050px);
  margin: 0;
}

.lightbox figure > img {
  width: 100%;
  max-height: 78vh;
  border-radius: 1.5rem;
  object-fit: contain;
  background: var(--black);
}

.lightbox figcaption {
  padding: 0.9rem 1rem;
  color: var(--white);
  text-align: center;
}

/* Interactive ColFlower universe */
.signal-intro {
  position: fixed;
  inset: 0;
  z-index: 9997;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  overflow: hidden;
  background:
    repeating-linear-gradient(0deg, rgba(175, 227, 90, 0.05) 0 1px, transparent 1px 4px),
    radial-gradient(circle at center, #421047, #0c020e 68%);
  color: var(--lime);
}

.signal-intro[hidden] {
  display: none;
}

.signal-intro::before,
.signal-intro::after {
  position: absolute;
  inset: -20%;
  background: linear-gradient(90deg, transparent 48%, rgba(255, 63, 88, 0.15) 50%, transparent 52%);
  content: "";
  animation: signalSweep 1.8s linear infinite;
}

.signal-intro::after {
  animation-direction: reverse;
  transform: rotate(90deg);
}

.signal-intro__skip {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  border: 0;
  background: transparent;
  color: rgba(233, 255, 198, 0.72);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-intro__terminal {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 680px);
  gap: 1.25rem;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid rgba(175, 227, 90, 0.65);
  background: rgba(10, 2, 12, 0.78);
  box-shadow: 0 0 70px rgba(175, 227, 90, 0.18);
}

.signal-intro__terminal span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.signal-intro__terminal strong {
  font-size: clamp(2rem, 7vw, 5rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.signal-intro__bar {
  height: 5px;
  overflow: hidden;
  background: rgba(175, 227, 90, 0.2);
}

.signal-intro__bar i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--lime);
  box-shadow: 0 0 20px var(--lime);
  transition: width 420ms ease;
}

@keyframes signalSweep {
  to { transform: translateX(50%) rotate(8deg); }
}

.site-header {
  max-width: min(1480px, calc(100vw - 2rem));
}

.site-tools {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-tools button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(82, 14, 89, 0.16);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.site-tools button span {
  display: grid;
  min-width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border-radius: 50%;
  background: var(--deep);
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
}

.site-tools button em {
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.site-tools button[aria-pressed="true"] {
  background: var(--deep);
  color: var(--cream);
}

.site-tools button[aria-pressed="true"] span {
  background: var(--coral);
  color: var(--white);
}

.hero__status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__status span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__status i {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(175, 227, 90, 0.24);
  animation: networkPulse 1.5s ease-in-out infinite;
}

@keyframes networkPulse {
  50% { box-shadow: 0 0 0 9px rgba(175, 227, 90, 0); }
}

.passport {
  position: fixed;
  top: 6.5rem;
  right: 1rem;
  z-index: 1500;
  width: min(390px, calc(100vw - 2rem));
  padding: 1.35rem;
  border: 2px solid var(--deep);
  border-radius: 1.5rem;
  background: var(--cream);
  box-shadow: 10px 10px 0 var(--coral), var(--shadow);
}

.passport[hidden] { display: none; }

.passport__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.passport__header span {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.passport__header h2 {
  margin: 0.2rem 0 0;
  font-size: 1.75rem;
  letter-spacing: -0.045em;
  line-height: 1;
}

.passport__header button,
.glitch-guide button {
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 50%;
  background: var(--deep);
  color: var(--cream);
  cursor: pointer;
  font-size: 1.3rem;
}

.passport > p { font-size: 0.88rem; }

.passport__stamps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
  margin: 1.25rem 0;
}

.passport__stamps div {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  color: rgba(41, 17, 47, 0.45);
  text-align: center;
}

.passport__stamps i {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 2px dashed currentColor;
  border-radius: 50%;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
}

.passport__stamps span { font-size: 0.55rem; font-weight: 800; }

.passport__stamps div.is-stamped { color: var(--deep); }
.passport__stamps div.is-stamped i {
  border-style: solid;
  background: var(--pink);
  box-shadow: inset 0 0 0 4px var(--cream);
  transform: rotate(-7deg);
}

.passport__download { width: 100%; }
.passport__download:disabled { cursor: not-allowed; opacity: 0.48; }

.glitch-guide {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1450;
  display: grid;
  width: min(340px, calc(100vw - 2rem));
  grid-template-columns: 94px 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem;
  border: 2px solid var(--lime);
  border-radius: 1.25rem;
  background: var(--black);
  color: var(--cream);
  box-shadow: 0 0 35px rgba(175, 227, 90, 0.32);
}

.glitch-guide[hidden] { display: none; }
.glitch-guide img { width: 94px; height: 68px; border-radius: 0.75rem; object-fit: cover; }
.glitch-guide p { margin: 0; font-size: 0.82rem; font-weight: 700; line-height: 1.3; }
.glitch-guide button { align-self: start; width: 1.75rem; height: 1.75rem; font-size: 1rem; }

.site-toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  z-index: 1700;
  max-width: calc(100vw - 2rem);
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: var(--black);
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 1rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.match-lab {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(175, 227, 90, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(175, 227, 90, 0.07) 1px, transparent 1px),
    var(--black);
  background-size: 32px 32px;
  color: var(--white);
}

.match-lab__intro {
  display: grid;
  max-width: 980px;
  margin-bottom: 3rem;
}

.match-lab__intro h2 {
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 8rem);
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.match-lab__intro h2 span { color: var(--lime); }
.match-lab__intro > p:last-child { max-width: 60ch; color: rgba(255, 253, 248, 0.7); }

.match-lab__console {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(175, 227, 90, 0.36);
  border-radius: 2rem;
  background: rgba(22, 9, 25, 0.78);
  box-shadow: 0 0 80px rgba(82, 14, 89, 0.35);
}

.lab-question {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.035);
}

.lab-question > span {
  color: var(--lime);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.lab-question h3 { margin: 0.55rem 0 1.1rem; font-size: 1.15rem; }
.lab-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }

.lab-options button {
  min-height: 3rem;
  padding: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.8rem;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
}

.lab-options button:hover,
.lab-options button.is-selected {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--deep);
}

.lab-submit {
  display: flex;
  min-height: 4rem;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  border: 0;
  border-radius: 1rem;
  background: var(--coral);
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lab-submit i { font-size: 1.6rem; font-style: normal; }
.lab-submit:disabled { cursor: not-allowed; filter: grayscale(1); opacity: 0.4; }

.lab-result {
  display: grid;
  width: min(100%, 900px);
  grid-template-columns: minmax(220px, 0.7fr) minmax(300px, 1.3fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  margin: 2rem auto 0;
  padding: 1rem;
  border: 2px solid var(--lime);
  border-radius: 2rem;
  background: var(--cream);
  color: var(--deep);
}

.lab-result[hidden] { display: none; }
.lab-result img { width: 100%; max-height: 430px; border-radius: 1.35rem; object-fit: cover; object-position: top; }
.lab-result h3 { margin: 0; font-size: clamp(2.8rem, 7vw, 5.5rem); letter-spacing: -0.065em; line-height: 0.9; }
.lab-result > div > p:not(.eyebrow) { max-width: 46ch; }

.portal-card .strain-card__trigger { border: 2px dashed rgba(175, 227, 90, 0.65); }
.portal-card .strain-card__trigger::before {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(22, 9, 25, 0.86);
  color: var(--lime);
  content: "PORTAL BLOQUEADO";
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.portal-card img { filter: saturate(0.7) contrast(1.08); }
.portal-card:hover img { filter: saturate(1.15) contrast(1.05); }
.strain-card { transition: opacity 220ms ease, transform 220ms ease; }
.strain-card.is-terpene-dim { opacity: 0.22; transform: scale(0.96); }
.strain-card.is-terpene-match { transform: translateY(-8px); }
.strain-card.is-terpene-match .strain-card__trigger { box-shadow: 0 0 0 3px var(--lime), 0 0 45px rgba(175, 227, 90, 0.46); }

.cosmos {
  overflow: hidden;
  background: radial-gradient(circle at 50% 35%, #4b1452 0, #1b071f 46%, #09020b 100%);
  color: var(--white);
}

.cosmos__intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 3rem;
}

.cosmos__intro h2 {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 7.4rem);
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.cosmos__intro h2 span { color: var(--lime); }
.cosmos__intro > p { max-width: 44ch; color: rgba(255, 253, 248, 0.7); }

.cosmos-map {
  position: relative;
  min-height: 710px;
  margin: 4rem 0 2rem;
  border: 1px solid rgba(175, 227, 90, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(175, 227, 90, 0.1), transparent 52%),
    linear-gradient(rgba(175, 227, 90, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(175, 227, 90, 0.04) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
}

.cosmos-map__rings,
.cosmos-map__rings i {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(175, 227, 90, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cosmos-map__rings { width: 68%; height: 68%; }
.cosmos-map__rings i:first-child { width: 66%; height: 66%; }
.cosmos-map__rings i:nth-child(2) { width: 135%; height: 135%; }
.cosmos-map__rings i:nth-child(3) { width: 185%; height: 185%; }

.cosmos-map__core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 9rem;
  height: 9rem;
  place-items: center;
  border: 2px solid var(--lime);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 70px rgba(251, 63, 88, 0.65);
  transform: translate(-50%, -50%);
}

.cosmos-map__core span { font-size: 3.2rem; font-weight: 900; letter-spacing: -0.08em; line-height: 0.8; }
.cosmos-map__core small { margin-top: -2.2rem; font-size: 0.58rem; font-weight: 900; letter-spacing: 0.16em; }

.planet {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  border: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.planet i {
  display: block;
  width: var(--planet-size, 4.6rem);
  height: var(--planet-size, 4.6rem);
  border: 2px solid var(--lime);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--planet-color, var(--pink)), var(--deep));
  box-shadow: 0 0 30px color-mix(in srgb, var(--planet-color, var(--pink)) 50%, transparent);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.planet:hover i,
.planet:focus-visible i { transform: scale(1.14); box-shadow: 0 0 55px var(--planet-color, var(--pink)); }
.planet span { font-size: 0.68rem; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase; }
.planet--locked i { border-style: dashed; filter: grayscale(0.65); opacity: 0.72; }
.planet--locked span::before { content: "◇ "; color: var(--lime); }
.planet--glitch { top: 14%; left: 49%; --planet-color: #ff4bd2; --planet-size: 5.4rem; }
.planet--plutonium { top: 32%; left: 77%; --planet-color: #12e9f4; }
.planet--thagomizer { top: 69%; left: 82%; --planet-color: #ff642e; --planet-size: 5.2rem; }
.planet--nemesis { top: 84%; left: 52%; --planet-color: #f3ab73; }
.planet--kryptonite { top: 67%; left: 20%; --planet-color: #9ee63a; --planet-size: 5rem; }
.planet--mandragora { top: 30%; left: 20%; --planet-color: #d7a45e; }
.planet--banana { top: 9%; left: 22%; --planet-color: #ffdc3f; --planet-size: 3.8rem; }
.planet--chemical { top: 91%; left: 80%; --planet-color: #ff49c2; --planet-size: 3.8rem; }
.planet--pacifier { top: 14%; left: 83%; --planet-color: #5c97ff; --planet-size: 3.6rem; }

.terpene-console {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 2rem;
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 1px solid rgba(175, 227, 90, 0.32);
  border-radius: 2rem;
  background: rgba(10, 2, 12, 0.68);
}

.terpene-console__copy h3 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.terpene-console__copy h3 span { color: var(--lime); }
.terpene-console__copy > p:last-child { max-width: 42ch; color: rgba(255, 253, 248, 0.66); }

.terpene-orbit {
  position: relative;
  min-height: 360px;
  border: 1px dashed rgba(175, 227, 90, 0.22);
  border-radius: 50%;
}

.terpene-orbit button {
  position: absolute;
  top: var(--y);
  left: var(--x);
  display: grid;
  width: var(--size);
  height: var(--size);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(255, 185, 255, 0.16);
  color: var(--white);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 900;
  box-shadow: inset 0 0 35px rgba(255, 185, 255, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.terpene-orbit button:hover,
.terpene-orbit button.is-active { background: var(--lime); color: var(--deep); transform: scale(1.08); }

.terpene-readout {
  display: grid;
  grid-column: 1 / -1;
  gap: 0.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(175, 227, 90, 0.2);
}

.terpene-readout span { color: var(--lime); font-size: 0.65rem; font-weight: 900; letter-spacing: 0.12em; }
.terpene-readout strong { font-size: clamp(1.2rem, 2.5vw, 2rem); }

.transmission-screen { position: relative; }
.transmission-screen__gate {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 0;
  background: repeating-linear-gradient(0deg, rgba(9, 2, 11, 0.54) 0 2px, rgba(9, 2, 11, 0.76) 2px 5px);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  transition: opacity 320ms ease;
}

.transmission-screen__gate span { color: var(--lime); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.12em; }
.transmission-screen__gate strong { font-size: clamp(1.5rem, 4vw, 3.5rem); letter-spacing: -0.04em; }
.transmission-screen__gate i { display: grid; width: 4rem; height: 4rem; place-items: center; border-radius: 50%; background: var(--coral); font-style: normal; }
.transmission-screen__gate.is-open { opacity: 0; pointer-events: none; }

.dossier__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(82, 14, 89, 0.2);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.dossier__topline i { color: var(--coral); font-style: normal; text-align: right; }
.dossier__reading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: 1.2rem 0; }
.dossier__reading span { font-size: 0.7rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.dossier__reading .modal__strength { margin: 0; }
.dossier__scan { display: flex; align-items: end; gap: 0.3rem; height: 36px; margin: 1.5rem 0; }
.dossier__scan i { width: 18%; background: var(--deep); }
.dossier__scan i:nth-child(1) { height: 32%; }
.dossier__scan i:nth-child(2) { height: 65%; background: var(--coral); }
.dossier__scan i:nth-child(3) { height: 100%; background: var(--lime); }
.dossier__scan i:nth-child(4) { height: 76%; background: var(--pink); }
.dossier__scan i:nth-child(5) { height: 44%; }

body.glitch-mode {
  background: #080109;
}

body.glitch-mode::after {
  position: fixed;
  inset: 0;
  z-index: 1800;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(175, 227, 90, 0.025) 3px 4px);
  content: "";
  pointer-events: none;
}

body.glitch-mode .site-header { border-color: var(--lime); background: rgba(15, 2, 18, 0.9); color: var(--cream); }
body.glitch-mode .site-nav a:hover { background: rgba(175, 227, 90, 0.16); }
body.glitch-mode .site-tools button { border-color: rgba(175, 227, 90, 0.32); background: var(--black); color: var(--cream); }
body.glitch-mode .hero h1 { text-shadow: -4px 0 var(--pink), 4px 0 var(--lime); animation: titleGlitch 4s steps(1) infinite; }
body.glitch-mode .hero__photo-wrap { box-shadow: 14px 14px 0 var(--lime); }
body.hyper-glitch main { animation: hyperGlitch 480ms steps(2) 3; }

@keyframes titleGlitch {
  0%, 88%, 100% { transform: translate(0); }
  90% { transform: translate(-3px, 1px); }
  92% { transform: translate(4px, -2px); }
  94% { transform: translate(-1px, 2px); }
}

@keyframes hyperGlitch {
  25% { filter: hue-rotate(90deg); transform: translateX(7px); }
  50% { filter: invert(0.18); transform: translateX(-8px); }
  75% { filter: hue-rotate(-90deg); transform: translateY(4px); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@media (max-width: 1080px) {
  .site-nav a {
    padding-inline: 0.62rem;
    font-size: 0.78rem;
  }

  .site-tools button em {
    display: none;
  }

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

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

  .hero {
    grid-template-columns: 1fr 0.75fr;
  }

  .hero__stamp {
    left: -1rem;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 64px;
  }

  .brand {
    width: 132px;
    height: 48px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    left: 0;
    display: none;
    padding: 0.75rem;
    border: 1px solid rgba(82, 14, 89, 0.12);
    border-radius: 1.25rem;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
  }

  .site-tools {
    margin-left: auto;
  }

  .site-tools button {
    width: 42px;
    padding: 0.35rem;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 9rem;
  }

  .hero__content {
    max-width: 680px;
  }

  .hero__visual {
    width: min(82vw, 520px);
    justify-self: center;
    margin-top: 1rem;
  }

  .section__intro,
  .brand-story__grid,
  .cosmos__intro,
  .glitch-story__intro,
  .glitch-story__hero,
  .santo__intro,
  .experience {
    grid-template-columns: 1fr;
  }

  .match-lab__console,
  .terpene-console {
    grid-template-columns: 1fr;
  }

  .lab-submit,
  .terpene-readout {
    grid-column: 1;
  }

  .cosmos-map {
    min-height: 620px;
    border-radius: 2rem;
  }

  .section__intro .eyebrow {
    margin-bottom: -1rem;
  }

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

  .glitch-art {
    min-height: 560px;
  }

  .glitch-art__cover {
    width: min(66%, 420px);
  }

  .glitch-art__closeup {
    width: min(70%, 540px);
  }

  .santo-card,
  .santo-card--wide {
    grid-column: span 3;
  }

  .experience__copy {
    order: -1;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --radius: 1.4rem;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 18vw, 5.7rem);
  }

  .site-header {
    left: 0.5rem;
    right: 0.5rem;
    max-width: calc(100vw - 1rem);
    padding-left: 0.55rem;
  }

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

  #soundToggle {
    display: none;
  }

  .site-tools {
    gap: 0.2rem;
  }

  .menu-toggle,
  .site-tools button {
    width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .site-tools button span {
    min-width: 1.65rem;
    height: 1.65rem;
  }

  .hero__photo-wrap {
    box-shadow: 8px 8px 0 var(--pink);
  }

  .hero__stamp {
    bottom: -2rem;
    left: -0.5rem;
  }

  .hero__badge {
    right: -0.5rem;
    width: 64px;
    height: 64px;
    font-size: 1.1rem;
  }

  .section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .value-grid,
  .strain-grid {
    grid-template-columns: 1fr;
  }

  .lab-options {
    grid-template-columns: 1fr 1fr;
  }

  .lab-result {
    grid-template-columns: 1fr;
  }

  .lab-result img {
    max-height: 360px;
  }

  .cosmos-map {
    min-height: 680px;
    margin-top: 2.5rem;
  }

  .cosmos-map__rings {
    width: 54%;
    height: 54%;
  }

  .cosmos-map__core {
    width: 6.2rem;
    height: 6.2rem;
  }

  .cosmos-map__core span { font-size: 2.4rem; }
  .cosmos-map__core small { margin-top: -1.5rem; }
  .planet { --planet-size: 3.1rem; }
  .planet span { max-width: 82px; font-size: 0.54rem; line-height: 1.1; }
  .planet--glitch { top: 12%; left: 49%; --planet-size: 4rem; }
  .planet--plutonium { top: 28%; left: 79%; }
  .planet--thagomizer { top: 69%; left: 78%; --planet-size: 3.7rem; }
  .planet--nemesis { top: 85%; left: 50%; }
  .planet--kryptonite { top: 67%; left: 20%; --planet-size: 3.5rem; }
  .planet--mandragora { top: 31%; left: 19%; }
  .planet--banana { top: 8%; left: 18%; --planet-size: 2.8rem; }
  .planet--chemical { top: 91%; left: 80%; --planet-size: 2.8rem; }
  .planet--pacifier { top: 10%; left: 84%; --planet-size: 2.8rem; }

  .terpene-orbit {
    min-height: 430px;
  }

  .terpene-orbit button {
    width: calc(var(--size) * 0.78);
    height: calc(var(--size) * 0.78);
  }

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

  .glitch-feature {
    border-radius: 1.35rem;
    box-shadow: 6px 6px 0 var(--lime);
  }

  .glitch-art {
    min-height: 440px;
  }

  .glitch-art__cover {
    width: 74%;
  }

  .glitch-art__closeup {
    width: 78%;
    bottom: 1rem;
  }

  .glitch-reel {
    grid-template-columns: 1fr;
  }

  .strain-card__overlay strong {
    font-size: 1.4rem;
  }

  .santo-grid {
    grid-template-columns: 1fr;
  }

  .santo-card,
  .santo-card--wide {
    grid-column: 1;
  }

  .santo-card,
  .santo-card img {
    min-height: 270px;
  }

  .modal__panel {
    max-height: 92vh;
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .modal__panel > img {
    min-height: 0;
    max-height: 42vh;
  }

  .modal__content {
    padding: 1.5rem;
  }

  .site-footer__bottom {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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