:root{
  --red:#de3037;
  --red-dark:#c72029;
  --red-soft:#fff0f0;
  --black:#171b20;
  --ink:#202328;
  --muted:#5f6670;
  --line:#e9e1d9;
  --paper:#fbf8f2;
  --cream:#fffaf2;
  --green:#9acb18;
  --orange:#ff963d;
  --yellow:#f5ad17;
  --white:#fff;
  --shadow:0 18px 48px rgba(25,29,34,.12);
  --font:"Inter","Segoe UI",Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:#fff;
  font-family:var(--font);
}

body.lightbox-open{overflow:hidden}
main{display:flex;flex-direction:column}
.hero{order:1}
.category-wrap{order:2}
.menu-section{order:3}
.rodizio{order:4}
.delivery{order:5}
.promo{order:6}
.gallery-section{order:7}
.reservation-wrap{order:8}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.container{max-width:1180px}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.08);
  box-shadow:0 8px 24px rgba(0,0,0,.05);
}

.nav{
  min-height:76px;
  display:grid;
  grid-template-columns:230px minmax(0,1fr) auto;
  align-items:center;
  gap:18px;
}

.brand img{
  width:210px;
  height:auto;
}

.nav-menu{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:28px;
  color:#111;
  font-size:.95rem;
  font-weight:800;
}

.nav-cta{
  white-space:nowrap;
  padding-left:22px;
  padding-right:22px;
}

.nav-menu a{
  position:relative;
  padding:30px 0;
}

.nav-menu a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:20px;
  height:2px;
  border-radius:999px;
  background:var(--red);
  transform:scaleX(0);
  transform-origin:left;
  transition:.22s ease;
}

.nav-menu a:hover::after{transform:scaleX(1)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:47px;
  padding:14px 26px;
  border:0;
  border-radius:16px;
  font-weight:900;
  font-size:.92rem;
  line-height:1;
  transition:.2s ease;
}

.btn img{
  width:18px;
  height:18px;
}

.btn-primary{
  color:#fff;
  background:#de3037;
  box-shadow:none;
}

.btn-primary:hover{
  color:#fff;
  transform:translateY(-2px);
  background:#c72029;
  box-shadow:none;
}

.btn-outline-red{
  color:#222;
  border:1px solid var(--red);
  background:#fff;
  box-shadow:none;
}

.btn-outline-red:hover{
  color:var(--red);
  transform:translateY(-2px);
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  padding:0;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}

.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  margin:5px auto;
  background:#111;
}

.hero{
  position:relative;
  overflow:hidden;
  min-height:455px;
  background:#eedcba
}

.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:130px;
  background:linear-gradient(180deg,rgba(255,255,255,0),#fff);
  pointer-events:none;
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  align-items:center;
  min-height:455px;
  padding:42px 12px 34px;
}

.hero-copy{
  max-width:470px;
  padding-left:20px;
}

.hero h1{
  margin:0;
  color:#16191f;
  font-size:clamp(2.45rem,3.25vw,3.3rem);
  line-height:1.12;
  font-weight:950;
  letter-spacing:0;
}

.hero h1 span{
  display:inline;
  color:var(--red);
}

.hero p{
  max-width:460px;
  margin:26px 0 0;
  color:#31363e;
  font-size:1.08rem;
  line-height:1.62;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:28px;
}

.hero-badges{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:46px;
}

.hero-badges article{
  display:grid;
  grid-template-columns:39px 1fr;
  gap:10px;
  align-items:start;
  min-width:0;
}

.badge-icon{
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:50%;
}

.badge-icon img{width:19px;height:19px}
.badge-icon.green{background:var(--green)}
.badge-icon.orange{background:var(--orange)}
.badge-icon.star{background:transparent}
.badge-icon.star img{width:35px;height:35px}

.hero-badges strong{
  display:block;
  color:#15191e;
  font-size:.74rem;
  line-height:1.2;
}

.hero-badges small{
  display:block;
  margin-top:4px;
  color:#545b64;
  font-size:.72rem;
  line-height:1.3;
}

.hero-media{
  position:relative;
  min-height:360px;
}

.hero-media::before{
  display:none;
}

.hero-media::after{
  display:none;
}

.hero-media>img{
  position:absolute;
  right:0;
  top:8px;
  width:700px;
  height:360px;
  object-fit:cover;
  object-position:center;
  border:0;
  border-radius:24px;
  transform:none;
  box-shadow:0 22px 52px rgba(23,27,32,.14);
}

.category-wrap{
  position:relative;
  z-index:5;
  margin-top:-1px;
  background:#fff;
}

.category-tabs{
  position:relative;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  overflow:hidden;
  min-height:66px;
  border-radius:19px;
  background:#171b20;
  box-shadow:var(--shadow);
}

.category-tabs button{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:0;
  color:#fff;
  background:transparent;
  font-size:1rem;
  font-weight:900;
  cursor:pointer;
  transition:color .2s ease;
}

.tab-indicator{
  position:absolute;
  z-index:1;
  left:0;
  top:0;
  width:16.666%;
  height:100%;
  background:#de3037;
  border-radius:19px;
  transition:transform .35s cubic-bezier(.22,1,.36,1),width .35s cubic-bezier(.22,1,.36,1);
}

.category-tabs img{
  width:34px;
  height:34px;
  flex:0 0 34px;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

.rodizio{
  display:grid;
  grid-template-columns:1.02fr .86fr 230px;
  align-items:center;
  gap:30px;
  min-height:210px;
  margin-top:36px;
  overflow:hidden;
  border-radius:12px;
  color:#fff;
  background:linear-gradient(90deg,#11161b,#1a1e23 70%,#101418);
  box-shadow:0 16px 36px rgba(0,0,0,.14);
}

.rodizio-photo{
  align-self:stretch;
}

.rodizio-photo img{
  width:100%;
  height:100%;
  min-height:210px;
  object-fit:cover;
}

.rodizio-copy{
  padding:26px 0;
}

.rodizio h2{
  margin:0 0 8px;
  font-size:2.2rem;
  line-height:1;
  font-weight:950;
}

.rodizio-copy strong{
  display:block;
  color:var(--red);
  font-size:1.25rem;
  margin-bottom:16px;
}

.rodizio-copy p{
  margin:0 0 14px;
  color:#fff;
  font-size:1rem;
  line-height:1.5;
}

.rodizio-copy small{
  color:#f4f4f4;
  font-size:.88rem;
}

.rodizio-price{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-self:center;
  min-height:165px;
  margin-right:24px;
  padding:20px 22px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:24px;
  background:
    linear-gradient(135deg,#ee343d,#be1823),
    radial-gradient(circle at 80% 20%,rgba(255,255,255,.22),transparent 34%);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.12);
  text-align:left;
}

.rodizio-price::after{
  content:"";
  display:none;
  position:absolute;
  right:18px;
  top:18px;
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:50%;
}

.price-label{
  width:max-content;
  margin-bottom:6px;
  padding:5px 10px;
  border-radius:999px;
  color:#de3037;
  background:#fff;
  font-size:.75rem;
  font-weight:950;
  text-transform:uppercase;
}

.rodizio-price small{
  margin-right:6px;
  font-size:1.1rem;
  font-weight:900;
}

.rodizio-price strong{
  display:flex;
  align-items:flex-start;
  margin:0;
  font-size:4.1rem;
  line-height:1;
  font-weight:950;
}

.rodizio-price sup{
  top:.22em;
  margin-left:2px;
  font-size:1.75rem;
}

.rodizio-price em{
  margin-top:3px;
  color:#fff;
  font-size:.92rem;
  font-weight:800;
  font-style:normal;
}

.rodizio-price b{
  margin-top:2px;
  color:#fff3f3;
  font-size:.82rem;
  font-weight:800;
  line-height:1.25;
}

.menu-section{
  padding:36px 0 26px;
  background:#fff;
}

.section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:24px;
}

.section-head h2,
.gallery-head h2{
  margin:0;
  color:#1b1f24;
  font-size:2rem;
  font-weight:950;
}

.section-head a{
  display:inline-flex;
  align-items:center;
  gap:18px;
  min-height:42px;
  padding:0 18px;
  border:1px solid var(--red);
  border-radius:12px;
  color:var(--red);
  font-size:.82rem;
  font-weight:900;
}

.section-head a span,
.promo a span{
  font-size:1.5rem;
  line-height:1;
}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
}

.menu-card{
  overflow:hidden;
  border:1px solid #e8e1da;
  border-radius:9px;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  cursor:pointer;
  transition:opacity .28s ease,transform .28s ease,box-shadow .22s ease,border-color .22s ease;
}

.menu-card:hover{
  border-color:rgba(222,48,55,.38);
  transform:translateY(-4px);
  box-shadow:0 18px 38px rgba(0,0,0,.1);
}

.menu-card.is-hidden{
  display:none;
}

.menu-card>img{
  width:100%;
  height:126px;
  object-fit:cover;
}

.menu-card div{
  padding:14px 13px 12px;
}

.menu-card h3{
  margin:0 0 11px;
  color:#1c2025;
  font-size:1.16rem;
  font-weight:950;
}

.menu-card p{
  min-height:48px;
  margin:0;
  color:#343941;
  font-size:.78rem;
  line-height:1.45;
}

.menu-card footer{
  display:block;
  margin-top:18px;
}

.menu-card strong{
  color:var(--red);
  font-size:.95rem;
  font-weight:950;
}

#cardapio.hide-prices .price-field,
#cardapio.hide-prices .menu-card footer,
body.hide-prices .price-field,
body.hide-prices .menu-card footer{
  display:none;
}

.delivery{
  position:relative;
  display:grid;
  grid-template-columns:.75fr 1.08fr .98fr;
  align-items:center;
  gap:22px;
  min-height:230px;
  margin-top:18px;
  overflow:hidden;
  border-radius:12px;
  background:
    radial-gradient(circle at 82% 26%,rgba(222,48,55,.13),transparent 28%),
    linear-gradient(90deg,#fffaf3,#f8efe4);
}

.delivery-copy{
  padding:28px 0 28px 28px;
}

.delivery h2{
  margin:0;
  max-width:260px;
  color:#171b20;
  font-size:2.15rem;
  line-height:1.04;
  font-weight:950;
}

.delivery h2 span{
  color:var(--red);
}

.delivery p{
  margin:16px 0 22px;
  color:#2d333a;
  font-size:.92rem;
  line-height:1.55;
}

.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  align-items:start;
  gap:18px;
  text-align:center;
}

.steps article{
  position:relative;
}

.steps article:not(:last-child)::after{
  content:"";
  position:absolute;
  top:34px;
  right:-22px;
  width:44px;
  border-top:2px dashed #ec777d;
}

.step-icon{
  display:grid;
  place-items:center;
  width:72px;
  height:72px;
  margin:0 auto 10px;
  border:1px solid #e0d4c8;
  border-radius:50%;
  background:rgba(255,255,255,.65);
}

.step-icon img{
  width:32px;
  height:32px;
}

.steps b{
  display:grid;
  place-items:center;
  width:24px;
  height:24px;
  margin:0 auto 8px;
  border-radius:50%;
  color:#fff;
  background:var(--red);
  font-size:.82rem;
}

.steps h3{
  margin:0 0 8px;
  font-size:1rem;
  font-weight:950;
}

.steps p{
  max-width:130px;
  margin:0 auto;
  color:#535960;
  font-size:.75rem;
  line-height:1.45;
}

.delivery-art{
  align-self:center;
  width:100%;
  height:260px;
  object-fit:contain;
  object-position:center;
  padding-right:12px;
}

.promo{
  display:grid;
  grid-template-columns:360px 1fr 210px 190px;
  align-items:center;
  gap:26px;
  min-height:132px;
  margin-top:22px;
  overflow:hidden;
  border-radius:12px;
  color:#fff;
  background:linear-gradient(90deg,#15191e,#1b1f24);
}

.promo>img{
  width:100%;
  height:132px;
  object-fit:cover;
}

.promo h2{
  margin:0;
  font-size:2rem;
  line-height:1.04;
  font-weight:950;
}

.promo h2 span{
  display:block;
  color:var(--red);
}

.promo-price small{
  display:block;
  color:#ffb5b8;
  font-size:.75rem;
}

.promo-price strong{
  display:block;
  color:var(--red);
  font-size:2.55rem;
  line-height:1;
  font-weight:950;
}

.promo a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  min-height:58px;
  margin-right:20px;
  border-radius:999px;
  color:#fff;
  background:#de3037;
  font-weight:950;
  box-shadow:none;
}

.promo a:hover{
  background:#c72029;
}

.gallery-section{
  padding:34px 0 32px;
  background:#fff;
}

.gallery-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}

.gallery-head h2::after{
  content:"";
  display:block;
  width:38px;
  height:4px;
  margin-top:8px;
  border-radius:999px;
  background:var(--red);
}

.gallery-head a{
  display:flex;
  align-items:center;
  gap:10px;
  color:#1d2228;
  font-size:.82rem;
  font-weight:800;
}

.gallery-head img{
  width:24px;
  height:24px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}

.gallery-grid img{
  width:100%;
  aspect-ratio:1;
  object-fit:cover;
  border-radius:8px;
}

.reservation-wrap{
  padding:10px 0 30px;
  background:#fff;
}

.reservation-grid{
  display:grid;
  grid-template-columns:1.1fr .68fr .9fr;
  gap:20px;
  align-items:stretch;
  padding:24px;
  border-radius:11px;
  background:#f7f5f1;
}

.reservation-form{
  padding-right:24px;
  border-right:1px solid #d8cfc7;
}

.reservation-form h2,
.contact-box h2{
  margin:0 0 17px;
  color:#15191e;
  font-size:1.38rem;
  font-weight:950;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.form-grid label{
  position:relative;
  margin:0;
}

.form-grid input{
  width:100%;
  height:42px;
  padding:0 40px 0 14px;
  border:1px solid #ddd4cc;
  border-radius:8px;
  background:#fff;
  color:#1d2228;
  outline:none;
  font-size:.86rem;
}

.form-grid input:focus{
  border-color:var(--red);
  box-shadow:0 0 0 3px rgba(222,48,55,.1);
}

.form-grid input[type="date"]{
  color:#6b7280;
  cursor:pointer;
}

.form-grid input[type="date"]:valid{
  color:#1d2228;
}

.form-grid input[type="date"]::-webkit-calendar-picker-indicator{
  position:absolute;
  right:0;
  width:42px;
  height:100%;
  opacity:0;
  cursor:pointer;
}

.form-grid label img{
  position:absolute;
  right:12px;
  top:50%;
  width:18px;
  height:18px;
  object-fit:contain;
  transform:translateY(-50%);
  pointer-events:none;
}

.reservation-form button{
  width:100%;
  margin-top:16px;
}

.contact-box p{
  display:grid;
  grid-template-columns:24px 1fr;
  gap:10px;
  margin:0 0 11px;
  color:#2f353c;
  font-size:.86rem;
  line-height:1.4;
}

.contact-box p img{
  width:18px;
  height:18px;
  object-fit:contain;
}

.map-card iframe{
  width:100%;
  height:100%;
  min-height:184px;
  border:0;
  border-radius:8px;
}

.footer{
  color:#fff;
  padding:35px 0 24px;
  background:
    radial-gradient(circle at 0 0,rgba(222,48,55,.16),transparent 35%),
    linear-gradient(120deg,#11151a,#1a1e23);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .6fr .8fr 1.1fr;
  gap:58px;
}

.footer-brand img{
  width:210px;
  margin-bottom:13px;
}

.footer p,
.footer a,
.footer span{
  color:#f0f0f0;
  font-size:.86rem;
  line-height:1.55;
}

.footer h3{
  margin:0 0 13px;
  font-size:.95rem;
  font-weight:950;
}

.footer a{
  display:block;
  margin-bottom:5px;
}

.socials{
  display:flex;
  gap:11px;
  margin-top:16px;
}

.socials a{
  display:grid;
  place-items:center;
  width:36px;
  height:36px;
  padding:0;
  border:1px solid rgba(255,255,255,.42);
  border-radius:50%;
}

.socials img{
  display:block;
  width:17px;
  height:17px;
  margin:auto;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  margin-top:28px;
}

.footer-bottom p{
  margin:0;
  font-size:.9rem;
}

.footer-bottom strong{
  color:var(--red);
}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .55s ease,transform .55s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:none;
}

.delay-1{transition-delay:.08s}
.delay-2{transition-delay:.16s}

.menu-lightbox{
  position:fixed;
  inset:0;
  z-index:90;
  display:grid;
  place-items:center;
  padding:24px;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
}

.menu-lightbox.is-open{
  opacity:1;
  pointer-events:auto;
}

.lightbox-backdrop{
  position:absolute;
  inset:0;
  background:rgba(12,15,18,.78);
  backdrop-filter:blur(8px);
}

.lightbox-panel{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(260px,1.05fr) minmax(250px,.95fr);
  width:min(860px,100%);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  background:
    radial-gradient(circle at 100% 0,rgba(222,48,55,.2),transparent 35%),
    #fff;
  box-shadow:0 32px 90px rgba(0,0,0,.36);
  transform:scale(.96) translateY(12px);
  transition:transform .25s ease;
}

.menu-lightbox.is-open .lightbox-panel{
  transform:none;
}

.lightbox-panel>img{
  width:100%;
  height:430px;
  object-fit:cover;
}

.lightbox-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:40px;
}

.lightbox-copy span{
  width:max-content;
  margin-bottom:14px;
  padding:7px 12px;
  border-radius:999px;
  color:#fff;
  background:#de3037;
  font-size:.75rem;
  font-weight:950;
  text-transform:uppercase;
}

.lightbox-copy h2{
  margin:0;
  color:#15191e;
  font-size:2.35rem;
  line-height:1;
  font-weight:950;
}

.lightbox-copy p{
  margin:18px 0 22px;
  color:#4f5660;
  font-size:1rem;
  line-height:1.65;
}

.lightbox-copy strong{
  color:#de3037;
  font-size:1.35rem;
  font-weight:950;
}

.lightbox-close{
  position:absolute;
  top:16px;
  right:16px;
  z-index:3;
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  color:#fff;
  background:#15191e;
  font-size:2rem;
  line-height:1;
  cursor:pointer;
}

@media(max-width:1080px){
  .nav{
    grid-template-columns:1fr auto;
  }
  .menu-toggle{display:block}
  .nav-cta{display:none}
  .nav-menu{
    position:absolute;
    left:16px;
    right:16px;
    top:84px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:12px 22px;
    border:1px solid var(--line);
    border-radius:14px;
    background:#fff;
    box-shadow:var(--shadow);
  }
  .nav-menu.is-open{display:flex}
  .nav-menu a{padding:12px 0}
  .hero-grid,
  .delivery,
  .reservation-grid,
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
  .hero-media>img{
    position:relative;
    inset:auto;
    width:100%;
    height:390px;
    border-radius:24px;
    transform:none;
  }
  .hero-badges{grid-template-columns:1fr}
  .menu-grid,
  .gallery-grid{grid-template-columns:repeat(3,1fr)}
  .rodizio{grid-template-columns:1fr 1fr}
  .rodizio-photo{grid-row:1 / span 2}
  .rodizio-price{
    grid-column:2;
    width:230px;
    max-width:230px;
    justify-self:start;
    margin:0 24px 24px 0;
  }
  .promo{
    grid-template-columns:230px 1fr 180px;
    gap:18px;
    padding-right:18px;
  }
  .promo>img{
    grid-row:1 / span 2;
    align-self:stretch;
    height:100%;
    min-height:150px;
    object-fit:contain;
    background:#11161b;
  }
  .promo-price{justify-self:start}
  .promo a{
    grid-column:2 / 4;
    justify-self:start;
    min-width:220px;
    margin:0 0 18px;
  }
  .delivery-art{grid-column:1 / -1;height:260px}
  .reservation-form{border-right:0;padding-right:0}
  .map-card{grid-column:1 / -1}
}

@media(max-width:720px){
  .brand img{width:190px}
  .hero{
    background:linear-gradient(180deg,#fffaf1,#fff);
  }
  .hero-grid,
  .delivery,
  .rodizio,
  .promo,
  .reservation-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }
  .hero-copy{padding:10px 0 0}
  .hero h1{font-size:2.35rem}
  .hero-media{min-height:auto;margin-top:30px}
  .hero-media::before,
  .hero-media::after{display:none}
  .hero-media>img{
    height:300px;
    border-radius:20px;
    transform:none;
  }
  .category-tabs{
    grid-template-columns:repeat(2,1fr);
    border-radius:16px;
  }
  .category-tabs button{
    min-height:58px;
    padding:9px 8px;
    border-radius:14px;
    font-size:.9rem;
  }
  .category-tabs button.active{background:#de3037}
  .category-tabs img{
    width:30px;
    height:30px;
    flex-basis:30px;
  }
  .tab-indicator{display:none}
  .rodizio{margin-top:24px}
  .rodizio-copy{padding:24px}
  .rodizio-photo{grid-row:auto}
  .rodizio-price{
    grid-column:auto;
    width:230px;
    max-width:230px;
    min-height:150px;
    justify-self:center;
    margin:0 auto 24px;
    padding:18px 20px;
  }
  .rodizio-price strong{font-size:3.35rem}
  .rodizio-price sup{font-size:1.35rem}
  .menu-grid,
  .form-grid,
  .steps{
    grid-template-columns:1fr;
  }
  .gallery-grid{
    grid-template-columns:repeat(3,1fr);
    gap:8px;
  }
  .gallery-grid img{border-radius:6px}
  .menu-card>img{height:190px}
  .section-head,
  .gallery-head{
    align-items:flex-start;
    flex-direction:column;
  }
  .delivery{padding:24px}
  .delivery-copy{padding:0}
  .delivery-art{height:220px;padding-right:0}
  .steps{
    grid-template-columns:repeat(3,1fr);
    gap:8px;
  }
  .steps article:not(:last-child)::after{display:none}
  .step-icon{
    width:58px;
    height:58px;
    margin-bottom:12px;
  }
  .step-icon img{
    width:24px;
    height:24px;
  }
  .steps b{
    width:22px;
    height:22px;
    margin-bottom:8px;
    font-size:.75rem;
  }
  .steps h3{
    margin-bottom:6px;
    font-size:.86rem;
  }
  .steps p{
    max-width:92px;
    font-size:.67rem;
    line-height:1.35;
  }
  .promo{
    grid-template-columns:126px 1fr;
    gap:12px;
    min-height:0;
    padding:12px;
  }
  .promo>img{
    grid-row:1 / span 2;
    width:126px;
    height:96px;
    min-height:0;
    border-radius:8px;
    object-fit:contain;
    background:#11161b;
  }
  .promo h2{
    margin:0;
    font-size:1.45rem;
    line-height:1.08;
  }
  .promo-price{
    grid-column:1 / -1;
    margin:4px 0 0;
  }
  .promo-price strong{font-size:1.9rem}
  .promo a{
    grid-column:1 / -1;
    min-height:46px;
    min-width:0;
    margin:0;
    font-size:.9rem;
  }
  .footer-bottom{
    justify-content:center;
    text-align:center;
  }
  .footer-bottom span{display:none}
  .lightbox-panel{grid-template-columns:1fr}
  .lightbox-panel>img{height:260px}
  .lightbox-copy{padding:28px}
  .lightbox-copy h2{font-size:1.9rem}
}
