/* Showroom Cultivation, static site. Dark photo grounds alternating with
   off-white cards, one green accent pulled from the client's badge, Montserrat
   caps for display. Direction reference: reference/behance-spruce-nursery. */

:root {
  --ground: #0a0d09;
  --ground-2: #10150f;
  --paper: #f3f5f0;
  --paper-2: #e8ebe4;
  --ink: #0e120d;
  --ink-2: #3a423a;
  --muted: #8b958a;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(14, 18, 13, 0.14);
  --green: #1a9a1a;
  --green-ink: #0b5a0b;
  --white: #ffffff;
  --radius: 22px;
  --radius-sm: 12px;
  --max: 1240px;
  --gutter: clamp(16px, 4vw, 48px);
  --font: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.gated { overflow: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--white);
  background: var(--ground);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; line-height: 1.02; letter-spacing: -0.01em; text-transform: uppercase; }
p { margin: 0 0 1em; }
.wrap { width: min(var(--max), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }
.section.paper { background: var(--paper); color: var(--ink); }
.section.paper .muted { color: var(--ink-2); }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.section.paper .eyebrow { color: var(--green-ink); }
.h2 { font-size: clamp(30px, 4.6vw, 60px); max-width: 14ch; }
.lede { font-size: clamp(17px, 1.6vw, 21px); font-weight: 500; max-width: 56ch; }
.muted { color: var(--muted); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---- buttons: round, like the badge ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-round {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  padding: 18px;
  background: var(--green);
  color: var(--white);
  line-height: 1.25;
}
.btn-round:hover { transform: scale(1.05); background: #23b023; }
.btn-pill {
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
}
.btn-pill:hover { background: var(--green); color: var(--white); }
.section.paper .btn-pill { background: var(--ink); color: var(--white); }
.section.paper .btn-pill:hover { background: var(--green); }
.btn-ghost {
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: var(--white);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

/* ---- header ---- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled { background: rgba(10, 13, 9, 0.86); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line); }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
.brand img { width: 46px; height: 46px; }
.nav-links { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
.nav-links a { text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.9; }
.nav-links a:hover { color: var(--green); opacity: 1; }
.nav-links .nav-cta { padding: 10px 18px; border-radius: 999px; background: var(--green); color: var(--white); }
.nav-links .nav-cta:hover { background: #23b023; color: var(--white); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1.5px solid var(--line); border-radius: 50%; background: transparent; color: var(--white); cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display: block; width: 18px; height: 2px; background: currentColor; position: relative; margin: 0 auto; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ---- hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 140px 0 clamp(48px, 7vw, 96px);
  isolation: isolate;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 13, 9, 0.55) 0%, rgba(10, 13, 9, 0.15) 35%, rgba(10, 13, 9, 0.85) 100%),
    linear-gradient(90deg, rgba(10, 13, 9, 0.6) 0%, rgba(10, 13, 9, 0) 60%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 40px; align-items: end; }
.hero h1 { font-size: clamp(42px, 7.2vw, 108px); max-width: 11ch; text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35); }
.hero .lede { margin-top: 26px; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 34px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 18px; justify-content: flex-end; }
.stat-bubble {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.stat-bubble b { display: block; font-size: 26px; font-weight: 800; line-height: 1; color: var(--green); filter: brightness(1.35); }
.stat-bubble span { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; line-height: 1.3; }

/* ---- about / stats circles ---- */
.stat-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 18px;
  background: var(--white);
}
.stat-ring b { display: block; font-size: 32px; font-weight: 800; line-height: 1; color: var(--green-ink); }
.stat-ring span { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); margin-top: 8px; line-height: 1.3; }
.ring-cluster { display: flex; flex-wrap: wrap; gap: 18px; }
.about-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.about-list li { display: flex; gap: 14px; align-items: baseline; font-weight: 500; }
.about-list li::before { content: ""; flex: 0 0 10px; width: 10px; height: 10px; border-radius: 50%; background: var(--green); transform: translateY(-1px); }

/* ---- strain cards ---- */
.section-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: clamp(32px, 4vw, 56px); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.strain-card {
  background: var(--ground-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.section.paper .strain-card { background: var(--white); border-color: var(--line-dark); color: var(--ink); }
.strain-card .photo { aspect-ratio: 1 / 1; overflow: hidden; background: #000; }
.strain-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.strain-card:hover .photo img { transform: scale(1.04); }
.strain-card .body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.strain-card h3 { font-size: 22px; }
.strain-card .cross { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); }
.section.paper .strain-card .cross { color: var(--green-ink); }
.spec { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; margin: 4px 0 0; }
.spec div { display: grid; gap: 3px; }
.spec dt { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.spec dd { margin: 0; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; }
.spec .wide { grid-column: 1 / -1; }
.strain-card.mini .body { padding: 16px 18px; }
.strain-card.mini h3 { font-size: 17px; }
.tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px; background: rgba(26, 154, 26, 0.16); color: var(--green); }
.section.paper .tag { background: rgba(26, 154, 26, 0.12); color: var(--green-ink); }

/* ---- solventless / process ---- */
.process { overflow: hidden; }
.process-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.video-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  max-height: 720px;
  justify-self: center;
  width: min(100%, 405px);
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.process-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.process-shots figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1 / 1; }
.process-shots img { width: 100%; height: 100%; object-fit: cover; }
.process-shots figcaption { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding: 8px 2px 0; }
.credit { font-size: 12px; color: var(--muted); margin-top: 18px; }

/* ---- clones ---- */
.clone-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 40px; }
.clone-grid figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 2 / 3; background: var(--white); }
.clone-grid img { width: 100%; height: 100%; object-fit: cover; }

/* ---- contact ---- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(32px, 6vw, 96px); }
.cform { display: grid; gap: 14px; margin-top: 28px; }
.cform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cform label { display: grid; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); }
.cform input, .cform select, .cform textarea {
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line-dark);
  background: var(--white);
  color: var(--ink);
  width: 100%;
  text-transform: none;
  letter-spacing: 0;
}
.cform textarea { border-radius: var(--radius); min-height: 150px; resize: vertical; }
.cform input:focus, .cform select:focus, .cform textarea:focus { outline: 2px solid var(--green); outline-offset: 1px; border-color: var(--green); }
.cform .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.cform .actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 6px; }
.form-note { font-weight: 600; font-size: 14px; }
.form-note.ok { color: var(--green-ink); }
.form-note.err { color: #9c2b16; }
.contact-details { display: grid; gap: 26px; align-content: start; padding-top: 28px; }
.contact-details .big { font-size: clamp(26px, 3vw, 40px); font-weight: 800; text-decoration: none; word-break: break-word; }
.contact-details .label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 6px; }
.contact-details a { text-decoration: none; }
.contact-details a:hover { color: var(--green-ink); }

/* ---- footer ---- */
.site-footer { padding: 40px 0 32px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.footer-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.footer-row a { text-decoration: none; }
.footer-row a:hover { color: var(--white); }
.footer-legal { margin-top: 16px; font-size: 12px; }

/* ---- age gate ---- */
.agegate { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px; background: rgba(10, 13, 9, 0.92); backdrop-filter: blur(8px); }
.agegate-card { width: min(100%, 440px); background: var(--paper); color: var(--ink); border-radius: var(--radius); padding: 40px 34px; text-align: center; }
.agegate-card img { width: 96px; height: 96px; margin: 0 auto 18px; }
.agegate-title { font-size: 26px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
.agegate-actions { display: flex; gap: 12px; justify-content: center; margin-top: 22px; }
.agegate-actions .btn-pill { background: var(--ink); color: var(--white); }
.agegate-actions .btn-pill.primary { background: var(--green); }
.agegate-actions .btn-pill:hover { background: var(--green-ink); }
.agegate small { display: block; margin-top: 16px; color: var(--ink-2); }

/* ---- library page ---- */
.page-head { padding: 160px 0 clamp(36px, 5vw, 64px); }
.page-head h1 { font-size: clamp(40px, 6vw, 84px); max-width: 12ch; }
.legend { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 26px 0 0; padding: 0; list-style: none; font-size: 12px; color: var(--muted); }
.legend b { color: var(--white); font-weight: 700; }

/* ---- responsive ---- */
@media (max-width: 1000px) {
  .clone-grid { grid-template-columns: repeat(3, 1fr); }
  .clone-grid figure:nth-child(n + 4) { display: none; }
}
@media (max-width: 860px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: var(--gutter);
    left: var(--gutter);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ground-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 14px 16px; }
  .nav-links .nav-cta { text-align: center; margin-top: 6px; }
  .hero-grid, .two-col, .process-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { justify-content: flex-start; }
  .stat-bubble { width: 124px; height: 124px; }
  .stat-bubble b { font-size: 22px; }
  .stat-ring { width: 140px; height: 140px; }
  .stat-ring b { font-size: 28px; }
  .about-photo { max-width: 480px; }
  .video-frame { max-height: 560px; }
}
@media (max-width: 600px) {
  .cform .row { grid-template-columns: 1fr; }
  .process-shots { grid-template-columns: 1fr 1fr; }
  .process-shots figure:nth-child(3) { display: none; }
  .clone-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .clone-grid figure:nth-child(n + 3) { display: none; }
  .btn-round { width: 128px; height: 128px; font-size: 12px; }
  .hero { padding-top: 120px; }
  .hero-stats { gap: 10px; }
  .stat-bubble { width: 106px; height: 106px; padding: 10px; }
  .stat-bubble b { font-size: 20px; }
  .stat-bubble span { font-size: 9px; margin-top: 5px; letter-spacing: 0.05em; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .strain-card .photo img, .btn { transition: none; }
}
