/* Čistovera — shared stylesheet
   Base reset + design tokens */
:root{
  --bg:#F6F8F6;
  --text:#16211D;
  --green-900:#0E2B25;
  --green-800:#153A32;
  --green-700:#0C5C51;
  --green-600:#12796B;
  --green-500:#4FB39F;
  --green-400:#8FD8C6;
  --green-100:#E3F0EA;
  --green-100b:#E8F1ED;
  --green-100c:#E9F2EE;
  --teal-text:#0E5B50;
  --border:#E4E7E2;
  --border-2:#E1E6E1;
  --border-3:#CBD8D2;
  --border-4:#D5DED9;
  --muted-1:#6C7E78;
  --muted-2:#5A6C66;
  --muted-3:#7C8C86;
  --muted-4:#4A5C56;
  --muted-5:#3E524C;
  --card-bg:#F8FAF8;
  --gold:#E0A93B;
  --danger:#A5544C;
  --focus:#12796B;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;background:var(--bg);}
body{
  font-family:'Manrope', system-ui, -apple-system, sans-serif;
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  line-height:1.4;
}
h1,h2,h3,h4{font-family:'Bricolage Grotesque','Manrope',sans-serif;margin:0;}
a{color:var(--green-600);text-decoration:none;}
a:hover{color:var(--green-700);text-decoration:underline;}
img{max-width:100%;display:block;}
input,textarea,select,button{font-family:'Manrope',sans-serif;font-size:15px;}
button{cursor:pointer;}

.skip-link{position:absolute;left:-999px;top:0;background:#12796B;color:#fff;padding:12px 18px;border-radius:0 0 10px 0;z-index:200;}
.skip-link:focus{left:0;}

:focus-visible{outline:2px solid var(--focus);outline-offset:2px;}

@keyframes cvFade{from{opacity:0;transform:translateY(8px);}to{opacity:1;transform:none;}}
@keyframes cvSlide{from{transform:translateX(40px);opacity:0;}to{transform:none;opacity:1;}}
.anim-fade{animation:cvFade .5s ease both;}
.anim-slide{animation:cvSlide .22s ease both;}

/* ---------- Layout shells ---------- */
.page-shell{min-height:100vh;display:flex;flex-direction:column;background:var(--bg);}
.wrap{max-width:1200px;margin:0 auto;padding:0 24px;}
.wrap-narrow{max-width:1000px;margin:0 auto;padding:0 24px;}
.wrap-legal{max-width:840px;margin:0 auto;padding:0 24px;}
.wrap-post{max-width:760px;margin:0 auto;padding:0 24px;}
main{flex:1;}

/* ---------- Top bar ---------- */
.topbar{background:var(--green-900);color:#CFE6DF;font-size:13px;letter-spacing:.01em;}
.topbar-inner{max-width:1200px;margin:0 auto;padding:9px 24px;display:flex;flex-wrap:wrap;gap:20px;align-items:center;justify-content:space-between;}
.topbar-left{display:flex;gap:20px;flex-wrap:wrap;align-items:center;}
.topbar-dot{color:#4E7A70;}
.topbar-right{display:flex;gap:18px;align-items:center;}
.topbar-right a{color:#8FD8C6;font-weight:600;}
.topbar-right a:hover{color:#fff;}

/* ---------- Header ---------- */
.site-header{position:sticky;top:0;z-index:60;background:rgba(246,248,246,.92);backdrop-filter:blur(12px);border-bottom:1px solid var(--border-2);}
.site-header-inner{max-width:1200px;margin:0 auto;padding:14px 24px;display:flex;align-items:center;gap:20px;}
.brand{display:flex;align-items:center;gap:10px;flex-shrink:0;color:inherit;}
.brand:hover{text-decoration:none;}
.brand-mark{width:38px;height:38px;border-radius:12px;background:var(--green-600);display:flex;align-items:center;justify-content:center;color:#EAF6F2;font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:20px;flex-shrink:0;}
.brand-name{font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:21px;line-height:1;letter-spacing:-.02em;color:var(--text);}
.brand-sub{font-size:11px;color:var(--muted-1);letter-spacing:.08em;text-transform:uppercase;margin-top:3px;}

.main-nav{display:flex;gap:4px;flex-wrap:wrap;margin-left:auto;align-items:center;}
.navlink{cursor:pointer;padding:9px 13px;border-radius:9px;font-size:15px;font-weight:500;color:#2A3B35;text-decoration:none;display:inline-block;}
.navlink:hover{background:var(--green-100b);color:var(--teal-text);text-decoration:none;}
.navlink.is-active{background:var(--green-100b);color:var(--teal-text);}

.header-actions{display:flex;gap:10px;align-items:center;flex-shrink:0;margin-left:12px;}
.icon-btn{position:relative;cursor:pointer;width:42px;height:42px;border-radius:12px;border:1px solid var(--border-3);display:flex;align-items:center;justify-content:center;background:#fff;flex-shrink:0;}
.icon-btn:hover{border-color:var(--green-600);}
.cart-badge{position:absolute;top:-7px;right:-7px;min-width:21px;height:21px;padding:0 5px;border-radius:11px;background:var(--green-600);color:#fff;font-size:12px;font-weight:700;display:flex;align-items:center;justify-content:center;}

.nav-toggle{display:none;width:42px;height:42px;border-radius:12px;border:1px solid var(--border-3);background:#fff;align-items:center;justify-content:center;flex-shrink:0;}
.nav-toggle span,.nav-toggle span::before,.nav-toggle span::after{content:"";display:block;width:18px;height:2px;background:var(--text);position:relative;transition:.2s;}
.nav-toggle span::before{position:absolute;top:-6px;}
.nav-toggle span::after{position:absolute;top:6px;}

/* ---------- Buttons ---------- */
.btn{cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:16px 28px;border-radius:14px;font-weight:700;font-size:16px;border:none;text-decoration:none;line-height:1;}
.btn:hover{text-decoration:none;}
.btn-sm{padding:12px 20px;border-radius:12px;font-size:15px;font-weight:600;}
.btn-primary{background:var(--green-600);color:#fff;}
.btn-primary:hover{background:var(--green-700);color:#fff;}
.btn-outline{background:#fff;border:1px solid var(--border-3);color:var(--text);font-weight:600;}
.btn-outline:hover{border-color:var(--green-600);color:var(--text);}
.btn-accent{background:var(--green-500);color:#04211B;}
.btn-accent:hover{background:#65C6B2;color:#04211B;}
.btn-ghost-dark{border:1px solid #3D6A60;color:#EAF6F2;background:transparent;font-weight:600;}
.btn-ghost-dark:hover{background:#153A32;color:#EAF6F2;}
.btn-block{display:flex;width:100%;text-align:center;}
.link-strong{cursor:pointer;font-weight:600;color:var(--green-600);font-size:16px;background:none;border:none;padding:0;}
.link-strong:hover{color:var(--green-700);}
.link-back{cursor:pointer;font-size:14.5px;color:var(--green-600);font-weight:600;background:none;border:none;padding:0;display:inline-block;}
.link-back:hover{color:var(--green-700);}

/* ---------- Eyebrow / heading helpers ---------- */
.eyebrow{font-size:13px;letter-spacing:.14em;text-transform:uppercase;color:var(--green-600);font-weight:700;margin-bottom:12px;}
.eyebrow-light{font-size:13px;letter-spacing:.14em;text-transform:uppercase;color:var(--teal-text);font-weight:700;margin-bottom:12px;}

/* ---------- Grids (responsive) ---------- */
.grid{display:grid;gap:20px;}
.g2{grid-template-columns:1fr 1fr;}
.g3{grid-template-columns:repeat(3,1fr);}
.g4{grid-template-columns:repeat(4,1fr);}

/* ---------- Cards ---------- */
.feature-card{background:#fff;border:1px solid var(--border);border-radius:18px;padding:26px;}
.feature-card .ico{font-size:24px;margin-bottom:12px;}
.feature-card h3{font-size:18px;font-weight:600;margin-bottom:8px;}
.feature-card p{font-size:14px;line-height:1.6;color:var(--muted-2);margin:0;}

.service-card{cursor:pointer;background:var(--card-bg);border:1px solid var(--border);border-radius:20px;padding:28px;display:flex;flex-direction:column;gap:12px;text-decoration:none;color:inherit;}
.service-card:hover{border-color:var(--green-600);background:#F1F7F4;text-decoration:none;color:inherit;}
.service-card .ico{font-size:26px;}
.service-card .title{font-family:'Bricolage Grotesque',sans-serif;font-size:21px;font-weight:600;letter-spacing:-.02em;}
.service-card .desc{font-size:14.5px;line-height:1.6;color:var(--muted-2);flex:1;}
.service-card .foot{display:flex;justify-content:space-between;align-items:center;padding-top:12px;border-top:1px solid var(--border);}
.service-card .price{font-weight:700;color:var(--teal-text);font-size:16px;}
.service-card .cta{font-size:14px;color:var(--green-600);font-weight:600;}

.service-card-lg{background:#fff;border:1px solid var(--border);border-radius:22px;padding:32px;display:flex;flex-direction:column;gap:14px;}
.service-card-lg .top{display:flex;justify-content:space-between;align-items:flex-start;}
.service-card-lg .ico{font-size:30px;}
.service-card-lg .price-pill{background:var(--green-100);color:var(--teal-text);padding:6px 12px;border-radius:999px;font-size:13px;font-weight:700;}
.service-card-lg .title{font-family:'Bricolage Grotesque',sans-serif;font-size:24px;font-weight:600;letter-spacing:-.02em;}
.service-card-lg .desc{font-size:15.5px;line-height:1.65;color:var(--muted-2);flex:1;}
.tag-row{display:flex;gap:10px;flex-wrap:wrap;}
.tag{font-size:13px;padding:5px 11px;border-radius:8px;background:#F1F5F2;color:var(--muted-4);}
.btn-row{display:flex;gap:12px;margin-top:6px;flex-wrap:wrap;}

.step-card{background:#fff;border:1px solid var(--border);border-radius:20px;padding:28px;}
.step-card.dark{background:var(--green-900);color:#EAF6F2;border:none;}
.step-num{font-family:'Bricolage Grotesque',sans-serif;font-size:44px;font-weight:600;color:#C4D3CD;line-height:1;margin-bottom:16px;}
.step-card.dark .step-num{color:var(--green-500);}
.step-title{font-size:19px;font-weight:600;margin-bottom:8px;}
.step-text{font-size:14.5px;line-height:1.6;color:var(--muted-2);}
.step-card.dark .step-text{color:#B6D3CB;}

.review-card{background:#fff;border:1px solid var(--border);border-radius:20px;padding:28px;display:flex;flex-direction:column;gap:14px;}
.stars{color:var(--gold);font-size:16px;letter-spacing:2px;}
.review-text{font-size:15.5px;line-height:1.65;color:var(--muted-5);flex:1;}
.review-who{display:flex;align-items:center;gap:12px;padding-top:12px;border-top:1px solid var(--border);}
.review-avatar{width:38px;height:38px;border-radius:50%;background:var(--green-100);color:var(--teal-text);font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.review-name{font-weight:600;font-size:15px;}
.review-meta{font-size:13px;color:var(--muted-3);}

.blog-card{cursor:pointer;border:1px solid var(--border);border-radius:20px;overflow:hidden;background:var(--card-bg);text-decoration:none;color:inherit;display:block;}
.blog-card:hover{border-color:var(--green-600);text-decoration:none;color:inherit;}
.blog-card .thumb{aspect-ratio:16/10;background:var(--card-bg);overflow:hidden;}
.blog-card .thumb img{width:100%;height:100%;object-fit:cover;}
.blog-card .body{padding:24px;}
.blog-card .tag{font-size:12.5px;color:var(--green-600);font-weight:700;letter-spacing:.06em;text-transform:uppercase;margin-bottom:10px;display:inline-block;}
.blog-card .title{font-family:'Bricolage Grotesque',sans-serif;font-size:20px;font-weight:600;line-height:1.25;margin-bottom:10px;letter-spacing:-.02em;}
.blog-card .perex{font-size:14.5px;line-height:1.6;color:var(--muted-2);}
.blog-card .meta{display:flex;gap:12px;font-size:12.5px;color:var(--muted-3);margin-bottom:10px;}

.product-card{background:#fff;border:1px solid var(--border);border-radius:20px;overflow:hidden;display:flex;flex-direction:column;}
.product-card:hover{border-color:var(--green-600);}
.product-card .thumb{aspect-ratio:1/1;background:var(--card-bg);position:relative;overflow:hidden;}
.product-card .thumb img{width:100%;height:100%;object-fit:cover;}
.product-card .badge{position:absolute;top:12px;left:12px;background:var(--green-600);color:#fff;font-size:12px;font-weight:700;padding:5px 11px;border-radius:8px;}
.product-card .body{padding:20px;display:flex;flex-direction:column;gap:8px;flex:1;}
.product-card .cat{font-size:12px;color:var(--muted-3);letter-spacing:.05em;text-transform:uppercase;font-weight:700;}
.product-card .name{font-family:'Bricolage Grotesque',sans-serif;font-size:17px;font-weight:600;line-height:1.25;}
.product-card .desc{font-size:13.5px;line-height:1.55;color:var(--muted-1);flex:1;}
.product-card .price{font-family:'Bricolage Grotesque',sans-serif;font-size:22px;font-weight:600;color:var(--teal-text);margin-top:4px;}

.chip{cursor:pointer;padding:10px 18px;border-radius:999px;border:1px solid var(--border-3);background:#fff;color:var(--muted-5);font-weight:600;font-size:14.5px;}
.chip.is-active{background:var(--green-600);color:#fff;border-color:var(--green-600);}
.chip:hover{border-color:var(--green-600);}

.info-card{background:#fff;border:1px solid var(--border);border-radius:18px;padding:26px;}
.info-card h3{font-family:'Bricolage Grotesque',sans-serif;font-size:18px;font-weight:600;margin-bottom:8px;}
.info-card p{font-size:14.5px;line-height:1.6;color:var(--muted-2);margin:0;}
.info-card .more{cursor:pointer;display:inline-block;margin-top:12px;color:var(--green-600);font-weight:600;font-size:14.5px;}

/* ---------- Sections ---------- */
.section{padding:72px 0;}
.section-tight{padding:56px 0 80px;}
.section-band{background:#fff;border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.section-band-alt{background:var(--green-100c);}
.section-head{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:32px;flex-wrap:wrap;}

/* ---------- Hero ---------- */
.hero{padding:64px 0 40px;display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center;}
.hero-pill{display:inline-flex;align-items:center;gap:9px;padding:7px 14px;border-radius:999px;background:var(--green-100);color:var(--teal-text);font-size:13px;font-weight:600;margin-bottom:22px;}
.hero-pill .dot{width:7px;height:7px;border-radius:50%;background:var(--green-600);display:block;}
.hero h1{font-size:60px;line-height:1.03;letter-spacing:-.035em;margin:0 0 22px;font-weight:600;}
.hero p.lead{font-size:19px;line-height:1.62;color:var(--muted-4);margin:0 0 30px;max-width:560px;}
.hero-stats{display:flex;gap:34px;flex-wrap:wrap;}
.hero-stats b{font-family:'Bricolage Grotesque',sans-serif;font-size:30px;font-weight:600;color:var(--teal-text);display:block;}
.hero-stats span{font-size:13px;color:var(--muted-1);margin-top:2px;display:block;}
.hero-media{position:relative;}
.hero-media .photo{border-radius:26px;overflow:hidden;border:1px solid #DDE4DF;aspect-ratio:4/5;}
.hero-media .photo img{width:100%;height:100%;object-fit:cover;}
.hero-price-tag{position:absolute;left:-26px;bottom:36px;background:#fff;border:1px solid var(--border-2);border-radius:18px;padding:18px 22px;box-shadow:0 18px 40px rgba(14,43,37,.10);max-width:250px;}
.hero-price-tag .lbl{font-size:13px;color:var(--muted-1);margin-bottom:6px;}
.hero-price-tag .val{font-family:'Bricolage Grotesque',sans-serif;font-size:32px;font-weight:600;color:var(--green-600);line-height:1;}
.hero-price-tag .val small{font-size:16px;color:var(--muted-1);}
.hero-price-tag .note{font-size:13px;color:var(--muted-4);margin-top:8px;}

.photo-box{border-radius:24px;overflow:hidden;border:1px solid #DDE4DF;}
.photo-box img{width:100%;height:100%;object-fit:cover;display:block;}

/* ---------- CTA band ---------- */
.cta-band{background:var(--green-900);border-radius:28px;padding:56px;display:grid;grid-template-columns:1.1fr .9fr;gap:48px;align-items:center;}
.cta-band h2{font-size:38px;font-weight:600;letter-spacing:-.03em;margin:0 0 16px;color:#F1FAF7;}
.cta-band p{font-size:17px;line-height:1.6;color:#B6D3CB;margin:0 0 26px;}
.cta-stats{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.cta-stat{background:var(--green-800);border-radius:16px;padding:20px;}
.cta-stat b{font-size:26px;font-weight:700;color:var(--green-400);font-family:'Bricolage Grotesque',sans-serif;display:block;}
.cta-stat span{font-size:13.5px;color:#A9C9C0;margin-top:4px;display:block;}

/* ---------- Pricing ---------- */
.price-card{background:#fff;border:1px solid var(--border);border-radius:22px;padding:32px;}
.price-card.featured{background:var(--green-900);color:#EAF6F2;position:relative;}
.price-card .badge-pop{position:absolute;top:-13px;left:32px;background:var(--green-500);color:#04211B;font-size:12.5px;font-weight:700;padding:6px 14px;border-radius:999px;}
.price-card .tier{font-family:'Bricolage Grotesque',sans-serif;font-size:22px;font-weight:600;margin-bottom:6px;}
.price-card .sub{font-size:14.5px;color:var(--muted-1);margin-bottom:20px;}
.price-card.featured .sub{color:#A9C9C0;}
.price-card .amount{font-family:'Bricolage Grotesque',sans-serif;font-size:40px;font-weight:600;color:var(--teal-text);}
.price-card.featured .amount{color:var(--green-400);}
.price-card .amount small{font-size:17px;color:var(--muted-1);}
.price-card.featured .amount small{color:#A9C9C0;}
.price-card hr{height:1px;background:var(--border);margin:22px 0;border:none;}
.price-card.featured hr{background:#2C5148;}
.price-card ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:11px;font-size:15px;color:var(--muted-5);}
.price-card.featured ul{color:#CFE6DF;}

.price-table{background:#fff;border:1px solid var(--border);border-radius:20px;overflow:hidden;margin-bottom:44px;}
.price-table .row{display:grid;grid-template-columns:1.2fr 1fr 1fr 1fr;padding:18px 26px;border-top:1px solid #EDF0EC;font-size:15.5px;align-items:center;}
.price-table .row:first-child{border-top:none;background:#F1F5F2;font-size:13.5px;font-weight:700;color:var(--muted-4);letter-spacing:.04em;text-transform:uppercase;padding:16px 26px;}
.price-table .row div:first-child{font-weight:600;}
.price-table .row:first-child div{font-weight:700;}
.price-table .row div{color:var(--muted-5);}
.price-table .row:first-child div:first-child{color:var(--muted-4);}

.extra-row{background:#fff;border:1px solid var(--border);border-radius:16px;padding:22px;display:flex;justify-content:space-between;align-items:center;gap:14px;}
.extra-row .price{font-weight:700;color:var(--teal-text);white-space:nowrap;}

/* ---------- Forms ---------- */
.field{display:flex;flex-direction:column;gap:7px;}
.field label{font-size:13.5px;font-weight:600;color:var(--muted-4);}
.field input,.field select,.field textarea{padding:13px 15px;border:1px solid var(--border-4);border-radius:11px;font-size:15px;background:#FBFCFB;width:100%;}
.field textarea{resize:vertical;}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--green-600);}
.field-error{border-color:var(--danger) !important;}
.field-error-msg{font-size:12.5px;color:var(--danger);margin-top:-3px;}
.check-row{display:flex;gap:10px;align-items:flex-start;font-size:13.5px;line-height:1.55;color:var(--muted-2);}
.check-row input{margin-top:3px;}
.radio-row{display:flex;gap:12px;align-items:center;padding:15px 18px;border:1px solid var(--border-4);border-radius:13px;cursor:pointer;background:#FBFCFB;}
.radio-row input{accent-color:var(--green-600);}
.radio-row span{flex:1;font-size:15.5px;}
.form-card{background:#fff;border:1px solid var(--border);border-radius:22px;padding:32px;}
.form-msg{padding:14px 18px;border-radius:12px;font-size:14.5px;margin-bottom:18px;display:none;}
.form-msg.is-visible{display:block;}
.form-msg.error{background:#FBEAEA;color:#8A3A32;border:1px solid #E9C4BE;}
.form-msg.success{background:var(--green-100);color:var(--teal-text);border:1px solid #BFE0D3;}
.success-panel{text-align:center;padding:40px 0;}
.success-panel .ico{font-size:46px;margin-bottom:14px;}
.success-panel h2{font-family:'Bricolage Grotesque',sans-serif;font-size:26px;font-weight:600;margin-bottom:10px;}
.success-panel p{font-size:16px;color:var(--muted-2);margin:0;}
.hidden{display:none !important;}

/* ---------- Contact / kontakt layout ---------- */
.contact-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:28px;align-items:start;}
.contact-side{display:flex;flex-direction:column;gap:18px;}
.contact-box-dark{background:var(--green-900);color:#EAF6F2;border-radius:22px;padding:30px;}
.contact-box-dark .h{font-family:'Bricolage Grotesque',sans-serif;font-size:20px;font-weight:600;margin-bottom:18px;}
.contact-box-dark dl{display:flex;flex-direction:column;gap:14px;font-size:15.5px;margin:0;}
.contact-box-dark dt{color:var(--green-400);font-size:13px;margin-bottom:3px;}
.contact-box-dark dd{margin:0;}
.contact-box-dark a{color:#EAF6F2;font-weight:600;}

/* ---------- Checkout ---------- */
.checkout-grid{display:grid;grid-template-columns:1.3fr .9fr;gap:28px;align-items:start;}
.summary-card{background:#fff;border:1px solid var(--border);border-radius:22px;padding:28px;position:sticky;top:110px;}
.summary-line{display:flex;justify-content:space-between;gap:14px;padding:10px 0;border-bottom:1px solid #EDF0EC;font-size:14.5px;}
.summary-line span:first-child{color:var(--muted-5);}
.summary-total{display:flex;justify-content:space-between;padding:12px 0;border-top:1px solid var(--border);margin-top:8px;}
.summary-total .lbl{font-weight:700;font-size:17px;}
.summary-total .val{font-family:'Bricolage Grotesque',sans-serif;font-size:24px;font-weight:600;color:var(--teal-text);}

/* ---------- Cart drawer ---------- */
.cart-overlay{position:fixed;inset:0;z-index:100;display:none;justify-content:flex-end;}
.cart-overlay.is-open{display:flex;}
.cart-backdrop{position:absolute;inset:0;background:rgba(10,28,24,.42);border:none;padding:0;cursor:pointer;}
.cart-panel{position:relative;width:430px;max-width:92vw;background:var(--bg);height:100%;display:flex;flex-direction:column;box-shadow:-20px 0 50px rgba(10,28,24,.18);}
.cart-panel-head{padding:24px 26px;border-bottom:1px solid var(--border-2);display:flex;justify-content:space-between;align-items:center;background:#fff;}
.cart-panel-head h2{font-family:'Bricolage Grotesque',sans-serif;font-size:22px;font-weight:600;}
.cart-close{cursor:pointer;font-size:22px;color:var(--muted-1);line-height:1;background:none;border:none;}
.cart-panel-body{flex:1;overflow-y:auto;padding:22px 26px;display:flex;flex-direction:column;gap:14px;}
.cart-empty{text-align:center;padding:50px 10px;color:var(--muted-1);}
.cart-empty .ico{font-size:38px;margin-bottom:12px;}
.cart-item{background:#fff;border:1px solid var(--border);border-radius:16px;padding:16px;display:flex;gap:14px;}
.cart-item .thumb{width:60px;height:60px;border-radius:11px;background:var(--card-bg);flex-shrink:0;overflow:hidden;}
.cart-item .thumb img{width:100%;height:100%;object-fit:cover;}
.cart-item .info{flex:1;min-width:0;}
.cart-item .name{font-size:15px;font-weight:600;line-height:1.3;margin-bottom:4px;}
.cart-item .unit{font-size:13.5px;color:var(--muted-3);margin-bottom:10px;}
.cart-item .qty-row{display:flex;align-items:center;gap:10px;}
.qty-btn{cursor:pointer;width:28px;height:28px;border-radius:8px;border:1px solid var(--border-4);display:flex;align-items:center;justify-content:center;background:#fff;font-size:15px;line-height:1;}
.qty-btn:hover{border-color:var(--green-600);}
.qty-val{font-weight:600;min-width:20px;text-align:center;}
.cart-remove{cursor:pointer;margin-left:auto;font-size:13px;color:var(--danger);background:none;border:none;}
.cart-item .sum{font-weight:700;color:var(--teal-text);white-space:nowrap;}
.cart-panel-foot{padding:22px 26px;border-top:1px solid var(--border-2);background:#fff;}
.cart-foot-line{display:flex;justify-content:space-between;font-size:14.5px;color:var(--muted-2);margin-bottom:6px;}

/* ---------- Cookie bar ---------- */
.cookie-bar{position:fixed;left:24px;right:24px;bottom:24px;z-index:120;display:none;justify-content:center;}
.cookie-bar.is-visible{display:flex;}
.cookie-card{max-width:940px;width:100%;background:#fff;border:1px solid #DCE3DE;border-radius:20px;padding:26px 28px;box-shadow:0 22px 60px rgba(10,28,24,.18);display:grid;grid-template-columns:1fr auto;gap:28px;align-items:center;}
.cookie-card h2{font-family:'Bricolage Grotesque',sans-serif;font-size:18px;font-weight:600;margin-bottom:8px;}
.cookie-card p{font-size:14.5px;line-height:1.65;color:var(--muted-2);margin:0;}
.cookie-card p button{color:var(--green-600);font-weight:600;cursor:pointer;background:none;border:none;padding:0;font-size:inherit;text-decoration:underline;}
.cookie-actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end;}

/* ---------- FAQ (details/summary, no JS needed) ---------- */
.faq-item{background:#fff;border:1px solid var(--border);border-radius:16px;overflow:hidden;}
.faq-item summary{cursor:pointer;padding:22px 26px;display:flex;justify-content:space-between;gap:18px;align-items:center;list-style:none;font-size:17px;font-weight:600;color:var(--text);}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{content:"+";color:var(--green-600);font-size:20px;font-weight:600;flex-shrink:0;}
.faq-item[open] summary::after{content:"\2212";}
.faq-item .a{padding:0 26px 24px;font-size:16px;line-height:1.7;color:var(--muted-4);}

/* ---------- Milestones ---------- */
.milestone{display:grid;grid-template-columns:100px 1fr;gap:24px;padding:20px 0;border-bottom:1px solid var(--border);}
.milestone .yr{font-family:'Bricolage Grotesque',sans-serif;font-size:22px;font-weight:600;color:var(--green-600);}
.milestone .tx{font-size:16px;line-height:1.6;color:var(--muted-5);}

/* ---------- Legal ---------- */
.legal-meta{font-size:14.5px;color:var(--muted-3);margin-bottom:34px;}
.legal-body h2{font-family:'Bricolage Grotesque',sans-serif;font-size:24px;font-weight:600;letter-spacing:-.02em;margin:34px 0 12px;}
.legal-body h2:first-child{margin-top:0;}
.legal-body p{font-size:16px;line-height:1.75;color:var(--muted-5);margin:0 0 14px;}
.legal-contact{margin-top:44px;padding:26px;background:#fff;border:1px solid var(--border);border-radius:18px;font-size:14.5px;line-height:1.7;color:var(--muted-2);}

/* ---------- Post body ---------- */
.post-body h2{font-family:'Bricolage Grotesque',sans-serif;font-size:27px;font-weight:600;letter-spacing:-.02em;margin:36px 0 14px;}
.post-body p{font-size:17px;line-height:1.75;color:var(--muted-5);margin:0 0 18px;}
.post-meta{display:flex;gap:12px;font-size:13px;color:var(--muted-3);margin:26px 0 12px;flex-wrap:wrap;}
.post-meta .tag{color:var(--green-600);font-weight:700;text-transform:uppercase;letter-spacing:.06em;}
.post-cta{background:var(--green-100c);border-radius:20px;padding:32px;margin-top:40px;display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap;}
.post-cta .t{font-size:17px;font-weight:600;color:var(--green-900);}

/* ---------- Footer ---------- */
.site-footer{background:var(--green-900);color:#B6D3CB;margin-top:auto;}
.footer-grid{max-width:1200px;margin:0 auto;padding:60px 24px 28px;display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;}
.footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:16px;}
.footer-mark{width:36px;height:36px;border-radius:11px;background:var(--green-500);display:flex;align-items:center;justify-content:center;color:#04211B;font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:19px;}
.footer-name{font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:20px;color:#F1FAF7;}
.footer-desc{font-size:14.5px;line-height:1.7;margin-bottom:18px;}
.footer-legal-txt{font-size:13.5px;line-height:1.8;color:#8FA9A2;}
.footer-col-title{font-size:13px;letter-spacing:.1em;text-transform:uppercase;color:#F1FAF7;font-weight:700;margin-bottom:16px;}
.footer-links{display:flex;flex-direction:column;gap:10px;font-size:14.5px;}
.footer-links a,.footer-links button{color:#B6D3CB;cursor:pointer;text-align:left;background:none;border:none;font-size:14.5px;font-family:inherit;padding:0;}
.footer-links a:hover,.footer-links button:hover{color:var(--green-400);text-decoration:none;}
.footer-bottom{border-top:1px solid #23443C;}
.footer-bottom-inner{max-width:1200px;margin:0 auto;padding:20px 24px;display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;font-size:13.5px;color:#7E9A93;}
.footer-bottom-inner div:last-child{display:flex;gap:18px;flex-wrap:wrap;}

/* ---------- Responsive ---------- */
@media (max-width:980px){
  .main-nav{display:none;position:absolute;top:100%;left:0;right:0;background:#fff;flex-direction:column;align-items:stretch;gap:0;padding:10px 16px 16px;border-bottom:1px solid var(--border-2);box-shadow:0 16px 30px rgba(10,28,24,.08);}
  .main-nav.is-open{display:flex;}
  .navlink{padding:13px 10px;border-radius:8px;}
  .nav-toggle{display:flex;}
  .site-header-inner{flex-wrap:wrap;position:relative;}
  .header-actions{margin-left:auto;}
  .hero{grid-template-columns:1fr;gap:36px;padding-top:40px;}
  .hero h1{font-size:42px;}
  .hero-media{order:-1;}
  .hero-price-tag{left:16px;bottom:-24px;}
  .g4{grid-template-columns:repeat(2,1fr);}
  .g3{grid-template-columns:repeat(2,1fr);}
  .g2{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .cta-band{grid-template-columns:1fr;padding:36px;}
  .checkout-grid{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .summary-card{position:static;}
  .price-table .row{grid-template-columns:1.2fr 1fr 1fr 1fr;padding:14px 16px;font-size:13.5px;}
}

@media (max-width:640px){
  .wrap,.wrap-narrow,.wrap-legal,.wrap-post{padding:0 16px;}
  .hero h1{font-size:34px;}
  .hero p.lead{font-size:17px;}
  h1{font-size:34px !important;}
  .g4,.g3{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;padding:44px 16px 20px;}
  .topbar-inner{padding:9px 16px;font-size:12px;}
  .cta-band h2{font-size:28px;}
  .cookie-card{grid-template-columns:1fr;}
  .cookie-actions{justify-content:flex-start;}
  .price-table{overflow-x:auto;}
  .price-table .row{min-width:560px;}
  .section{padding:48px 0;}
  .cta-stats{grid-template-columns:1fr 1fr;}
}
