:root {
  --bone: #efece3;
  --bone-dim: #b7b9ad;
  --magenta: #e43aa8;
  --spore: #7fe2a0;
  --void: #050705;
  --panel: rgba(8, 12, 10, 0.78);
  --line: rgba(228, 58, 168, 0.28);
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "IBM Plex Sans", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { min-height: 100%; }

body {
  font-family: var(--font-body);
  color: var(--bone);
  background: var(--void);
}

a { color: inherit; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2rem);
  background: linear-gradient(180deg, rgba(5, 7, 5, 0.92) 0%, rgba(5, 7, 5, 0.72) 100%);
  border-bottom: 1px solid rgba(127, 226, 160, 0.12);
  backdrop-filter: blur(12px);
}

.site-nav__brand {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--magenta);
  white-space: nowrap;
}

.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 0.85rem;
  list-style: none;
}

.site-nav__links a {
  white-space: nowrap;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav__links a:hover {
  color: var(--bone);
  border-bottom-color: rgba(228, 58, 168, 0.55);
}

.site-nav__links a[aria-current="page"] {
  color: var(--spore);
  border-bottom-color: rgba(127, 226, 160, 0.55);
}

.page-shell {
  min-height: calc(100vh - 3.5rem);
  background:
    linear-gradient(180deg, rgba(5, 7, 5, 0.55) 0%, rgba(5, 7, 5, 0.88) 55%, rgba(5, 7, 5, 0.96) 100%),
    url("/images/delirium-garden-hero.png") center top / cover no-repeat;
}

.page-inner {
  width: min(100%, 56rem);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2rem) 4rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--spore);
}

.page-inner h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.support {
  color: var(--bone-dim);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 42ch;
  margin-bottom: 2rem;
}

.cta {
  display: inline-block;
  background: rgba(228, 58, 168, 0.16);
  border: 1px solid rgba(228, 58, 168, 0.55);
  color: var(--bone);
  padding: 0.7rem 1.15rem;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cta:hover {
  background: rgba(228, 58, 168, 0.28);
  border-color: var(--magenta);
}

.product-wrap {
  min-height: calc(100vh - 3.5rem);
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 4vw, 2rem) 3rem;
  background:
    linear-gradient(180deg, rgba(5, 7, 5, 0.5) 0%, rgba(5, 7, 5, 0.82) 55%, rgba(5, 7, 5, 0.96) 100%),
    url("/images/delirium-garden-hero.png") center / cover no-repeat;
}

.product-stack {
  width: min(100%, 58rem);
  display: grid;
  gap: 1.75rem;
}

.product-intro h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.product-intro .tagline {
  color: var(--bone);
  font-size: 1.15rem;
  line-height: 1.45;
  margin-bottom: 0.85rem;
  max-width: 36ch;
}

.product-intro .support {
  margin-bottom: 0;
}

.product-skus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sku {
  background: rgba(8, 12, 10, 0.72);
  border: 1px solid rgba(228, 58, 168, 0.22);
  padding: 1.1rem 1.15rem 1.25rem;
}

.sku h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.sku p {
  color: var(--bone-dim);
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 1rem;
}

.sku .cta {
  width: 100%;
  text-align: center;
}

@media (max-width: 720px) {
  .product-skus {
    grid-template-columns: 1fr;
  }
}


.product-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.product-visual {
  width: 100%;
  background: rgba(8, 12, 10, 0.55);
  border: 1px solid rgba(127, 226, 160, 0.16);
  overflow: hidden;
}

.product-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.product-visual figcaption {
  padding: 0.45rem 0.6rem 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  text-align: center;
  border-top: 1px solid rgba(127, 226, 160, 0.12);
}

.product-copy .tagline {
  color: var(--bone);
  font-size: 1.15rem;
  line-height: 1.45;
  margin-bottom: 0.85rem;
  max-width: 28ch;
}

.product-copy .support {
  margin-bottom: 1.35rem;
}

.product-meta {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: #879084;
  line-height: 1.45;
  max-width: 36ch;
}

@media (max-width: 720px) {
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .site-nav__links {
    justify-content: flex-start;
    gap: 0.45rem 0.9rem;
  }

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

.coming-wrap {
  min-height: calc(100vh - 3.5rem);
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(5, 7, 5, 0.45) 0%, rgba(5, 7, 5, 0.72) 55%, rgba(5, 7, 5, 0.94) 100%),
    url("/images/delirium-garden-hero.png") center / cover no-repeat;
}

.coming-panel {
  width: min(100%, 28rem);
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  padding: clamp(1.4rem, 4vw, 2rem);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.strain-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.strain-item {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(8, 12, 10, 0.72);
  border: 1px solid rgba(127, 226, 160, 0.14);
  backdrop-filter: blur(8px);
  cursor: default;
  user-select: none;
  pointer-events: none;
}

.strain-item img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(26, 158, 74, 0.35);
}

.strain-name {
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.strain-name .aka {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: var(--bone-dim);
  letter-spacing: 0.04em;
}

.legal {
  margin-top: 2rem;
  font-size: 0.78rem;
  color: #7f867a;
  max-width: 48ch;
  line-height: 1.45;
}

.motto {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  color: var(--magenta);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
