:root {
  --bg: #FAF7F2;
  --fg: #1E2D1E;
  --accent: #E8856B;
  --accent-dark: #D4715A;
  --green: #1E3A2F;
  --coral: #E8856B;
  --coral-dark: #D4715A;
  --mint: #B8D5C8;
  --butter: #F5E6A3;
  --sage: #C5D5B5;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(30, 58, 47, 0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px 48px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 420px;
}
.hero-image-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(30, 58, 47, 0.12);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(30, 58, 47, 0.15);
  margin-right: 40px;
}

/* Philosophy */
.philosophy {
  background: var(--green);
  padding: 80px 32px;
}
.philosophy-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.phil-icon {
  margin-bottom: 24px;
}
.phil-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #FAF7F2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.phil-body {
  font-size: 1.05rem;
  color: rgba(250, 247, 242, 0.75);
  line-height: 1.8;
}

/* Collection */
.collection {
  padding: 80px 32px;
}
.collection-inner { max-width: 1200px; margin: 0 auto; }
.collection-header { margin-bottom: 48px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 0.9rem;
  color: var(--text-light);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card { display: flex; flex-direction: column; gap: 12px; }
.product-img-placeholder {
  aspect-ratio: 3/4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-placeholder.coral { background: var(--coral); }
.product-img-placeholder.mint { background: var(--mint); }
.product-img-placeholder.butter { background: var(--butter); }
.product-img-placeholder.coral-dark { background: var(--coral-dark); }
.product-img-placeholder.sage { background: var(--sage); }
.product-icon { opacity: 0.8; }
.product-info { display: flex; flex-direction: column; gap: 4px; }
.product-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
}
.product-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  font-family: var(--font-body);
}
.product-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
}

/* Why */
.why { padding: 80px 32px; background: #F2EFE9; }
.why-inner { max-width: 1200px; margin: 0 auto; }
.why .section-title { margin-bottom: 48px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.why-item { display: flex; flex-direction: column; gap: 12px; }
.why-icon-wrap { width: 40px; height: 40px; display: flex; align-items: center; }
.why-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
}
.why-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 100px 32px;
  text-align: center;
  background: var(--bg);
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  font-style: italic;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(30, 58, 47, 0.12);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-light);
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links span {
  font-size: 0.82rem;
  color: var(--text-light);
  cursor: default;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-text { order: 2; }
  .hero-image-wrap { order: 1; aspect-ratio: 16/9; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero { padding: 40px 20px 32px; }
  .hero-stats { gap: 0; }
  .stat { padding-right: 24px; }
  .stat-divider { margin-right: 24px; }
  .stat-number { font-size: 1.3rem; }
  .philosophy, .collection, .why, .closing { padding: 60px 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
}