@font-face{
  font-family:'bubulla-fontello';
  src:url('../fonts/ltx-bubulla.woff2') format('woff2'),
      url('../fonts/ltx-bubulla.woff') format('woff'),
      url('../fonts/ltx-bubulla.ttf') format('truetype');
  font-weight:normal;
  font-style:normal;
}

:root{
  --maroon:#9C2330;
  --ink:#191716;
  --gold:#A9976F;
  --white:#FFFFFF;
  --muted:#5B5754;
  --cream:#F1EEE7;
}

*{box-sizing:border-box;margin:0;padding:0;}

body{
  font-family:'Roboto', sans-serif;
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}

img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
button{font:inherit;background:none;border:0;cursor:pointer;}

.container{max-width:1200px;margin:0 auto;padding:0 15px;}

svg{width:100%;height:100%;fill:currentColor;}

/* ===================== HEADER ===================== */
.site-header{
  position:absolute;
  top:32px;
  left:0;
  right:0;
  z-index:100;
}
.site-header.is-solid{
  position:relative;
  top:0;
  background:var(--ink);
}

.header-inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding-top:32px;
  padding-bottom:32px;
}

.header-left{
  display:flex;
  align-items:center;
  gap:14px;
}

.follow-us{
  font-family:'Roboto', sans-serif;
  font-size:14px;
  font-weight:500;
  color:var(--gold);
}

.follow-line{
  width:30px;
  height:1px;
  background:rgba(255,255,255,.35);
}

.social-list{
  display:flex;
  align-items:center;
  gap:16px;
}

.social-list a{
  display:block;
  width:16px;
  height:16px;
  color:var(--white);
  opacity:.9;
  transition:opacity .2s;
}
.social-list a:hover{opacity:1;color:var(--gold);}

.header-logo{
  justify-self:center;
}
.header-logo img{
  width:150px;
  height:80px;
  object-fit:contain;
}

.header-right{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:22px;
}

.icon-btn{
  position:relative;
  display:block;
  width:19px;
  height:19px;
  color:var(--white);
  transition:color .2s;
}
.icon-btn:hover{color:var(--gold);}

.header-phone{
  display:flex;
  flex-direction:column;
  line-height:1.3;
  text-align:right;
}
.header-phone-label{
  font-family:'Roboto', sans-serif;
  font-size:11px;
  font-weight:500;
  color:rgba(255,255,255,.6);
}
.header-phone-number{
  font-family:'Roboto', sans-serif;
  font-size:15px;
  font-weight:700;
  color:var(--white);
  transition:color .2s;
}
.header-phone:hover .header-phone-number{color:var(--gold);}

.header-search{
  position:relative;
}
.header-search-form{
  position:absolute;
  top:calc(100% + 14px);
  right:0;
  width:280px;
  background:var(--white);
  box-shadow:0 20px 40px rgba(0,0,0,.15);
  padding:12px;
  display:flex;
  align-items:center;
  gap:8px;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:opacity .25s ease, transform .25s ease, visibility .25s;
  z-index:20;
}
.header-search.is-open .header-search-form{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.header-search-form input{
  flex:1;
  min-width:0;
  border:1px solid var(--cream);
  padding:9px 12px;
  font-family:'Roboto', sans-serif;
  font-size:14px;
  color:var(--ink);
}
.header-search-form input:focus{outline:none;border-color:var(--gold);}
.header-search-form button{
  width:20px;
  height:20px;
  color:var(--ink);
  flex-shrink:0;
}
.header-search-form button:hover{color:var(--maroon);}

.hamburger-btn{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:26px;
  height:20px;
}
.hamburger-btn span{
  display:block;
  height:2px;
  width:100%;
  background:var(--white);
  transition:transform .3s ease, opacity .3s ease;
}
.hamburger-btn.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.hamburger-btn.is-active span:nth-child(2){opacity:0;}
.hamburger-btn.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.mobile-nav-backdrop{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  z-index:99;
  opacity:0;
  visibility:hidden;
  transition:opacity .3s ease, visibility .3s ease;
}
.mobile-nav-backdrop.is-open{
  opacity:1;
  visibility:visible;
}

.cart-count{
  position:absolute;
  top:-9px;
  right:-11px;
  width:16px;
  height:16px;
  border-radius:50%;
  background:var(--maroon);
  color:var(--white);
  font-family:'Roboto', sans-serif;
  font-size:10px;
  font-weight:700;
  line-height:16px;
  text-align:center;
}

.main-nav{
  display:flex;
  justify-content:center;
  padding-bottom:20px;
}

.nav-menu{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  justify-content:center;
}

.nav-item{
  position:relative;
}

.nav-item > a{
  display:block;
  position:relative;
  padding:0 25px;
  font-family:'Roboto', sans-serif;
  font-weight:600;
  font-size:16px;
  color:var(--white);
  transition:color .3s;
}
.nav-item:hover > a{
  color:var(--gold);
}

.nav-plus{
  margin-left:6px;
  font-family:'Roboto', sans-serif;
  font-size:14px;
  color:var(--gold);
}

.nav-dropdown{
  position:absolute;
  top:100%;
  left:25px;
  min-width:220px;
  background:var(--white);
  box-shadow:0 20px 40px rgba(0,0,0,.15);
  padding:10px 0;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:opacity .25s ease, transform .25s ease, visibility .25s;
  z-index:10;
}
.nav-item.has-dropdown:hover .nav-dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.nav-dropdown a{
  display:block;
  padding:12px 24px;
  font-family:'Roboto', sans-serif;
  font-weight:500;
  font-size:14px;
  color:var(--ink);
  white-space:nowrap;
  transition:color .2s, background .2s;
}
.nav-dropdown a:hover{
  color:var(--maroon);
  background:var(--cream);
}

/* ===================== HERO ===================== */
.hero{
  position:relative;
  height:100vh;
  min-height:640px;
  max-height:980px;
  overflow:hidden;
  background:var(--ink);
}

.hero-slides{
  position:absolute;
  inset:0;
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1);
  transition:opacity 1.2s ease;
  animation:heroZoom 13s linear infinite;
}
.hero-slide.is-active{
  opacity:1;
  z-index:1;
}

@keyframes heroZoom{
  from{transform:scale(1);}
  to{transform:scale(1.15);}
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:var(--ink);
  opacity:.5;
  z-index:2;
}

.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:64px;
  height:64px;
  border-radius:50%;
  border:1.6px solid var(--white);
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:5;
  transition:background .2s, color .2s;
}
.hero-arrow svg{width:22px;height:22px;}
.hero-arrow-prev{left:5%;}
.hero-arrow-next{right:5%;}
.hero-arrow:hover{background:var(--white);color:var(--ink);}

.hero-content{
  position:relative;
  z-index:3;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 24px;
}

.hero-caption{
  position:absolute;
  max-width:1100px;
  width:90vw;
  opacity:0;
  visibility:hidden;
  transform:translateY(24px);
  transition:opacity .6s ease, transform .6s ease;
}
.hero-caption.is-active{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.hero-caption .eyebrow{
  display:block;
  font-family:'Roboto', sans-serif;
  font-size:60px;
  color:var(--gold);
  line-height:1;
  margin-bottom:8px;
}

.hero-caption h1{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:clamp(48px, 7.5vw, 120px);
  white-space:normal;
  line-height:1.05;
  color:var(--white);
  margin-bottom:22px;
}

.hero-caption p{
  font-family:'Roboto', sans-serif;
  font-size:16px;
  line-height:1.9;
  color:var(--white);
  max-width:700px;
  margin:0 auto 34px;
}

.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:18px;
  font-family:'Roboto', sans-serif;
  font-weight:700;
  font-size:16px;
  border:1px solid transparent;
  padding:24px 34px;
  overflow:hidden;
  z-index:1;
  transition:color .3s ease, border-color .3s ease;
}
.btn::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:0;
  z-index:-1;
  transition:width .25s ease-out;
}
.btn::after{content:none;}
.btn .plus{
  font-size:20px;
  font-weight:400;
  line-height:1;
  transition:transform .3s ease;
}
.btn:hover .plus{transform:rotate(90deg);}
.btn:hover::before{width:100%;}

/* color variants */
.btn-main{background:var(--maroon);color:var(--white);border-color:var(--maroon);}
.btn-second{background:var(--gold);color:var(--ink);border-color:var(--gold);}

/* hover-fill variants */
.hover-white::before{background:var(--white);}
.hover-white:hover{color:var(--ink);border-color:var(--white);}

.hover-black::before{background:var(--ink);}
.hover-black:hover{color:var(--white);border-color:var(--ink);}

.hover-main::before{background:var(--maroon);}
.hover-main:hover{color:var(--white);border-color:var(--maroon);}

.hero-dots{
  position:absolute;
  bottom:36px;
  left:0;
  right:0;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.hero-dots button{
  width:9px;
  height:9px;
  border-radius:50%;
  background:rgba(255,255,255,.4);
  transition:background .2s, transform .2s;
}
.hero-dots button.is-active{
  background:var(--white);
  transform:scale(1.2);
}

/* ===================== CATEGORIES ===================== */
.categories{
  padding:76px 0 72px;
  border-bottom:1px solid #ECE8E1;
  text-align:center;
}

.cat-slider-track{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  margin-top:20px;
  scrollbar-width:none;
}
.cat-slider-track::-webkit-scrollbar{display:none;}

.cat-slide{
  flex:0 0 33.333%;
  max-width:100%;
  scroll-snap-align:start;
  padding:20px 15px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.cat-slider-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  padding-top:14px;
}

.cat-slider-dots{
  display:flex;
  justify-content:center;
  gap:10px;
}
.cat-slider-dots button{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#E2DCD1;
  transition:background .2s, transform .2s;
}
.cat-slider-dots button.is-active{
  background:var(--maroon);
  transform:scale(1.2);
}

.cat-arrow{
  flex-shrink:0;
  width:38px;
  height:38px;
  border-radius:50%;
  border:1.4px solid #D8D2C6;
  color:var(--ink);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .2s, border-color .2s, color .2s;
}
.cat-arrow svg{width:16px;height:16px;}
.cat-arrow:hover{
  background:var(--maroon);
  border-color:var(--maroon);
  color:var(--white);
}

.cat-icon{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:142px;
  height:142px;
  border-radius:50%;
}
.cat-icon::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  background-image:url('../assets/images/bg-waves.png');
  background-color:var(--maroon);
  background-position:0% 10%;
  z-index:0;
  transition:transform 300ms cubic-bezier(0.175, 0.885, 0.32, 4.75);
}
.cat-slide:hover .cat-icon::after{
  transform:scale(1.05);
}

.cat-icon::before{
  position:relative;
  z-index:1;
  font-family:'bubulla-fontello';
  font-size:70px;
  color:var(--white);
  speak:none;
  font-style:normal;
  font-weight:normal;
  font-variant:normal;
  text-transform:none;
  line-height:1;
}

.icon-chicken::before{content:"\e80e";}
.icon-cow::before{content:"\e80f";}
.icon-pig::before{content:"\e80c";}
.icon-rabbit::before{content:"\e80d";}
.icon-lamb::before{content:"\e80b";}
.icon-horse::before{content:"\e80a";}

/* Optional admin-uploaded icon image — swaps in place of the font glyph above. */
.cat-icon img{position:relative;z-index:1;width:70px;height:70px;object-fit:contain;}
.feature-icon img{width:100%;height:100%;object-fit:contain;}
.tech-icon img{width:48px;height:48px;object-fit:contain;display:inline-block;}

.cat-slide h6{
  margin-top:12px;
  font-family:'Roboto', sans-serif;
  font-weight:800;
  font-size:18px;
  color:var(--ink);
}

/* ===================== ABOUT COMPANY ===================== */
.about-company{
  padding:100px 0;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.eyebrow{
  display:block;
  font-family:'Roboto', sans-serif;
  font-size:36px;
  line-height:1;
  margin-bottom:6px;
}
.eyebrow-maroon{color:var(--maroon);}

.about-text h2{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:48px;
  line-height:1.2;
  color:var(--ink);
  margin-bottom:20px;
}

.about-text p{
  font-family:'Roboto', sans-serif;
  font-size:14px;
  line-height:1.9;
  color:var(--ink);
  max-width:460px;
  margin-bottom:30px;
}

.contact-list{
  margin-bottom:34px;
}
.contact-list li{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:18px;
}
.contact-list li:last-child{margin-bottom:0;}

.contact-icon{
  position:relative;
  display:block;
  width:40px;
  height:40px;
  flex:none;
}
.contact-icon::before{
  font-family:'bubulla-fontello';
  font-size:40px;
  line-height:40px;
  color:var(--ink);
  speak:none;
  font-style:normal;
  font-weight:normal;
  font-variant:normal;
  text-transform:none;
}
.icon-phone::before{content:"\e81e";}
.icon-price::before{content:"\e81f";}

.contact-list h6{
  font-family:'Roboto', sans-serif;
  font-weight:800;
  font-size:16px;
  color:var(--ink);
}

.about-visual{
  position:relative;
  display:flex;
  justify-content:center;
}
.about-photo{
  max-width:100%;
  width:auto;
}
.about-leafs{
  position:absolute;
  right:45px;
  bottom:100px;
  width:135px;
  height:300px;
  z-index:2;
  will-change:transform;
}

.about-badge{
  position:absolute;
  left:-20px;
  bottom:40px;
  width:130px;
  height:130px;
  border-radius:50%;
  background:var(--maroon);
  color:var(--white);
  z-index:3;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-family:'Roboto', sans-serif;
  font-weight:700;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.4px;
  box-shadow:0 14px 34px rgba(0,0,0,.28);
}
.about-badge span{
  font-size:32px;
  font-weight:900;
  line-height:1;
  margin-bottom:4px;
}

/* ===================== FEATURES BAND (parallax) ===================== */
.features-band{
  position:relative;
  height:472px;
  overflow:hidden;
  background:var(--ink);
  display:flex;
  align-items:center;
}

.features-band > .container{
  position:relative;
  z-index:2;
  width:100%;
}

.features-bg{
  position:absolute;
  top:-25%;
  left:0;
  right:0;
  height:150%;
  background-size:cover;
  background-position:center;
  will-change:transform;
}

.features-overlay{
  position:absolute;
  inset:0;
  background:var(--ink);
  opacity:.5;
}

.feature-icons{
  display:flex;
  align-items:center;
  justify-content:center;
}

.feature-icons li{
  width:300px;
  text-align:center;
  padding:0 15px;
}

.feature-icon{
  display:block;
  margin:0 auto 14px;
  width:100px;
  height:100px;
  line-height:100px;
  transition:transform .3s ease;
}
.feature-icons li:hover .feature-icon{
  transform:translateY(-10px);
}
.feature-icon::before{
  font-family:'bubulla-fontello';
  font-size:90px;
  line-height:100px;
  color:var(--gold);
  speak:none;
  font-style:normal;
  font-weight:normal;
  font-variant:normal;
  text-transform:none;
}
.icon-organic::before{content:"\e808";}
.icon-vacuum::before{content:"\e81a";}
.icon-cert::before{content:"\e806";}
.icon-cutting::before{content:"\e807";}

.feature-icons h6{
  font-family:'Roboto', sans-serif;
  font-weight:800;
  font-size:18px;
  line-height:1.4;
  color:var(--white);
}

/* ===================== TRUST / COUNTERS ===================== */
.trust-stats{
  position:relative;
  padding-bottom:110px;
}

.trust-grid{
  position:relative;
  display:grid;
  grid-template-columns:1fr 2fr;
  align-items:stretch;
}

.trust-text{
  display:flex;
  align-items:center;
  padding-right:40px;
}
.trust-text h5{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:24px;
  line-height:1.5;
  color:var(--ink);
}
.trust-text h5 span{
  color:var(--maroon);
}

.trust-counters{
  margin-top:-90px;
  background-color:var(--maroon);
  background-size:cover;
  background-position:center;
  display:grid;
  grid-template-columns:1fr 1fr;
  text-align:center;
  padding:70px 20px;
}

.counter h3{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:100px;
  line-height:1;
  color:var(--white);
  margin-bottom:10px;
}
.counter h3::after{
  content:"+";
}
.counter p{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:18px;
  color:var(--gold);
}

/* ===================== POPULAR PRODUCTS ===================== */
.products-section{
  padding:100px 0;
  text-align:center;
}

.section-heading{
  margin-bottom:50px;
}
.eyebrow-lower{text-transform:lowercase;}

.section-heading-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  margin-bottom:50px;
}
.section-heading-row .section-heading{
  margin-bottom:0;
  text-align:left;
}

.section-heading h2{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:48px;
  color:var(--ink);
}

[data-reveal]{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s cubic-bezier(.16,.84,.44,1), transform .8s cubic-bezier(.16,.84,.44,1);
  transition-delay:var(--reveal-delay, 0ms);
}
[data-reveal].is-visible{
  opacity:1;
  transform:translateY(0);
}
@media (prefers-reduced-motion: reduce){
  [data-reveal]{transition:none; opacity:1; transform:none;}
}

.product-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
}

.products-cta{
  display:flex;
  justify-content:center;
  margin-top:20px;
}

.product-card{
  position:relative;
  width:25%;
  padding:0 15px 30px;
}
.product-card::before{
  content:"";
  position:absolute;
  top:0;
  left:15px;
  right:15px;
  bottom:0;
  border:3px solid rgba(0,0,0,.08);
  transition:all .3s ease;
  pointer-events:none;
}
.product-card:hover::before{
  opacity:.3;
  border-color:var(--gold);
}

.product-link{
  display:block;
}

.product-image{
  position:relative;
  padding:30px 30px 0;
}
.product-image img{
  width:100%;
  transition:opacity .3s ease;
}
.product-card:hover .product-image img{
  opacity:.55;
}

.product-cart-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  opacity:0;
  white-space:nowrap;
  padding:16px 26px;
  font-size:13px;
  gap:10px;
  transition:opacity .3s ease, margin-top .3s ease;
}
.product-card:hover .product-cart-btn{
  opacity:1;
  margin-top:-20px;
}
.product-cart-btn .plus{font-size:15px;}

.product-card h3{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:18px;
  color:var(--ink);
  margin:20px 0 8px;
}

.product-price{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:12px;
  color:var(--maroon);
}

/* ===================== SINGLE PRODUCT PAGE ===================== */
.single-product-section{
  padding:80px 0 100px;
}
.single-product-row{
  display:flex;
  flex-wrap:wrap;
  gap:60px;
  align-items:flex-start;
}
.single-product-image{
  flex:1 1 420px;
  max-width:480px;
}
.single-product-image img{
  width:100%;
  border:1px solid #E2DDD3;
}
.single-product-info{
  flex:1 1 360px;
}
.single-product-info h2{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:32px;
  color:var(--ink);
  margin-bottom:16px;
}
.single-product-price{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:24px;
  color:var(--maroon);
  margin-bottom:24px;
}
.single-product-description{
  margin-top:60px;
  max-width:780px;
}
.single-product-description h3{
  font-family:'Roboto', sans-serif;
  font-weight:800;
  font-size:20px;
  color:var(--ink);
  padding-bottom:14px;
  margin-bottom:20px;
  border-bottom:2px solid var(--maroon);
  display:inline-block;
}
.single-product-description p{
  font-family:'Roboto', sans-serif;
  font-size:15px;
  line-height:1.9;
  color:var(--ink);
  opacity:.8;
}
.related-products-section{
  padding-top:0;
  background:var(--cream);
}

/* ===================== TECHNOLOGIES / QUALITY MONITORING ===================== */
.tech-section{
  display:flex;
  flex-wrap:wrap;
  min-height:720px;
}

.tech-photo{
  position:relative;
  flex:1 1 50%;
  min-height:480px;
  background-size:cover;
  background-position:center;
}

.tech-badge{
  position:absolute;
  right:0;
  bottom:0;
  width:222px;
  min-height:220px;
  background-color:var(--maroon);
  background-image:url('../assets/images/bg-waves.png');
  color:var(--white);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
}
.tech-badge h3{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:48px;
  color:var(--white);
  margin-bottom:4px;
}
.tech-badge p{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:18px;
  color:var(--gold);
  text-transform:lowercase;
}

.tech-content{
  flex:1 1 50%;
  display:flex;
  align-items:center;
  background-color:#F1EEE7;
  background-size:cover;
  background-position:center;
}

.tech-inner{
  max-width:600px;
  padding:90px 80px;
}

.tech-inner h2{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:48px;
  color:var(--ink);
  margin-bottom:34px;
}

.tech-icons{
  display:flex;
  gap:60px;
  margin-bottom:30px;
}
.tech-icon{
  display:block;
  margin-bottom:14px;
}
.tech-icon::before{
  font-family:'bubulla-fontello';
  font-size:48px;
  color:var(--maroon);
  speak:none;
  font-style:normal;
  font-weight:normal;
  font-variant:normal;
  text-transform:none;
}
.icon-temp::before{content:"\e81d";}
.icon-microscope::before{content:"\e81c";}
.icon-chemical::before{content:"\e81b";}

.tech-icons h6{
  font-family:'Roboto', sans-serif;
  font-weight:800;
  font-size:16px;
  line-height:1.4;
  color:var(--ink);
}

.tech-content p{
  font-family:'Roboto', sans-serif;
  font-size:14px;
  line-height:1.9;
  color:var(--ink);
  margin-bottom:30px;
}

/* ===================== PRODUCTS PRICE ===================== */
.price-section{
  position:relative;
  padding:100px 0;
  text-align:center;
  overflow:hidden;
  background-image:url('../assets/images/price_bg_decor.png');
  background-repeat:no-repeat;
  background-position:top center;
  background-size:contain;
}

.price-tabs{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:2px;
  margin-bottom:60px;
}

.price-tab{
  font-family:'Roboto', sans-serif;
  font-weight:700;
  font-size:14px;
  color:var(--white);
  background:var(--maroon);
  border:1px solid var(--maroon);
  padding:16px 26px;
  cursor:pointer;
  transition:background .2s, color .2s;
}
.price-tab.is-active{
  background:transparent;
  color:var(--gold);
  border-color:var(--gold);
}
.price-tab:hover{opacity:.9;}

.price-list{
  display:flex;
  flex-wrap:wrap;
  text-align:left;
}

.price-item{
  display:none;
  width:50%;
  padding:0 40px 30px;
  gap:20px;
  border-bottom:0.8px dashed rgba(0,0,0,.2);
  margin-bottom:30px;
}
.price-item.is-visible{
  display:flex;
}

.price-item img{
  width:70px;
  height:70px;
  border-radius:50%;
  object-fit:cover;
  flex:none;
}

.price-body{flex:1;min-width:0;}

.price-top{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
}
.price-top h4{
  font-family:'Roboto', sans-serif;
  font-weight:400;
  font-size:16px;
  color:var(--ink);
}
.price-tag{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:18px;
  color:var(--maroon);
  white-space:nowrap;
}

.price-body h5{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:14px;
  color:var(--maroon);
  margin:4px 0 8px;
}

.price-body p{
  font-family:'Roboto', sans-serif;
  font-size:14px;
  color:var(--ink);
  line-height:1.6;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section{
  position:relative;
  padding:100px 0 0;
  overflow:hidden;
  background:var(--ink);
}

.testimonials-photo{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
}
.testimonials-overlay{
  position:absolute;
  inset:0;
  background:var(--ink);
  opacity:.75;
}

.testimonials-section .container{
  position:relative;
  z-index:2;
  text-align:center;
}
.eyebrow-gold{color:var(--gold);}
h2.on-dark{color:var(--white);}
.section-heading h2.on-dark{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:48px;
}

.testimonials-track{
  position:relative;
  z-index:2;
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  margin-top:60px;
  scrollbar-width:none;
}
.testimonials-track::-webkit-scrollbar{display:none;}

.testimonial-card{
  flex:0 0 33.333%;
  scroll-snap-align:start;
  background:var(--cream);
  padding:50px 30px 40px;
  text-align:center;
}

.quote-mark{
  display:block;
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:60px;
  color:var(--maroon);
  line-height:1;
  margin-bottom:16px;
}

.testimonial-card p{
  font-family:'Roboto', sans-serif;
  font-size:16px;
  line-height:1.8;
  color:var(--ink);
  margin-bottom:26px;
}

.testimonial-avatar{
  width:80px;
  height:80px;
  border-radius:50%;
  object-fit:cover;
  margin:0 auto 16px;
  border:3px solid var(--white);
}

.testimonial-card h6{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:18px;
  color:var(--ink);
  margin-bottom:4px;
}
.testimonial-role{
  font-family:'Roboto', sans-serif;
  font-size:14px;
  color:var(--maroon);
}

.testimonials-dots{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:center;
  gap:10px;
  padding:30px 0;
}
.testimonials-dots button{
  width:9px;
  height:9px;
  border-radius:50%;
  background:rgba(255,255,255,.3);
  transition:background .2s, transform .2s;
}
.testimonials-dots button.is-active{
  background:var(--white);
  transform:scale(1.2);
}

/* ===================== RECENT ARTICLES ===================== */
.blog-section{
  padding:100px 0;
}

.blog-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:30px;
}

.blog-card{
  background:var(--white);
}

.blog-card-featured{
  position:relative;
  min-height:480px;
  overflow:hidden;
}
.blog-card-featured .blog-photo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.blog-card-featured .blog-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.blog-card-featured::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,0) 60%);
  z-index:1;
  pointer-events:none;
}
.blog-overlay-link{
  position:absolute;
  left:50px;
  right:50px;
  bottom:50px;
  z-index:2;
}
.blog-date{
  display:block;
  font-family:'Roboto', sans-serif;
  font-weight:700;
  font-size:14px;
  color:var(--white);
  margin-bottom:12px;
}
.blog-date .my{margin-left:6px;}
.blog-overlay-link h3{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:30px;
  line-height:1.25;
  color:var(--white);
  transition:opacity .3s ease;
}
.blog-overlay-link a:hover h3{
  opacity:.9;
}

.blog-photo{
  position:relative;
  display:block;
  overflow:hidden;
}
.blog-photo img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:transform .4s ease;
}
.blog-card:hover .blog-photo img{
  transform:scale(1.1) rotate(2deg);
}
.blog-date-badge{
  position:absolute;
  left:0;
  bottom:0;
  background:var(--maroon);
  color:var(--white);
  text-align:center;
  padding:12px 18px;
  font-family:'Roboto', sans-serif;
  font-weight:900;
}
.blog-date-badge .day{display:block;font-size:22px;line-height:1;}
.blog-date-badge .my{display:block;font-size:12px;font-weight:600;margin-top:2px;}

.blog-body{padding-top:24px;}
.blog-cat{
  display:block;
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:14px;
  color:var(--maroon);
  margin-bottom:10px;
}
.blog-body h3{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:22px;
  line-height:1.3;
  color:var(--ink);
  margin-bottom:14px;
  transition:color .3s ease;
}
.blog-body > a:hover h3{
  color:var(--maroon);
}
.blog-body p{
  font-family:'Roboto', sans-serif;
  font-size:14px;
  line-height:1.8;
  color:var(--muted);
  margin-bottom:18px;
}
.blog-meta{
  display:flex;
  gap:20px;
  font-family:'Roboto', sans-serif;
  font-size:12px;
  color:var(--muted);
  border-top:1px solid #ece8e1;
  padding-top:16px;
}

/* ===================== NEWSLETTER ===================== */
.newsletter-section{
  background:var(--maroon);
  background-image:url('../assets/images/bg-waves.png');
  padding:50px 0;
}

.newsletter-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}

.newsletter-text{
  display:flex;
  align-items:center;
  gap:26px;
}
.newsletter-icon{
  display:block;
  flex:none;
}
.newsletter-icon::before{
  font-family:'bubulla-fontello';
  content:"\e801";
  font-size:70px;
  line-height:1;
  color:var(--ink);
}
.newsletter-text h4{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:28px;
  line-height:1.25;
  color:var(--ink);
}

.newsletter-form{
  display:flex;
  flex:1 1 480px;
  max-width:540px;
}
.newsletter-form input{
  flex:1;
  min-width:0;
  border:0;
  padding:22px 26px;
  font-family:'Roboto', sans-serif;
  font-size:16px;
  color:var(--ink);
}
.newsletter-form input:focus{outline:2px solid var(--ink);outline-offset:-2px;}
.newsletter-form .btn{
  padding:22px 30px;
  white-space:nowrap;
}

/* ===================== FOOTER ===================== */
.site-footer{
  background-color:var(--ink);
  background-image:url('../assets/images/footer_map.png');
  background-position:center;
  padding-top:80px;
}

.footer-inner{
  text-align:center;
}
.footer-logo{
  width:150px;
  height:80px;
  margin:0 auto 26px;
}
.footer-inner p{
  max-width:600px;
  margin:0 auto 30px;
  font-family:'Roboto', sans-serif;
  font-size:14px;
  line-height:1.9;
  color:rgba(255,255,255,.85);
}

.footer-social{
  display:flex;
  justify-content:center;
  gap:22px;
  padding-bottom:60px;
}
.footer-social a{
  display:block;
  width:20px;
  height:20px;
  color:var(--gold);
  transition:opacity .2s;
}
.footer-social a:hover{opacity:.75;}

.copyright-bar{
  background:rgba(0,0,0,.25);
  padding:22px 0;
}
.copyright-bar p{
  font-family:'Roboto', sans-serif;
  font-size:13px;
  color:rgba(255,255,255,.7);
  text-align:center;
}
.copyright-bar a{
  color:rgba(255,255,255,.9);
  text-decoration:underline;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width:1100px){
  .hero-caption .eyebrow{font-size:44px;}
}

@media (max-width:900px){
  .header-inner{grid-template-columns:auto 1fr auto;gap:16px;}
  .header-left .follow-us,.follow-line{display:none;}
  .header-phone{display:none;}
  .about-grid{grid-template-columns:1fr;}
  .about-text p{max-width:none;}
  .trust-grid{grid-template-columns:1fr;}
  .trust-text{padding-right:0;padding-bottom:30px;}
  .trust-counters{margin-top:0;}
  .feature-icons{flex-wrap:wrap;height:auto;padding:40px 0;}
  .feature-icons li{width:50%;margin-bottom:24px;}
  .features-band{height:auto;}
  .tech-section{flex-direction:column;}
  .tech-photo{min-height:360px;}
  .tech-inner{padding:60px 40px;max-width:none;}
  .tech-icons{flex-wrap:wrap;gap:30px;}

  .testimonial-card{flex:0 0 50%;}
  .blog-grid{grid-template-columns:1fr 1fr;}
  .blog-card-featured{grid-column:1 / -1;min-height:360px;}
  .newsletter-inner{justify-content:center;text-align:center;}
  .newsletter-text{flex-direction:column;gap:12px;}
  .newsletter-form{flex:1 1 100%;max-width:none;}

  .hero-content{padding:0 76px;}
  .hero-caption{width:calc(100% - 152px);}
  .hero-arrow{width:48px;height:48px;}
  .hero-arrow svg{width:18px;height:18px;}
  .hero-arrow-prev{left:16px;}
  .hero-arrow-next{right:16px;}
}

@media (max-width:760px){
  .site-header{top:0;}
  .header-inner{padding-top:16px;padding-bottom:16px;gap:10px;}
  .header-logo img{width:96px;height:52px;}
  .header-left{display:none;}
  .header-inner{grid-template-columns:1fr auto;}
  .header-logo{justify-self:start;}
  .header-right{gap:16px;}
  .icon-btn{width:18px;height:18px;}
  .hamburger-btn{display:flex;}
  .mobile-nav-backdrop{display:block;}

  .main-nav{
    display:block;
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    width:82%;
    max-width:320px;
    background:var(--ink);
    padding:90px 0 40px;
    overflow-y:auto;
    z-index:100;
    transform:translateX(100%);
    transition:transform .35s ease;
  }
  .main-nav.is-open{
    transform:translateX(0);
  }
  .nav-menu{
    flex-direction:column;
    align-items:stretch;
  }
  .nav-item{
    width:100%;
    border-bottom:1px solid rgba(255,255,255,.1);
  }
  .nav-item > a{
    padding:16px 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .nav-dropdown{
    position:static;
    min-width:0;
    box-shadow:none;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
    background:rgba(0,0,0,.2);
    padding:0;
  }
  .nav-item.has-dropdown.is-open .nav-dropdown{display:block;}
  .nav-dropdown a{
    color:var(--white);
    padding:14px 44px;
  }
  .nav-dropdown a:hover{background:rgba(255,255,255,.06);color:var(--gold);}

  .hero{min-height:480px;}
  .hero-content{padding:0 56px;align-items:center;}
  .hero-caption{width:calc(100% - 112px);}
  /* The original Bubulla demo runs data-zs-bullets="false" on mobile — arrows only, no dots. */
  .hero-dots{display:none;}
  .hero-caption .eyebrow{font-size:30px;margin-bottom:14px;}
  .hero-caption h1{
    font-size:clamp(38px, 11vw, 52px);
    white-space:normal;
    line-height:1.2;
    margin-bottom:34px;
  }
  .hero-caption p{font-size:16px;line-height:1.9;margin-bottom:32px;}
  /* Arrows move off the vertical-center edges (where they'd fight the text)
     and sit together as a big centered pair near the bottom of the slide,
     matching the original Bubulla demo's mobile layout. */
  .hero-arrow{width:76px;height:76px;top:auto;bottom:60px;transform:none;}
  .hero-arrow svg{width:28px;height:28px;}
  .hero-arrow-prev{left:50%;right:auto;transform:translateX(calc(-100% - 18px));}
  .hero-arrow-next{left:50%;right:auto;transform:translateX(18px);}
  .btn{padding:24px 52px;font-size:15px;gap:12px;}

  .cat-icon{width:110px;height:110px;}
  .cat-icon::before{font-size:52px;}
  .cat-icon img{width:52px;height:52px;}
  .cat-slide{flex:0 0 50%;}
  .about-text h2{font-size:34px;}
  .about-leafs{display:none;}
  .counter h3{font-size:60px;}
  .trust-text h5{font-size:19px;}
  .feature-icon{width:70px;height:70px;line-height:70px;}
  .feature-icon::before{font-size:56px;line-height:70px;}
  .feature-icons h6{font-size:14px;}
  .feature-icons li{width:50%;}
  .section-heading h2{font-size:34px;}
  .tech-inner h2{font-size:32px;}
  .tech-badge{width:170px;min-height:170px;}
  .tech-badge h3{font-size:36px;}
  .product-card{width:50%;}

  .price-item{width:100%;padding:0 15px 24px;margin-bottom:24px;}
  .price-tab{padding:12px 18px;font-size:13px;}
  .testimonial-card{flex:0 0 100%;}
  .section-heading h2.on-dark{font-size:34px;}
  .blog-grid{grid-template-columns:1fr;}
  .blog-card-featured{min-height:320px;}
  .blog-overlay-link{left:24px;right:24px;bottom:24px;}
  .blog-overlay-link h3{font-size:24px;}
  .newsletter-icon::before{font-size:52px;}
  .newsletter-text h4{font-size:22px;}
  .footer-logo{width:110px;height:59px;}
}

/* Touch devices can't hover: show the add-to-cart action inline instead of on-hover overlay */
@media (max-width:900px), (hover:none){
  .product-image{padding:20px 20px 0;}
  .product-image img{opacity:1 !important;}
  .product-card::before{opacity:.3;border-color:rgba(0,0,0,.08);}
  .product-cart-btn{
    position:static;
    transform:none;
    opacity:1;
    margin-top:14px;
    padding:12px 20px;
    font-size:12px;
  }
}

@media (max-width:480px){
  .header-logo img{width:84px;height:45px;}
  .hero{min-height:440px;}
  .hero-content{padding:0 44px;}
  .hero-caption{width:calc(100% - 88px);}
  .hero-arrow{width:66px;height:66px;bottom:56px;}
  .hero-arrow svg{width:24px;height:24px;}
  .hero-arrow-prev{transform:translateX(calc(-100% - 14px));}
  .hero-arrow-next{transform:translateX(14px);}
  .hero-caption .eyebrow{font-size:24px;margin-bottom:12px;}
  .hero-caption h1{font-size:clamp(32px, 12vw, 44px);line-height:1.15;margin-bottom:26px;}
  .hero-caption p{line-height:1.8;margin-bottom:26px;}
  .trust-counters{grid-template-columns:1fr;gap:30px;}
  .tech-icons{gap:24px;}
  .newsletter-form{flex-direction:column;}
  .price-tabs{gap:8px;}
  .price-tab{flex:1 1 calc(50% - 8px);}
}

/* ===================== ZOOM HERO (real content/image from zavvar.az/haqqimizda) ===================== */
.zoom-hero{
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  background:var(--white);
}
.zoom-hero-bg{
  position:absolute;
  inset:0;
  background-size:auto;
  background-position:right center;
  background-repeat:no-repeat;
  animation:heroZoom 20s linear infinite;
}
.zoom-hero-bg-product{
  background-size:auto 90%;
  animation:none;
}
.zoom-hero-overlay{
  position:absolute;
  inset:0;
  background:var(--white);
  opacity:.5;
}

.zoom-hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  padding:90px 0 70px;
}
.zoom-hero-inner h2{
  font-family:'Roboto', sans-serif;
  font-weight:700;
  font-size:clamp(28px, 4vw, 56px);
  line-height:1.3;
  color:var(--ink);
  max-width:750px;
  margin-bottom:34px;
}
.zoom-hero-inner p{
  font-family:'Roboto', sans-serif;
  font-size:15px;
  line-height:1.9;
  color:var(--ink);
  max-width:630px;
  margin-bottom:40px;
}

@media (max-width:768px){
  .zoom-hero-inner{padding:100px 0 150px;}
}

/* ===================== CONTAINERS (split parallax, exact from zavvar.az/haqqimizda) ===================== */
.split-parallax{
  position:relative;
  min-height:640px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--white);
}
.split-parallax-media{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  width:50%;
  background-size:cover;
  background-position:center;
  will-change:transform;
}
.split-parallax-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  width:100%;
}
.split-parallax-spacer{}
.split-parallax-text h2{
  font-family:'Roboto', sans-serif;
  font-weight:700;
  font-size:clamp(32px, 5vw, 80px);
  line-height:1;
  color:var(--ink);
  margin-bottom:24px;
}
.split-parallax-text h2 span{color:var(--maroon);}
.split-parallax-text p{
  font-family:'Roboto', sans-serif;
  font-size:15px;
  line-height:1.9;
  color:var(--ink);
  max-width:570px;
  margin-bottom:48px;
}

@media (max-width:900px){
  .split-parallax{flex-direction:column;min-height:auto;padding-top:280px;}
  .split-parallax-media{position:absolute;top:0;left:0;right:0;width:100%;height:280px;bottom:auto;}
  .split-parallax-grid{grid-template-columns:1fr;}
  .split-parallax-spacer{display:none;}
}

/* ===================== QUOTE BAND (parallax) ===================== */
.quote-band{
  position:relative;
  min-height:360px;
  overflow:hidden;
  display:flex;
  align-items:center;
  background:var(--ink);
  text-align:center;
}
.quote-band-bg{
  position:absolute;
  top:-25%;
  left:0;
  right:0;
  height:150%;
  background-size:cover;
  background-position:center;
  filter:grayscale(.3);
  will-change:transform;
}
.quote-band-overlay{
  position:absolute;
  inset:0;
  background:var(--ink);
  opacity:.72;
}
.quote-band blockquote{
  position:relative;
  z-index:2;
  font-family:'Roboto', sans-serif;
  font-weight:400;
  font-size:64px;
  line-height:1.3;
  color:var(--white);
  max-width:820px;
  margin:0 auto;
}
.quote-band blockquote span{color:var(--gold);}
@media (max-width:768px){
  .quote-band{min-height:260px;}
  .quote-band blockquote{font-size:36px;}
}

/* ===================== CONTACT PAGE ===================== */
.page-intro{
  padding:110px 0 90px;
  text-align:center;
  background:var(--cream);
}
.page-intro .eyebrow{display:inline-block;}
.page-intro h1{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:clamp(32px, 4vw, 52px);
  line-height:1.2;
  color:var(--ink);
  max-width:760px;
  margin:0 auto 20px;
}
.page-intro p{
  font-family:'Roboto', sans-serif;
  font-size:15px;
  line-height:1.9;
  color:var(--muted);
  max-width:560px;
  margin:0 auto;
}

.contact-info{
  padding:80px 0;
}
.contact-info-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
}
.contact-card{
  text-align:center;
  padding:44px 24px;
  border:1px solid #ECE7DF;
  border-radius:4px;
  transition:border-color .3s ease, box-shadow .3s ease;
}
.contact-card:hover{
  border-color:var(--maroon);
  box-shadow:0 20px 40px rgba(25,23,22,.08);
}
.contact-card-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:64px;
  height:64px;
  margin:0 auto 20px;
  border-radius:50%;
  background:var(--cream);
  color:var(--maroon);
}
.contact-card-icon svg{width:26px;height:26px;}
.contact-card h6{
  font-family:'Roboto', sans-serif;
  font-weight:800;
  font-size:16px;
  color:var(--ink);
  margin-bottom:10px;
}
.contact-card p{
  font-family:'Roboto', sans-serif;
  font-size:14px;
  line-height:1.7;
  color:var(--muted);
}

.contact-map{
  line-height:0;
}
.contact-map iframe{
  display:block;
  filter:grayscale(.15);
}

.contact-form-section{
  padding:100px 0;
  background:var(--cream);
}
.contact-form-inner{
  max-width:700px;
}
.contact-form-inner .section-heading{margin-bottom:50px;}
.contact-tabs{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:2px;
  margin-bottom:36px;
}
.contact-tab{
  font-family:'Roboto', sans-serif;
  font-weight:700;
  font-size:14px;
  color:var(--maroon);
  background:transparent;
  border:1px solid var(--maroon);
  padding:16px 26px;
  cursor:pointer;
  transition:background .2s, color .2s, border-color .2s;
}
.contact-tab.is-active{
  background:var(--maroon);
  color:var(--white);
  border-color:var(--maroon);
}
.contact-tab:hover:not(.is-active){background:rgba(156,35,48,.08);}
.contact-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.contact-form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid #E2DDD3;
  background:var(--white);
  padding:16px 20px;
  font-family:'Roboto', sans-serif;
  font-size:15px;
  color:var(--ink);
  resize:vertical;
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline:2px solid var(--ink);
  outline-offset:-2px;
}
.contact-form .btn{
  align-self:flex-start;
  margin-top:6px;
}

@media (max-width:900px){
  .contact-info-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:600px){
  .contact-info-grid{grid-template-columns:1fr;}
  .contact-form-row{grid-template-columns:1fr;}
  .contact-tab{flex:1 1 calc(50% - 8px);padding:12px 18px;font-size:13px;}
}

/* ===================== LANGUAGE SWITCHER (new, additive only) ===================== */
.lang-switcher{
  position:relative;
}
.lang-switcher-trigger{
  display:flex;
  align-items:center;
  gap:5px;
  background:none;
  border:0;
  color:var(--white);
  font-family:'Roboto', sans-serif;
  font-weight:700;
  font-size:13px;
  letter-spacing:.4px;
  cursor:pointer;
  transition:color .2s;
}
.lang-switcher-trigger:hover{color:var(--gold);}
.lang-switcher-trigger svg{width:12px;height:12px;transition:transform .2s ease;}
.lang-switcher.is-open .lang-switcher-trigger svg{transform:rotate(180deg);}
.lang-switcher-menu{
  position:absolute;
  top:calc(100% + 14px);
  right:0;
  min-width:80px;
  background:var(--white);
  box-shadow:0 20px 40px rgba(0,0,0,.15);
  padding:8px 0;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:opacity .25s ease, transform .25s ease, visibility .25s;
  z-index:20;
}
.lang-switcher.is-open .lang-switcher-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.lang-switcher-menu a{
  display:block;
  padding:8px 18px;
  font-family:'Roboto', sans-serif;
  font-weight:600;
  font-size:13px;
  color:var(--ink);
  transition:color .2s, background .2s;
}
.lang-switcher-menu a:hover{
  color:var(--maroon);
  background:var(--cream);
}

/* ===================== BLOG PAGE (masonry with sidebar) ===================== */
.page-header{
  position:relative;
  min-height:280px;
  display:flex;
  align-items:center;
  background-size:cover;
  background-position:center;
  text-align:center;
}
.page-header-overlay{
  position:absolute;
  inset:0;
  background:var(--ink);
  opacity:.6;
}
.page-header-inner{
  position:relative;
  z-index:2;
}
.page-header-inner h1{
  font-family:'Roboto', sans-serif;
  font-weight:900;
  font-size:clamp(32px, 4vw, 52px);
  color:var(--white);
  margin-bottom:16px;
}
.breadcrumbs{
  display:flex;
  justify-content:center;
  gap:8px;
  list-style:none;
}
.breadcrumbs li{
  font-family:'Roboto', sans-serif;
  font-size:13px;
  color:rgba(255,255,255,.7);
}
.breadcrumbs li:not(:last-child)::after{
  content:"/";
  margin-left:8px;
  color:rgba(255,255,255,.4);
}
.breadcrumbs a{color:var(--gold);}
.breadcrumbs a:hover{color:var(--white);}

.blog-page-row{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:60px;
  padding:90px 0;
  align-items:start;
}
.blog-masonry-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}
.blog-masonry-grid .blog-card{
  background:var(--white);
}

/* -- Sidebar -- */
.blog-sidebar{
  display:flex;
  flex-direction:column;
  gap:40px;
}
.sidebar-heading{
  font-family:'Roboto', sans-serif;
  font-weight:800;
  font-size:16px;
  text-transform:uppercase;
  letter-spacing:.4px;
  color:var(--ink);
  padding-bottom:14px;
  margin-bottom:20px;
  border-bottom:2px solid var(--cream);
}

.sidebar-search-form{
  display:flex;
  border:1px solid #E2DDD3;
}
.sidebar-search-form input{
  flex:1;
  min-width:0;
  border:0;
  padding:14px 16px;
  font-family:'Roboto', sans-serif;
  font-size:14px;
  color:var(--ink);
}
.sidebar-search-form input:focus{outline:none;}
.sidebar-search-form button{
  width:46px;
  color:var(--white);
  background:var(--maroon);
}
.sidebar-search-form button svg{width:18px;height:18px;margin:0 auto;}

.sidebar-categories ul{list-style:none;}
.sidebar-categories li{
  border-bottom:1px solid var(--cream);
}
.sidebar-categories li a{
  display:flex;
  justify-content:space-between;
  padding:12px 0;
  font-family:'Roboto', sans-serif;
  font-size:14px;
  color:var(--ink);
  transition:color .2s;
}
.sidebar-categories li a:hover{color:var(--maroon);}

.sidebar-about img{
  width:100%;
  margin-bottom:16px;
}
.sidebar-about p{
  font-family:'Roboto', sans-serif;
  font-size:14px;
  line-height:1.8;
  color:var(--muted);
}

.sidebar-recent-list{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-bottom:20px;
}
.sidebar-recent-item{
  display:flex;
  gap:14px;
}
.sidebar-recent-thumb{
  flex:none;
  width:70px;
  height:56px;
  overflow:hidden;
  display:block;
}
.sidebar-recent-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.sidebar-recent-date{
  display:block;
  font-family:'Roboto', sans-serif;
  font-size:12px;
  font-weight:600;
  color:var(--maroon);
  margin-bottom:4px;
}
.sidebar-recent-body h6{
  font-family:'Roboto', sans-serif;
  font-weight:700;
  font-size:14px;
  line-height:1.4;
  color:var(--ink);
  transition:color .2s;
}
.sidebar-recent-body a:hover h6{color:var(--maroon);}

.tagcloud{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.tagcloud a{
  padding:6px 14px;
  font-family:'Roboto', sans-serif;
  font-size:12px !important;
  color:var(--ink);
  background:var(--cream);
  transition:background .2s, color .2s;
}
.tagcloud a:hover{
  background:var(--maroon);
  color:var(--white);
}

/* -- Pagination (WordPress core .page-numbers markup) -- */
.navigation.pagination{
  margin-top:50px;
}
.navigation.pagination .nav-links{
  display:flex;
  justify-content:center;
  gap:10px;
}
.navigation.pagination .screen-reader-text{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(1px,1px,1px,1px);
  white-space:nowrap;
}
.page-numbers{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:44px;
  height:44px;
  padding:0 6px;
  font-family:'Roboto', sans-serif;
  font-weight:700;
  font-size:14px;
  color:var(--ink);
  border:1px solid #E2DDD3;
  transition:background .2s, color .2s, border-color .2s;
}
.page-numbers:hover,
.page-numbers.current{
  background:var(--maroon);
  border-color:var(--maroon);
  color:var(--white);
}
.page-numbers.dots{border:0;}
.page-numbers.prev,
.page-numbers.next{position:relative;}
.page-numbers.prev::before,
.page-numbers.next::before{
  content:"";
  width:9px;
  height:9px;
  border-top:2px solid currentColor;
  border-right:2px solid currentColor;
}
.page-numbers.prev::before{transform:rotate(-135deg);}
.page-numbers.next::before{transform:rotate(45deg);}

@media (max-width:900px){
  .blog-page-row{grid-template-columns:1fr;gap:60px;}
  .blog-masonry-grid{grid-template-columns:1fr;}
}
