:root {
  --sage: #D3D6CD;
  --sage-dark: #b9beae;
  --cream: #f7f7f3;
  --orange: #FF914D;
  --orange-dark: #e67a34;
  --ink: #2b2b26;
  --ink-soft: #55564c;
  --max-width: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  margin: 0;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }

/* Topbar */
.topbar {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  padding: 8px 16px;
}

/* Header */
.site-header {
  background: var(--sage);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--sage-dark);
}

.header-row {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex: 1;
}

.logo-mark {
  height: 28px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.header-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  flex: 1;
  justify-content: flex-end;
}

.header-icons .cart-link {
  background: var(--orange);
  color: var(--cream);
  padding: 8px 18px;
  border-radius: 999px;
  transition: background 0.15s ease;
}

.header-icons .cart-link:hover { background: var(--orange-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex: 1;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.category-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 12px 24px;
  border-top: 1px solid var(--sage-dark);
  font-size: 0.85rem;
  font-weight: 500;
}

.category-nav a { opacity: 0.8; transition: opacity 0.15s ease; }
.category-nav a:hover { opacity: 1; color: var(--orange-dark); }

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  background: var(--sage);
  position: relative;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 32px 40px;
  text-align: center;
  gap: 16px;
}

.hero-banner {
  width: 100%;
  height: clamp(180px, 28vw, 340px);
  object-fit: cover;
  display: block;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange-dark);
  margin: 0;
}

.hero-copy h1 {
  font-size: 2.6rem;
  font-style: italic;
}

.hero-sub {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 380px;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: var(--cream);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

/* Badges */
.badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px 24px;
  background: var(--cream);
}

.badge {
  border: 1px solid var(--sage-dark);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
}

/* Products */
.products {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 8px;
}

.section-heading h2 { font-size: 1.8rem; font-style: italic; }

.section-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--sage);
  border-radius: 14px;
  overflow: hidden;
  padding: 0 0 18px;
  transition: transform 0.15s ease;
}

.product-card:hover { transform: translateY(-4px); }

.product-image {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 12px;
}

.ph-1 { background: linear-gradient(135deg, #6b4a34, #8a6647); }
.ph-2 { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.ph-3 { background: linear-gradient(135deg, #7a6650, #a0846a); }
.ph-4 { background: linear-gradient(135deg, #556052, #6f7a63); }
.ph-5 { background: linear-gradient(135deg, #4d5a4a, var(--orange-dark)); }
.ph-6 { background: linear-gradient(135deg, #8a6647, #6b4a34); }

.product-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 16px 4px;
}

.product-card .price {
  padding: 0 16px;
  color: var(--ink-soft);
  font-weight: 500;
  margin: 0 0 10px;
}

.product-link {
  margin: 0 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange-dark);
  display: inline-block;
}

/* Custom CTA */
.custom-cta {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 60px 24px;
}

.custom-cta h2 {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 12px;
}

.custom-cta p {
  color: #cfd0c8;
  max-width: 480px;
  margin: 0 auto 24px;
}

/* Story */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 48px;
  padding: 70px 24px;
  align-items: center;
}

.story-image {
  border-radius: 14px;
  overflow: hidden;
  min-height: 280px;
}
.story-image svg { width: 100%; height: 100%; display: block; }

.story-copy h2 {
  font-size: 2rem;
  margin: 6px 0 18px;
}

.story-copy p {
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 14px;
}

/* Coming soon */
.coming-soon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 70px;
}

.coming-soon-card {
  background: var(--sage);
  border: 1px dashed var(--orange-dark);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
}

.coming-soon-card .tag {
  display: inline-block;
  background: var(--orange);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.coming-soon-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.coming-soon-card p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }

/* Community */
.community {
  background: var(--sage);
  text-align: center;
  padding: 70px 24px;
}

.community h2 { font-size: 2rem; font-style: italic; margin-bottom: 10px; }
.community p { color: var(--ink-soft); max-width: 420px; margin: 0 auto 24px; }

.signup-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 420px;
  margin: 0 auto;
}

.signup-form input {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--sage-dark);
  font-family: inherit;
  font-size: 0.9rem;
}

.signup-form input:focus { outline: 2px solid var(--orange); }

.form-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  min-height: 1.2em;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 40px 24px 24px;
}

.footer-row {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #454540;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.footer-nav a:hover { color: var(--orange); }

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: #9a9b91;
  margin: 20px 0 0;
}

/* Responsive */
@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .header-row .logo { order: 0; }
  .header-icons { display: none; }
  .category-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px 24px 24px;
  }
  .category-nav.open { display: flex; }
}
