/* ===========================================================
   MOTA MOTA — Always in Rotation
   Dark navy + yellow + red bubble-letter logo system
   =========================================================== */

:root {
  --navy:       #0A1F4D;
  --navy-deep:  #061436;
  --navy-mid:   #112a66;
  --blue:       #1B3FA8;
  --yellow:     #FFD60A;
  --yellow-hot: #FFC700;
  --green:      #2BB673;
  --red:        #E63946;
  --red-deep:   #C42230;
  --cream:      #FFF6D6;
  --ink:        #0B1020;
  --paper:      #ffffff;
  --muted:      #9aa6c2;

  --display: "Bowlby One", "Archivo Black", Impact, system-ui, sans-serif;
  --condensed: "Anton", "Archivo Black", Impact, sans-serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --radius: 22px;
  --radius-sm: 12px;
  --container: 1280px;
  --shadow: 0 30px 80px -30px rgba(0,0,0,.6);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: #fff;
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--yellow); color: var(--ink); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: .98; margin: 0 0 .4em; letter-spacing: .3px; }
h1 { font-size: clamp(3rem, 9vw, 7.5rem); }
h2 { font-size: clamp(2.2rem, 5.5vw, 4.6rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: .85rem; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); }
p { margin: 0 0 1em; }
em { font-style: italic; color: var(--yellow); }
.link { color: var(--yellow); border-bottom: 2px solid currentColor; }

.eyebrow {
  font-family: var(--display);
  font-size: .85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1.5rem;
  display: inline-block;
}
.eyebrow--yellow { color: var(--yellow); }
.eyebrow--gold { color: #c9a85a; }

.lede { font-size: 1.15rem; opacity: .9; max-width: 60ch; }

/* ---------- The Logo Mark ---------- */
.logo-mark {
  position: relative;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 64px; height: 64px;
  flex-shrink: 0;
}
.logo-mark__burst {
  position: absolute; inset: 0;
  background: var(--yellow);
  -webkit-clip-path: polygon(
    50% 0%, 61% 13%, 78% 4%, 75% 23%, 96% 22%, 84% 38%,
    100% 50%, 84% 62%, 96% 78%, 75% 77%, 78% 96%, 61% 87%,
    50% 100%, 39% 87%, 22% 96%, 25% 77%, 4% 78%, 16% 62%,
    0% 50%, 16% 38%, 4% 22%, 25% 23%, 22% 4%, 39% 13%
  );
  clip-path: polygon(
    50% 0%, 61% 13%, 78% 4%, 75% 23%, 96% 22%, 84% 38%,
    100% 50%, 84% 62%, 96% 78%, 75% 77%, 78% 96%, 61% 87%,
    50% 100%, 39% 87%, 22% 96%, 25% 77%, 4% 78%, 16% 62%,
    0% 50%, 16% 38%, 4% 22%, 25% 23%, 22% 4%, 39% 13%
  );
}
.logo-mark__burst::after {
  content: "";
  position: absolute; inset: 10%;
  background: var(--green);
  border-radius: 50%;
}
.logo-mark__words {
  position: relative; z-index: 2;
  font-family: var(--display);
  color: var(--red);
  text-align: center;
  line-height: .82;
  font-size: .68rem;
  letter-spacing: .5px;
  -webkit-text-stroke: 1px #fff;
  text-shadow:
    -1px -1px 0 #fff, 1px -1px 0 #fff,
    -1px  1px 0 #fff, 1px  1px 0 #fff,
    2px 2px 0 var(--ink);
  transform: rotate(-4deg);
  padding: 0 4px;
}
.logo-mark__words em { font-style: normal; color: var(--red); }
.logo-mark--sm  { width: 56px; height: 56px; }
.logo-mark--sm  .logo-mark__words { font-size: .55rem; }
.logo-mark--md  { width: 96px; height: 96px; }
.logo-mark--md  .logo-mark__words { font-size: .95rem; }
.logo-mark--xl  { width: 220px; height: 220px; }
.logo-mark--xl  .logo-mark__words { font-size: 2.1rem; line-height: .85; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1em 1.6em;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: .8px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  transition: transform .15s ease, background .15s, color .15s, border-color .15s, box-shadow .15s;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  color: inherit;
}
.btn:hover { transform: translate(-2px, -3px); }
.btn--yellow { background: var(--yellow); color: var(--ink); box-shadow: 5px 5px 0 var(--ink); }
.btn--yellow:hover { background: #fff; box-shadow: 8px 8px 0 var(--ink); }
.btn--outline-light { background: transparent; color: #fff; border-color: #fff; box-shadow: 5px 5px 0 var(--red); }
.btn--outline-light:hover { background: #fff; color: var(--navy); box-shadow: 8px 8px 0 var(--red); }
.btn--outline-gold { background: transparent; color: #c9a85a; border-color: #c9a85a; box-shadow: 5px 5px 0 #000; }
.btn--outline-gold:hover { background: #c9a85a; color: #000; }
.btn--ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.4); box-shadow: none; }
.btn--small { padding: .7em 1.2em; font-size: .85rem; }
.btn--large { padding: 1.15em 1.8em; font-size: 1.05rem; }

/* ---------- Notice Bar ---------- */
.notice-bar {
  background: var(--yellow);
  color: var(--ink);
  overflow: hidden;
  padding: .7rem 0;
  border-bottom: 3px solid var(--ink);
}
.notice-bar__track {
  display: flex; gap: 3rem;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--display);
  font-size: .9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 2rem;
  padding: .9rem 2rem;
  background: var(--navy-deep);
  border-bottom: 3px solid var(--ink);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.header__brand { flex-shrink: 0; display: flex; align-items: center; }
.nav { display: flex; gap: 1.6rem; margin-left: auto; font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: 1.5px; }
.nav a { color: #fff; opacity: .85; transition: color .15s; }
.nav a:hover { color: var(--yellow); opacity: 1; }
.header-cta { margin-left: 1rem; }
.nav-toggle { display: none; background: none; border: 0; padding: .5rem; }
.nav-toggle span { display: block; width: 28px; height: 3px; background: #fff; margin: 5px 0; border-radius: 2px; }
@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  body.nav-open .nav {
    display: flex; flex-direction: column; gap: 1rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-deep); padding: 1.5rem 2rem;
    border-bottom: 3px solid var(--ink);
  }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 4rem 2rem 7rem;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(255,214,10,.18), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(43,182,115,.15), transparent 55%),
    radial-gradient(ellipse at 60% 100%, rgba(230,57,70,.12), transparent 60%),
    var(--navy);
}
.hero__starburst {
  position: absolute;
  top: 50%; right: -200px;
  width: 900px; height: 900px;
  transform: translateY(-50%);
  background:
    repeating-conic-gradient(from 0deg,
      rgba(255,214,10,.06) 0deg 8deg,
      transparent 8deg 16deg);
  pointer-events: none;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 2; max-width: 640px; padding-left: 2rem; }
.hero__title { font-family: var(--display); }
.hero__title .line { display: block; text-shadow: 5px 5px 0 var(--ink); }
.hero__title .line--yellow { color: var(--yellow); }
.hero__title .period { color: var(--red); }
.hero__sub {
  font-size: 1.2rem;
  margin: 1.5rem 0 2.2rem;
  max-width: 44ch;
  opacity: .92;
}
.hero__sub strong { color: var(--yellow); font-weight: 700; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__chips {
  position: absolute; bottom: 2.5rem; left: 4rem; z-index: 2;
  display: flex; gap: .6rem; flex-wrap: wrap;
}
.hero__chips span {
  font-family: var(--display);
  font-size: .75rem; letter-spacing: 1.5px;
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: .55em 1em; border-radius: 999px;
  border: 2px solid rgba(255,255,255,.25);
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.hero__chips span:nth-child(1) { background: var(--yellow); color: var(--ink); border-color: var(--ink); }
.hero__chips span:nth-child(3) { background: var(--red); color: #fff; border-color: var(--ink); }

.hero__stage {
  position: relative;
  height: 70vh;
  min-height: 540px;
}
.hero__stage-bag {
  position: absolute;
  border-radius: var(--radius);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink), var(--shadow);
  object-fit: cover;
}
.hero__stage-bag--a { width: 60%; left: 8%; top: 6%;  transform: rotate(-6deg); z-index: 2; height: 78%; }
.hero__stage-bag--b { width: 46%; right: 4%; top: 18%; transform: rotate(8deg);  z-index: 3; height: 56%; }
.hero__stage-bag--c { width: 38%; left: 28%; bottom: 4%; transform: rotate(-2deg); z-index: 4; height: 38%; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding: 2.5rem 1.25rem 5rem; gap: 2rem; }
  .hero__inner { padding-left: 0; }
  .hero__stage { height: 60vh; min-height: 380px; }
  .hero__chips { position: static; margin-top: 2rem; left: 0; }
}

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--yellow);
  color: var(--ink);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.stat {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 3px solid var(--ink);
}
.stat:last-child { border-right: 0; }
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
}
.stat span {
  font-family: var(--display);
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .8;
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 3px solid var(--ink); }
}

/* ===========================================================
   SECTIONS
   =========================================================== */
.section { padding: 7rem 2rem; max-width: var(--container); margin: 0 auto; position: relative; }
.section--full { padding: 7rem 2rem; position: relative; }
.section__head { max-width: 720px; margin: 0 auto 4rem; text-align: center; }
.section__head--left { text-align: left; margin-left: 0; }
.section__lede { font-size: 1.15rem; opacity: .85; }

/* ---------- Products ---------- */
.products { background: var(--navy); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.product-card {
  background: var(--navy-mid);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translate(-3px, -5px); box-shadow: 11px 13px 0 var(--ink); }
.product-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-deep);
}
.product-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__img--soon img { opacity: .5; filter: blur(1px); }
.product-card__corner {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--display);
  font-size: .7rem; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--ink); color: var(--yellow);
  padding: .4em .8em;
  border-radius: 6px;
}
.product-card__body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.product-card__body h3 { margin: .6rem 0 .5rem; }
.product-card__body p { color: var(--muted); flex: 1; }
.tag {
  display: inline-block;
  font-family: var(--display); font-size: .7rem; letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .4em .9em; border-radius: 999px; border: 2px solid var(--ink);
  color: var(--ink);
  align-self: flex-start;
}
.tag--yellow { background: var(--yellow); }
.tag--green  { background: var(--green); color: #fff; }
.tag--red    { background: var(--red); color: #fff; }

.product-card__meta {
  list-style: none; padding: 0; margin: 1.2rem 0 0;
  display: flex; gap: .4rem; flex-wrap: wrap;
}
.product-card__meta li {
  font-family: var(--display);
  font-size: .7rem; letter-spacing: 1.5px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  padding: .35em .8em;
  border-radius: 6px;
  color: #fff;
}

/* ---------- Bigline (ticker-tape rows) ---------- */
.bigline {
  background: var(--navy-deep);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 1.5rem 0;
  overflow: hidden;
}
.bigline__row {
  display: flex; gap: 2rem;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  animation: scroll 36s linear infinite;
}
.bigline__row--alt {
  animation-duration: 30s;
  animation-direction: reverse;
  color: rgba(255,255,255,.15);
  -webkit-text-stroke: 2px #fff;
}
.bigline__row--alt .yellow { color: var(--yellow); -webkit-text-stroke: 0; }
.bigline__row .yellow { color: var(--yellow); }
.bigline__row .dot { color: var(--red); }

/* ---------- Strains ---------- */
.strains {
  background:
    radial-gradient(ellipse at top, rgba(255,214,10,.06), transparent 60%),
    var(--navy);
}
.strain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.strain {
  background: linear-gradient(180deg, var(--navy-mid), var(--navy-deep));
  border: 2px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 1.8rem;
  transition: transform .15s, border-color .15s;
}
.strain:hover { transform: translateY(-3px); border-color: var(--yellow); }
.strain header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.strain__type {
  font-family: var(--display); font-size: .65rem; letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .3em .7em; border-radius: 6px;
  background: rgba(255,255,255,.1); color: #fff;
}
.strain__type--sativa { background: var(--red); }
.strain__type--hybrid { background: var(--yellow); color: var(--ink); }
.strain__type--indica { background: #6b46c1; }
.strain__thc {
  font-family: var(--display); font-size: .7rem;
  color: var(--yellow); letter-spacing: 1px;
}
.strain h3 { font-size: 1.6rem; margin: 0 0 .4rem; }
.strain__notes { color: var(--yellow); font-size: .9rem; font-weight: 700; margin-bottom: .8rem; }
.strain__use { color: var(--muted); margin: 0; font-size: .95rem; }
.strain--ghost { border-style: dashed; opacity: .85; }
.strain--ghost h3 { color: var(--yellow); }

/* ---------- World gallery ---------- */
.world {
  background: var(--navy-deep);
  border-top: 3px solid var(--ink);
}
.world__head {
  max-width: var(--container);
  margin: 0 auto 3.5rem;
  padding: 0 1rem;
}
.world__head h2 { max-width: 16ch; }
.world__head p { max-width: 60ch; opacity: .85; }
.world__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.world__tile {
  position: relative;
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--navy);
  aspect-ratio: 3 / 2;
}
.world__tile--wide { grid-column: span 2; }
.world__tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.world__tile:hover img { transform: scale(1.03); }
.world__tile figcaption {
  position: absolute; left: 12px; bottom: 12px;
  font-family: var(--display);
  font-size: .8rem; letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--yellow); color: var(--ink);
  padding: .45em .9em;
  border-radius: 6px;
  border: 2px solid var(--ink);
  max-width: 80%;
}
@media (max-width: 880px) {
  .world__grid { grid-template-columns: 1fr; }
  .world__tile--wide { grid-column: span 1; }
}

/* ---------- Quote slab ---------- */
.quote-slab {
  background: var(--red);
  color: #fff;
  padding: 7rem 2rem;
  text-align: center;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.quote-slab::before, .quote-slab::after {
  content: "★";
  position: absolute;
  font-size: 14rem;
  color: rgba(0,0,0,.08);
  font-family: var(--display);
}
.quote-slab::before { top: -2rem; left: -1rem; }
.quote-slab::after { bottom: -4rem; right: -1rem; }
.quote-slab blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.05;
  text-shadow: 5px 5px 0 var(--ink);
  position: relative; z-index: 2;
}
.quote-slab blockquote em { color: var(--yellow); }
.quote-slab__attr {
  font-family: var(--display);
  letter-spacing: 2px;
  margin-top: 2rem;
  color: var(--yellow);
}

/* ---------- Story ---------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.story__media { position: relative; }
.story__media img {
  border-radius: var(--radius);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(-3deg);
}
.story__sticker {
  position: absolute;
  top: -20px; right: -20px;
  width: 130px; height: 130px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  color: var(--ink);
  font-size: 1.1rem;
  text-align: center;
  line-height: 1;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  transform: rotate(15deg);
  box-shadow: 4px 4px 0 var(--ink);
}
.story__body h2 { margin-bottom: 1.5rem; }
.story__pull {
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--yellow);
  border-left: 4px solid var(--yellow);
  padding-left: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 980px) {
  .story { grid-template-columns: 1fr; gap: 3rem; }
}

/* ---------- Merch ---------- */
.merch {
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
  border-top: 3px solid var(--ink);
}
.merch__head {
  max-width: var(--container); margin: 0 auto 3rem;
  text-align: center;
  padding: 0 1rem;
}
.merch__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.merch__feature {
  margin: 0;
  background: #000;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--ink);
}
.merch__feature img { width: 100%; height: auto; display: block; }
.merch__feature figcaption {
  padding: 1.5rem 1.8rem;
  background: var(--ink);
  border-top: 2px solid var(--yellow);
}
.merch__feature h3 { margin: 0 0 .3rem; color: var(--yellow); }
.merch__feature p { margin: 0; color: var(--muted); }
@media (max-width: 880px) {
  .merch__grid { grid-template-columns: 1fr; }
}

/* ---------- Wholesale ---------- */
.wholesale {
  background:
    radial-gradient(ellipse at 80% 30%, rgba(255,214,10,.18), transparent 50%),
    var(--navy);
  border-top: 3px solid var(--ink);
}
.wholesale__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.wholesale h2 em { color: var(--yellow); }
.ticks { list-style: none; padding: 0; margin: 1.8rem 0 0; }
.ticks li { padding: .55rem 0 .55rem 2.4rem; position: relative; font-size: 1.05rem; }
.ticks li::before {
  content: "★"; color: var(--yellow);
  position: absolute; left: 0; font-size: 1.3rem;
  top: .35rem;
}
.form {
  display: grid; gap: 1rem;
  background: rgba(0,0,0,.25);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}
.form label { display: grid; gap: .4rem; font-family: var(--display); font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--yellow); }
.form input, .form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--ink);
  background: #fff;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}
.form input:focus, .form textarea:focus { outline: 3px solid var(--yellow); outline-offset: 2px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__fine { font-size: .8rem; opacity: .7; margin: 0; }
.hp { position: absolute; left: -9999px; }
@media (max-width: 980px) {
  .wholesale__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form__row { grid-template-columns: 1fr; }
}

/* ---------- Odin Extracts ---------- */
.odin {
  background: #0a0a0a;
  color: #fff;
  border-top: 3px solid #000;
  padding: 6rem 2rem;
  position: relative;
}
.odin::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201,168,90,.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201,168,90,.08), transparent 50%);
  pointer-events: none;
}
.odin__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.odin h2 {
  font-family: var(--condensed);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}
.odin .eyebrow--gold { color: #c9a85a; }
.odin p { color: #cfcfcf; max-width: 50ch; }
.odin__media img {
  border-radius: var(--radius-sm);
  border: 2px solid #1a1a1a;
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
}
@media (max-width: 880px) {
  .odin__inner { grid-template-columns: 1fr; }
}

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  background: var(--navy-deep);
  color: #fff;
  padding: 4rem 2rem 2rem;
  border-top: 3px solid var(--ink);
}
.site-footer__top {
  max-width: var(--container);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}
.site-footer__brand { display: flex; flex-direction: column; gap: 1rem; }
.site-footer__brand p { opacity: .75; font-size: .95rem; margin: 0; }
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.site-footer__cols h4 { margin-bottom: 1rem; }
.site-footer__cols a {
  display: block;
  padding: .35rem 0;
  font-size: .95rem;
  opacity: .8;
}
.site-footer__cols a:hover { color: var(--yellow); opacity: 1; }

.site-footer__warning {
  max-width: var(--container);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  font-size: .75rem;
  opacity: .65;
  line-height: 1.7;
}
.site-footer__warning p { margin-bottom: .6rem; }
.site-footer__warning strong { color: var(--yellow); }
@media (max-width: 880px) {
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
}

/* ===========================================================
   AGE GATE
   =========================================================== */
.age-gate {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  background: var(--navy-deep);
  overflow: hidden;
}
.age-gate__bg {
  position: absolute; inset: -20%;
  background:
    repeating-conic-gradient(from 0deg,
      rgba(255,214,10,.06) 0deg 6deg,
      transparent 6deg 12deg);
  animation: spin 60s linear infinite;
  pointer-events: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
.age-gate__panel { text-align: center; color: #fff; max-width: 500px; position: relative; z-index: 2; }
.age-gate__panel .logo-mark { margin: 0 auto 2rem; }
.age-gate h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: var(--yellow);
  text-shadow: 4px 4px 0 var(--ink);
}
.age-gate__sub { opacity: .85; }
.age-gate__buttons { display: flex; gap: 1rem; justify-content: center; margin: 2rem 0 1rem; flex-wrap: wrap; }
.age-gate__fine { font-size: .8rem; opacity: .6; }
body.age-verified .age-gate { display: none; }

/* Reveal animations */
@media (prefers-reduced-motion: no-preference) {
  .hero__title .line, .hero__sub, .hero__cta, .hero__chips,
  .product-card, .strain, .world__tile, .merch__feature, .badge {
    animation: rise .8s ease-out both;
  }
  .hero__title .line--yellow { animation-delay: .1s; }
  .hero__sub { animation-delay: .2s; }
  .hero__cta { animation-delay: .3s; }
  .hero__chips { animation-delay: .4s; }
  @keyframes rise {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
  }
}
