/* ======================================
   CANOPY STUDIO — CSS
   ====================================== */

:root {
  --bg: #0b0b0b;
  --bg-alt: #111111;
  --fg: #e8e4dc;
  --fg-muted: #7a756d;
  --gold: #c8a96e;
  --gold-dim: #a68c54;
  --sage: #8a9e7d;
  --sage-dim: #5e6b54;
  --border: rgba(200,169,110,0.18);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body { background: var(--bg); min-height: 100vh; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: rgba(11,11,11,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* HERO */
.hero {
  min-height: 100vh;
  padding: 120px 48px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(138,158,125,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(72px, 9vw, 140px);
  font-weight: 300;
  line-height: 0.88;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.hero-line-2 { font-style: italic; color: var(--gold); }
.hero-line-3 { color: var(--sage); }

.hero-right { display: flex; flex-direction: column; gap: 32px; }
.hero-visual {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  grid-template-rows: 120px 80px;
  gap: 12px;
  align-items: center;
}
.vb-1 {
  grid-column: 1; grid-row: 1;
  background: var(--gold);
  opacity: 0.12;
  border-radius: 2px;
  height: 120px;
}
.vb-2 {
  grid-column: 1; grid-row: 2;
  background: var(--sage);
  opacity: 0.15;
  border-radius: 2px;
  height: 80px;
}
.vb-3 {
  grid-column: 2; grid-row: 1 / 3;
  background: linear-gradient(135deg, #1a1a1a 0%, #1f2a1a 100%);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 212px;
  position: relative;
  overflow: hidden;
}
.vb-3::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 60%, rgba(138,158,125,0.15) 0%, transparent 60%);
}
.leaf-svg { width: 60px; height: 90px; position: relative; z-index: 1; }
.vb-4 {
  grid-column: 3; grid-row: 1 / 3;
  background: var(--fg);
  opacity: 0.04;
  border-radius: 2px;
  height: 212px;
}
.hemp-texture {
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(200,169,110,0.06) 3px, rgba(200,169,110,0.06) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(200,169,110,0.06) 3px, rgba(200,169,110,0.06) 4px);
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-muted);
  font-style: italic;
}

/* PHILOSOPHY */
.philosophy {
  background: var(--bg-alt);
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.phil-inner { max-width: 1100px; margin: 0 auto; }
.phil-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 48px;
}
.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  margin-bottom: 64px;
}
.phil-divider {
  background: var(--border);
  width: 1px;
}
.phil-col h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 24px;
}
.phil-col p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.8;
  color: var(--fg-muted);
  font-weight: 300;
}
.phil-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
}

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
  background: var(--bg);
}
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-quote {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 56px;
  border-left: 2px solid var(--gold);
  padding-left: 40px;
}
.manifesto-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.manifesto-body p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.9;
  color: var(--fg-muted);
  font-weight: 300;
}

/* COLLECTION */
.collection {
  padding: 100px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.collection-inner { max-width: 1200px; margin: 0 auto; }
.coll-header { margin-bottom: 64px; }
.coll-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.coll-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 20px;
}
.coll-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
  font-weight: 300;
  max-width: 500px;
}
.coll-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.coll-item { display: flex; flex-direction: column; gap: 16px; }
.coll-visual {
  aspect-ratio: 3/4;
  background: #141414;
  border: 1px solid var(--border);
  border-radius: 3px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cv-1 {
  background: linear-gradient(160deg, #1a1a18 0%, #1e2018 100%);
}
.cv-1::before {
  content: '';
  position: absolute;
  width: 60px; height: 80px;
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}
.cv-2 {
  background: linear-gradient(160deg, #181818 0%, #1a1f1a 100%);
}
.cv-2::before {
  content: '';
  position: absolute;
  width: 70px; height: 90px;
  background: rgba(138,158,125,0.08);
  border-radius: 8px;
  border: 1px solid rgba(138,158,125,0.15);
}
.cv-3 {
  background: linear-gradient(160deg, #1a1818 0%, #1f1c18 100%);
}
.cv-3::before {
  content: '';
  position: absolute;
  width: 80px; height: 100px;
  background: rgba(200,169,110,0.05);
  border-radius: 2px;
}
.cv-4 {
  background: linear-gradient(160deg, #181818 0%, #181a18 100%);
}
.cv-4::before {
  content: '';
  position: absolute;
  width: 50px; height: 90px;
  border: 1px solid rgba(200,169,110,0.12);
  border-radius: 2px;
}
.cv-5 {
  background: linear-gradient(160deg, #1a1a1a 0%, #1e1e18 100%);
}
.cv-5::before {
  content: '';
  position: absolute;
  width: 70px; height: 40px;
  background: rgba(200,169,110,0.06);
  border-radius: 35px 35px 2px 2px;
  border: 1px solid rgba(200,169,110,0.12);
}
.coll-type {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  text-transform: uppercase;
  position: absolute;
  top: 14px; left: 14px;
}
.coll-info h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 6px;
}
.coll-info p {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* AGENT NOTE */
.agent-note {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.an-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.an-icon { flex-shrink: 0; margin-top: 2px; }
.an-text {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 32px;
}
.closing-headline em { color: var(--gold); font-style: italic; }
.closing-body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}
.closing-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  text-transform: uppercase;
}
.cm-dot {
  width: 3px; height: 3px;
  background: var(--gold-dim);
  border-radius: 50%;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--gold-dim);
}
.footer-tagline {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--fg-muted);
  font-style: italic;
}
.footer-copy {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .phil-grid { grid-template-columns: 1fr; gap: 32px; }
  .phil-divider { display: none; }
  .phil-stat-row { grid-template-columns: 1fr; gap: 24px; }
  .manifesto-body { grid-template-columns: 1fr; gap: 24px; }
  .coll-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy { padding: 60px 24px; }
  .manifesto { padding: 60px 24px; }
  .collection { padding: 60px 24px; }
  .closing { padding: 80px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .closing-meta { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .nav-links { display: none; }
  .coll-grid { grid-template-columns: 1fr 1fr; }
}