:root{
  --bg:#f7f8f5;
  --bg-soft:#eef1ec;
  --card:#ffffff;

  --text:#1f2a24;
  --muted:#6b7a72;

  --green:#5f7f6c;
  --green-2:#2f5b4a;
  --green-soft:#d9e7df;

  --border: rgba(31,42,36,.10);
  --shadow: 0 14px 30px rgba(31,42,36,.10);
  --shadow-2: 0 22px 50px rgba(31,42,36,.14);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(95,127,108,.12), transparent 45%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.container{width:min(1100px, 100% - 2.5rem); margin-inline:auto}

/* Header */
.site-header{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(247,248,245,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 1rem 0;
  gap:1.5rem;
}

.brand{display:flex;flex-direction:column;gap:.15rem}
.brand-name{
  font-family: "DM Serif Display", serif;
  font-size: 1.65rem;
  letter-spacing: .01em;
}
.brand-tag{font-size:.92rem;color: var(--muted)}

.nav{display:flex;gap:1.1rem;flex-wrap:wrap}
.nav a{color: var(--muted);transition: color .2s ease}
.nav a:hover{color: var(--text)}

.nav-cta{
  padding:.52rem .95rem;
  border-radius: 999px;
  border: 1px solid var(--green);
  color: var(--green);
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.nav-cta:hover{
  background: var(--green);
  color:#fff;
  transform: translateY(-1px);
}

/* Hero */
.hero{
  position:relative;
  padding: 4.7rem 0 4.2rem;
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  border-bottom: 1px solid rgba(31,42,36,.06);
}
.hero-media{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 15%, rgba(95,127,108,.16), transparent 45%),
    linear-gradient(to bottom, rgba(247,248,245,.74), rgba(247,248,245,.95)),
    url("./img/hero.jpg");
  background-size: cover;
  background-position: center;
  opacity:.50;
}
.hero-inner{position:relative;max-width: 780px}

.kicker{
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size:.75rem;
  color: var(--green);
  margin-bottom:.95rem;
}
.hero h1{
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.15rem, 3vw + 1rem, 3.25rem);
  line-height:1.15;
  margin-bottom: 1.1rem;
}
.hero-lead{color: var(--muted);margin-bottom: 1.7rem;max-width: 62ch}

.hero-actions{display:flex;gap:.8rem;flex-wrap:wrap}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  padding:.78rem 1.3rem;
  font-weight:600;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space:nowrap;
}

.btn.primary{
  background: var(--green);
  color:#fff;
  box-shadow: 0 10px 22px rgba(95,127,108,.32);
}
.btn.primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(95,127,108,.40);
}
.btn.ghost{
  background: transparent;
  border-color: rgba(95,127,108,.55);
  color: var(--green);
}
.btn.ghost:hover{
  background: var(--green);
  color:#fff;
  border-color: var(--green);
}

.btn.small{
  padding: .58rem .95rem;
  font-size: .92rem;
}

/* Trust mini */
.trust{
  margin-top: 2.2rem;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}
.trust-item{
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(31,42,36,.10);
  border-radius: 18px;
  padding: 1rem 1.05rem;
  box-shadow: var(--shadow);
}
.trust-item strong{
  display:block;
  font-family: "DM Serif Display", serif;
  font-size: 1.05rem;
  margin-bottom:.1rem;
}
.trust-item span{color: var(--muted); font-size: .92rem}

/* Sections */
.section{padding: 4rem 0}
.section.alt{background: var(--bg-soft)}
.section.alt2{
  background: linear-gradient(180deg, rgba(95,127,108,.10), var(--bg));
  border-top: 1px solid rgba(31,42,36,.06);
}

.section-head{margin-bottom: 2.2rem}
.section-head h2{
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  margin-bottom:.3rem;
}
.section-head p{color: var(--muted); max-width: 78ch}

/* Products (boutique) */
.products{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card{
  background: var(--card);
  border-radius: 22px;
  border: 1px solid rgba(31,42,36,.08);
  overflow:hidden;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
}
.product-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: rgba(95,127,108,.18);
}

.product-media{
  position:relative;
}
.product-media img{
  width:100%;
  height: 220px;
  object-fit: cover;
  background: var(--bg-soft);
}

.badge{
  position:absolute;
  left: 14px;
  top: 14px;
  padding: .45rem .75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 20px rgba(31,42,36,.12);
}
.badge.soft{
  background: rgba(95,127,108,.86);
}
.badge.outline{
  background: rgba(247,248,245,.88);
  color: var(--green-2);
  border: 1px solid rgba(95,127,108,.45);
}

.product-body{
  padding: 1.25rem 1.25rem 1.35rem;
}
.product-body h3{
  font-family: "DM Serif Display", serif;
  font-size: 1.35rem;
  margin-bottom: .35rem;
}
.product-desc{
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: .9rem;
  min-height: 3.2em;
}

.product-meta{
  display:flex;
  flex-wrap:wrap;
  gap: .45rem;
  margin-bottom: 1rem;
}
.pill{
  font-size: .85rem;
  color: var(--green-2);
  background: rgba(217,231,223,.70);
  border: 1px solid rgba(95,127,108,.18);
  padding: .35rem .6rem;
  border-radius: 999px;
}

.product-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1rem;
}
.price{
  font-weight: 650;
  color: var(--green-2);
  font-size: 1.05rem;
}

.note{
  margin-top: 1.3rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(31,42,36,.10);
  color: var(--muted);
  box-shadow: var(--shadow);
}

/* Ingredients */
.ingredient-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}
.ingredient-card{
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(31,42,36,.10);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.ingredient-card h3{
  font-family: "DM Serif Display", serif;
  margin-bottom: .4rem;
}
.ingredient-card p{color: var(--muted)}

/* Routine */
.routine{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items:center;
}
.routine h2{
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  margin-bottom:.5rem;
}
.routine p{color: var(--muted)}

.routine-steps{
  display:grid;
  grid-template-columns: 1fr;
  gap: .9rem;
}
.step{
  display:flex;
  align-items:center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(31,42,36,.10);
  box-shadow: var(--shadow);
}
.step-n{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(95,127,108,.18);
  color: var(--green-2);
  font-weight: 700;
}
.step-t{display:flex;flex-direction:column;gap:.05rem}
.step-t strong{font-weight: 650}
.step-t span{color: var(--muted); font-size: .95rem}

/* CTA */
.cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1.5rem;
  padding: 1.7rem 1.7rem;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(31,42,36,.10);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.cta h2{
  font-family: "DM Serif Display", serif;
  font-size: 1.9rem;
  margin-bottom:.25rem;
}
.cta p{color: var(--muted)}

.tiny{
  margin-top: .95rem;
  font-size: .85rem;
  color: var(--muted);
}

/* Footer */
.site-footer{
  border-top: 1px solid rgba(31,42,36,.10);
  padding: 1.2rem 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 1rem;
}
.muted{color: var(--muted)}

/* Responsive */
@media (max-width: 900px){
  .trust{grid-template-columns: 1fr; max-width: 560px}
  .routine{grid-template-columns: 1fr}
  .cta{flex-direction:column; align-items:flex-start}
}
@media (max-width: 768px){
  .header-inner{flex-direction:column; align-items:flex-start}
  .hero-actions{flex-direction:column; max-width: 340px}
  .hero-actions .btn{width:100%}
  .product-media img{height: 210px}
}
@media (max-width: 480px){
  .container{width: min(100% - 1.5rem, 480px)}
}
