/* Foliage & Fronds — botanical apothecary design system */
:root {
  --forest: #3f4c39;      /* deep sage-green: wordmark, headings, buttons */
  --sage: #6d7b5e;        /* mid sage: accents */
  --sage-soft: #9aa88b;   /* soft sage: hairlines */
  --cream: #f4efe4;       /* page background */
  --paper: #fbf8f0;       /* cards / panels */
  --kraft: #e4d8c1;       /* warm kraft accent */
  --clay: #b9764f;        /* warm clay accent (sparing) */
  --ink: #2e2d27;         /* body text */
  --muted: #6f6d61;       /* secondary text */
  --line: rgba(63, 76, 57, 0.16);
  --shadow: 0 26px 60px rgba(46, 45, 39, 0.12);
  --radius: 14px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; margin: 0; line-height: 1.05; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(63, 76, 57, 0.28); }
.btn-ghost { border-color: var(--forest); color: var(--forest); background: transparent; }
.btn-ghost:hover { background: var(--forest); color: var(--cream); transform: translateY(-2px); }
.text-link {
  color: var(--forest);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--sage-soft);
  padding-bottom: 3px;
  transition: border-color 0.18s ease;
}
.text-link:hover { border-color: var(--forest); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 239, 228, 0.86);
  backdrop-filter: saturate(1.1) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--forest);
  letter-spacing: 0.01em;
}
.brand small {
  margin-top: 3px;
  color: var(--sage);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--forest); }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: clamp(520px, 78vh, 760px);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 96px) clamp(24px, 6vw, 88px);
  background:
    radial-gradient(circle at 8% 0%, rgba(109, 123, 94, 0.14), transparent 60%),
    var(--cream);
}
.hero-copy h1 {
  font-size: clamp(3rem, 6.4vw, 5.4rem);
  color: var(--forest);
  margin-bottom: 20px;
}
.hero-copy h1 em { font-style: italic; color: var(--sage); }
.hero-copy p {
  max-width: 30rem;
  font-size: 1.12rem;
  color: var(--muted);
  margin: 0 0 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media { position: relative; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 64%; }
.hero-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(251, 248, 240, 0.92);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

/* ---------- values strip ---------- */
.values {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 40px);
  padding: 40px 0;
}
.value h3 {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 6px;
}
.value p { margin: 0; font-size: 0.92rem; color: var(--muted); }

/* ---------- section shells ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); color: var(--forest); }
.section-head p { margin: 16px 0 0; color: var(--muted); font-size: 1.06rem; }

/* ---------- product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card .pimg { aspect-ratio: 4 / 5; overflow: hidden; background: var(--kraft); }
.product-card .pimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .pimg img { transform: scale(1.04); }
.product-card .pbody { padding: 20px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.product-card .ptag {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage); margin: 0 0 8px;
}
.product-card h3 { font-size: 1.6rem; color: var(--forest); margin-bottom: 6px; }
.product-card .pdesc { font-size: 0.9rem; color: var(--muted); margin: 0 0 16px; }
.product-card .pfoot {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between;
}
.product-card .price { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }

/* ---------- story band ---------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(30px, 6vw, 80px);
}
.story-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.story-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.story-copy h2 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); color: var(--forest); margin-bottom: 20px; }
.story-copy p { color: var(--muted); margin: 0 0 18px; font-size: 1.06rem; }

/* ---------- quote band ---------- */
.quote-band {
  position: relative;
  color: var(--cream);
  text-align: center;
  padding: clamp(80px, 14vw, 170px) 0;
  overflow: hidden;
}
.quote-band img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.quote-band::after { content: ""; position: absolute; inset: 0; background: rgba(46, 45, 39, 0.5); z-index: 1; }
.quote-band .wrap { position: relative; z-index: 2; }
.quote-band blockquote {
  margin: 0 auto;
  max-width: 780px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  line-height: 1.24;
}
.quote-band cite { display: block; margin-top: 24px; font-family: var(--sans); font-style: normal; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.85; }

/* ---------- newsletter ---------- */
.signup { background: var(--forest); color: var(--cream); text-align: center; }
.signup h2 { font-size: clamp(2.2rem, 4.4vw, 3.2rem); margin-bottom: 14px; }
.signup p { color: rgba(244, 239, 228, 0.82); max-width: 34rem; margin: 0 auto 28px; }
.signup form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.signup input {
  flex: 1; min-width: 220px; min-height: 50px; padding: 0 18px;
  border: 1px solid rgba(244, 239, 228, 0.35); border-radius: 999px;
  background: rgba(244, 239, 228, 0.08); color: var(--cream); font: inherit;
}
.signup input::placeholder { color: rgba(244, 239, 228, 0.6); }
.signup .btn-primary { background: var(--cream); color: var(--forest); }
.signup .btn-primary:hover { box-shadow: 0 16px 32px rgba(0,0,0,0.25); }

/* ---------- footer ---------- */
.site-footer { background: var(--paper); border-top: 1px solid var(--line); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-grid .brand strong { color: var(--forest); }
.footer-blurb { color: var(--muted); max-width: 24rem; margin: 16px 0 0; font-size: 0.95rem; }
.footer-col h4 { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); margin: 0 0 14px; }
.footer-col a { display: block; color: var(--ink); font-size: 0.92rem; margin-bottom: 10px; opacity: 0.85; }
.footer-col a:hover { color: var(--forest); opacity: 1; }
.footer-bottom {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  color: var(--muted); font-size: 0.82rem;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 360px; order: 2; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .story { grid-template-columns: 1fr; }
  .story-media { order: -1; max-width: 460px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    position: absolute; top: 76px; left: 0; right: 0; padding: 22px clamp(20px,5vw,56px);
    background: var(--paper); border-bottom: 1px solid var(--line);
  }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--forest); display: block; }
  .values-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
