/* =========================================
   CULTIVAULT — West Coast Cannabis Wholesale
   ========================================= */

:root {
  --cream: #F7F3EC;
  --cream-dark: #EDE8DF;
  --forest: #1A3A2A;
  --forest-light: #2A5A3A;
  --amber: #C8922A;
  --amber-dark: #A87820;
  --text: #1C1C1C;
  --text-muted: #6B6560;
  --text-light: #9A948C;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── HERO ─────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(200,146,42,0.04) 60px,
      rgba(200,146,42,0.04) 62px
    );
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 80px 60px;
  align-items: center;
}

.hero-text {
  padding-right: 80px;
}

.hero-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.headline-small {
  color: rgba(247,243,236,0.7);
}

.headline-accent {
  color: var(--cream);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(247,243,236,0.75);
  margin-bottom: 48px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.5);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(200,146,42,0.3);
}

/* Hero Visual */
.hero-visual {
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-block {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(200,146,42,0.25);
}

.vb-top {
  flex: 1;
  background: 
    linear-gradient(160deg, #2a5a3a 0%, #1a3a2a 40%, #0f2a1a 100%);
  position: relative;
  overflow: hidden;
}

.vb-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200,146,42,0.15) 0%, transparent 70%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 30px,
      rgba(200,146,42,0.05) 30px,
      rgba(200,146,42,0.05) 32px
    );
}

.vb-top::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10,25,15,0.8), transparent);
}

.vb-label {
  background: rgba(200,146,42,0.15);
  border-top: 1px solid rgba(200,146,42,0.2);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vb-region {
  font-size: 0.85rem;
  color: var(--cream);
  font-weight: 500;
}

.vb-type {
  font-size: 0.7rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vb-grain {
  height: 8px;
  background: linear-gradient(90deg, 
    var(--amber) 0%, 
    var(--amber) 25%, 
    #8a6020 25%, 
    #8a6020 50%, 
    var(--amber) 50%, 
    var(--amber) 75%, 
    #8a6020 75%
  );
  background-size: 40px 8px;
}

/* Hero Bottom Strip */
.hero-bottom-strip {
  background: var(--amber);
  color: var(--forest);
  padding: 14px 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.strip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--forest);
  opacity: 0.5;
}

/* ── MANIFESTO ─────────────────────────── */

.manifesto {
  background: var(--cream);
  padding: 120px 80px;
}

.manifesto-inner {
  max-width: 900px;
}

.manifesto-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 32px;
  font-weight: 500;
}

.manifesto-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--forest);
  margin-bottom: 40px;
}

.manifesto-statement em {
  color: var(--amber);
  font-style: italic;
}

.manifesto-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 720px;
}

.manifesto-origin {
  margin-top: 48px;
}

.origin-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid var(--cream-dark);
  padding: 8px 16px;
  border-radius: 2px;
}

/* ── SOURCING ──────────────────────────── */

.sourcing {
  background: var(--forest);
  padding: 120px 80px;
  color: var(--cream);
}

.sourcing-inner {}

.sourcing-header {
  margin-bottom: 64px;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--cream);
  max-width: 640px;
}

.section-headline em {
  color: var(--amber);
  font-style: italic;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.region-card {
  background: rgba(247,243,236,0.04);
  border: 1px solid rgba(200,146,42,0.15);
  padding: 40px 36px;
  transition: background 0.2s;
}

.region-card:hover {
  background: rgba(247,243,236,0.07);
}

.region-map {
  margin-bottom: 28px;
}

.region-map svg {
  width: 80px;
  height: 60px;
}

.region-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 16px;
}

.region-detail {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(247,243,236,0.65);
  margin-bottom: 24px;
}

.region-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.region-meta span {
  font-size: 0.72rem;
  color: var(--amber);
  letter-spacing: 0.08em;
}

/* ── SELECTION ─────────────────────────── */

.selection {
  background: var(--cream);
  padding: 120px 80px;
}

.selection-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.selection-left .section-headline em {
  color: var(--amber);
}

.selection-desc {
  margin-top: 24px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 400px;
}

.product-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.category-row {}

.cat-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.cat-bar {
  height: 3px;
  background: var(--cream-dark);
  border-radius: 2px;
  margin-bottom: 6px;
  overflow: hidden;
}

.cat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--forest), var(--forest-light));
  border-radius: 2px;
}

.cat-note {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.volume-note {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--forest);
  display: flex;
  align-items: center;
  gap: 12px;
}

.vol-label {
  font-size: 0.75rem;
  color: rgba(247,243,236,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vol-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 500;
}

/* ── OPERATIONS ───────────────────────── */

.operations {
  background: var(--cream-dark);
  padding: 120px 80px;
}

.operations-inner {}

.ops-headline {
  margin-bottom: 64px;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.op-card {
  background: var(--cream);
  padding: 40px 32px;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}

.op-card:hover {
  border-color: var(--amber);
}

.op-icon {
  margin-bottom: 24px;
}

.op-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 14px;
}

.op-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── CLOSING ───────────────────────────── */

.closing {
  background: var(--forest);
  padding: 120px 80px;
  color: var(--cream);
}

.closing-inner {
  max-width: 800px;
}

.closing-border {
  width: 60px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 48px;
}

.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 1rem;
  color: rgba(247,243,236,0.6);
  margin-bottom: 56px;
  letter-spacing: 0.04em;
}

.closing-meta {
  display: flex;
  align-items: center;
  gap: 32px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.4);
}

.meta-value {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
}

.meta-sep {
  width: 1px;
  height: 36px;
  background: rgba(200,146,42,0.25);
}

/* ── FOOTER ─────────────────────────────── */

.site-footer {
  background: #0f2a1a;
  padding: 48px 80px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 140px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 0.7rem;
  color: rgba(247,243,236,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-legal {
  flex: 1;
}

.footer-disclaimer {
  font-size: 0.75rem;
  line-height: 1.65;
  color: rgba(247,243,236,0.3);
}

.footer-meta {
  font-size: 0.72rem;
  color: rgba(247,243,236,0.3);
  white-space: nowrap;
  align-self: center;
}

/* ── RESPONSIVE ─────────────────────────── */

@media (max-width: 1024px) {
  .hero-inner {
    padding: 60px 48px 40px;
    grid-template-columns: 1fr;
  }
  .hero-visual { display: none; }
  .hero-text { padding-right: 0; }
  .regions-grid { grid-template-columns: 1fr; }
  .ops-grid { grid-template-columns: 1fr 1fr; }
  .selection-inner { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero-inner { padding: 60px 28px 40px; }
  .manifesto, .sourcing, .selection, .operations, .closing { padding: 80px 28px; }
  .hero-bottom-strip { padding: 14px 28px; }
  .ops-grid { grid-template-columns: 1fr; }
  .closing-meta { flex-direction: column; align-items: flex-start; gap: 20px; }
  .meta-sep { display: none; }
  .site-footer { padding: 48px 28px; }
  .footer-inner { flex-direction: column; gap: 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .hero-stats { gap: 20px; }
}
