:root{
  --bg:#F7F3EE;
  --surface:#FFFFFF;
  --surface-2:#FBF7F1;
  --fg:#2A2420;
  --muted:#6B5D54;
  --border:#E7DED4;
  --accent:#C46A3A;
  --accent-dark:#A8552A;
  --brown:#3B2F2A;
  --brown-2:#4E3F37;
  --sage:#7A8F7A;
  --sage-soft:#DDE3DC;
  --danger:#A23A2A;
  --success:#5C7A52;
  --radius:14px;
  --radius-lg:20px;
  --shadow-sm:0 1px 2px rgba(42,36,32,.06), 0 2px 8px rgba(42,36,32,.05);
  --shadow-md:0 6px 18px rgba(59,47,42,.10), 0 2px 6px rgba(59,47,42,.06);
  --shadow-lg:0 18px 44px rgba(59,47,42,.16);
  --font-display:'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-body:'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --container:1200px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  font-size:18px;
  line-height:1.6;
  color:var(--fg);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--brown);
  line-height:1.18;
  margin:0 0 .5em;
  font-weight:600;
  letter-spacing:-0.01em;
}
h1{font-size:clamp(2.1rem,4.4vw,3.3rem); letter-spacing:-0.02em;}
h2{font-size:clamp(1.7rem,3vw,2.4rem);}
h3{font-size:clamp(1.25rem,1.8vw,1.5rem); letter-spacing:0;}
p{margin:0 0 1.1rem;}
a{color:var(--accent-dark); text-decoration:underline; text-underline-offset:3px;}
a:hover{color:var(--brown);}
img{max-width:100%; height:auto; display:block;}
ul,ol{margin:0 0 1.1rem; padding-left:1.3rem;}
li{margin-bottom:.45rem;}
strong{font-weight:600;}
small{font-size:.92rem;}
.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;}
.skip-link{position:absolute; left:-9999px; top:0; background:var(--brown); color:#fff; padding:.7rem 1rem; z-index:200; border-radius:0 0 8px 0;}
.skip-link:focus{left:0;}

.container{width:100%; max-width:var(--container); margin:0 auto; padding:0 22px;}

.eyebrow{
  display:inline-block;
  font-family:var(--font-body);
  font-weight:600;
  font-size:.82rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--accent-dark);
  margin-bottom:.7rem;
}

.section{padding:clamp(3rem,7vw,5.5rem) 0;}
.section-tight{padding:clamp(2rem,4vw,3.2rem) 0;}
.section-alt{background:var(--surface-2);}
.section-brown{background:var(--brown); color:#F3EBE1;}
.section-brown h1,.section-brown h2,.section-brown h3{color:#FBF3E9;}
.section-brown a{color:#F1C9A8;}

.section-head{max-width:62ch; margin-bottom:2.2rem;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.lede{font-size:1.15rem; color:var(--brown-2);}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  font-family:var(--font-body);
  font-weight:600;
  font-size:1.05rem;
  letter-spacing:.01em;
  padding:.95rem 1.6rem;
  min-height:52px;
  border:2px solid transparent;
  border-radius:12px;
  cursor:pointer;
  text-decoration:none;
  transition:background .16s ease, color .16s ease, border-color .16s ease, transform .12s ease, box-shadow .16s ease;
  line-height:1.1;
}
.btn-primary{background:var(--accent); color:#fff; box-shadow:var(--shadow-sm);}
.btn-primary:hover{background:var(--accent-dark); color:#fff; transform:translateY(-1px); box-shadow:var(--shadow-md);}
.btn-secondary{background:transparent; color:var(--brown); border-color:var(--brown);}
.btn-secondary:hover{background:var(--brown); color:#fff;}
.btn-ghost{background:transparent; color:var(--brown); border-color:var(--border);}
.btn-ghost:hover{border-color:var(--brown); color:var(--brown);}
.btn-lg{padding:1.1rem 2rem; min-height:58px; font-size:1.12rem;}
.btn-block{display:flex; width:100%;}

.site-header{
  position:sticky; top:0; z-index:90;
  background:rgba(247,243,238,.92);
  backdrop-filter:saturate(1.2) blur(8px);
  border-bottom:1px solid var(--border);
}
.header-inner{display:flex; align-items:center; gap:1.2rem; min-height:78px;}
.brand{display:inline-flex; align-items:center; gap:.6rem; text-decoration:none; color:var(--brown); font-family:var(--font-display); font-weight:700; font-size:1.35rem; letter-spacing:-0.01em;}
.brand:hover{color:var(--brown);}
.brand-mark{display:inline-flex; width:38px; height:38px; align-items:center; justify-content:center; color:var(--accent);}
.brand-mark svg{width:100%; height:100%;}
.brand-text{white-space:nowrap;}

.nav-toggle{display:none; flex-direction:column; justify-content:center; gap:5px; width:48px; height:48px; background:transparent; border:1px solid var(--border); border-radius:10px; cursor:pointer; margin-left:auto;}
.nav-toggle-bar{display:block; width:22px; height:2.4px; background:var(--brown); margin:0 auto; border-radius:2px; transition:transform .2s ease, opacity .2s ease;}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2){transform:translateY(7px) rotate(45deg);}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3){opacity:0;}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(4){transform:translateY(-7px) rotate(-45deg);}

.primary-nav{display:flex; align-items:center; gap:.4rem; margin-left:auto;}
.primary-nav > a{
  font-weight:500;
  font-size:1.02rem;
  color:var(--brown-2);
  text-decoration:none;
  padding:.6rem .75rem;
  border-radius:8px;
}
.primary-nav > a:hover{color:var(--brown); background:rgba(196,106,58,.08);}
.primary-nav > a.is-active{color:var(--accent-dark); font-weight:600;}
.nav-phone{display:inline-flex; align-items:center; gap:.45rem; color:var(--brown) !important; font-weight:600 !important;}
.nav-phone svg{width:20px; height:20px; color:var(--accent);}
.nav-cta{margin-left:.4rem;}

.breadcrumbs{font-size:.95rem; color:var(--muted); padding:1.1rem 0 0;}
.breadcrumbs a{color:var(--muted);}
.breadcrumbs span{margin:0 .35rem; color:var(--border);}

.hero{padding:clamp(2.6rem,5vw,4.2rem) 0 clamp(2.4rem,4vw,3.6rem);}
.hero-grid{display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(2rem,4vw,3.6rem); align-items:center;}
.hero-title{margin-bottom:1rem;}
.hero-sub{font-size:1.2rem; color:var(--brown-2); max-width:46ch; margin-bottom:1.8rem;}
.hero-actions{display:flex; flex-wrap:wrap; gap:.9rem; margin-bottom:2rem;}
.hero-media{position:relative; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:4/3;}
.hero-media img{width:100%; height:100%; object-fit:cover;}
.hero-badge{
  position:absolute; left:18px; bottom:18px;
  background:rgba(247,243,238,.94);
  color:var(--brown);
  padding:.7rem 1rem;
  border-radius:12px;
  font-weight:600;
  font-size:.98rem;
  box-shadow:var(--shadow-sm);
  max-width:78%;
}

.trust-row{
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:1rem;
  padding:1.5rem;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
  margin-top:-1rem;
}
.trust-item{display:flex; gap:.8rem; align-items:flex-start;}
.trust-icon{flex:none; width:40px; height:40px; border-radius:10px; background:var(--sage-soft); color:var(--sage); display:inline-flex; align-items:center; justify-content:center;}
.trust-icon svg{width:22px; height:22px;}
.trust-title{font-weight:600; color:var(--brown); font-size:1rem; line-height:1.25; margin-bottom:.1rem;}
.trust-sub{font-size:.92rem; color:var(--muted); line-height:1.35;}

.cards-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:1.4rem;}
.cards-grid.cols-3{grid-template-columns:repeat(3,1fr);}
.cards-grid.cols-2{grid-template-columns:repeat(2,1fr);}

.product-card{
  display:flex; flex-direction:column;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform .16s ease, box-shadow .16s ease;
  text-decoration:none;
  color:inherit;
}
.product-card:hover{transform:translateY(-4px); box-shadow:var(--shadow-md); color:inherit;}
.product-media{
  position:relative; aspect-ratio:1/1;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(150deg, #EFE6DA 0%, #E3D7C6 100%);
  color:var(--brown);
}
.product-icon{width:62px; height:62px; opacity:.7;}
.product-badges{position:absolute; top:12px; left:12px; display:flex; flex-direction:column; gap:6px; align-items:flex-start;}
.badge{
  display:inline-block; font-size:.78rem; font-weight:600; letter-spacing:.02em;
  padding:.28rem .6rem; border-radius:999px; background:var(--surface); color:var(--brown); box-shadow:var(--shadow-sm);
}
.badge-popular{background:var(--accent); color:#fff;}
.badge-gift{background:var(--sage); color:#fff;}
.badge-premium{background:var(--brown); color:#FBF3E9;}
.badge-large{background:#fff; color:var(--brown); border:1px solid var(--border);}
.badge-original{background:var(--accent-dark); color:#fff;}
.badge-jubilee{background:var(--sage-soft); color:#43513f;}
.product-body{padding:1.1rem 1.1rem 1.3rem; display:flex; flex-direction:column; gap:.55rem; flex:1;}
.product-cat{font-size:.82rem; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); font-weight:600;}
.product-name{font-family:var(--font-display); font-size:1.2rem; color:var(--brown); margin:0; line-height:1.25; letter-spacing:0;}
.product-short{font-size:.96rem; color:var(--brown-2); margin:0; flex:1;}
.product-price{display:flex; align-items:baseline; gap:.55rem; margin-top:.2rem;}
.price-from{font-size:.85rem; color:var(--muted);}
.price-value{font-family:var(--font-display); font-size:1.35rem; font-weight:600; color:var(--brown);}
.price-old{font-size:.95rem; color:var(--muted); text-decoration:line-through;}
.product-foot{margin-top:.4rem;}
.product-foot .btn{width:100%;}

.steps{display:grid; grid-template-columns:repeat(4,1fr); gap:1.4rem; counter-reset:step;}
.step{position:relative; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:1.5rem; box-shadow:var(--shadow-sm);}
.step-num{
  display:inline-flex; width:46px; height:46px; border-radius:50%;
  background:var(--accent); color:#fff; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:700; font-size:1.3rem; margin-bottom:.9rem;
}
.step h3{margin-bottom:.4rem;}
.step p{margin:0; color:var(--brown-2); font-size:.98rem;}

.audience-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem;}
.audience{background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:1.7rem; box-shadow:var(--shadow-sm);}
.audience-ico{width:44px; height:44px; color:var(--accent); margin-bottom:.9rem;}
.audience-ico svg{width:100%; height:100%;}
.audience h3{margin-bottom:.5rem;}
.audience p{margin:0; color:var(--brown-2);}

.about-strip{display:grid; grid-template-columns:.9fr 1.1fr; gap:clamp(1.6rem,4vw,3rem); align-items:center;}
.about-strip p{font-size:1.08rem; color:var(--brown-2);}

.testimonials{display:grid; grid-template-columns:repeat(2,1fr); gap:1.3rem;}
.testimonial{background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:1.6rem; box-shadow:var(--shadow-sm);}
.testimonial blockquote{margin:0 0 1rem; font-family:var(--font-display); font-size:1.18rem; color:var(--brown); line-height:1.4;}
.testimonial-meta{font-weight:600; color:var(--brown);}
.testimonial-meta small{display:block; color:var(--muted); font-weight:400;}

.faq-list{display:grid; gap:1rem; max-width:780px; margin:0 auto;}
.faq-item{background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden;}
.faq-q{display:block; width:100%; text-align:left; background:transparent; border:0; padding:1.2rem 1.4rem; font-family:var(--font-display); font-size:1.15rem; color:var(--brown); cursor:pointer; font-weight:600;}
.faq-a{max-height:0; overflow:hidden; transition:max-height .25s ease;}
.faq-a-inner{padding:0 1.4rem 1.3rem; color:var(--brown-2);}
.faq-item[data-open="true"] .faq-a{max-height:520px;}
.faq-item[data-open="true"] .faq-q{color:var(--accent-dark);}

.cta-band{background:var(--brown); color:#FBF3E9; border-radius:var(--radius-lg); padding:clamp(2rem,4vw,3.2rem); display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:1.6rem; box-shadow:var(--shadow-md);}
.cta-band h2{color:#FBF3E9; margin:0;}
.cta-band p{margin:.4rem 0 0; color:#E7D9C9; font-size:1.08rem;}
.cta-band .btn-primary{background:var(--accent);}
.cta-band .btn-primary:hover{background:#fff; color:var(--accent-dark);}
.cta-band-phone{display:inline-flex; align-items:center; gap:.6rem; color:#fff; font-weight:600; font-size:1.2rem; text-decoration:none;}
.cta-band-phone svg{width:24px; height:24px; color:#F1C9A8;}

.filter-bar{display:flex; flex-wrap:wrap; gap:.6rem; margin-bottom:1.8rem;}
.filter-chip{
  font-family:var(--font-body); font-weight:600; font-size:.98rem;
  padding:.6rem 1.1rem; min-height:46px;
  border:1.5px solid var(--border); border-radius:999px; background:var(--surface); color:var(--brown-2); cursor:pointer;
  transition:border-color .15s ease, color .15s ease, background .15s ease;
}
.filter-chip:hover{border-color:var(--brown);}
.filter-chip.is-active{background:var(--brown); border-color:var(--brown); color:#FBF3E9;}
.catalog-empty{display:none; padding:2rem; text-align:center; color:var(--muted); font-size:1.1rem;}
.catalog-empty.show{display:block;}

.product-detail{display:grid; grid-template-columns:1fr 1fr; gap:clamp(1.6rem,4vw,3.2rem); align-items:start;}
.pd-media{border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; background:linear-gradient(150deg, #EFE6DA 0%, #E3D7C6 100%); color:var(--brown); position:sticky; top:96px;}
.pd-media .product-icon{width:130px; height:130px; opacity:.65;}
.pd-media-badges{position:absolute; top:16px; left:16px; display:flex; flex-direction:column; gap:8px;}
.pd-cat{font-size:.85rem; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); font-weight:600; margin-bottom:.4rem;}
.pd-title{font-size:clamp(1.8rem,3vw,2.4rem); margin-bottom:.6rem;}
.pd-price-row{display:flex; align-items:baseline; gap:.7rem; margin:0 0 1.3rem;}
.pd-price-from{font-size:1rem; color:var(--muted);}
.pd-price-value{font-family:var(--font-display); font-size:1.9rem; font-weight:600; color:var(--brown);}
.pd-old{font-size:1.1rem; color:var(--muted); text-decoration:line-through;}
.pd-desc{font-size:1.06rem; color:var(--brown-2); margin-bottom:1.5rem;}
.spec-table{width:100%; border-collapse:collapse; margin-bottom:1.6rem; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden;}
.spec-table th,.spec-table td{padding:.85rem 1.1rem; text-align:left; border-bottom:1px solid var(--border); font-size:1rem;}
.spec-table tr:last-child th,.spec-table tr:last-child td{border-bottom:0;}
.spec-table th{width:38%; background:var(--surface-2); color:var(--muted); font-weight:600;}
.spec-table td{color:var(--brown);}
.requirements{background:var(--surface); border:1px solid var(--border); border-left:4px solid var(--sage); border-radius:0 var(--radius) var(--radius) 0; padding:1.2rem 1.3rem; margin-bottom:1.6rem;}
.requirements h3{font-size:1.1rem; margin-bottom:.4rem;}
.requirements p{margin:0; color:var(--brown-2); font-size:.98rem;}
.pd-actions{display:flex; flex-wrap:wrap; gap:.8rem;}

.order-form{display:grid; grid-template-columns:1fr 1fr; gap:0 1.6rem;}
.form-field{margin-bottom:1.2rem; display:flex; flex-direction:column;}
.form-field.full{grid-column:1 / -1;}
.form-field label{font-weight:600; color:var(--brown); margin-bottom:.45rem; font-size:1.02rem;}
.form-field label .req{color:var(--accent-dark);}
.form-field .hint{font-size:.9rem; color:var(--muted); margin-top:.4rem;}
.form-control{
  font-family:var(--font-body); font-size:1.05rem;
  padding:.85rem .9rem; min-height:54px;
  border:1.5px solid var(--border); border-radius:10px; background:var(--surface); color:var(--fg);
  width:100%;
}
textarea.form-control{min-height:130px; resize:vertical;}
select.form-control{appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B5D54' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right .9rem center; background-size:20px; padding-right:2.6rem;}
.form-control:focus{outline:0; border-color:var(--accent); box-shadow:0 0 0 3px rgba(196,106,58,.18);}
.form-control.is-invalid{border-color:var(--danger); background:#FBF1EF;}
.field-error{color:var(--danger); font-size:.92rem; margin-top:.35rem; font-weight:600;}
.form-check{display:flex; gap:.7rem; align-items:flex-start; margin-bottom:1.2rem;}
.form-check input{width:24px; height:24px; flex:none; margin-top:.15rem; accent-color:var(--accent);}
.form-check label{font-weight:400; font-size:1rem; color:var(--brown-2); margin:0;}
.form-summary{background:var(--surface-2); border:1px solid var(--border); border-radius:var(--radius); padding:1.3rem 1.4rem; margin-bottom:1.6rem;}
.form-summary h3{font-size:1.1rem; margin-bottom:.6rem;}
.honeypot{position:absolute; left:-9999px; top:-9999px;}
.form-errors{background:#FBF1EF; border:1px solid #EBC9C2; border-left:4px solid var(--danger); border-radius:0 var(--radius) var(--radius) 0; padding:1rem 1.2rem; margin-bottom:1.6rem;}
.form-errors p{margin:0; color:var(--danger); font-weight:600;}

.thanks{max-width:640px; margin:0 auto; text-align:center; padding:clamp(3rem,7vw,5rem) 0;}
.thanks-ico{width:84px; height:84px; margin:0 auto 1.4rem; color:var(--sage);}
.thanks-ico svg{width:100%; height:100%;}
.thanks h1{margin-bottom:1rem;}
.thanks p{font-size:1.12rem; color:var(--brown-2);}
.thanks-actions{display:flex; flex-wrap:wrap; gap:.8rem; justify-content:center; margin-top:1.8rem;}

.gallery-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem;}
.gallery-item{border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); aspect-ratio:4/3; background:var(--surface-2);}
.gallery-item img{width:100%; height:100%; object-fit:cover; transition:transform .3s ease;}
.gallery-item:hover img{transform:scale(1.04);}
.gallery-cap{padding:.8rem 1rem; background:var(--surface); border:1px solid var(--border); border-top:0; border-radius:0 0 var(--radius) var(--radius);}
.gallery-cap strong{color:var(--brown); display:block; font-family:var(--font-display); font-size:1.05rem;}
.gallery-cap span{color:var(--muted); font-size:.92rem;}

.page-hero{padding:clamp(2.4rem,5vw,3.6rem) 0 clamp(1.6rem,3vw,2.4rem);}
.page-hero h1{margin-bottom:.6rem;}
.page-hero p{font-size:1.15rem; color:var(--brown-2); max-width:60ch;}

.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:clamp(1.6rem,4vw,3rem);}
.info-card{background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:1.4rem 1.5rem; box-shadow:var(--shadow-sm); margin-bottom:1.2rem;}
.info-card h3{font-size:1.15rem; margin-bottom:.6rem;}
.info-card p{margin:0 0 .4rem; color:var(--brown-2);}
.map-placeholder{border-radius:var(--radius); overflow:hidden; border:1px solid var(--border); box-shadow:var(--shadow-sm); aspect-ratio:4/3; background:repeating-linear-gradient(45deg,#EFE6DA,#EFE6DA 18px,#EADFCF 18px,#EADFCF 36px); display:flex; align-items:center; justify-content:center; color:var(--muted); font-weight:600;}

.legal-text{max-width:760px; margin:0 auto; font-size:1.05rem; color:var(--brown-2);}
.legal-text h2{font-size:1.5rem; margin-top:2.2rem;}
.legal-text h2:first-child{margin-top:0;}
.legal-text h3{font-size:1.2rem; margin-top:1.6rem;}
.legal-text ul{margin-bottom:1.2rem;}
.legal-text table{width:100%; border-collapse:collapse; margin:1rem 0 1.6rem; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden;}
.legal-text th,.legal-text td{padding:.7rem 1rem; border-bottom:1px solid var(--border); text-align:left; font-size:.98rem;}
.legal-text th{background:var(--surface-2); color:var(--muted); font-weight:600;}

.error-page{max-width:640px; margin:0 auto; text-align:center; padding:clamp(3rem,7vw,5.5rem) 0;}
.error-code{font-family:var(--font-display); font-size:clamp(4rem,12vw,7rem); font-weight:700; color:var(--accent); line-height:1; margin-bottom:.4rem; letter-spacing:-0.03em;}

.site-footer{background:var(--brown); color:#E7D9C9; padding:clamp(2.6rem,5vw,4rem) 0 1.6rem; margin-top:2rem;}
.footer-grid{display:grid; grid-template-columns:1.6fr 1fr 1fr 1.3fr; gap:2rem; padding-bottom:2rem; border-bottom:1px solid rgba(255,255,255,.1);}
.footer-brand-name{font-family:var(--font-display); font-weight:700; font-size:1.3rem; color:#FBF3E9;}
.footer-brand-row{display:flex; align-items:center; gap:.6rem; margin-bottom:.7rem;}
.footer-brand-row .brand-mark{width:34px; height:34px; color:#F1C9A8;}
.footer-slogan{font-style:italic; color:#D8C8B6; margin-bottom:1rem; max-width:34ch;}
.footer-contact a{color:#F1C9A8;}
.footer-contact{color:#D8C8B6; line-height:1.7; font-size:.98rem;}
.footer-heading{color:#FBF3E9; font-size:1.05rem; margin-bottom:.9rem; font-family:var(--font-body); font-weight:700; letter-spacing:.04em; text-transform:uppercase;}
.footer-col ul{list-style:none; padding:0; margin:0;}
.footer-col li{margin-bottom:.5rem;}
.footer-col a{color:#E7D9C9; text-decoration:none; font-size:.98rem;}
.footer-col a:hover{color:#FBF3E9; text-decoration:underline;}
.footer-company-text,.footer-hours{color:#D8C8B6; font-size:.92rem; line-height:1.7; margin:0;}
.footer-bottom{padding-top:1.3rem; color:#B9A78F; font-size:.9rem;}
.footer-bottom p{margin:0;}

.cookie-banner{position:fixed; left:0; right:0; bottom:0; z-index:120; background:var(--brown); color:#FBF3E9; box-shadow:0 -8px 30px rgba(0,0,0,.18); transform:translateY(0);}
.cookie-banner[hidden]{display:none;}
.cookie-inner{display:flex; align-items:center; justify-content:space-between; gap:1.2rem; padding:1rem 22px; flex-wrap:wrap;}
.cookie-text{margin:0; max-width:78ch; font-size:.98rem; color:#E7D9C9;}
.cookie-text a{color:#F1C9A8;}

.related{display:grid; grid-template-columns:repeat(3,1fr); gap:1.3rem;}

@media (max-width:1024px){
  .cards-grid{grid-template-columns:repeat(2,1fr);}
  .cards-grid.cols-3{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .footer-brand{grid-column:1 / -1;}
}
@media (max-width:900px){
  .nav-toggle{display:flex;}
  .primary-nav{
    position:fixed; inset:78px 0 auto 0;
    flex-direction:column; align-items:stretch; gap:.2rem;
    background:var(--surface); padding:1rem 22px 1.6rem;
    border-bottom:1px solid var(--border);
    box-shadow:var(--shadow-md);
    transform:translateY(-12px); opacity:0; pointer-events:none;
    transition:transform .22s ease, opacity .22s ease;
    max-height:calc(100vh - 78px); overflow-y:auto;
  }
  .primary-nav.is-open{transform:translateY(0); opacity:1; pointer-events:auto;}
  .primary-nav > a{padding:.95rem .6rem; font-size:1.12rem; border-bottom:1px solid var(--border); border-radius:0;}
  .primary-nav > a:last-of-type{border-bottom:0;}
  .nav-phone{margin-top:.5rem; justify-content:flex-start;}
  .nav-cta{margin:.6rem 0 0;}
  .hero-grid{grid-template-columns:1fr;}
  .hero-media{order:-1;}
  .trust-row{grid-template-columns:1fr 1fr;}
  .steps{grid-template-columns:1fr 1fr;}
  .audience-grid{grid-template-columns:1fr;}
  .about-strip{grid-template-columns:1fr;}
  .testimonials{grid-template-columns:1fr;}
  .product-detail{grid-template-columns:1fr;}
  .pd-media{position:static;}
  .order-form{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .gallery-grid{grid-template-columns:1fr 1fr;}
  .related{grid-template-columns:1fr;}
}
@media (max-width:560px){
  body{font-size:17px;}
  .cards-grid,.cards-grid.cols-3,.cards-grid.cols-2{grid-template-columns:1fr;}
  .trust-row{grid-template-columns:1fr;}
  .steps{grid-template-columns:1fr;}
  .gallery-grid{grid-template-columns:1fr;}
  .hero-actions{flex-direction:column; align-items:stretch;}
  .hero-actions .btn{width:100%;}
  .cta-band{flex-direction:column; align-items:flex-start;}
  .cookie-inner{flex-direction:column; align-items:stretch;}
  .cookie-inner .btn{width:100%;}
  .footer-grid{grid-template-columns:1fr;}
}

.product-media img{width:100%; height:100%; object-fit:cover;}
.pd-media{padding:0; background:var(--surface-2);}
.pd-media img{width:100%; height:100%; object-fit:cover; display:block;}
.gallery-card{display:flex; flex-direction:column; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); background:var(--surface);}
.gallery-card .gallery-item{border-radius:0; box-shadow:none; aspect-ratio:4/3;}
.gallery-card .gallery-cap{border:0; border-top:1px solid var(--border); border-radius:0;}
.hero-media img{width:100%; height:100%; object-fit:cover; aspect-ratio:4/3;}
