:root{
  --green:#006b2d;
  --dark-green:#003f1c;
  --text:#111;
  --muted:#666;
  --line:#b7b7b7;
  --soft:#f2f2f2;
  --radius:20px;
  --max:1440px
}

*{
  box-sizing:border-box
}

html{
  scroll-behavior:smooth
}

body{
  margin:0;
  color:var(--text);
  font-family:"Montserrat",Arial,sans-serif;
  background:#fff;
  font-size:16px;
  line-height:100%
}

img{
  display:block;
  max-width:100%
}

a{
  color:inherit;
  text-decoration:none;
  font-size: 16px;
}

.container{
  width:min(calc(100% - 48px),var(--max));
  margin-inline:auto
}

.narrow{
  max-width:1160px
}

h1,h2,h3,p{
  margin-top:0
}

h1{
  font-size:clamp(2.25rem,4vw,4rem);
  line-height:1.1;
  margin-bottom:24px
}

h2{
  text-align:center;
  font-size:2.25rem;
  margin-bottom:52px
}

h3{
  line-height:1.2
}

.section{
  padding:110px 0
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:150px;
  padding:14px 30px;
  border:0;
  border-radius:999px;
  background:var(--green);
  color:white;
  cursor:pointer;
  transition:.2s;
  font-size: 16px;
}
  
  .button:hover{
    background:var(--dark-green);
    transform:translateY(-1px)
  }

.site-header{
  position:absolute;
  z-index:5;
  top:38px;
  width:100%
}

.nav-shell{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:64px;
  padding:0 46px;
  border-radius:999px;
  background:#fff
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}

.brand--small{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  font-size:.88rem
}

.brand-mark{
  width:58px;
  height:20px;
  display:inline-block;
  background:linear-gradient(24deg,transparent 42%,var(--green) 43% 58%,transparent 59%);
  border-radius:60%
}

.desktop-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.desktop-nav a {
    padding: 13px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

nav ul li{
    list-style: none;
    display: inline-block;
    background: #fff;
    border-radius: 30px;
    padding: 13px 25px;
    margin: 5px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: black;
    cursor: pointer;
    position: relative;
    z-index: 10000;
    transition: all 0.3s ease;
}

.desktop-nav a:hover {
    background:var(--dark-green);
    color: #fff;
}

.mobile-menu{
  display:none
}

.hero{
  position:relative;
  min-height:700px;
  display:flex;
  align-items:center;
  background:url("assets/desktop-000.jpg") center 48%/cover no-repeat;
  color:white
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.67),rgba(0,0,0,.14) 65%,rgba(0,0,0,.25))
}

.hero-content{
  position:relative;
  padding-top:90px
}

.hero-content p{
  max-width:720px;
  font-size:1rem;
  margin-bottom:32px
}

.mobile-only{
  display:none
}

.stats{
  background:linear-gradient(105deg,#003a1a,#008c38);
  color:#fff;
  padding:58px 0
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  text-align:center
}

.stats-grid div{
  display:grid;
  gap:7px
}

.stats-grid strong{
  font-size:4rem;
  line-height:1
}

.stats-grid span{
  font-size:.9rem
}


.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px
}

.service-card{
  padding:34px 34px 30px;
}

.service-card .icon{
  width:70px;
  height:70px;
  border:1.5px solid #111;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:2rem;
  margin-bottom:30px
}

.service-card h3{
  font-size:1.25rem;
  margin-bottom:18px
}

.service-card p{
  font-size:.94rem;
  margin-bottom:0
}

.projects{
  padding-top:50px
}

.project-list details{
  border-bottom:1px solid #777
}

.project-list summary{
  list-style:none;
  cursor:pointer;
  padding:20px 0;
  font-weight:600;
  font-size:1.12rem;
  display:flex;
  justify-content:space-between;
  align-items:center
}

.project-list summary::-webkit-details-marker{
  display:none
}

.project-list summary:after{
  content:"+";
  font-size:1.8rem;
  font-weight:300
}

.project-list details[open] summary:after{
  content:"−"
}

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

.about-grid>img{
  width:100%;
  height:430px;
  object-fit:cover;
  border-radius:20px
}

.about-grid p{
  font-size:.95rem;
  margin-bottom:18px
}

.contact{
  padding-bottom:120px
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:46px
}

.contact-info>img{
  width:100%;
  height:230px;
  object-fit:cover
}

.contact-info dl{
  margin:24px 0 0
}

.contact-info dl div{
  display:grid;
  grid-template-columns:135px 1fr;
  margin-bottom:14px
}

.contact-info dt{
  font-weight:600
}

.contact-info dd{
  margin:0
}

.contact-form h3{
  font-size:1.45rem;
  max-width:460px;
  margin-bottom:25px
}

.contact-form label{
  position:relative;
  display:block;
  border-bottom:1px solid #888;
  margin-bottom:18px
}

.contact-form label:after{
  content:"*";
  position:absolute;
  right:0;
  bottom:8px;
  color:#c30000
}
  
.contact-form span{
  position:absolute;
  left:0;
  bottom:8px;
  color:#999;
  font-size:.85rem
}

.contact-form input{
  width:100%;
  padding:8px 18px 8px 0px;
  border:0;
  outline:0;
  background:transparent;
  font:inherit
}

.contact-form .button{
  float:right;
  margin-top:10px;
  min-width:210px
}

.site-footer{
  background:#f0f0f0;
  padding:80px 0
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr .7fr 1fr;
  gap:80px;
  align-items:center;
  max-width: 1160px;
}

.brand--footer{
  display: flex;
  flex-direction: column;
  align-items:flex-start;
  gap: 10px;
}

.brand--footer>span:last-child{
  display:grid;
  gap:4px
}

.brand--footer b{
  color:var(--green);
  font-size:1.7rem;
  letter-spacing:.35em
}

.brand--footer strong{
  font-size:2rem
}

.brand-mark--large{
  width:170px;
  height:70px
}

.site-footer nav,.footer-contact{
  display:grid;
  gap:16px;
  font-size:.9rem
}

.footer-contact b{
  margin-bottom:5px
}




.project-list details {
  overflow: hidden;
}

.project-list details > .gallery-slider {
  padding-top: 8px;
  padding-bottom: 70px;
}

  /* =========================================
   DESKTOP SLIDER
========================================= */

.gallery-slider {
  position: relative;
}

.gallery-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;

  opacity: 0.82;
  filter: saturate(0.88);
}

.gallery-slider .swiper-slide-visible img {
  opacity: 1;
  filter: saturate(1);
}


/* =========================================
   CUSTOM CENTERED SWIPER ARROWS
========================================= */

.gallery-slider .swiper-button-prev,
.gallery-slider .swiper-button-next {
  position: absolute;
  top: auto;
  bottom: 16px;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 62px;
  height: 38px;
  margin: 0;

  border: 1px solid #000;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.gallery-slider .swiper-button-prev {
  left: 50%;
  right: auto;

  transform: translateX(-100%);

  border-radius: 999px 0 0 999px;
  background: #fff;
  color: #000;
}

.gallery-slider .swiper-button-next {
  left: 50%;
  right: auto;

  transform: translateX(0);
  margin-left: -1px;

  border-radius: 0 999px 999px 0;
  background: #fff;
  color: #000;
}

.gallery-slider .swiper-button-prev::after,
.gallery-slider .swiper-button-next::after {
  content: "";
  width: 18px;
  height: 18px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.gallery-slider .swiper-button-prev::after {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5'/%3E%3Cpath d='M12 19l-7-7 7-7'/%3E%3C/svg%3E");
}

.gallery-slider .swiper-button-next::after {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E");
}

.gallery-slider .swiper-button-prev:hover,
.gallery-slider .swiper-button-next:hover {
  background: #000;
  color: #fff;
}

.gallery-slider .swiper-button-prev:hover::after {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5'/%3E%3Cpath d='M12 19l-7-7 7-7'/%3E%3C/svg%3E");
}

.gallery-slider .swiper-button-next:hover::after {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E");
}

/* =========================================
   GALLERY IMAGE EFFECTS
========================================= */

.gallery-slider .swiper-slide {
  overflow: hidden;
  border-radius: 18px;
}

.gallery-slider .swiper-slide img {
  width: 100%;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    filter 0.45s ease;
}



/* Mobile header logo must never appear on desktop */
.mobile-header-brand {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .gallery-slider .swiper-slide:hover img {
    transform: scale(1.035);
  }
}

/* =========================================
   SAFE SCROLL REVEAL
========================================= */

/* Content stays visible if JavaScript fails. */
.reveal,
.reveal-item {
  opacity: 1;
  transform: none;
}

/* Hide elements only after JS adds .js to <html>. */
.js .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.js .reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.js .reveal.is-visible,
.js .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .services-grid .reveal-item:nth-child(1) { transition-delay: 0.05s; }
.js .services-grid .reveal-item:nth-child(2) { transition-delay: 0.10s; }
.js .services-grid .reveal-item:nth-child(3) { transition-delay: 0.15s; }
.js .services-grid .reveal-item:nth-child(4) { transition-delay: 0.20s; }
.js .services-grid .reveal-item:nth-child(5) { transition-delay: 0.25s; }
.js .services-grid .reveal-item:nth-child(6) { transition-delay: 0.30s; }

/* =========================================
   SERVICE CARDS
========================================= */

.service-card {
  position: relative;
  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(0, 107, 45, 0.06),
      transparent 55%
    );

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: var(--dark-green);
  box-shadow: 0 18px 45px rgba(0, 63, 28, 0.12);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .icon {
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.service-card:hover .icon {
  transform: rotate(-4deg) scale(1.06);
  background-color: var(--green);
  border-color: var(--green);
  color: #fff;
}

.stats{
  margin-top: 150px;
  margin-bottom: 50px;
}

.Footer a{
  text-decoration: none;
  
}

.Footer a:hover{
  text-decoration: underline;
  text-decoration-color: #003a1a;
}

.service{
  border: 2px solid #063e15;
  border-radius: 20px;
}

.footer-logo{
  width:308px; 
  height: 71px;
}

.footer-name{
  text-align: left; 
  font-weight: 600; 
  font-size: 41px;
}

@media(max-width:800px){
  .footer-logo{
    width: 147px;
  }
  
  .footer-name{
    font-size: 20px;
    margin-left: 30px;
  }

  body{
    font-size:14px
  }
  
  .container{
    width:min(calc(100% - 40px),680px)
  }
  
  .section{
    padding:62px 0
  }
  
  h1{
    font-size:2.25rem
  }
  
  h2{
    font-size:2rem;
    margin-bottom:32px
  }
  
  .site-header{
    position:fixed;
    top:0;
    background:#fff;
    height:62px;
    display:flex;
    align-items:center;
    box-shadow:0 2px 9px rgba(0,0,0,.08)
  }
  
  .nav-shell{
    width:100%;
    min-height:auto;
    padding:0;
    border-radius:0;
    justify-content:space-between
  }
  
  .brand--small{
    position:static;
    transform:none;
    font-size:.75rem
  }
  
  .brand-mark{
    width:45px
  }
  
  .desktop-nav{
    display:none
  }
  
  .mobile-menu{
    display:block;
    position:relative;
  }
  
  .mobile-menu summary{
    list-style:none;
    width:27px;
    height:24px;
    display:grid;
    align-content:space-between;
    cursor:pointer;
  }
  
  .mobile-menu summary::-webkit-details-marker{
    display:none;
  }
  
  .mobile-menu summary span{
    height:1px;
    background:#111
  }
  
  .mobile-menu nav{
    position:absolute;
    right:0;
    top:39px;
    display:grid;
    min-width:190px;
    padding:16px;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.12)
  }
  
  .mobile-menu nav a{
    padding:10px
  }
  
  .hero{
    min-height:480px;
    margin-top:62px;
    background-position:center
  }
  
  .hero-overlay{
    background:rgba(0,0,0,.45)
  }
  
  .hero-content{
    text-align:center;
    padding-top:0
  }
  
  .hero-content p{
    font-size:.92rem;
    line-height:1.25;
    max-width:540px;
    margin-inline:auto
  }
  
  .mobile-only{
    display:inline
  }
  
  .stats{
    background:#fff;
    color:#000;
    padding:62px 0
  }
  
  .stats-grid{
    grid-template-columns:1fr;
    gap:34px
  }
  
  .stats-grid strong{
    font-size:3.2rem
  }
  
  .stats-grid span{
    font-size:.8rem
  }
  
  .services-grid{
    grid-template-columns:1fr;
    gap:14px
  }
  
  .service-card{
    text-align:center;
    min-height:0;
    padding:18px 24px;
  }
  
  .service-card .icon{
    display:none
  }
  
  .service-card h3{
    font-size:1rem;
    margin-bottom:8px
  }
  
  .service-card p{
    font-size:.84rem;
    line-height:1.15
  }
  
  .projects{
    padding-top:30px
  }
  
  .project-list summary{
    padding:11px 0;
    font-size:.9rem
  }
  
  .project-list summary:after{
    font-size:1.4rem
  }
  .about-grid{
    grid-template-columns:1fr;
    gap:16px;
    text-align:center
  }
  
  .about-grid>img{
    height:220px;
    border-radius:18px
  }
  
  .about-grid p{
    font-size:.84rem;
    line-height:1.18;
    margin-bottom:11px
  }
  
  .contact-grid{
    display:flex;
    flex-direction:column-reverse;
    gap:24px
  }
  
  .contact-form h3{
    text-align:left;
    font-size:1rem
  }
  
  .contact-form .button{
    float:none;
    width:70%;
    margin:18px auto 0;
    display:flex
  }
  
  .contact-info{
    text-align:center
  }
  
  .contact-info>img{
    width:calc(100% + 40px);
    max-width:none;
    margin-left:-20px;
    height:180px
  }
  
  .contact-info dl div{
    display:block;
    margin-bottom:14px
  }
  
  .contact-info dt{
    margin-bottom:4px
  }
  
  .site-footer{
    background:#fff;
    padding:30px 0 45px;
    border-top:1px solid #777
  }
  
  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
    gap:22px
  }
  
  .brand--footer{
    justify-content:center;
    align-items:center
  }
  
  .brand-mark--large{
    display:none
  }
  
  .brand--footer b{
    font-size:1.05rem
  }
  
  .brand--footer strong{
    font-size:1.2rem
  }
  
  .site-footer nav,.footer-contact{
    gap:8px
  }
  
  .footer-contact b{
    display:none
  }
}

@media(max-width:800px){
  .mobile-menu>summary{
    position:relative;z-index:24
  }

   .service-card:hover {
    transform: none;
    box-shadow: none;
  }

  .menu-backdrop{
    display:none
  }

  .menu-panel{
    display:none
  }

  .mobile-menu[open] .menu-backdrop{
    display:block;
    position:fixed;
    inset:0;
    z-index:20;
    background:rgba(0,0,0,.42)
  }

  .mobile-menu[open] .menu-panel{
    display:block;
    position:fixed;
    z-index:23;
    top:0;
    left:0;
    width:min(82vw,310px);
    height:240px;
    background:#fff;
    box-shadow:8px 0 24px rgba(0,0,0,.16)
  }

  .menu-panel-header{
    height:62px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 15px 0 18px;
    border-bottom:1px solid #eee
  }

  .brand--menu{
    font-size:.67rem;
    gap:5px;
    white-space:nowrap
  }

  .brand--menu .brand-mark{
    width:34px;
    height:15px
  }

  .menu-close{
    width:30px;
    height:30px;
    padding:0;
    border:0;
    background:transparent;
    color:#222;
    font:300 26px/1 Arial,sans-serif;
    cursor:pointer
  }

  .mobile-menu .menu-panel nav{
    position:static;
    display:grid;
    min-width:0;
    padding:18px 0 20px;
    background:#fff;
    box-shadow:none;
    text-align:center
  }

  .mobile-menu .menu-panel nav a{
    padding:10px 20px;
    font-size:.78rem;
    font-weight:600
  }

.gallery-slider {
    padding-bottom: 35px;
}


.gallery-slider .swiper-slide img {
    height: 230px;
    object-fit: cover;
    border-radius: 18px;
}


.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
    display: none;
}

.stats{
  margin-top: 50px;
  margin-bottom: 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu {
  position: relative;
  display: block;
  width: 100%;
  height: 62px;
}

.mobile-menu > .brand {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 25;

  display: flex;
  align-items: center;

  transform: translateY(-50%);
}

.mobile-menu > summary {
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  z-index: 25;

  display: grid;
  align-content: space-between;

  width: 27px;
  height: 24px;
  margin: 0;
  padding: 0;

  transform: translateY(-50%);
  cursor: pointer;
}

.mobile-menu > summary span {
  display: block;
  width: 27px;
  height: 1px;
  background: #111;
}

.mobile-menu > .brand img {
  display: block;
  width: 68px;
  height: 16px;
  margin-right: 10px;
}
}

/* =========================================
   ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================
   MOBILE HEADER / MENU LOGO — FINAL FIX
========================================= */

@media (max-width: 800px) {
  .mobile-menu {
    position: relative;
    display: block;
    width: 100%;
    height: 62px;
  }

  /* Logo and text shown in the closed mobile header */
  .mobile-header-brand {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 25;

    display: flex;
    align-items: center;
    gap: 10px;

    transform: translateY(-50%);
  }

  .mobile-brand-logo {
    display: block;
    flex: 0 0 auto;
    width: 68px;
    height: 16px;
    margin: 0;
    object-fit: contain;
  }

  .mobile-brand-text {
    display: inline-block;
    color: #111;
    font-size: 0.75rem;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-brand-accent {
    color: #063e15;
  }

  /* Burger button on the right */
  .mobile-menu > summary {
    position: absolute;
    top: 50%;
    right: 0;
    left: auto;
    z-index: 25;

    display: grid;
    align-content: space-between;

    width: 27px;
    height: 24px;
    margin: 0;
    padding: 0;

    transform: translateY(-50%);
    cursor: pointer;
  }

  .mobile-menu > summary span {
    display: block;
    width: 27px;
    height: 1px;
    background: #111;
  }

  /* Logo and text inside the opened menu panel */
  .brand--menu {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .brand--menu .mobile-brand-text {
    font-size: 0.75rem;
  }
}

/* =========================================
   MOBILE HEADER LOGO — RESTORED
   The opened menu panel remains unchanged.
========================================= */

@media (max-width: 800px) {
  .nav-shell {
    position: relative;
  }

  .nav-shell > .mobile-header-brand {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 25;

    display: flex;
    align-items: center;
    gap: 10px;

    transform: translateY(-50%);
  }

  .nav-shell > .mobile-header-brand .mobile-brand-logo {
    display: block;
    width: 68px;
    height: 16px;
    margin: 0;
    object-fit: contain;
  }

  .nav-shell > .mobile-header-brand .mobile-brand-text {
    display: inline-block;
    color: #111;
    font-size: 0.75rem;
    line-height: 1;
    white-space: nowrap;
  }

  .nav-shell > .mobile-header-brand .mobile-brand-accent {
    color: #063e15;
  }

  .mobile-menu[open] > summary {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}



/* =========================================
   MOBILE HEADER LAYOUT FIX
========================================= */
@media (max-width:800px){

  /* Логотип по центру шапки */
  .nav-shell{
    position:relative;
  }

  .nav-shell > .mobile-header-brand{
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    z-index:22; /* ниже открытого меню */
  }

  /* При открытом меню панель должна быть выше логотипа */
  .mobile-menu[open] .menu-panel{
    z-index:30;
  }

  .mobile-menu[open] .menu-backdrop{
    z-index:29;
  }

  /* Бургер всегда сверху справа */
  .mobile-menu > summary{
    z-index:31;
  }
}


@media (max-width: 800px) {
  .mobile-header-brand {
    display: flex;
  }
}