:root {
  --ink: #15150f;
  --ink-2: #242316;
  --moss: #31462c;
  --leaf: #789a52;
  --lime: #d9ef88;
  --cream: #f4eddc;
  --paper: #fffaf0;
  --clay: #bf6f3d;
  --rose: #d9a4a7;
  --smoke: #e8e1d3;
  --line: rgba(21, 21, 15, 0.14);
  --shadow: 0 24px 80px rgba(21, 21, 15, 0.18);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(244, 237, 220, 0.9), rgba(255, 250, 240, 1) 34%),
    var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--lime);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: 20px;
  background: rgba(12, 13, 9, 0.82);
  backdrop-filter: blur(14px);
}

.age-gate.is-hidden {
  display: none;
}

.age-panel {
  width: min(520px, 100%);
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fffaf0, #ebe1cd);
  box-shadow: var(--shadow);
  padding: clamp(26px, 6vw, 44px);
}

.age-panel h2 {
  margin: 4px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 8vw, 4rem);
  line-height: 0.98;
}

.age-panel p {
  margin: 0 0 24px;
  color: rgba(21, 21, 15, 0.75);
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(244, 237, 220, 0.72);
  border-bottom: 1px solid rgba(21, 21, 15, 0.09);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 10px 30px rgba(21, 21, 15, 0.08);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--lime);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(217, 239, 136, 0.28);
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong,
.footer-brand strong {
  font-weight: 900;
  letter-spacing: 0;
}

.brand-text small {
  color: rgba(21, 21, 15, 0.62);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(21, 21, 15, 0.72);
  font-weight: 750;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  background: rgba(49, 70, 44, 0.1);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.76);
  color: var(--ink);
}

.nav-toggle svg {
  margin: auto;
}

.btn,
.nav-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn svg,
.nav-cta svg,
.inline-link svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn-primary,
.nav-cta {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(217, 239, 136, 0.24);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost {
  background: rgba(255, 250, 240, 0.14);
  border-color: rgba(255, 250, 240, 0.24);
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-height) - 58px);
  display: grid;
  overflow: clip;
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../images/top-grass-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 16, 11, 0.88) 0%, rgba(15, 16, 11, 0.7) 38%, rgba(15, 16, 11, 0.18) 78%),
    linear-gradient(0deg, rgba(15, 16, 11, 0.52) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100dvh - var(--header-height) - 58px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(280px, 360px);
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(48px, 7vh, 96px) 0 16px;
}

.hero-copy {
  padding-bottom: clamp(8px, 3vh, 32px);
}

.eyebrow,
.label,
.category-kicker,
.drop-label {
  margin: 0;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 12.6ch;
  margin: 12px 0 20px;
  color: var(--paper);
  font-size: clamp(3.4rem, 7.4vw, 6.4rem);
  line-height: 0.9;
}

.hero-lede {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

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

.hero-board {
  align-self: end;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.11);
  color: var(--paper);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
}

.board-top span,
.board-grid small {
  color: rgba(255, 250, 240, 0.68);
}

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

.board-grid div {
  padding: 16px;
  border-right: 1px solid rgba(255, 250, 240, 0.14);
}

.board-grid div:last-child {
  border-right: 0;
}

.board-number {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: clamp(1.55rem, 4vw, 2.1rem);
  font-weight: 900;
  line-height: 1;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 28px;
  padding: 14px 0;
  animation: ticker 34s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-weight: 850;
  white-space: nowrap;
}

.ticker-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--lime);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 118px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 620px;
  margin-bottom: 26px;
}

.section-heading h2,
.drop-copy h2,
.guide-card h2,
.join-copy h2 {
  margin: 8px 0 12px;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.94;
}

.section-heading p,
.drop-copy p,
.guide-card p,
.guide-sidebar p,
.join-copy p {
  margin: 0;
  color: rgba(21, 21, 15, 0.7);
}

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

.category-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 10px 26px rgba(21, 21, 15, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.category-card:hover {
  transform: translateY(-4px);
  background: #fffdf7;
  box-shadow: var(--shadow);
}

.category-card h3,
.drop-card h3,
.experience-list h3,
.guide-sidebar h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.05;
}

.category-card p,
.drop-card p,
.experience-list p {
  margin: 0;
  color: rgba(21, 21, 15, 0.66);
}

.category-meta {
  width: fit-content;
  margin-top: 26px;
  border-radius: 999px;
  background: rgba(49, 70, 44, 0.1);
  color: var(--moss);
  padding: 8px 10px;
  font-size: 0.82rem;
  font-weight: 850;
}

.category-featured {
  grid-column: span 2;
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(21, 21, 15, 0.82), rgba(49, 70, 44, 0.48)),
    url("../images/top-grass-hero.png") center / cover;
  color: var(--paper);
}

.category-featured p,
.category-featured .category-kicker {
  color: rgba(255, 250, 240, 0.76);
}

.category-featured .category-meta {
  background: var(--lime);
  color: var(--ink);
}

.drop-room {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(20px, 1fr) minmax(0, 1180px) minmax(20px, 1fr);
  gap: 0;
  background: var(--ink);
  color: var(--paper);
}

.drop-room > * {
  grid-column: 2;
}

.drop-copy {
  max-width: 760px;
  margin-bottom: 34px;
}

.drop-copy p {
  color: rgba(255, 250, 240, 0.72);
}

.drop-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 14px;
}

.drop-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  overflow: hidden;
}

.drop-card.dark {
  background: #202416;
}

.drop-card.light {
  background: var(--cream);
  color: var(--ink);
}

.drop-card.accent {
  background: #c7834f;
  color: var(--ink);
}

.drop-card > div:last-child {
  padding: 24px;
}

.drop-card.light p,
.drop-card.accent p {
  color: rgba(21, 21, 15, 0.68);
}

.drop-visual {
  min-height: 230px;
  background-image: url("../images/top-grass-hero.png");
  background-size: 920px auto;
  filter: saturate(1.05);
}

.visual-flower {
  background-position: right bottom;
}

.visual-vape {
  background-position: center center;
}

.visual-edible {
  background-position: left center;
}

.experience {
  padding-bottom: 0;
}

.experience-panel {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #efe3cc, #fffaf0);
  border: 1px solid var(--line);
  padding: clamp(28px, 6vw, 52px);
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.experience-list article {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.62);
  padding: 24px;
}

.experience-list svg {
  width: 34px;
  height: 34px;
  color: var(--moss);
  stroke-width: 1.9;
}

.guidance {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 14px;
  align-items: stretch;
}

.guide-card,
.guide-sidebar,
.join {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.76);
  box-shadow: 0 12px 28px rgba(21, 21, 15, 0.05);
}

.guide-card {
  padding: clamp(26px, 6vw, 52px);
}

.chooser {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 26px 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eee5d3;
  padding: 6px;
}

.choice {
  min-height: 48px;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  color: rgba(21, 21, 15, 0.68);
  font-weight: 900;
}

.choice.is-active {
  background: var(--ink);
  color: var(--lime);
}

.choice-output {
  border-radius: var(--radius);
  background: var(--moss);
  color: var(--paper);
  padding: 22px;
}

.choice-output span {
  display: block;
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.choice-output strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.15;
}

.choice-output p {
  color: rgba(255, 250, 240, 0.74);
}

.guide-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(217, 239, 136, 0.18), rgba(255, 250, 240, 0.9)),
    var(--paper);
}

.inline-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--moss);
  font-weight: 900;
}

.join {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: center;
  margin-bottom: clamp(72px, 10vw, 118px);
  padding: clamp(26px, 6vw, 52px);
  background: var(--ink);
  color: var(--paper);
}

.join-copy p {
  color: rgba(255, 250, 240, 0.7);
}

.join-form {
  display: grid;
  gap: 10px;
}

.join-form label {
  color: rgba(255, 250, 240, 0.82);
  font-weight: 850;
}

.input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.join-form input {
  min-height: 52px;
  width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.1);
  color: var(--paper);
  padding: 0 14px;
}

.join-form input::placeholder {
  color: rgba(255, 250, 240, 0.48);
}

.form-note {
  margin: 0;
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.85rem;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 42px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(260px, 0.9fr);
  gap: 24px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.footer-brand p,
.legal {
  margin: 4px 0 0;
  color: rgba(21, 21, 15, 0.62);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-weight: 850;
}

.legal {
  font-size: 0.84rem;
}

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

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

@media (max-width: 1020px) {
  .nav-shell {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 250, 240, 0.97);
    padding: 16px;
    transform: translateY(-120%);
    transition: transform 220ms ease;
    box-shadow: 0 20px 50px rgba(21, 21, 15, 0.12);
  }

  .nav-links.is-open {
    transform: translateY(0);
  }

  .nav-links a {
    justify-content: center;
  }

  .nav-cta {
    justify-self: end;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 92px;
  }

  .hero-board {
    width: min(560px, 100%);
  }

  .category-grid,
  .drop-grid,
  .experience-list,
  .guidance,
  .join,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .category-featured {
    grid-column: span 1;
  }

  .site-footer {
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 68px;
  }

  .nav-shell {
    width: min(100% - 24px, 1180px);
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .nav-toggle {
    grid-column: 3;
  }

  .brand-text small,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: calc(100dvh - var(--header-height) - 42px);
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(15, 16, 11, 0.92) 0%, rgba(15, 16, 11, 0.78) 58%, rgba(15, 16, 11, 0.42) 100%),
      linear-gradient(0deg, rgba(15, 16, 11, 0.62) 0%, transparent 48%);
  }

  .hero-content {
    width: min(100% - 24px, 1180px);
    min-height: calc(100dvh - var(--header-height) - 42px);
    gap: 18px;
    padding: 74px 0 22px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  h1 {
    max-width: 8.8ch;
    font-size: clamp(3.5rem, 17vw, 5.9rem);
  }

  .hero-actions,
  .age-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-board {
    display: none;
  }

  .section {
    width: min(100% - 24px, 1180px);
    padding: 62px 0;
  }

  .section-heading h2,
  .drop-copy h2,
  .guide-card h2,
  .join-copy h2 {
    font-size: clamp(2.25rem, 12vw, 3.7rem);
  }

  .category-card,
  .experience-list article,
  .drop-card {
    min-height: auto;
  }

  .drop-room {
    grid-template-columns: 12px minmax(0, 1fr) 12px;
  }

  .drop-grid {
    gap: 12px;
  }

  .drop-card {
    min-height: 390px;
  }

  .drop-visual {
    min-height: 210px;
    background-size: 760px auto;
  }

  .chooser,
  .input-row {
    grid-template-columns: 1fr;
  }

  .join {
    width: min(100% - 24px, 1180px);
    margin-bottom: 62px;
  }

  .site-footer {
    width: min(100% - 24px, 1180px);
  }
}
