
:root{
  --red:#ae1117;
  --red-dark:#840b0f;
  --cream:#fffaf5;
  --ink:#201713;
  --muted:#6f625a;
  --card:#ffffff;
  --shadow:0 10px 28px rgba(48,28,20,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:var(--cream);
}
img{max-width:100%;display:block}
a{color:inherit}
.container{width:min(1360px,calc(100% - 40px));margin:auto}

.header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,250,245,.97);
  backdrop-filter:blur(12px);
  border-bottom:1px solid #eaded6;
}
.header__inner{
  min-height:72px;
  display:flex;
  align-items:center;
  gap:28px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--red);
  flex:0 0 auto;
}
.logo__icon{font-size:39px;line-height:1}
.logo__text strong{
  display:block;
  font-family:Georgia,serif;
  font-size:30px;
  line-height:.95;
}
.logo__text small{
  display:block;
  font-size:10px;
  margin-top:5px;
  font-weight:700;
  color:#7e3431;
}
.nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:24px;
}
.nav a{
  text-decoration:none;
  padding:27px 0 24px;
  font-size:14px;
  border-bottom:2px solid transparent;
}
.nav a:hover,.nav a.active{
  color:var(--red);
  border-color:var(--red);
}
.header-phone{
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  font-size:15px;
  white-space:nowrap;
}
.header-phone>span:first-child{color:var(--red);font-size:20px}
.header-phone strong{display:block}
.header-phone small{
  display:block;
  color:var(--red);
  margin-top:3px;
  font-size:10px;
}
.menu-toggle{display:none;border:0;background:transparent;font-size:26px}

.hero{
  position:relative;
  min-height:335px;
  background:url('assets/hero-clean.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  color:#fff;
  overflow:hidden;
}
.hero__shade{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.76) 0%,rgba(0,0,0,.58) 27%,rgba(0,0,0,.28) 48%,rgba(0,0,0,.05) 72%);
}
.hero__content{
  position:relative;
  padding:28px 0;
  max-width:500px;
}
.hero__eyebrow{
  font-weight:700;
  font-size:15px;
  letter-spacing:.03em;
}
.hero h1{
  margin:10px 0 0;
  font-family:Impact,Haettenschweiler,'Arial Narrow Bold',sans-serif;
  font-size:56px;
  line-height:.96;
  letter-spacing:.01em;
}
.hero__script{
  font-family:Georgia,serif;
  font-style:italic;
  color:#d83233;
  font-size:38px;
  margin:0 0 10px;
}
.hero__tags{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:4px 0 14px;
  font-size:12px;
  font-weight:700;
}
.hero__text{
  max-width:470px;
  line-height:1.4;
  font-size:14px;
  margin:0;
}
.hero__actions{
  display:flex;
  gap:14px;
  margin-top:14px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 19px;
  border-radius:5px;
  text-decoration:none;
  font-weight:700;
  font-size:13px;
}
.btn--red{background:var(--red);color:#fff}
.btn--red:hover{background:var(--red-dark)}
.btn--outline{
  color:#fff;
  border:1px solid #fff;
  background:rgba(0,0,0,.25);
}

.section{padding:14px 0}
.categories{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
}
.category-card{
  background:var(--card);
  border-radius:12px;
  overflow:hidden;
  box-shadow:var(--shadow);
  position:relative;
}
.category-card>img{
  width:100%;
  height:122px;
  object-fit:cover;
}
.category-card__body{
  position:relative;
  padding:26px 14px 16px;
  min-height:128px;
}
.category-card__icon{
  position:absolute;
  left:14px;
  top:-24px;
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--red);
  color:#fff;
  border:3px solid #fff;
  display:grid;
  place-items:center;
  font-size:21px;
}
.category-card h3{
  margin:0 0 7px;
  font-size:17px;
}
.category-card p{
  margin:0;
  font-size:12px;
  line-height:1.35;
  color:var(--muted);
}
.title-row{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.mini-badge{
  background:var(--red);
  color:#fff;
  border-radius:5px;
  padding:3px 6px;
  font-size:8px;
  font-weight:800;
}

.smoked-banner{
  min-height:138px;
  border-radius:15px;
  overflow:hidden;
  position:relative;
  background:url('assets/smoked-banner.jpg') center/cover no-repeat;
}
.smoked-banner__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(255,247,235,.95) 0%,rgba(255,247,235,.88) 38%,rgba(255,247,235,.12) 67%);
}
.smoked-banner__content{
  position:relative;
  width:55%;
  padding:18px 26px;
}
.badge{
  display:inline-block;
  background:var(--red);
  color:#fff;
  font-size:11px;
  font-weight:800;
  padding:5px 9px;
  border-radius:4px;
}
.smoked-banner h2{
  margin:7px 0 0;
  font-family:Impact,'Arial Narrow Bold',sans-serif;
  font-size:30px;
  letter-spacing:.01em;
}
.smoked-banner__script{
  color:#b72b2d;
  font-family:Georgia,serif;
  font-style:italic;
  font-size:23px;
  margin-top:-2px;
}
.smoked-banner p{
  margin:6px 0 8px;
  font-size:12px;
  line-height:1.35;
  max-width:520px;
}
.features{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  font-size:10px;
  color:#4f433b;
}

.footer{
  margin-top:0;
  background:#1a100b;
  color:#f9eee6;
  padding:20px 0 10px;
}
.footer__grid{
  display:grid;
  grid-template-columns:1fr .8fr .65fr 1.8fr;
  gap:30px;
  align-items:start;
}
.logo--footer{color:#fff}
.footer h4{margin:3px 0 14px;font-size:15px}
.footer p{
  font-size:12px;
  line-height:1.5;
  color:#dacbc2;
  margin:0 0 10px;
}
.footer a{text-decoration:none;color:#fff}
.map-card{
  position:relative;
  overflow:hidden;
  border-radius:10px;
}
.map-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}
.map-pin{
  position:absolute;
  left:50%;
  top:50%;
  width:24px;
  height:24px;
  background:var(--red);
  border-radius:50% 50% 50% 0;
  transform:translate(-50%,-65%) rotate(-45deg);
  box-shadow:0 3px 9px rgba(0,0,0,.28);
}
.map-pin:after{
  content:"";
  position:absolute;
  width:8px;
  height:8px;
  background:#fff;
  border-radius:50%;
  left:8px;
  top:8px;
}
.footer__bottom{
  margin-top:18px;
  padding-top:12px;
  border-top:1px solid #3a2a22;
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#9f8f85;
  font-size:10px;
}
.footer__bottom a{color:#9f8f85}

@media(max-width:1150px){
  .nav{gap:15px}
  .categories{grid-template-columns:repeat(3,1fr)}
  .footer__grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:900px){
  .header__inner{min-height:66px}
  .menu-toggle{display:block;margin-left:auto}
  .nav{
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:66px;
    background:#fffaf5;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:8px 20px 14px;
    border-top:1px solid #eaded6;
    box-shadow:0 15px 25px rgba(0,0,0,.08);
  }
  .nav.open{display:flex}
  .nav a{padding:11px 0}
  .header-phone{display:none}
  .hero{min-height:440px;background-position:58% center}
  .hero__content{max-width:500px}
}

@media(max-width:650px){
  .container{width:min(100% - 24px,1360px)}
  .logo__text strong{font-size:25px}
  .logo__icon{font-size:31px}
  .hero{min-height:520px;background-position:62% center}
  .hero__shade{background:linear-gradient(90deg,rgba(0,0,0,.78),rgba(0,0,0,.30))}
  .hero h1{font-size:44px}
  .hero__script{font-size:32px}
  .hero__actions{flex-direction:column;max-width:260px}
  .categories{grid-template-columns:1fr}
  .category-card>img{height:180px}
  .category-card__body{min-height:auto;padding-top:31px}
  .category-card__icon{top:-25px}
  .smoked-banner{min-height:330px;background-position:62% center}
  .smoked-banner__overlay{background:linear-gradient(0deg,rgba(255,247,235,.98),rgba(255,247,235,.84),rgba(255,247,235,.08))}
  .smoked-banner__content{
    width:100%;
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:18px;
  }
  .smoked-banner h2{font-size:27px}
  .features{gap:9px}
  .footer__grid{grid-template-columns:1fr}
  .footer__bottom{flex-direction:column}
}


/* Кнопка звонка */
.call-btn{
  display:flex;
  align-items:center;
  gap:10px;
  background:var(--red);
  color:#fff;
  text-decoration:none;
  padding:9px 14px;
  border-radius:8px;
  font-weight:700;
  white-space:nowrap;
  box-shadow:0 6px 18px rgba(174,17,23,.18);
  transition:.2s ease;
}
.call-btn:hover{
  background:var(--red-dark);
  transform:translateY(-1px);
}
.call-btn__icon{
  font-size:20px;
  line-height:1;
}
.call-btn__text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.call-btn__text strong{
  font-size:13px;
}
.call-btn__text small{
  font-size:10px;
  margin-top:3px;
  opacity:.9;
  font-weight:600;
}
.mobile-call{
  display:none;
}

@media(max-width:900px){
  .call-btn{
    margin-left:0;
    padding:9px 12px;
  }
  .call-btn__text small{
    display:none;
  }
}

@media(max-width:650px){
  .header .call-btn{
    display:none;
  }
  .mobile-call{
    display:flex;
    position:fixed;
    right:14px;
    bottom:14px;
    z-index:999;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:48px;
    padding:0 18px;
    border-radius:999px;
    background:var(--red);
    color:#fff;
    text-decoration:none;
    font-weight:800;
    box-shadow:0 10px 24px rgba(0,0,0,.25);
  }
}

@media(max-width:1150px){
  .footer__grid{
    grid-template-columns:1fr 1fr;
  }
  .map-card img{
    height:200px;
  }
}
@media(max-width:650px){
  .footer__grid{
    grid-template-columns:1fr;
  }
  .map-card img{
    height:230px;
  }
}

/* Живая интерактивная Яндекс.Карта */
.map-card--live{
  width:100%;
  height:260px;
  border-radius:12px;
  overflow:hidden;
  background:#eee;
}
.map-card--live iframe{
  display:block;
  width:100%;
  height:100%;
  border:0;
}
@media(max-width:1150px){
  .map-card--live{height:240px;}
}
@media(max-width:650px){
  .map-card--live{height:300px;}
}


/* Ассортимент куриного мяса */
.category-card--link{
  display:block;
  color:inherit;
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease;
}
.category-card--link:hover{
  transform:translateY(-4px);
}
.category-card__more{
  display:inline-block;
  margin-top:10px;
  color:var(--red);
  font-weight:800;
  font-size:13px;
}

.chicken-menu{
  padding-top:20px;
  padding-bottom:64px;
}
.section-heading{
  max-width:760px;
  margin-bottom:28px;
}
.section-kicker{
  display:inline-block;
  margin-bottom:8px;
  color:var(--red);
  font-size:12px;
  font-weight:900;
  letter-spacing:.13em;
}
.section-heading h2{
  margin:0 0 10px;
  font-size:clamp(30px,4vw,48px);
  line-height:1;
}
.section-heading p{
  margin:0;
  color:#6d625c;
  font-size:16px;
  line-height:1.55;
}

.chicken-products{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.chicken-product-card{
  min-height:155px;
  padding:20px;
  border:1px solid #eadfd7;
  border-radius:16px;
  background:#fff;
  box-shadow:0 10px 28px rgba(59,35,24,.06);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.chicken-product-card:hover{
  transform:translateY(-3px);
  border-color:#d8b5a8;
  box-shadow:0 14px 32px rgba(59,35,24,.10);
}
.chicken-product-card__icon{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
  border-radius:50%;
  background:#fff0f0;
  font-size:22px;
}
.chicken-product-card h3{
  margin:0 0 7px;
  font-size:18px;
  line-height:1.2;
}
.chicken-product-card p{
  margin:0;
  color:#746963;
  font-size:13px;
  line-height:1.45;
}
.chicken-menu__cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-top:24px;
  padding:20px 22px;
  border-radius:16px;
  background:#1b0f0a;
  color:#fff;
}
.chicken-menu__cta div{
  display:flex;
  flex-direction:column;
  gap:3px;
}
.chicken-menu__cta strong{
  font-size:18px;
}
.chicken-menu__cta span{
  color:#d8cdc8;
  font-size:14px;
}

@media(max-width:1050px){
  .chicken-products{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}
@media(max-width:760px){
  .chicken-products{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:520px){
  .chicken-products{
    grid-template-columns:1fr;
  }
  .chicken-menu__cta{
    align-items:flex-start;
    flex-direction:column;
  }
  .chicken-menu__cta .btn{
    width:100%;
    text-align:center;
  }
}
