/* ---------------------------------------------------------------
   Willow Rose Media — styles
   Palette drawn from the logo: forest greens, fresh leaf green,
   warm orange and rose-red accents.
----------------------------------------------------------------*/
:root {
  --green-900: #2f5022;
  --green-700: #3f6b2e;
  --green-500: #5a9e3f;
  --green-300: #8cc06a;
  --leaf:      #e0810f;
  --rose:      #d6294f;

  --ink:       #1f2a1b;
  --ink-soft:  #4d5a47;
  --paper:     #ffffff;
  --paper-alt: #f4f8f0;
  --line:      #e3ebdd;

  --radius:    16px;
  --shadow:    0 10px 30px rgba(47, 80, 34, 0.10);
  --shadow-sm: 0 4px 14px rgba(47, 80, 34, 0.08);
  --maxw:      1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-900);
  margin: 0 0 .4em;
}

p { margin: 0 0 1rem; }

a { color: var(--green-700); text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.center { text-align: center; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green-500);
  margin: 0 0 .6rem;
}
.eyebrow.center { display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green-700);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--green-900); }

.btn-ghost {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-300);
}
.btn-ghost:hover { background: var(--paper-alt); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.brand-logo { width: 40px; height: 40px; }
.brand-name {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  color: var(--green-900);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  font-weight: 500;
  color: var(--ink-soft);
}
.site-nav a:hover { color: var(--green-700); }
.nav-cta {
  background: var(--green-700);
  color: #fff !important;
  padding: .5rem 1.1rem;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--green-900); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 88px;
  text-align: center;
  background:
    radial-gradient(900px 480px at 50% -10%, rgba(140, 192, 106, .28), transparent 60%),
    linear-gradient(180deg, var(--paper-alt), var(--paper));
}
.hero-inner { max-width: 760px; }
.hero-logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  filter: drop-shadow(0 8px 18px rgba(47, 80, 34, .18));
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  margin-bottom: .3em;
}
.lede {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 1.8rem;
}
.lede.center { margin-left: auto; margin-right: auto; }
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--paper-alt); }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
.section-title.center { margin-bottom: .2em; }

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-icon {
  font-size: 1.8rem;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--paper-alt);
  margin-bottom: 18px;
}
.feature h3 { font-size: 1.25rem; }
.feature p { color: var(--ink-soft); margin: 0; }

/* ---------- Products ---------- */
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.product-card--soon { background: linear-gradient(180deg, #fff, var(--paper-alt)); }
.product-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.product-head h3 { font-size: 1.5rem; margin: 0; }
.product-logo {
  height: 64px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
.badge {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--green-500);
  padding: .25rem .65rem;
  border-radius: 999px;
}
.badge-muted { background: var(--leaf); }
.product-card p { color: var(--ink-soft); flex: 1; }
.product-card .btn { align-self: flex-start; margin-top: 8px; }

/* ---------- CTA ---------- */
.cta {
  background:
    radial-gradient(700px 400px at 50% 120%, rgba(140, 192, 106, .25), transparent 60%),
    var(--paper);
}
.cta .lede { margin-bottom: 1.8rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: #d9e6d0;
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  color: #fff;
}
.footer-logo {
  width: 38px; height: 38px;
  background: #fff;
  border-radius: 50%;
  padding: 3px;
}
.footer-meta { text-align: right; font-size: .9rem; }
.footer-meta p { margin: 0 0 .2rem; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .features { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .site-nav { gap: 16px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
  .section { padding: 60px 0; }
}
