:root{
  --brand:#b5551f;
  --brand-dark:#8f3f13;
  --brand-light:rgba(181,85,31,.12);
  --blue:#3a6ea8;
  --blue-light:rgba(58,110,168,.12);
  --bg:#f7f4f1;
  --bg-alt:#f1e9e2;
  --ink:#332e2a;
  --ink-soft:#5c534c;
  --ink-mute:#7a716a;
  --line:#e4dcd3;
  --line-soft:#eee7df;
  --white:#ffffff;
  --footer-bg:#292420;
  --radius:14px;
  --radius-sm:8px;
  --shadow:0 2px 10px rgba(51,46,42,.06);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  font-family:'Segoe UI',-apple-system,BlinkMacSystemFont,Roboto,Arial,sans-serif;
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
h1,h2,h3,.font-head{
  font-family:'Trebuchet MS',-apple-system,Roboto,Arial,sans-serif;
  font-weight:800;
}
a{color:var(--brand);text-decoration:none;}
a:hover{color:var(--brand-dark);text-decoration:underline;}
img{max-width:100%;display:block;}
button{font-family:inherit;}
::selection{background:rgba(181,85,31,.25);}

.wrap{max-width:1240px;margin:0 auto;padding:0 24px;}
.wrap-narrow{max-width:1100px;margin:0 auto;padding:0 24px;}
.wrap-thin{max-width:900px;margin:0 auto;padding:0 24px;}
.wrap-text{max-width:760px;margin:0 auto;padding:0 24px;}

.page-shell{min-height:100vh;display:flex;flex-direction:column;background:var(--bg);}
main{flex:1;}

/* HEADER */
header.site-header{
  position:sticky;top:0;z-index:40;
  background:rgba(255,253,251,.95);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  max-width:1240px;margin:0 auto;padding:14px 24px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.brand{display:flex;align-items:center;gap:10px;color:inherit;}
.brand:hover{text-decoration:none;}
.brand-mark{
  width:40px;height:40px;border-radius:10px;background:var(--brand);
  display:flex;align-items:center;justify-content:center;flex:none;
}
.brand-mark span{width:16px;height:16px;background:#fff;transform:rotate(45deg);display:block;}
.brand-name{font-family:'Trebuchet MS',Arial,sans-serif;font-weight:700;font-size:19px;line-height:1.1;color:var(--ink);}
.brand-sub{font-family:inherit;font-weight:500;font-size:11px;color:var(--ink-mute);letter-spacing:.04em;}

nav.desknav{display:none;gap:20px;align-items:center;}
nav.desknav a{font-size:14.5px;font-weight:600;color:var(--ink-soft);padding:6px 2px;border-bottom:2px solid transparent;}
nav.desknav a:hover{text-decoration:none;color:var(--brand);}
nav.desknav a.active{color:var(--brand-dark);border-bottom-color:var(--brand);}

@media(min-width:960px){
  nav.desknav{display:flex;}
  .navtoggle{display:none;}
}

.header-actions{display:flex;align-items:center;gap:10px;}
.cart-btn{
  position:relative;background:var(--brand);color:#fff;border:none;border-radius:10px;
  padding:9px 14px;font-weight:600;font-size:14px;cursor:pointer;display:flex;align-items:center;gap:6px;
}
.cart-btn:hover{background:var(--brand-dark);}
.cart-count{
  background:#fff;color:var(--brand);border-radius:999px;min-width:20px;height:20px;padding:0 5px;
  font-size:12px;display:inline-flex;align-items:center;justify-content:center;
}
.navtoggle{
  background:none;border:1px solid var(--line);border-radius:8px;width:38px;height:38px;
  display:flex;align-items:center;justify-content:center;cursor:pointer;
}
.navtoggle span{display:block;width:18px;height:2px;background:var(--ink);position:relative;}
.navtoggle span::before,.navtoggle span::after{content:"";position:absolute;left:0;width:18px;height:2px;background:var(--ink);}
.navtoggle span::before{top:-6px;}
.navtoggle span::after{top:6px;}

.mobilenav{display:none;flex-direction:column;border-top:1px solid var(--line);background:#fff;}
.mobilenav.open{display:flex;}
.mobilenav a{padding:13px 24px;font-weight:600;font-size:14.5px;color:var(--ink-soft);border-bottom:1px solid var(--line-soft);}
.mobilenav a.active{color:var(--brand-dark);}
@media(min-width:960px){.mobilenav{display:none !important;}}

/* CART DRAWER */
.cart-overlay{position:fixed;inset:0;z-index:60;background:rgba(51,46,42,.45);display:none;}
.cart-overlay.open{display:block;}
.cart-drawer{
  position:absolute;right:0;top:0;bottom:0;width:min(400px,100%);background:#fff;
  padding:24px;overflow-y:auto;display:flex;flex-direction:column;gap:16px;
}
.cart-head{display:flex;justify-content:space-between;align-items:center;}
.cart-head h2{font-size:20px;margin:0;}
.cart-close{background:none;border:none;font-size:22px;cursor:pointer;color:var(--ink-mute);line-height:1;}
.cart-item{display:flex;gap:12px;border-bottom:1px solid var(--line-soft);padding-bottom:12px;}
.cart-item img{width:56px;height:56px;flex:none;border-radius:8px;object-fit:cover;}
.cart-item-name{font-weight:600;font-size:14px;}
.cart-item-price{color:var(--ink-mute);font-size:13px;}
.qty-row{display:flex;align-items:center;gap:8px;margin-top:6px;}
.qty-btn{width:24px;height:24px;border:1px solid var(--line);background:#fff;border-radius:6px;cursor:pointer;}
.qty-val{font-size:13px;min-width:16px;text-align:center;}
.remove-btn{margin-left:auto;font-size:12px;color:var(--brand);background:none;border:none;cursor:pointer;}
.cart-item-total{font-weight:700;font-size:14px;}
.cart-total-row{display:flex;justify-content:space-between;font-weight:700;font-size:17px;padding-top:6px;}
.cart-empty{text-align:center;color:var(--ink-mute);padding:40px 0;}
.cart-done{padding:24px 0;text-align:center;}
.cart-done .check{font-size:40px;margin-bottom:8px;}

/* BUTTONS */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  border-radius:10px;padding:14px 24px;font-weight:700;font-size:15px;cursor:pointer;
  border:none;text-decoration:none;
}
.btn:hover{text-decoration:none;}
.btn-primary{background:var(--brand);color:#fff;}
.btn-primary:hover{background:var(--brand-dark);color:#fff;}
.btn-secondary{background:#fff;border:1px solid var(--line);color:var(--ink);}
.btn-secondary:hover{border-color:var(--brand);color:var(--brand);}
.btn-white{background:#fff;color:var(--brand-dark);}
.btn-white:hover{background:#f3ece6;color:var(--brand-dark);}
.btn-block{width:100%;}
.btn-sm{padding:8px 14px;font-size:13px;border-radius:8px;}

/* HERO */
.hero{background:linear-gradient(180deg,#efe1d4,var(--bg));padding:64px 24px 56px;}
.hero-grid{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,0.9fr);gap:40px;align-items:center;}
@media(max-width:860px){.hero-grid{grid-template-columns:1fr;}}
.badge{display:inline-block;background:var(--brand-light);color:var(--brand-dark);font-weight:700;font-size:13px;padding:6px 12px;border-radius:999px;margin-bottom:16px;}
.hero h1{font-size:44px;line-height:1.1;margin:0 0 18px;}
@media(max-width:640px){.hero h1{font-size:32px;}}
.hero p{font-size:17px;color:var(--ink-soft);line-height:1.6;margin:0 0 26px;}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;}
.usp-row{display:flex;flex-wrap:wrap;gap:22px;margin-top:32px;}
.usp{min-width:110px;}
.usp-value{font-family:'Trebuchet MS',Arial,sans-serif;font-weight:800;font-size:24px;color:var(--brand-dark);}
.usp-label{font-size:12.5px;color:var(--ink-mute);}
.hero-img{aspect-ratio:4/3;border-radius:16px;overflow:hidden;box-shadow:var(--shadow);}
.hero-img img{width:100%;height:100%;object-fit:cover;}

/* SECTIONS */
.section{padding:64px 24px;}
.section-alt{background:var(--bg-alt);}
.section-head{text-align:center;margin-bottom:40px;}
.section-head h2{font-size:30px;margin:0 0 10px;}
.section-head p{color:var(--ink-mute);font-size:15px;margin:0;}

.grid-services{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px;}
.card{background:#fff;border:1px solid var(--line-soft);border-radius:var(--radius);padding:24px;}
.icon-circle{width:48px;height:48px;border-radius:50%;background:var(--brand);display:flex;align-items:center;justify-content:center;color:#fff;font-family:'Trebuchet MS',Arial,sans-serif;font-weight:700;margin-bottom:14px;}
.card h3{font-size:16px;margin:0 0 6px;}
.card p{font-size:13.5px;color:var(--ink-mute);line-height:1.55;margin:0;}
.more-link{text-align:center;margin-top:30px;}
.more-link a{font-weight:700;}

.grid-process{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:24px;}
.process-num{font-family:'Trebuchet MS',Arial,sans-serif;font-weight:800;font-size:28px;color:var(--blue);margin-bottom:8px;}
.process-title{font-weight:700;font-size:15.5px;margin-bottom:6px;}
.process-text{font-size:13.5px;color:var(--ink-mute);line-height:1.55;}

.grid-testimonials{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px;}
.stars{color:var(--brand);font-size:15px;margin-bottom:10px;}
.testi-text{font-size:14px;line-height:1.6;color:#4a433d;margin-bottom:14px;}
.testi-name{font-weight:700;font-size:13.5px;}
.testi-loc{font-size:12px;color:var(--ink-mute);}

.cta-band{background:var(--brand);padding:56px 24px;text-align:center;}
.cta-band h2{color:#fff;font-size:28px;margin:0 0 12px;}
.cta-band p{color:#f6e7dc;margin:0 0 24px;}

/* SERVICES PAGE */
.page-head{max-width:1100px;margin:0 auto;padding:56px 24px 0;}
.page-head h1{font-size:34px;margin:0 0 10px;}
.page-head p{color:var(--ink-mute);font-size:15.5px;max-width:640px;margin:0;}

.services-list{display:flex;flex-direction:column;gap:16px;}
.service-row{display:grid;grid-template-columns:56px 1fr;gap:18px;background:#fff;border:1px solid var(--line-soft);border-radius:var(--radius);padding:24px;}
.service-row h3{font-size:18px;margin:0 0 6px;}
.service-row p{font-size:14px;color:var(--ink-soft);line-height:1.65;margin:0 0 10px;}
.service-price{font-size:13px;font-weight:600;color:var(--blue);}

/* PRICING */
.price-table{background:#fff;border:1px solid var(--line-soft);border-radius:var(--radius);overflow:hidden;}
.price-row{display:flex;justify-content:space-between;align-items:center;padding:16px 22px;border-bottom:1px solid var(--line-soft);}
.price-row:last-child{border-bottom:none;}
.price-name{font-weight:600;font-size:14.5px;}
.price-val{font-weight:700;font-size:14.5px;color:var(--brand-dark);white-space:nowrap;}
.price-cta{background:var(--bg-alt);border-radius:var(--radius);padding:22px 24px;margin-top:24px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:14px;}
.price-cta p{font-weight:600;font-size:14.5px;margin:0;}

/* PORTFOLIO */
.grid-portfolio{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px;}
.portfolio-card{background:#fff;border:1px solid var(--line-soft);border-radius:var(--radius);overflow:hidden;}
.portfolio-card .pf-img{aspect-ratio:4/3;overflow:hidden;}
.portfolio-card img{width:100%;height:100%;object-fit:cover;}
.pf-body{padding:16px;}
.pf-cat{display:inline-block;background:var(--blue-light);color:var(--blue);font-size:11.5px;font-weight:700;padding:3px 9px;border-radius:999px;margin-bottom:8px;}
.pf-title{font-weight:700;font-size:15px;margin-bottom:4px;}
.pf-meta{font-size:12.5px;color:var(--ink-mute);}

/* SHOP */
.grid-products{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:20px;}
.product-card{background:#fff;border:1px solid var(--line-soft);border-radius:var(--radius);overflow:hidden;display:flex;flex-direction:column;}
.product-card .prod-img{aspect-ratio:1;overflow:hidden;}
.product-card img{width:100%;height:100%;object-fit:cover;}
.prod-body{padding:16px;display:flex;flex-direction:column;gap:8px;flex:1;}
.prod-name{font-weight:700;font-size:14.5px;}
.prod-desc{font-size:12.5px;color:var(--ink-mute);flex:1;}
.prod-foot{display:flex;justify-content:space-between;align-items:center;margin-top:6px;}
.prod-price{font-weight:800;font-size:16px;color:var(--brand-dark);}
.shop-note{font-size:12.5px;color:var(--ink-mute);margin-top:30px;}

/* BLOG */
.blog-list{display:flex;flex-direction:column;gap:18px;}
.blog-row{display:grid;grid-template-columns:180px 1fr;gap:20px;background:#fff;border:1px solid var(--line-soft);border-radius:var(--radius);padding:20px;}
@media(max-width:640px){.blog-row{grid-template-columns:1fr;}}
.blog-row .bl-img{aspect-ratio:4/3;border-radius:10px;overflow:hidden;}
.blog-row img{width:100%;height:100%;object-fit:cover;}
.bl-date{font-size:12px;color:var(--blue);font-weight:700;margin-bottom:6px;}
.bl-title{font-family:'Trebuchet MS',Arial,sans-serif;font-weight:700;font-size:17px;margin-bottom:8px;}
.bl-excerpt{font-size:13.5px;color:var(--ink-mute);line-height:1.6;}

/* ABOUT */
.about-lead{font-size:15.5px;color:#4a433d;line-height:1.7;margin:0 0 16px;}
.grid-usps{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;margin-bottom:48px;}
.usp-card{background:#fff;border:1px solid var(--line-soft);border-radius:var(--radius);padding:20px;text-align:center;}
.usp-card .usp-value{font-size:26px;}
.grid-team{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px;}
.team-card{background:#fff;border:1px solid var(--line-soft);border-radius:var(--radius);padding:20px;text-align:center;}
.team-photo{width:84px;height:84px;border-radius:50%;margin:0 auto 14px;object-fit:cover;background:#e7dccd;}
.team-name{font-weight:700;font-size:14.5px;}
.team-role{font-size:12.5px;color:var(--ink-mute);}

/* CONTACT */
.contact-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:36px;}
@media(max-width:860px){.contact-grid{grid-template-columns:1fr;}}
.form-field{padding:12px 14px;border:1px solid var(--line);border-radius:8px;font-size:14px;font-family:inherit;width:100%;}
.form-field:focus{outline:2px solid var(--brand);outline-offset:1px;}
form.contact-form{display:flex;flex-direction:column;gap:14px;}
.consent-row{display:flex;gap:10px;align-items:flex-start;font-size:12.5px;color:var(--ink-mute);}
.consent-row input{margin-top:2px;}
.contact-map{aspect-ratio:16/9;border-radius:var(--radius);overflow:hidden;}
.contact-map img{width:100%;height:100%;object-fit:cover;}
.contact-card{background:#fff;border:1px solid var(--line-soft);border-radius:var(--radius);padding:22px;font-size:14px;line-height:1.9;}
.form-success{background:#fff;border:1px solid var(--line-soft);border-radius:var(--radius);padding:32px;text-align:center;}
.form-error{background:#fdeeea;border:1px solid #e3b3a5;color:#8f3f13;border-radius:8px;padding:12px 14px;font-size:13.5px;}
.honey{position:absolute;left:-9999px;top:-9999px;opacity:0;height:0;width:0;}

/* LEGAL */
.legal-body{font-size:14.5px;color:#4a433d;line-height:1.8;white-space:pre-line;}

/* FOOTER */
footer.site-footer{background:var(--footer-bg);color:#d8cfc6;padding:48px 24px 28px;margin-top:20px;}
.footer-grid{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:32px;}
.footer-col h4{font-weight:700;color:#fff;margin:0 0 10px;font-size:14px;}
.footer-col p{font-size:13px;line-height:1.7;margin:0;color:#c9beb3;}
.footer-links{display:flex;flex-direction:column;gap:8px;}
.footer-links a{font-size:13px;color:#d8cfc6;}
.footer-bottom{max-width:1100px;margin:28px auto 0;padding-top:20px;border-top:1px solid #45403a;font-size:12px;color:#a89e94;}

/* COOKIE BANNER */
.cookie-banner{position:fixed;left:0;right:0;bottom:0;z-index:80;background:var(--footer-bg);color:#fff;padding:18px 24px;display:none;}
.cookie-banner.open{display:block;}
.cookie-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;gap:20px;flex-wrap:wrap;}
.cookie-text{flex:1;min-width:220px;font-size:13px;line-height:1.6;}
.cookie-text a{color:#e3b699;}
.cookie-actions{display:flex;gap:10px;}
.btn-ghost{background:transparent;color:#fff;border:1px solid #5c554d;border-radius:8px;padding:9px 16px;font-weight:600;font-size:13px;cursor:pointer;}

/* MISC */
.mt-0{margin-top:0;}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
