/* Holy Natural! Co. — vintage botanical apothecary */
:root{
  --cream:#f7f2e4;
  --cream-2:#efe6cf;
  --ink:#23281e;
  --ink-soft:#3a4033;
  --olive:#4b5539;
  --olive-deep:#3a432c;
  --terra:#bd6832;
  --terra-deep:#a5571f;
  --sage:#b3ba97;
  --lav:#9c90ad;
  --gold:#d9a13f;
  --dusty-blue:#8fa3a8;
  --white:#fffdf7;
  --radius:14px;
  --shadow:0 10px 30px rgba(35,40,30,.12);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Jost',system-ui,sans-serif;
  background:var(--cream);
  color:var(--ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.wrap{max-width:1200px;margin:0 auto;padding:0 24px}
.script{font-family:'Pinyon Script',cursive;font-weight:400}
.serif{font-family:'Cormorant Garamond',serif}

/* ---------- header ---------- */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(247,242,228,.96);
  backdrop-filter:blur(6px);
  border-bottom:1px solid rgba(35,40,30,.14);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 24px;max-width:1280px;margin:0 auto}
.logo-img{height:48px;width:auto;display:block}
.main-nav{display:flex;gap:28px;font-size:.82rem;letter-spacing:.18em;font-weight:500}
.main-nav a{position:relative;padding:4px 0}
.main-nav a::after{content:"";position:absolute;left:0;bottom:0;height:1px;width:0;background:var(--ink);transition:width .25s}
.main-nav a:hover::after{width:100%}
.header-icons{display:flex;gap:18px;align-items:center}
.header-icons button{background:none;border:0;cursor:pointer;color:var(--ink);padding:4px}
.header-icons svg{width:21px;height:21px;display:block}
.menu-toggle{display:none}
.cart-count{
  position:absolute;top:-4px;right:-6px;background:var(--terra);color:#fff;
  font-size:.62rem;min-width:17px;height:17px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;font-weight:600;
}
.cart-btn{position:relative}

/* ---------- hero ---------- */
.hero{position:relative;overflow:hidden;border-bottom:1px solid rgba(35,40,30,.14)}
.hero-inner{
  display:grid;grid-template-columns:1fr auto 1fr;align-items:center;
  max-width:1280px;margin:0 auto;padding:56px 24px 64px;gap:16px;
}
.hero-botanical{width:100%;max-width:330px;justify-self:center}
.hero-copy{text-align:center;max-width:520px}
.hero-logo{width:min(460px,88%);height:auto;display:block;margin:0 auto}
.hero-kicker{margin-top:22px;font-size:1.02rem;letter-spacing:.32em;font-weight:600}
.hero-tag{margin-top:14px;font-family:'Cormorant Garamond',serif;font-size:1.35rem;color:var(--ink-soft)}
.btn{
  display:inline-block;margin-top:26px;padding:15px 46px;border-radius:999px;
  background:var(--ink);color:var(--cream);font-size:.85rem;letter-spacing:.22em;font-weight:600;
  border:0;cursor:pointer;transition:transform .18s,box-shadow .18s,background .18s;
}
.btn:hover{transform:translateY(-2px);box-shadow:var(--shadow);background:#000}
.btn.light{background:var(--cream);color:var(--ink)}
.btn.light:hover{background:#fff}

/* ---------- value props ---------- */
.values{display:grid;grid-template-columns:repeat(4,1fr);border-bottom:1px solid rgba(35,40,30,.14)}
.value{padding:40px 26px;text-align:center;color:var(--ink)}
.value .icon-circle{
  width:64px;height:64px;border-radius:50%;background:rgba(255,253,247,.75);
  display:flex;align-items:center;justify-content:center;margin:0 auto 16px;
}
.value .icon-circle svg{width:30px;height:30px}
.value h3{font-size:.85rem;letter-spacing:.2em;margin-bottom:8px}
.value p{font-size:.92rem;color:var(--ink-soft)}
.value.v1{background:var(--sage)}
.value.v2{background:var(--lav);color:#fff}
.value.v2 p{color:rgba(255,255,255,.85)}
.value.v3{background:var(--gold)}
.value.v4{background:var(--dusty-blue);color:#fff}
.value.v4 p{color:rgba(255,255,255,.85)}

/* ---------- story ---------- */
.story{background:var(--olive-deep);color:#f3eedd;border-radius:0;overflow:hidden}
.story-inner{display:grid;grid-template-columns:1fr 1fr;align-items:center;max-width:1280px;margin:0 auto}
.story-copy{padding:72px 56px}
.eyebrow{font-size:.8rem;letter-spacing:.34em;font-weight:600;margin-bottom:18px;color:var(--sage)}
.story-copy h2{font-family:'Cormorant Garamond',serif;font-size:2.5rem;letter-spacing:.06em;margin-bottom:18px}
.story-copy p{font-size:1.05rem;color:#e8e2cf;max-width:44ch}
.story-art{position:relative;min-height:380px;display:flex;align-items:center;justify-content:center}
.story-logo{width:min(420px,100%);height:auto;border-radius:24px;mix-blend-mode:multiply;box-shadow:0 18px 40px rgba(74,74,52,.18)}

/* ---------- best seller ---------- */
.bestseller{background:var(--terra);color:#fff;overflow:hidden}
.bestseller-inner{
  display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;
  max-width:1180px;margin:0 auto;padding:72px 24px;position:relative;
}
.product-shot{position:relative;justify-self:center}
.product-shot img{
  width:min(380px,80vw);border-radius:50% 50% 46% 46%/38% 38% 46% 46%;
  background:var(--cream);padding:26px;box-shadow:var(--shadow);
}
.product-shot::before,.product-shot::after{
  content:"";position:absolute;width:120px;height:180px;top:-24px;
  background:url('assets/hero-left.webp') center/contain no-repeat;
  mix-blend-mode:multiply;opacity:.85;pointer-events:none;
}
.product-shot::before{left:-110px}
.product-shot::after{right:-110px;transform:scaleX(-1)}
.bestseller-copy .flag{font-size:.78rem;letter-spacing:.34em;font-weight:600;margin-bottom:14px}
.bestseller-copy h2{font-family:'Cormorant Garamond',serif;font-size:clamp(2rem,4vw,3rem);letter-spacing:.05em;line-height:1.15;margin-bottom:16px}
.bestseller-copy p{max-width:42ch;color:#fdf3e3;font-size:1.05rem}
.price{margin-top:14px;font-size:1.25rem;letter-spacing:.08em;font-weight:600}

/* ---------- categories ---------- */
.categories{padding:80px 0;text-align:center}
.section-title{font-family:'Cormorant Garamond',serif;font-size:2rem;letter-spacing:.14em;margin-bottom:44px;position:relative;display:inline-block}
.section-title::before,.section-title::after{
  content:"";position:absolute;top:50%;width:120px;height:1px;background:rgba(35,40,30,.35);
}
.section-title::before{right:calc(100% + 24px)}
.section-title::after{left:calc(100% + 24px)}
.cat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;max-width:900px;margin:0 auto 40px}
.cat{display:flex;flex-direction:column;align-items:center;gap:14px;cursor:pointer}
.cat-circle{
  width:132px;height:132px;border-radius:50%;background:var(--cream-2);
  border:1px solid rgba(35,40,30,.2);display:flex;align-items:center;justify-content:center;
  transition:transform .2s,box-shadow .2s;
}
.cat:hover .cat-circle{transform:translateY(-4px);box-shadow:var(--shadow)}
.cat-circle svg{width:56px;height:56px;stroke:var(--ink);fill:none;stroke-width:1.4}
.cat span{font-size:.8rem;letter-spacing:.22em;font-weight:600}

/* ---------- subscribe ---------- */
.subscribe{background:var(--lav);color:#fff;overflow:hidden}
.subscribe-inner{
  max-width:1180px;margin:0 auto;padding:60px 24px;display:grid;
  grid-template-columns:1fr 1fr;gap:32px;align-items:center;position:relative;
}
.subscribe h2{font-size:1.15rem;letter-spacing:.24em;margin-bottom:10px}
.subscribe p{color:rgba(255,255,255,.88);font-size:.95rem;max-width:38ch}
.subscribe-form{display:flex;max-width:440px;width:100%}
.subscribe-form input{
  flex:1;padding:15px 20px;border:0;border-radius:999px 0 0 999px;
  font-family:inherit;font-size:.95rem;background:var(--white);color:var(--ink);outline:none;
}
.subscribe-form button{
  padding:15px 30px;border:0;border-radius:0 999px 999px 0;background:var(--ink);color:var(--cream);
  font-size:.8rem;letter-spacing:.2em;font-weight:600;cursor:pointer;
}
.subscribe-form button:hover{background:#000}
.subscribe-note{margin-top:10px;font-size:.85rem;color:rgba(255,255,255,.85);min-height:1.4em}

/* ---------- badges ---------- */
.badges{background:var(--sage);border-top:1px solid rgba(35,40,30,.14)}
.badges-inner{
  max-width:1280px;margin:0 auto;padding:30px 24px;display:grid;
  grid-template-columns:repeat(4,1fr);gap:20px;text-align:center;
}
.badge{display:flex;align-items:center;justify-content:center;gap:12px;font-size:.78rem;letter-spacing:.18em;font-weight:600}
.badge svg{width:30px;height:30px;flex:none}

/* ---------- faq ---------- */
.faq{padding:80px 0;max-width:820px}
.faq-item{border-bottom:1px solid rgba(35,40,30,.2)}
.faq-q{
  width:100%;background:none;border:0;cursor:pointer;text-align:left;
  padding:22px 4px;font-family:'Cormorant Garamond',serif;font-size:1.35rem;color:var(--ink);
  display:flex;justify-content:space-between;align-items:center;gap:16px;
}
.faq-q .plus{font-family:'Jost',sans-serif;font-size:1.6rem;line-height:1;transition:transform .25s}
.faq-item.open .faq-q .plus{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease;color:var(--ink-soft);font-size:1rem}
.faq-a p{padding:0 4px 24px;max-width:60ch}

/* ---------- footer ---------- */
.site-footer{background:var(--ink);color:#e9e2cd}
.footer-inner{
  max-width:1280px;margin:0 auto;padding:64px 24px 32px;
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:36px;
}
.footer-logo{width:150px;height:auto;display:block;margin-bottom:14px;border-radius:14px}
.footer-tag{margin-top:14px;font-family:'Cormorant Garamond',serif;font-size:1.1rem;color:#c9c2a8}
.footer-col h4{font-size:.78rem;letter-spacing:.26em;margin-bottom:16px;color:var(--sage)}
.footer-col a{display:block;padding:5px 0;font-size:.95rem;color:#d9d2b8}
.footer-col a:hover{color:#fff}
.footer-bottom{
  max-width:1280px;margin:0 auto;padding:22px 24px;border-top:1px solid rgba(255,255,255,.14);
  display:flex;justify-content:space-between;gap:12px;font-size:.82rem;color:#a9a28a;flex-wrap:wrap;
}

/* ---------- cart drawer ---------- */
.cart-overlay{position:fixed;inset:0;background:rgba(35,40,30,.45);opacity:0;pointer-events:none;transition:opacity .3s;z-index:90}
.cart-overlay.show{opacity:1;pointer-events:auto}
.cart-drawer{
  position:fixed;top:0;right:0;height:100dvh;width:min(400px,92vw);background:var(--cream);z-index:95;
  transform:translateX(105%);transition:transform .35s cubic-bezier(.2,.8,.25,1);
  display:flex;flex-direction:column;box-shadow:-12px 0 40px rgba(0,0,0,.2);
}
.cart-drawer.show{transform:none}
.cart-head{display:flex;justify-content:space-between;align-items:center;padding:22px 24px;border-bottom:1px solid rgba(35,40,30,.16)}
.cart-head h3{font-family:'Cormorant Garamond',serif;font-size:1.5rem;letter-spacing:.06em}
.cart-close{background:none;border:0;font-size:1.6rem;cursor:pointer;color:var(--ink);line-height:1}
.cart-items{flex:1;overflow:auto;padding:20px 24px;display:flex;flex-direction:column;gap:16px}
.cart-empty{text-align:center;color:var(--ink-soft);margin-top:60px}
.cart-empty .script{font-size:2rem;display:block;margin-bottom:10px}
.cart-item{display:grid;grid-template-columns:72px 1fr auto;gap:14px;align-items:center;background:var(--white);border:1px solid rgba(35,40,30,.12);border-radius:10px;padding:10px}
.cart-item img{width:72px;height:72px;object-fit:cover;border-radius:8px}
.cart-item h4{font-size:.95rem}
.cart-item .muted{font-size:.82rem;color:var(--ink-soft)}
.qty{display:flex;align-items:center;gap:10px;margin-top:6px}
.qty button{width:26px;height:26px;border-radius:50%;border:1px solid rgba(35,40,30,.3);background:none;cursor:pointer;font-size:1rem;line-height:1}
.cart-foot{padding:20px 24px;border-top:1px solid rgba(35,40,30,.16)}
.cart-total{display:flex;justify-content:space-between;font-weight:600;margin-bottom:14px}
.checkout-btn{width:100%;margin-top:0}

/* ---------- toast ---------- */
.toast{
  position:fixed;bottom:26px;left:50%;transform:translate(-50%,80px);z-index:120;
  background:var(--ink);color:var(--cream);padding:14px 26px;border-radius:999px;
  font-size:.9rem;letter-spacing:.06em;opacity:0;transition:all .35s;pointer-events:none;
  box-shadow:var(--shadow);max-width:90vw;text-align:center;
}
.toast.show{opacity:1;transform:translate(-50%,0)}

/* ---------- responsive ---------- */
@media (max-width:960px){
  .main-nav{
    position:fixed;top:0;left:0;height:100dvh;width:min(320px,84vw);background:var(--cream);z-index:96;
    flex-direction:column;padding:90px 36px;gap:22px;font-size:1rem;
    transform:translateX(-105%);transition:transform .35s;box-shadow:12px 0 40px rgba(0,0,0,.15);
  }
  .main-nav.show{transform:none}
  .menu-toggle{display:block}
  .hero-inner{grid-template-columns:1fr;padding:0;gap:0}
  .hero-botanical{display:block;max-width:none;width:100%;height:200px;object-fit:cover}
  .hero-copy{padding:44px 20px 52px}
  .values{grid-template-columns:1fr 1fr}
  .story-inner,.bestseller-inner,.subscribe-inner{grid-template-columns:1fr}
  .story-art{min-height:260px}
  .story-copy{padding:52px 28px}
  .product-shot::before,.product-shot::after{display:none}
  .cat-grid{grid-template-columns:1fr 1fr}
  .section-title::before,.section-title::after{width:52px}
  .badges-inner{grid-template-columns:1fr 1fr}
  .footer-inner{grid-template-columns:1fr 1fr}
}
@media (max-width:560px){
  .values{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
  .subscribe-form{flex-direction:column;gap:10px}
  .subscribe-form input,.subscribe-form button{border-radius:999px}
}
