:root {
  --bg: #F9F6F0;
  --fg: #1C3A2F;
  --accent: #C4745A;
  --green-mid: #3D7A52;
  --green-dark: #1C3A2F;
  --cream: #F9F6F0;
  --warm-white: #FDFBF7;
  --text-muted: #5A6E60;
  --border: rgba(28, 58, 47, 0.1);
}

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

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

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(249, 246, 240, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}
.nav-leaf { color: var(--green-mid); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(61, 122, 82, 0.08) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 20% 80%, rgba(196, 116, 90, 0.06) 0%, transparent 60%);
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
}
.hero-circle-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(61, 122, 82, 0.07) 0%, transparent 70%);
}
.hero-circle-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: 10%;
  background: radial-gradient(circle, rgba(196, 116, 90, 0.05) 0%, transparent 70%);
}
.botanical-doodle {
  position: absolute;
  top: 10%; left: 5%;
  width: 400px; height: 500px;
  opacity: 0.6;
}
.doodle-svg { width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--green-dark);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 48px;
}
.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.4rem;
  font-weight: 600;
  color: var(--green-dark);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-plant-art {
  position: relative;
  z-index: 2;
  width: 280px;
  margin-left: 80px;
  flex-shrink: 0;
}
.plant-illustration { width: 100%; }

/* PROVENANCE */
.provenance {
  background: var(--warm-white);
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.provenance-inner {
  max-width: 500px;
}
.provenance-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}
.provenance-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.provenance-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.provenance-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  background: rgba(28, 58, 47, 0.07);
  color: var(--green-dark);
  font-size: 0.8rem;
  padding: 7px 16px;
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.provenance-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin-top: 80px;
}
.provenance-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--cream);
}
.card-icon { margin-bottom: 20px; }
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* COLLECTION */
.collection {
  padding: 100px 48px;
  background: var(--cream);
}
.collection-header {
  max-width: 580px;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.category-card {
  padding: 36px 28px 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--warm-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(28, 58, 47, 0.1);
}
.category-art {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.category-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.category-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* MANIFESTO */
.manifesto {
  background: var(--green-dark);
  padding: 100px 48px;
}
.manifesto-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-mark { margin-bottom: 40px; }
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: #E8F0EA;
  line-height: 1.55;
  margin-bottom: 28px;
}
.manifesto-attr {
  font-size: 0.8rem;
  color: rgba(232, 240, 234, 0.5);
  letter-spacing: 0.08em;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
}
.closing-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.closing-illustration {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}
.closing-plant { width: 100%; height: 100%; }
.closing-text {}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}
.closing-note {
  display: flex;
  align-items: center;
  gap: 10px;
}
.closing-note span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* FOOTER */
.footer {
  background: var(--green-dark);
  padding: 64px 48px 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 80px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #E8F0EA;
  display: block;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(232, 240, 234, 0.5);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-head {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232, 240, 234, 0.4);
  font-weight: 500;
  margin-bottom: 4px;
}
.footer-link {
  font-size: 0.88rem;
  color: rgba(232, 240, 234, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: #E8F0EA; }
.footer-bottom {
  border-top: 1px solid rgba(232, 240, 234, 0.1);
  padding-top: 28px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(232, 240, 234, 0.3);
}

/* MOBILE */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .hero-plant-art { display: none; }
  .hero-headline { font-size: 3rem; }
  .provenance { padding: 64px 24px; }
  .provenance-visual { grid-template-columns: 1fr; gap: 20px; }
  .collection { padding: 64px 24px; }
  .categories { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .manifesto { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .closing-inner { grid-template-columns: 1fr; gap: 40px; }
  .closing-illustration { width: 120px; height: 120px; margin: 0 auto; }
  .footer { padding: 48px 24px 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 600px) {
  .hero-stats { gap: 20px; }
  .categories { grid-template-columns: 1fr; }
}
