@media (width <= 1380px) {
  body.menu-is-open {
    overflow: hidden;
  }

  .header {
    z-index: 80;
  }

  .header::after {
    content: "";
    background: rgba(27, 21, 13, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: fixed;
    inset: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 81;
  }

  .header.menu-open::after {
    opacity: 1;
    visibility: visible;
  }

  .menu-button {
    z-index: 86;
    position: relative;
    font-size: 0;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .menu-button svg {
    display: none;
  }

  .menu-button::before {
    content: "☰";
    font-size: 25px;
    line-height: 1;
  }

  .header.menu-open .menu-button {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff8ec;
  }

  .header.menu-open .menu-button::before {
    content: "×";
    font-size: 34px;
    font-weight: 300;
    line-height: 0.8;
  }

  .header .nav {
    background: linear-gradient(180deg, #fffaf1 0%, #f4ecdf 100%);
    border-bottom: 0;
    border-left: 1px solid rgba(213, 183, 134, 0.5);
    box-shadow: -28px 0 70px rgba(23, 18, 12, 0.22);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    width: min(100vw, 460px);
    height: 100dvh;
    padding: 112px 32px 38px;
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(105%);
    transition: transform 0.36s ease, opacity 0.28s ease, visibility 0.28s ease;
    z-index: 84;
  }

  .header.menu-open .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .header .nav::before {
    content: "ΜΕΝΟΥ";
    color: var(--gold);
    border-bottom: 1px solid #d8c3a2;
    letter-spacing: 0;
    margin: 0 0 18px;
    padding: 0 0 18px;
    font-size: 12px;
    font-weight: 800;
  }

  .header .nav a {
    color: #46392b;
    border-bottom: 1px solid rgba(223, 207, 184, 0.75);
    padding: 17px 4px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
  }

  .header .nav a:hover,
  .header .nav a.active {
    color: var(--gold);
  }

  .header .nav .nav__estimate,
  .header .nav .nav__search {
    grid-column: auto;
    width: 100%;
    min-height: 52px;
    margin-top: 18px;
  }

  .header .nav .nav__search {
    border-color: #cbb692;
    background: #fffaf1;
  }

  .header .nav .nav__estimate {
    background: var(--gold);
    color: #fff8ec;
  }
}

@media (width <= 720px) {
  .header .nav {
    width: 100vw;
    padding: 104px 24px 34px;
  }

  .header .nav a {
    padding: 18px 2px;
    font-size: 21px;
  }

  .header .nav::before {
    margin-bottom: 14px;
  }
}

@media (width <= 420px) {
  .header .nav {
    padding: 96px 20px 30px;
  }

  .header .nav a {
    font-size: 19px;
  }
}

.phone-link {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.phone-link:hover,
.phone-link:focus-visible {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.top-strip .phone-link {
  display: inline-flex;
}

.footer div:not(.footer__brand, .socials, .payments) > p {
  flex-wrap: wrap;
}

.hero-stats--phones {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(680px, calc(100% + 78px));
}

.hero-stats--phones > div {
  min-width: 0;
  padding: 0;
}

.hero-stats--phones .phone-card-link {
  color: inherit;
  text-decoration: none;
  width: 100%;
  min-height: inherit;
  padding: 18px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.hero-stats--phones .phone-card-link:hover,
.hero-stats--phones .phone-card-link:focus-visible {
  background: rgba(175, 123, 44, 0.1);
  outline: none;
}

.hero-stats--phones strong {
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.05;
  white-space: nowrap;
}

.hero-stats--phones span {
  font-size: 10px;
}

.hero-stats--phones svg {
  flex: none;
}

.estimate-contact-grid {
  margin-top: 20px;
}

.estimate-mail-note {
  margin-top: 16px;
}

.estimate-mail-note a {
  color: var(--gold);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.estimate-honeypot {
  left: -9999px;
  top: auto;
}

.estimate-result {
  min-height: 100dvh;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.estimate-result--success h1 {
  color: #4f6a35;
}

.estimate-result--error h1 {
  color: #813c28;
}

@media (width <= 720px) {
  .hero-stats--phones {
    width: calc(100% - 18px);
    bottom: -52px;
  }

  .hero-stats--phones .phone-card-link {
    padding: 12px 3px;
  }

  .hero-stats--phones strong {
    font-size: clamp(11px, 2.8vw, 14px);
  }

  .hero-stats--phones span {
    font-size: 8px;
  }
}

@media (width <= 420px) {
  .hero-stats--phones strong {
    font-size: 10px;
  }

  .hero-stats--phones svg {
    width: 21px;
    height: 21px;
  }
}
