:root{
  --charcoal:#1a1613;
  --charcoal-2:#241f1a;
  --cream:#f4ede2;
  --cream-2:#e9dfd0;
  --paper:#faf6ef;
  --accent:#9c2b2b;
  --accent-hover:#7e2020;
  --accent-soft:#c04a3a;
  --gold:#c69a5a;
  --text:#2b241d;
  --text-soft:#6b6055;
  --text-inv:#f4ede2;
  --line:rgba(43,36,29,.12);
  --line-dark:rgba(244,237,226,.14);
  --radius:14px;
  --radius-lg:22px;
  --shadow:0 18px 50px -20px rgba(26,22,19,.35);
  --maxw:1180px;
  --font-display:"Zodiak",Georgia,serif;
  --font-body:"General Sans","Helvetica Neue",Arial,sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  color:var(--text);
  background:var(--paper);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 28px}

h1,h2,h3,h4{font-family:var(--font-display);font-weight:600;line-height:1.08;letter-spacing:-.01em}
h1{font-size:clamp(2.6rem,6vw,4.7rem)}
.section-title{font-size:clamp(2rem,4vw,3.1rem);margin-bottom:.5em}
.section-eyebrow{
  font-family:var(--font-body);text-transform:uppercase;letter-spacing:.22em;
  font-size:.72rem;font-weight:600;color:var(--accent);margin-bottom:1rem;
}
.section-eyebrow.light{color:var(--gold)}
.section-title.light{color:var(--cream)}
.section-lead{max-width:640px;color:var(--text-soft);font-size:1.08rem;margin-bottom:2.6rem}

/* BUTTONS */
.btn{
  font-family:var(--font-body);font-weight:600;font-size:.95rem;
  border:none;border-radius:100px;cursor:pointer;padding:.85em 1.7em;
  transition:transform .18s ease,background .18s ease,color .18s ease,box-shadow .18s ease;
  display:inline-flex;align-items:center;justify-content:center;gap:.5em;white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn-accent{background:var(--accent);color:#fff}
.btn-accent:hover{background:var(--accent-hover);box-shadow:0 10px 24px -10px rgba(156,43,43,.7)}
.btn-ghost{background:transparent;color:var(--cream);border:1.5px solid rgba(244,237,226,.4)}
.btn-ghost:hover{background:rgba(244,237,226,.12)}
.btn-outline{background:transparent;color:var(--accent);border:1.5px solid var(--accent)}
.btn-outline:hover{background:var(--accent);color:#fff}
.btn-lg{padding:1.05em 2.1em;font-size:1.02rem}
.btn-sm{padding:.6em 1.3em;font-size:.85rem}
.btn-block{width:100%}
.btn:disabled{cursor:wait;opacity:.72;box-shadow:none;transform:none}

/* HEADER */
.site-header{
  position:sticky;top:0;z-index:50;
  background:#14100d;
  border-bottom:1px solid transparent;
  transition:border-color .3s ease,box-shadow .3s ease;
}
.site-header.scrolled{
  border-bottom-color:var(--line-dark);
  box-shadow:0 8px 30px -18px rgba(0,0,0,.7);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:84px;gap:28px}
.logo{display:flex;align-items:center;color:var(--cream);transition:opacity .15s}
.logo:hover{opacity:.85}
.logo-header{height:52px;width:auto;object-fit:contain;flex:none;display:block}
.logo-mark{width:46px;height:46px;object-fit:contain;flex:none}
.logo-text{font-family:var(--font-display);font-weight:600;font-size:1.25rem;color:var(--cream)}
.logo-footer{margin-bottom:1rem}
.logo-footer .logo-full{width:88px;height:88px;object-fit:contain}
.site-nav{display:flex;gap:30px;margin-left:auto}
.site-nav a{color:var(--cream);opacity:.8;font-size:.95rem;font-weight:500;transition:opacity .15s}
.site-nav a:hover{opacity:1;color:var(--gold)}
.btn-header{padding:.6em 1.4em}

/* HERO */
.hero{position:relative;min-height:88vh;display:flex;align-items:center;color:var(--cream);overflow:hidden}
.hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1.03)}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(20,16,13,.92) 0%,rgba(20,16,13,.78) 40%,rgba(20,16,13,.35) 100%)}
.hero-content{position:relative;padding:120px 28px;max-width:760px}
.eyebrow{text-transform:uppercase;letter-spacing:.2em;font-size:.78rem;font-weight:600;color:var(--gold);margin-bottom:1.4rem}
.hero h1{margin-bottom:1.4rem}
.hero-sub{font-size:1.22rem;line-height:1.55;color:rgba(244,237,226,.9);max-width:600px;margin-bottom:2.4rem}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:2.6rem}
.hero-badges{display:flex;gap:26px;flex-wrap:wrap;font-size:.9rem;color:rgba(244,237,226,.75)}
.hero-badges span{display:flex;align-items:center;gap:.5em}
.hero-badges span::before{content:"✦";color:var(--gold)}

/* SECTIONS base */
.section{padding:100px 0}
.usp{background:var(--paper)}

/* USP */
.usp-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;margin-top:1rem}
.usp-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:38px 32px;transition:transform .2s,box-shadow .2s}
.usp-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.usp-num{font-family:var(--font-display);font-size:1.4rem;color:var(--accent-soft);opacity:.7}
.usp-card h3{font-size:1.35rem;margin:.7rem 0 .6rem}
.usp-card p{color:var(--text-soft)}

/* PROFILES */
.profiles{background:var(--cream)}
.profile-list{display:flex;flex-direction:column;gap:28px}
.profile-card{
  display:grid;grid-template-columns:minmax(280px,42%) 1fr;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:0 10px 40px -28px rgba(26,22,19,.5);
}
.profile-card:nth-child(even){grid-template-columns:1fr minmax(280px,42%)}
.profile-card:nth-child(even) .profile-img{order:2}
.profile-img{position:relative;min-height:320px}
.profile-img img{width:100%;height:100%;object-fit:cover;object-position:center;position:absolute;inset:0}
.profile-body{padding:44px 46px;display:flex;flex-direction:column;justify-content:center}
.profile-tag{align-self:flex-start;font-size:.74rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;padding:.4em 1em;border-radius:100px;margin-bottom:1rem}
.tag-clean{background:#ece7df;color:#6b5d49}
.tag-mild{background:#eef3ea;color:#4b7a3a}
.tag-mid{background:#f6ecdd;color:#b07a29}
.tag-bold{background:#f4e3e1;color:var(--accent)}
.profile-body h3{font-size:2rem;margin-bottom:.7rem}
.profile-body p{color:var(--text-soft);margin-bottom:1.6rem}
.intensity{display:flex;align-items:center;gap:14px}
.intensity-label{font-size:.8rem;text-transform:uppercase;letter-spacing:.12em;color:var(--text-soft)}
.dots{display:flex;gap:7px}
.dots i{width:14px;height:14px;border-radius:50%;background:var(--line);display:block}
.dots i.on{background:var(--accent)}

/* TRIAL */
.trial{background:var(--charcoal);color:var(--cream)}
.trial-inner{display:grid;grid-template-columns:1.3fr .9fr;gap:60px;align-items:center}
.trial-text p{color:rgba(244,237,226,.82);margin-bottom:1.6rem;max-width:520px}
.trial-list{list-style:none;margin-bottom:2.2rem;display:flex;flex-direction:column;gap:.7rem}
.trial-list li{padding-left:1.8em;position:relative;color:rgba(244,237,226,.9)}
.trial-list li::before{content:"✓";position:absolute;left:0;color:var(--gold);font-weight:700}
.trial-badge{
  background:linear-gradient(160deg,var(--accent) 0%,var(--accent-hover) 100%);
  border-radius:var(--radius-lg);padding:56px 40px;text-align:center;color:#fff;
  display:flex;flex-direction:column;gap:.5rem;box-shadow:0 24px 60px -24px rgba(156,43,43,.8);
}
.trial-badge-top{text-transform:uppercase;letter-spacing:.16em;font-size:.8rem;opacity:.85}
.trial-badge-price{font-family:var(--font-display);font-size:3.1rem;font-weight:700;line-height:1}
.trial-badge-bottom{opacity:.85;font-size:.95rem}

/* CATALOG */
.catalog{background:var(--paper)}
.catalog-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.cat-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:30px 26px;display:flex;flex-direction:column;transition:transform .2s,box-shadow .2s}
.cat-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.cat-head{display:flex;align-items:center;gap:10px;margin-bottom:.8rem}
.cat-head h3{font-size:1.35rem}
.cat-badge{font-size:.66rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;background:var(--accent);color:#fff;padding:.3em .7em;border-radius:100px}
.cat-desc{color:var(--text-soft);font-size:.95rem;flex:1;margin-bottom:1.4rem}
.cat-price{display:flex;align-items:baseline;gap:.4em;margin-bottom:1.4rem}
.cat-price .price{font-family:var(--font-display);font-size:1.7rem;font-weight:600;color:var(--text)}
.cat-price .unit{color:var(--text-soft);font-size:.9rem}

/* ABOUT */
.about{background:var(--cream)}
.about-inner{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.about-img{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);aspect-ratio:4/3}
.about-img img{width:100%;height:100%;object-fit:cover}
.about-text p{color:var(--text-soft);margin-bottom:1.2rem}
.about-stats{display:flex;gap:32px;margin-top:2rem;flex-wrap:wrap}
.about-stats div{display:flex;flex-direction:column;gap:.15rem;min-width:120px;flex:1 1 130px}
.about-stats strong{font-family:var(--font-display);font-size:1.45rem;line-height:1.15;color:var(--accent)}
.about-stats span{font-size:.85rem;color:var(--text-soft)}

/* TRUST */
.trust{background:var(--charcoal-2);color:var(--cream)}
.trust .section-title{color:var(--cream)}
.trust-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;margin-top:1rem}
.trust-card{background:rgba(244,237,226,.05);border:1px solid var(--line-dark);border-radius:var(--radius-lg);padding:38px 32px}
.trust-ico{width:46px;height:46px;border-radius:12px;background:rgba(198,154,90,.16);color:var(--gold);display:flex;align-items:center;justify-content:center;font-size:1.4rem;margin-bottom:1.2rem}
.trust-card h3{font-size:1.3rem;margin-bottom:.6rem;color:var(--cream)}
.trust-card p{color:rgba(244,237,226,.78)}

/* DELIVERY */
.delivery{background:var(--paper)}
.delivery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.deliv-card{padding:30px 26px;border-radius:var(--radius-lg);border:1px solid var(--line);background:#fff}
.deliv-step{display:flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:50%;background:var(--accent);color:#fff;font-family:var(--font-display);font-size:1.3rem;font-weight:600;margin-bottom:1.2rem}
.deliv-card h3{font-size:1.2rem;margin-bottom:.5rem}
.deliv-card p{color:var(--text-soft);font-size:.94rem}

/* REVIEWS */
.reviews{background:var(--cream)}
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:1rem}
.review-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:32px 30px;display:flex;flex-direction:column;gap:1rem}
.review-featured{border-color:var(--accent);box-shadow:0 14px 40px -22px rgba(156,43,43,.55)}
.review-stars{color:var(--gold);letter-spacing:2px;font-size:1rem}
.review-card p{color:var(--text);font-size:1.05rem;line-height:1.55;flex:1;font-family:var(--font-display);font-style:normal}
.review-card cite{display:flex;flex-direction:column;font-style:normal;font-weight:600;color:var(--text)}
.review-card cite span{font-weight:400;font-size:.85rem;color:var(--text-soft);margin-top:.15rem}
.reviews-note{margin-top:1.8rem;font-size:.85rem;color:var(--text-soft)}
.reviews-note a{color:var(--accent);text-decoration:underline;text-underline-offset:2px}

/* ARTICLES */
.articles{background:var(--paper)}
.articles-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:1rem}
.article-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;display:flex;flex-direction:column;transition:transform .2s,box-shadow .2s}
.article-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.article-img{height:190px;overflow:hidden}
.article-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.article-card:hover .article-img img{transform:scale(1.05)}
.article-body{padding:26px 26px 28px;display:flex;flex-direction:column;flex:1}
.article-tag{align-self:flex-start;font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--accent);background:#f4e3e1;padding:.35em .8em;border-radius:100px;margin-bottom:.9rem}
.article-body h3{font-size:1.3rem;margin-bottom:.6rem}
.article-body p{color:var(--text-soft);font-size:.95rem;flex:1;margin-bottom:1.2rem}
.article-link{color:var(--accent);font-weight:600;font-size:.92rem;transition:color .15s}
.article-link:hover{color:var(--accent-hover)}

/* FINAL CTA */
.final-cta{background:linear-gradient(150deg,var(--charcoal) 0%,#2c1414 100%);color:var(--cream);text-align:center}
.final-cta-inner{max-width:720px;margin:0 auto}
.final-cta h2{font-size:clamp(2rem,4vw,3rem);color:var(--cream);margin-bottom:.6rem}
.final-cta p{color:rgba(244,237,226,.8);margin-bottom:2rem;font-size:1.1rem}
.final-cta-buttons{display:flex;flex-direction:column;align-items:center;gap:20px}
.messenger-dubs{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
.msg-btn{border:1.5px solid rgba(244,237,226,.35);border-radius:100px;padding:.6em 1.4em;font-size:.9rem;font-weight:500;color:var(--cream);transition:background .15s,border-color .15s}
.msg-btn:hover{background:rgba(244,237,226,.12);border-color:var(--gold)}

/* FOOTER */
.site-footer{background:var(--charcoal);color:var(--cream);padding:64px 0 26px}
.footer-inner{display:grid;grid-template-columns:2fr 1fr 1fr;gap:40px;padding-bottom:40px;border-bottom:1px solid var(--line-dark)}
.footer-tagline{color:rgba(244,237,226,.7);max-width:340px;font-size:.95rem}
.footer-col h4{font-family:var(--font-body);font-size:.8rem;text-transform:uppercase;letter-spacing:.14em;color:var(--gold);margin-bottom:1rem}
.footer-col a,.footer-col span{display:block;color:rgba(244,237,226,.82);font-size:.95rem;margin-bottom:.6rem;transition:color .15s}
.footer-col a:hover{color:var(--gold)}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;margin-top:24px;font-size:.85rem;color:rgba(244,237,226,.6)}

/* MODAL */
.modal-backdrop{position:fixed;inset:0;z-index:100;background:rgba(20,16,13,.7);backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;padding:20px;animation:fade .2s ease}
.modal-backdrop[hidden]{display:none}
@keyframes fade{from{opacity:0}to{opacity:1}}
.modal{background:var(--paper);border-radius:var(--radius-lg);max-width:520px;width:100%;max-height:92vh;position:relative;box-shadow:0 40px 90px -30px rgba(0,0,0,.6);animation:pop .25s cubic-bezier(.2,.8,.3,1)}
@keyframes pop{from{opacity:0;transform:translateY(16px) scale(.98)}to{opacity:1;transform:none}}
.modal-scroll{padding:34px 40px 32px;overflow-y:auto;max-height:92vh}
.modal-close{position:absolute;top:16px;right:18px;z-index:2;background:rgba(43,36,29,.08);border:none;width:38px;height:38px;border-radius:50%;font-size:1.5rem;line-height:1;color:var(--text);cursor:pointer;transition:background .15s}
.modal-close:hover{background:rgba(43,36,29,.16)}
.modal h3{font-size:1.65rem;margin:.1rem 0 .4rem}
.modal-lead{color:var(--text-soft);margin-bottom:1.3rem;font-size:.95rem}
.order-form{display:flex;flex-direction:column;gap:14px}
.order-form[hidden],.order-sending[hidden],.order-success[hidden]{display:none!important}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.field{display:flex;flex-direction:column;gap:.4rem}
.field label{font-size:.85rem;font-weight:600;color:var(--text)}
.field input,.field select,.field textarea{
  font-family:var(--font-body);font-size:1rem;padding:.8em 1em;border:1.5px solid var(--line);
  border-radius:12px;background:#fff;color:var(--text);transition:border-color .15s;resize:vertical;
}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--accent)}
.field input.invalid{border-color:var(--accent);box-shadow:0 0 0 3px rgba(156,43,43,.09)}
.order-more{border:1px solid var(--line);border-radius:12px;background:#fff}
.order-more summary{cursor:pointer;list-style:none;padding:.85rem 1rem;font-size:.9rem;font-weight:600;color:var(--accent);min-height:44px;display:flex;align-items:center;justify-content:space-between}
.order-more summary::-webkit-details-marker{display:none}
.order-more summary::after{content:"+";font-size:1.25rem;font-weight:400}
.order-more[open] summary::after{content:"−"}
.order-more .field{padding:0 1rem 1rem}
.field-honeypot{position:absolute!important;left:-9999px!important;width:1px;height:1px;overflow:hidden}
.form-error{padding:.8rem 1rem;border-radius:10px;background:#f4e3e1;color:var(--accent-hover);font-size:.88rem;line-height:1.4}
.form-note{font-size:.78rem;color:var(--text-soft);line-height:1.4}
.form-fallback{margin-top:1.2rem;padding-top:1.2rem;border-top:1px solid var(--line);text-align:center;font-size:.85rem;color:var(--text-soft)}
.form-fallback .messenger-dubs{margin-top:.8rem}
.form-fallback .msg-btn{color:var(--accent);border-color:var(--accent)}
.form-fallback .msg-btn:hover{background:var(--accent);color:#fff}
.order-sending,.order-success{text-align:center;padding:42px 12px 28px}
.order-sending h3,.order-success h3{margin-bottom:.6rem}
.order-sending p,.order-success p{color:var(--text-soft);margin-bottom:1rem}
.sending-spinner{width:54px;height:54px;border:4px solid var(--cream-2);border-top-color:var(--accent);border-radius:50%;display:block;margin:0 auto 1.2rem;animation:spin .8s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}
.success-ico{width:64px;height:64px;border-radius:50%;background:#eef3ea;color:#4b7a3a;font-size:2rem;display:flex;align-items:center;justify-content:center;margin:0 auto 1.2rem}
.success-alt{font-size:.9rem}
.order-success .messenger-dubs{margin-bottom:1.6rem}
.order-success .msg-btn{color:var(--accent);border-color:var(--accent)}
.order-success .msg-btn:hover{background:var(--accent);color:#fff}
.order-success .btn-ghost{color:var(--accent);border-color:var(--accent)}
.order-success .btn-ghost:hover{background:var(--accent);color:#fff}

/* RESPONSIVE */
@media(max-width:960px){
  .usp-grid,.trust-grid{grid-template-columns:1fr;gap:18px}
  .catalog-grid,.delivery-grid,.reviews-grid,.articles-grid{grid-template-columns:repeat(2,1fr)}
  .trial-inner,.about-inner{grid-template-columns:1fr;gap:36px}
  .about-img{order:2;max-height:340px}
  .footer-inner{grid-template-columns:1fr;gap:28px}
}
@media(max-width:760px){
  .site-nav{display:none}
  .section{padding:70px 0}
  .container{padding:0 20px}
  .hero-content{padding:80px 20px}
  .profile-card,.profile-card:nth-child(even){grid-template-columns:1fr}
  .profile-card:nth-child(even) .profile-img{order:0}
  .profile-img{min-height:230px;position:relative;height:230px}
  .profile-body{padding:32px 28px}
  .profile-body h3{font-size:1.6rem}
  .hero-cta{flex-direction:column;align-items:stretch}
  .hero-cta .btn{width:100%}
  .modal-scroll{padding:34px 24px 28px}
  .about-stats{gap:20px}
  .about-stats strong{font-size:1.3rem}
}
@media(max-width:640px){
  .field-row{grid-template-columns:1fr}
}
@media(max-width:460px){
  .catalog-grid,.delivery-grid,.reviews-grid,.articles-grid{grid-template-columns:1fr}
  .hero-badges{gap:14px}
}
