/* === THEME: forestlake === */
/* ============================================
   THEME: Greenhouse Cannabis Company — Forest Lake
   Boutique. Educational. Proudly local — rooted since 1930.
   Palette derived from the Royal Highness / Goldleaf reference brands:
   deep warm-grey grounds with a champagne + amber gold accent pair.
   ============================================ */
:root {
  /* Brand palette */
  --gh-dark:       #29292a;   /* body ground */
  --gh-darker:     #222222;   /* location band */
  --gh-black:      #0a0a0a;   /* footer, form bg */
  --gh-greige:     #d6d1ca;   /* body text on dark */
  --gh-greige-mid: #c4bdb5;
  --gh-ink:        #3b3a3e;   /* ink on light */
  --gh-ink-mid:    #5a5560;
  --gh-gold:       #c6b784;   /* champagne — headings, labels */
  --gh-gold-warm:  #ae895d;   /* amber — primary CTA */
  --gh-white:      #ffffff;
  --gh-sep:        #999999;
  --gh-border:     #3e3e3e;

  /* Typography */
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body:    'Josefin Sans', 'Helvetica Neue', system-ui, sans-serif;

  /* Semantic tokens consumed by shared components */
  --body-bg: var(--gh-dark);
  --body-fg: var(--gh-greige);
  --heading: var(--gh-greige);
  --heading-strong: var(--gh-greige);
  --link: var(--gh-gold);
  --link-hover: var(--gh-gold-warm);

  --header-bg: transparent;
  --footer-bg: var(--gh-black);
  --footer-accent: var(--gh-gold);

  /* Aliases used by shared components (fall-through defaults) */
  --moss: var(--gh-gold);
  --deep-fern: var(--gh-gold-warm);
  --sprout: var(--gh-gold);
  --washi: var(--gh-border);
  --kinako: var(--gh-darker);
  --shoji: var(--gh-dark);
  --fog: var(--gh-sep);
  --charcoal: var(--gh-greige);
  --sumi: var(--gh-black);
  --yuzu: var(--gh-gold);
  --wisteria: var(--gh-gold-warm);

  --alert-bg: var(--gh-darker);
  --alert-border: var(--gh-border);
  --alert-dot-open: var(--gh-gold);

  --hero-bg-image: none;
  --hero-overlay: none;
}

body {
  background-color: var(--gh-dark);
  color: var(--gh-greige);
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--gh-greige);
}

/* Reusable editorial primitives used across overrides */
.gh-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gh-gold);
}
.gh-rule {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gh-sep);
  opacity: 0.6;
  border: 0;
  margin: 14px 0 28px;
}
.gh-italic-gold { font-style: italic; color: var(--gh-gold); }

/* Prevent horizontal scroll from full-bleed sections */
body { overflow-x: hidden; }


/* === BASE === */
/* ============================================
   BASE — reset + layout utilities
   (shared across all tenants; theme.css defines tokens)
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h, 64px) + 32px);
}

body {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-fg, #1C1C1C);
  background: var(--body-bg, #FAFAF5);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--link, #4A7C59);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s, background 0.2s;
}
a:hover { color: var(--link-hover, #7FB069); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display, 'DM Sans', sans-serif);
  font-weight: 700;
  color: var(--heading, #1C1C1C);
  line-height: 1.1;
}

h2 { font-size: clamp(1.8rem, 4vw, 3rem); }

p + p { margin-top: 1.5em; }

.wrap {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}


/* === COMPONENT: age-gate === */
/* ============================================
   AGE GATE — Forest Lake luxury variant
   Dark fullscreen, gold button pair, centered logo.
   ============================================ */
.age-gate--fl {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(10, 8, 6, 0.97);
  transition: opacity 0.6s ease;
}
.age-verified .age-gate--fl { display: none; }

.age-gate--fl .age-gate__backdrop {
  position: absolute; inset: 0;
  background: transparent;
  animation: flAgeFadeIn 0.4s ease-out both;
}

.age-gate--fl .age-gate__card {
  position: relative;
  max-width: 560px; width: 100%;
  text-align: center;
  animation: flAgePop 0.55s cubic-bezier(0.34, 1.2, 0.64, 1) both;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.age-gate--fl .age-gate__logo {
  display: block;
  height: 120px;
  width: auto;
  max-width: 100%;
  margin: 0 auto 32px;
  object-fit: contain;
}

.age-gate--fl .age-gate__sep {
  width: 40px; height: 1px;
  background: var(--gh-sep);
  margin: 0 auto 24px;
}

.age-gate--fl .age-gate__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gh-gold);
  margin-bottom: 18px;
}

.age-gate--fl .age-gate__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  font-style: italic;
  color: var(--gh-greige);
  line-height: 1.3;
  margin: 0 0 14px;
}

.age-gate--fl .age-gate__sub {
  font-size: 15px;
  color: var(--gh-sep);
  font-weight: 300;
  line-height: 1.7;
  margin: 0 auto 40px;
  max-width: 360px;
  letter-spacing: 0.04em;
}

.age-gate--fl .age-gate__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-gate--fl .age-gate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 44px;
  border: 1px solid var(--gh-gold);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
  text-decoration: none;
}
.age-gate--fl .age-gate__btn:active { transform: translateY(1px); }

.age-gate--fl .age-gate__btn--fill {
  background: var(--gh-gold);
  color: var(--gh-black);
  font-weight: 600;
}
.age-gate--fl .age-gate__btn--fill:hover,
.age-gate--fl .age-gate__btn--fill:focus-visible {
  background: transparent;
  color: var(--gh-gold);
}

.age-gate--fl .age-gate__btn--outline {
  background: rgba(41, 41, 42, 0.43);
  color: var(--gh-gold);
  font-weight: 400;
}
.age-gate--fl .age-gate__btn--outline:hover,
.age-gate--fl .age-gate__btn--outline:focus-visible {
  background: var(--gh-darker);
}

.age-gate--fl .age-gate__btn:focus-visible {
  outline: 2px solid var(--gh-gold);
  outline-offset: 3px;
}

.age-gate--fl .age-gate__legal {
  margin: 32px auto 0;
  font-size: 12px;
  color: rgba(153, 153, 153, 0.6);
  letter-spacing: 0.06em;
  max-width: 380px;
  line-height: 1.6;
}

body.age-gate-active { overflow: hidden; }

@keyframes flAgeFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes flAgePop {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

@media (max-width: 520px) {
  .age-gate--fl { padding: 24px; }
  .age-gate--fl .age-gate__btn { padding: 16px 28px; width: 100%; }
}


/* === COMPONENT: hero === */
/* ============================================
   HERO — Forest Lake coming-soon two-column
   Left: editorial brand story.  Right: notify-me form over photo.
   ============================================ */
.fl-hero {
  width: 100%;
  background: var(--gh-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--gh-border);
}

/* ─── Left column ─────────────────────────── */
.fl-hero__left {
  padding: 7% 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--gh-border);
}
.fl-hero__logo {
  height: 180px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left;
  margin-bottom: 40px;
}
.fl-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gh-gold);
  margin: 0;
}
.fl-hero__rule {
  width: 30px;
  height: 1px;
  background: var(--gh-sep);
  opacity: 0.6;
  border: 0;
  margin: 14px 0 28px;
}
.fl-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
  color: var(--gh-greige);
  margin: 0 0 10px;
}
.fl-hero__headline em {
  font-style: italic;
  color: var(--gh-gold);
}
.fl-hero__body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: rgba(214, 209, 202, 0.8);
  font-weight: 300;
  max-width: 420px;
  margin: 24px 0 0;
  letter-spacing: 0.03em;
}

/* ─── Right column: photo + veil + card ─── */
.fl-hero__right {
  position: relative;
  padding: 7% 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-size: cover;
  background-position: center;
  min-height: 100%;
}
.fl-hero__right-veil {
  position: absolute; inset: 0;
  background: rgba(12, 10, 8, 0.78);
  pointer-events: none;
}
.fl-hero__form-card {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 520px;
}
.fl-hero__form-card .fl-hero__rule { background: var(--gh-greige); opacity: 0.35; }

.fl-hero__form-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--gh-greige);
  margin: 0 0 16px;
}
.fl-hero__form-headline em {
  font-style: italic;
  color: var(--gh-gold);
}
.fl-hero__form-sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(214, 209, 202, 0.7);
  font-weight: 300;
  letter-spacing: 0.03em;
  margin: 0 0 32px;
  max-width: 360px;
}

/* ─── Form ─────────────────────────────────── */
.fl-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.fl-field label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(214, 209, 202, 0.7);
  font-weight: 400;
}
.fl-field input {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--gh-ink);
  background: rgba(242, 237, 226, 0.88);
  border: 1px solid rgba(242, 237, 226, 0.3);
  padding: 14px 16px;
  outline: none;
  width: 100%;
  border-radius: 0;
  appearance: none;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.fl-field input:focus-visible {
  border-color: var(--gh-gold);
  background: rgba(242, 237, 226, 0.98);
  box-shadow: 0 0 0 2px rgba(198, 183, 132, 0.35);
}
.fl-field input::placeholder { color: rgba(59, 58, 62, 0.45); }
.fl-field input[aria-invalid="true"] {
  border-color: #c96b5a;
  box-shadow: 0 0 0 2px rgba(201, 107, 90, 0.25);
}

.fl-btn-submit {
  width: 100%;
  background: var(--gh-gold-warm);
  color: var(--gh-white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 16px;
  border: 1px solid var(--gh-gold-warm);
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.fl-btn-submit:hover,
.fl-btn-submit:focus-visible {
  background: transparent;
  color: var(--gh-gold-warm);
}
.fl-btn-submit:focus-visible {
  outline: 2px solid var(--gh-gold);
  outline-offset: 3px;
}
.fl-btn-submit[disabled] { opacity: 0.6; cursor: wait; }

.fl-form-fine {
  font-family: var(--font-body);
  font-size: 12px;
  /* Dialled up from 0.45 → 0.65 alpha to clear WCAG AA on the dark ground. */
  color: rgba(214, 209, 202, 0.65);
  text-align: center;
  margin: 14px 0 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Success state ─────────────────────── */
.fl-form-success {
  text-align: center;
  padding: 40px 0;
}
.fl-form-success__sep {
  width: 30px; height: 1px;
  background: var(--gh-gold);
  margin: 0 auto 20px;
}
.fl-form-success__hl {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--gh-greige);
  margin: 0 0 12px;
}
.fl-form-success__body {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(214, 209, 202, 0.65);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.04em;
  margin: 0;
}

/* ─── Responsive ─────────────────────────── */
@media (max-width: 900px) {
  .fl-hero { grid-template-columns: 1fr; }
  .fl-hero__left {
    padding: 64px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--gh-border);
  }
  .fl-hero__right {
    padding: 64px 24px;
    min-height: 520px;
  }
  .fl-hero__logo { height: 140px; margin-bottom: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .fl-btn-submit, .fl-field input { transition: none; }
}


/* === COMPONENT: location-band === */
/* ============================================
   LOCATION BAND — Forest Lake (tenant-only)
   Two-column: framed dark-styled map + story/pillars.
   ============================================ */
.fl-band {
  width: 100%;
  background: var(--gh-darker);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--gh-border);
}

.fl-band__side { padding: 10% 8%; }

.fl-band__map-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.fl-band__pillars-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--gh-border);
}

.fl-band__header { margin-bottom: 24px; }
.fl-band__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gh-gold);
  margin: 0 0 10px;
}
.fl-band__rule {
  width: 30px; height: 1px;
  background: var(--gh-sep); opacity: 0.5;
  border: 0; margin: 0 0 14px;
}
.fl-band__address {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 15px;
  font-weight: 300;
  color: var(--gh-greige);
  line-height: 1.65;
  letter-spacing: 0.04em;
}
.fl-band__address a {
  color: inherit;
  border-bottom: 1px solid rgba(214, 209, 202, 0.25);
}
.fl-band__address a:hover,
.fl-band__address a:focus-visible {
  color: var(--gh-gold);
  border-bottom-color: var(--gh-gold);
}

.fl-band__map-frame {
  width: 100%;
  position: relative;
  border: 1px solid rgba(198, 183, 132, 0.6);
  padding: 8px;
  background: var(--gh-black);
  box-shadow:
    0 0 0 1px rgba(198, 183, 132, 0.12),
    0 0 40px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(198, 183, 132, 0.08);
}
.fl-band__map-frame::before {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(198, 183, 132, 0.2);
  pointer-events: none;
}
.fl-band__map-frame iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  /* Desaturated dark-mode tint so the map blends with the surrounding dark. */
  filter: invert(90%) hue-rotate(180deg) saturate(0.7) brightness(1);
}

.fl-band__story-hl {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--gh-greige);
  margin: 0 0 32px;
}
.fl-band__story-hl em {
  font-style: italic;
  color: var(--gh-gold);
}

.fl-pillars { display: flex; flex-direction: column; }
.fl-pillar {
  padding: 24px 0 24px 24px;
  border-bottom: 1px solid var(--gh-border);
  border-left: 1px solid var(--gh-border);
  position: relative;
  transition: border-color 0.3s;
}
.fl-pillar:first-child { border-top: 1px solid var(--gh-border); }
.fl-pillar::before {
  content: '';
  position: absolute; top: 0; left: -1px;
  width: 2px; height: 100%;
  background: var(--gh-gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.fl-pillar:hover::before,
.fl-pillar:focus-within::before { opacity: 0.5; }

.fl-pillar__title {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gh-gold);
  font-weight: 600;
  margin: 0 0 8px;
}
.fl-pillar__body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(214, 209, 202, 0.65);
  font-weight: 300;
  letter-spacing: 0.03em;
  margin: 0;
}

@media (max-width: 900px) {
  .fl-band { grid-template-columns: 1fr; }
  .fl-band__side { padding: 48px 24px; }
  .fl-band__pillars-side {
    border-left: 0;
    border-top: 1px solid var(--gh-border);
  }
}


/* === COMPONENT: footer === */
/* ============================================
   FOOTER — Forest Lake minimal dark band
   ============================================ */
.fl-footer {
  background: var(--gh-black);
  border-top: 1px solid var(--gh-border);
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.fl-footer__copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(214, 209, 202, 0.75);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}
.fl-footer__age {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gh-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 600px) {
  .fl-footer {
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

