:root{
  --bg: #f6f1ea;
  --bg-soft: #fdfbf8;
  --border: #ddd3c4;
  --border-soft: #e3dacb;
  --text: #3a2f26;
  --text-soft: #6b5d4f;
  --text-mute: #8a7c6c;
  --brand: #b5502e;
  --brand-dark: #973f22;
  --brand-light: #e8d2b8;
  --brand-light-text: #6b4423;
  --footer-bg: #3a2f26;
  --footer-bg-2: #38291f;
  --footer-text: #e6dccb;
  --footer-text-soft: #cdbfa9;
  --accent-band: #e4c9a3;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  font-family:-apple-system,Segoe UI,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
}
a{color:var(--brand);text-decoration:none;}
a:hover{color:var(--brand-dark);}
img{max-width:100%;display:block;}
h1,h2,h3{font-family:Georgia,'Times New Roman',serif;}

.container{max-width:1280px;margin:0 auto;padding:0 40px;}

/* header */
.site-header{
  position:sticky;top:0;z-index:50;
  background:var(--bg-soft);
  border-bottom:1px solid var(--border);
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 40px;flex-wrap:wrap;gap:16px;
}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;}
.brand-mark{
  width:46px;height:46px;border-radius:50%;background:var(--brand);
  display:flex;align-items:center;justify-content:center;color:#fdf8f0;
  font-family:Georgia,'Times New Roman',serif;font-weight:700;font-size:19px;flex:none;
}
.brand-name{font-family:Georgia,'Times New Roman',serif;font-weight:700;font-size:21px;color:var(--text);line-height:1.1;}
.brand-tag{font-size:11px;letter-spacing:0.07em;color:var(--text-soft);text-transform:uppercase;}

.main-nav{display:flex;gap:20px;flex-wrap:wrap;align-items:center;font-size:14.5px;}
.main-nav a{color:#4a3d30;font-weight:600;}
.main-nav a.active{color:var(--brand-dark);font-weight:700;}
.nav-cta{
  background:var(--brand);color:#fdf8f0 !important;font-weight:700 !important;
  padding:10px 20px;border-radius:8px;position:relative;
}
.nav-cta .cart-badge{
  position:absolute;top:-8px;right:-8px;background:#fdf8f0;color:var(--brand-dark);
  font-size:11px;font-weight:700;border-radius:50%;width:20px;height:20px;
  display:flex;align-items:center;justify-content:center;
}

/* hero */
.hero{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:40px;align-items:center;max-width:1280px;margin:0 auto;padding:64px 40px;
}
.eyebrow{
  display:inline-block;background:var(--brand-light);color:var(--brand-light-text);
  font-size:13px;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;
  padding:6px 14px;border-radius:20px;margin-bottom:20px;
}
.hero h1{font-size:46px;line-height:1.15;margin:0 0 20px;color:#2c231b;}
.hero p{font-size:17px;line-height:1.7;color:var(--text-soft);max-width:520px;margin:0 0 28px;}
.btn-row{display:flex;gap:14px;flex-wrap:wrap;}
.btn{
  display:inline-block;text-decoration:none;font-weight:700;padding:14px 26px;
  border-radius:8px;font-size:15px;cursor:pointer;border:none;font-family:inherit;
}
.btn-primary{background:var(--brand);color:#fdf8f0;}
.btn-primary:hover{background:var(--brand-dark);color:#fdf8f0;}
.btn-outline{background:transparent;border:2px solid var(--brand);color:var(--brand-dark);padding:12px 26px;}
.btn-small{font-size:13px;padding:8px 14px;border-radius:6px;background:var(--brand);color:#fff;}
.btn-small:hover{color:#fff;background:var(--brand-dark);}

.img-slot{
  width:100%;background:#e7ddcc;overflow:hidden;position:relative;
  display:flex;align-items:center;justify-content:center;color:var(--text-mute);
}
.img-slot img{width:100%;height:100%;object-fit:cover;}
.shape-rounded{border-radius:20px;}
.shape-rect{border-radius:0;}
.shape-circle{border-radius:50%;}

/* feature strip */
.feature-strip{
  background:var(--bg-soft);border-top:1px solid var(--border);border-bottom:1px solid var(--border);
  padding:36px 40px;
}
.feature-grid{
  max-width:1280px;margin:0 auto;display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:24px;text-align:center;
}
.feature-grid h3{font-size:17px;margin:0 0 6px;}
.feature-grid p{font-size:14px;color:var(--text-soft);margin:0;}

/* section titles */
.section{max-width:1280px;margin:0 auto;padding:72px 40px;}
.section-title{font-size:32px;text-align:center;margin:0 0 12px;color:#2c231b;}
.section-lead{text-align:center;color:var(--text-soft);max-width:560px;margin:0 auto 44px;}

/* product/category cards */
.card-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:24px;}
.card{
  text-decoration:none;color:inherit;background:var(--bg-soft);border:1px solid var(--border);
  border-radius:14px;overflow:hidden;display:block;
}
.card-body{padding:18px;}
.card-title{font-family:Georgia,'Times New Roman',serif;font-weight:700;font-size:18px;margin-bottom:4px;}
.card-text{font-size:14px;color:var(--text-soft);}

/* about teaser */
.about-teaser{background:var(--accent-band);padding:72px 40px;}
.about-teaser-grid{
  max-width:1280px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:48px;align-items:center;
}
.about-teaser h2{font-size:30px;margin:0 0 16px;color:#2c231b;}
.about-teaser p{font-size:16px;line-height:1.7;color:#4a3c2e;margin:0 0 20px;}

/* testimonials */
.testimonial{background:var(--bg-soft);border:1px solid var(--border);border-radius:14px;padding:24px;}
.testimonial p{font-size:15px;line-height:1.6;color:#4a3c2e;margin:0 0 14px;}
.testimonial .author{font-weight:700;font-size:14px;}

/* newsletter */
.newsletter{background:#2c231b;padding:56px 40px;text-align:center;}
.newsletter h2{font-size:26px;color:#fdf8f0;margin:0 0 10px;}
.newsletter p{color:#cdbfa9;margin:0 0 24px;}
.newsletter-form{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;}
.newsletter-form input{padding:13px 16px;border-radius:8px;border:none;width:280px;font-size:15px;}
.form-msg{margin-top:16px;font-size:14px;color:#e8d2b8;min-height:20px;}

/* footer */
.site-footer{background:var(--footer-bg-2);color:var(--footer-text);padding:56px 40px 24px;}
.footer-grid{
  max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:36px;
}
.footer-grid .col-title{font-weight:700;color:#fdf8f0;margin-bottom:10px;font-size:20px;font-family:Georgia,'Times New Roman',serif;}
.footer-grid p{font-size:14px;line-height:1.6;color:var(--footer-text-soft);}
.footer-links{display:flex;flex-direction:column;gap:8px;font-size:14px;}
.footer-links a, .footer-contact a{color:var(--footer-text-soft);}
.footer-head{font-weight:700;color:#fdf8f0;margin-bottom:12px;font-size:15px;}
.footer-contact{font-size:14px;line-height:1.7;color:var(--footer-text-soft);}
.footer-bottom{
  max-width:1200px;margin:36px auto 0;padding-top:20px;border-top:1px solid #52443a;
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;font-size:13px;color:#b3a48f;
}
.footer-bottom a{color:#b3a48f;}
.footer-bottom-links{display:flex;gap:16px;flex-wrap:wrap;}

.footer-simple{background:var(--footer-bg-2);color:var(--footer-text);padding:40px 40px 24px;text-align:center;font-size:13px;}
.footer-simple .links{display:flex;justify-content:center;gap:16px;flex-wrap:wrap;margin-bottom:14px;}
.footer-simple .links a{color:var(--footer-text-soft);}
.footer-simple .copy{color:#b3a48f;}

/* page hero (inner pages) */
.page-hero{max-width:1280px;margin:0 auto;padding:56px 40px 20px;}
.page-hero h1{font-size:38px;margin:0 0 16px;color:#2c231b;}
.page-hero p{font-size:16px;line-height:1.7;color:var(--text-soft);max-width:720px;}
.page-hero.narrow{max-width:900px;}

/* product cards on listing pages */
.product-card{background:var(--bg-soft);border:1px solid var(--border);border-radius:14px;overflow:hidden;}
.product-card .img-slot{height:180px;}
.product-card .body{padding:18px;}
.product-card .name{font-family:Georgia,'Times New Roman',serif;font-weight:700;font-size:17px;margin-bottom:4px;}
.product-card .meta{font-size:13px;color:var(--text-soft);margin-bottom:8px;}
.product-card .price-row{display:flex;justify-content:space-between;align-items:center;}
.product-card .price{font-weight:700;font-size:17px;}

/* legal pages */
.legal{max-width:760px;margin:0 auto;padding:56px 40px 80px;}
.legal h1{font-size:32px;margin:0 0 8px;color:#2c231b;}
.legal .updated{font-size:13px;color:var(--text-mute);margin:0 0 32px;}
.legal-body{font-size:15px;line-height:1.75;color:#4a3c2e;display:flex;flex-direction:column;gap:22px;}
.legal-body h2{font-size:19px;color:#2c231b;margin:0 0 8px;}
.legal-body table{width:100%;border-collapse:collapse;font-size:14px;margin-top:8px;}
.legal-body th,.legal-body td{text-align:left;padding:10px;border:1px solid var(--border);}
.legal-body th{background:#ebdfc9;}

/* cookie bar */
.cookie-bar{
  position:fixed;bottom:0;left:0;right:0;background:#2c231b;color:#ebe0cf;
  padding:18px 32px;display:flex;justify-content:space-between;align-items:center;gap:16px;
  flex-wrap:wrap;font-size:13px;z-index:80;
}
.cookie-bar .msg{max-width:640px;}
.cookie-bar .msg a{color:var(--accent-band);}
.cookie-bar .actions{display:flex;gap:8px;flex-wrap:wrap;}
.btn-ghost{background:transparent;border:1px solid #7a6b58;color:#ebe0cf;font-weight:600;padding:9px 16px;border-radius:6px;cursor:pointer;font-size:13px;}
.btn-ghost:hover{background:#443628;}

/* contact page */
.contact-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:40px;}
.info-card{background:var(--bg-soft);border:1px solid var(--border);border-radius:14px;padding:28px;margin-bottom:24px;}
.info-card h3{font-family:Georgia,'Times New Roman',serif;font-weight:700;font-size:19px;margin:0 0 14px;}
.info-card .lines{font-size:15px;line-height:1.8;color:#4a3c2e;}
.contact-form-card{background:var(--bg-soft);border:1px solid var(--border);border-radius:14px;padding:32px;}
.contact-form-card h3{font-family:Georgia,'Times New Roman',serif;font-weight:700;font-size:19px;margin:0 0 18px;}
.form-stack{display:flex;flex-direction:column;gap:14px;}
.form-stack input,.form-stack textarea{
  padding:12px 14px;border:1px solid var(--border);border-radius:8px;font-size:14px;font-family:-apple-system,Segoe UI,Arial,sans-serif;
}
.form-stack textarea{resize:vertical;}
.checkbox-row{display:flex;gap:8px;align-items:flex-start;font-size:13px;color:var(--text-soft);}
.checkbox-row input{margin-top:2px;}

/* history timeline */
.timeline{display:flex;flex-direction:column;gap:22px;}
.timeline-item{display:flex;gap:20px;}
.timeline-year{font-family:Georgia,'Times New Roman',serif;font-weight:700;font-size:20px;color:var(--brand);min-width:64px;}
.timeline-text{font-size:15px;line-height:1.6;color:#4a3c2e;}

.values-band{background:var(--accent-band);padding:56px 40px;}
.values-band h2{font-family:Georgia,'Times New Roman',serif;font-size:26px;margin:0 0 32px;text-align:center;}
.values-grid{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:24px;}
.value-card{background:var(--bg-soft);border-radius:14px;padding:24px;}
.value-card h3{font-family:Georgia,'Times New Roman',serif;font-weight:700;font-size:17px;margin:0 0 8px;}
.value-card p{font-size:14px;line-height:1.6;color:var(--text-soft);margin:0;}

.team-grid{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:24px;}
.team-member{text-align:center;}
.team-member .img-slot{width:140px;height:140px;margin:0 auto 12px;}
.team-member .name{font-weight:700;}
.team-member .role{font-size:13px;color:var(--text-soft);}

/* news list */
.news-list{max-width:1000px;margin:0 auto;padding:20px 40px 60px;display:flex;flex-direction:column;gap:24px;}
.news-item{
  background:var(--bg-soft);border:1px solid var(--border);border-radius:14px;
  display:grid;grid-template-columns:220px 1fr;overflow:hidden;
}
.news-item .img-slot{height:100%;min-height:160px;}
.news-item .body{padding:22px;}
.news-item .date{font-size:12px;color:var(--text-mute);margin-bottom:6px;}
.news-item h3{font-family:Georgia,'Times New Roman',serif;font-weight:700;font-size:19px;margin:0 0 8px;}
.news-item p{font-size:14px;line-height:1.6;color:#4a3c2e;margin:0;}

@media (max-width:700px){
  .news-item{grid-template-columns:1fr;}
  .news-item .img-slot{min-height:180px;}
}

.callout-band{background:var(--accent-band);padding:56px 40px;text-align:center;}
.callout-band h2{font-family:Georgia,'Times New Roman',serif;font-size:24px;margin:0 0 12px;}
.callout-band p{font-size:15px;color:#4a3c2e;max-width:600px;margin:0 auto 20px;}

.callout-highlight{
  background:#e9caa0;border:2px solid #a8632f;border-radius:16px;padding:28px 32px;
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px;
}
.callout-highlight .tag{font-weight:700;font-size:13px;letter-spacing:0.05em;text-transform:uppercase;color:#7a4420;margin-bottom:6px;}
.callout-highlight .title{font-family:Georgia,'Times New Roman',serif;font-size:22px;font-weight:700;}

.season-tag{font-size:12px;font-weight:700;letter-spacing:0.05em;text-transform:uppercase;color:#a06a2a;margin-bottom:8px;}

.tips-list{max-width:900px;margin:0 auto;padding:20px 40px 40px;display:flex;flex-direction:column;gap:18px;}
.tip-item{
  background:var(--bg-soft);border:1px solid var(--border);border-radius:14px;padding:22px 26px;
  display:flex;gap:18px;align-items:flex-start;
}
.tip-number{font-family:Georgia,'Times New Roman',serif;font-weight:700;font-size:24px;color:var(--brand);min-width:32px;}
.tip-item h3{font-weight:700;font-size:16px;margin:0 0 4px;}
.tip-item p{font-size:14px;line-height:1.6;color:var(--text-soft);margin:0;}

/* eshop */
.shop-tabs{max-width:1280px;margin:0 auto;padding:0 40px 16px;display:flex;gap:12px;flex-wrap:wrap;}
.tab-btn{
  background:var(--bg-soft);color:#4a3c2e;border:1px solid var(--border);font-weight:600;
  padding:10px 18px;border-radius:20px;font-size:14px;cursor:pointer;font-family:inherit;
}
.tab-btn.active{background:var(--brand);color:#fff;border:none;font-weight:700;}
.shop-layout{
  max-width:1280px;margin:0 auto;padding:12px 40px 72px;display:grid;
  grid-template-columns:minmax(0,1fr) 320px;gap:32px;align-items:start;
}
@media (max-width:860px){.shop-layout{grid-template-columns:1fr;}}
.product-list{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:20px;}
.shop-product{background:var(--bg-soft);border:1px solid var(--border);border-radius:14px;overflow:hidden;display:flex;flex-direction:column;}
.shop-product .img-slot{height:140px;}
.shop-product .info{padding:16px;display:flex;flex-direction:column;gap:8px;flex:1;}
.shop-product .info .name{font-family:Georgia,'Times New Roman',serif;font-weight:700;font-size:15px;}
.shop-product .info .weight{font-size:12px;color:var(--text-mute);}
.shop-product .spacer{flex:1;}
.shop-product .row{display:flex;justify-content:space-between;align-items:center;}
.shop-product .price{font-weight:700;font-size:16px;}
.add-btn{background:var(--brand);color:#fff;border:none;font-weight:700;font-size:12px;padding:8px 12px;border-radius:6px;cursor:pointer;}
.add-btn:hover{background:var(--brand-dark);}

.cart-box{position:sticky;top:96px;background:var(--bg-soft);border:1px solid var(--border);border-radius:14px;padding:22px;}
.cart-box .title{font-family:Georgia,'Times New Roman',serif;font-weight:700;font-size:18px;margin-bottom:14px;}
.cart-empty{font-size:14px;color:var(--text-soft);}
.cart-items{display:flex;flex-direction:column;gap:12px;margin-bottom:16px;}
.cart-item{display:flex;justify-content:space-between;align-items:center;gap:8px;border-bottom:1px solid #e7dcc7;padding-bottom:10px;}
.cart-item .name{font-size:13px;font-weight:600;}
.cart-item .sub{font-size:12px;color:var(--text-mute);}
.qty-controls{display:flex;align-items:center;gap:6px;}
.qty-controls button{width:22px;height:22px;border:1px solid var(--border);background:#fff;border-radius:5px;cursor:pointer;font-size:13px;}
.qty-controls .qty{font-size:13px;min-width:16px;text-align:center;}
.cart-total{display:flex;justify-content:space-between;font-weight:700;font-size:16px;margin-bottom:16px;}
.btn-full{width:100%;background:var(--brand);color:#fff;border:none;font-weight:700;padding:13px;border-radius:8px;font-size:15px;cursor:pointer;}
.btn-full:hover{background:var(--brand-dark);}

.modal-overlay{
  position:fixed;inset:0;background:rgba(44,35,27,0.55);display:none;align-items:center;justify-content:center;
  z-index:100;padding:20px;
}
.modal-overlay.open{display:flex;}
.modal-box{background:var(--bg-soft);border-radius:16px;padding:32px;max-width:460px;width:100%;max-height:90vh;overflow:auto;}
.modal-box .title{font-family:Georgia,'Times New Roman',serif;font-weight:700;font-size:20px;margin-bottom:16px;}
.modal-total{display:flex;justify-content:space-between;font-weight:700;font-size:16px;margin-bottom:18px;border-top:1px solid #e7dcc7;padding-top:14px;}
.modal-note{font-size:12px;color:var(--text-mute);margin:0 0 18px;}
.modal-actions{display:flex;gap:10px;}
.btn-secondary{flex:1;background:transparent;border:1px solid var(--border);font-weight:700;padding:12px;border-radius:8px;cursor:pointer;font-family:inherit;}
.btn-confirm{flex:1;background:var(--brand);color:#fff;border:none;font-weight:700;padding:12px;border-radius:8px;cursor:pointer;font-family:inherit;}
.btn-confirm:hover{background:var(--brand-dark);}

.order-confirm{max-width:640px;margin:0 auto;padding:100px 40px;text-align:center;}
.order-confirm .check{font-size:48px;margin-bottom:12px;}
.order-confirm h1{font-size:30px;margin:0 0 12px;color:#2c231b;}
.order-confirm p{font-size:15px;color:var(--text-soft);margin:0 0 8px;}

@media (max-width:640px){
  .site-header{padding:14px 20px;}
  .hero{padding:40px 20px;}
  .section{padding:48px 20px;}
  .container,.page-hero,.contact-grid,.legal{padding-left:20px;padding-right:20px;}
}
