@font-face {
  font-family: 'Titania Modern';
  src: url('../fonts/Titania-Modern.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #980001;
  --color-accent: #ff6047;
  --color-dark: #1f1f1f;
  --color-light: #f5f5f5;
  --color-footer: #8c0d0d;
  --color-crimson: #8b0003;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Noto Sans', Arial, sans-serif;
  color: var(--color-dark);
  background: #fff;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
}

.footer__phone {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}

a[href^='tel:']:not(.footer__phone),
a[href^='mailto:'] {
  color: var(--color-primary);
}

a[href^='tel:']:not(.footer__phone):visited,
a[href^='mailto:']:visited {
  color: var(--color-primary);
}

a.footer__phone,
a.footer__phone:visited {
  color: #fff;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 32px;
  border: 0;
  background: none;
  cursor: pointer;
  margin-left: auto;
  position: relative;
  z-index: 30;
}

.nav-toggle__bar {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 2px;
  background: var(--color-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle__bar:nth-of-type(1) {
  transform: translateY(-8px);
}

.nav-toggle__bar:nth-of-type(2) {
  transform: translateY(0);
}

.nav-toggle__bar:nth-of-type(3) {
  transform: translateY(8px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 180px;
  position: relative;
  z-index: 25;
}

.menu-logo {
  display: none;
}

.menu-logo img {
  width: 160px;
  height: auto;
}

header.is-menu-open .nav-toggle {
  gap: 0;
}

header.is-menu-open .nav-toggle__bar {
  margin: 0;
}

header.is-menu-open .nav-toggle__bar:nth-of-type(1) {
  transform: rotate(45deg);
}

header.is-menu-open .nav-toggle__bar:nth-of-type(2) {
  opacity: 0;
}

header.is-menu-open .nav-toggle__bar:nth-of-type(3) {
  transform: rotate(-45deg);
}

.brand img {
  width: 165px;
  height: auto;
}

.brand strong {
  font-family: 'Titania Modern', 'Noto Sans', Arial, sans-serif;
}

.header__nav {
  display: flex;
  justify-content: center;
  flex: 1;
}

.nav-links {
  display: flex;
  gap: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Titania Modern', 'Noto Sans', Arial, sans-serif;
  font-size: 1.05rem;
}

.nav-links a {
  color: var(--color-dark);
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--color-accent);
}

.header__contacts {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header__phones {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: right;
  font-family: 'Titania Modern', 'Noto Sans', Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.1;
}

.header__phone-line {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.1rem;
}

.header__phones a[href^='tel:'] {
  color: var(--color-primary);
  font-weight: 700;
}

.header__phones a[href^='tel:']:visited {
  color: var(--color-primary);
}

.header__phone-location {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  font-weight: 700;
  text-decoration: none;
  text-align: right;
}

.header__phone-location:visited {
  color: var(--color-dark);
}

.header__phone-location:hover,
.header__phone-location:focus-visible {
  text-decoration: underline;
}

@media (min-width: 900px) {
  .header__phones {
    gap: 0.12rem;
    font-size: 0.72rem;
    line-height: 1;
  }

  .header__phone-location {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }
}

.header__extras {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.language-switch {
  display: flex;
  gap: 0.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  font-family: 'Titania Modern', 'Noto Sans', Arial, sans-serif;
}

.language-switch a {
  color: var(--color-dark);
  opacity: 0.3;
  font-weight: 700;
}

.language-switch a.is-active {
  opacity: 1;
  color: var(--color-dark);
}

.hero {
  position: relative;
  min-height: 70vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero__content {
  position: relative;
  max-width: 760px;
  z-index: 1;
}

.hero__title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-family: 'Titania Modern', 'Noto Sans', Arial, sans-serif;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.hero__subtitle {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  margin: 0;
}

.service-band__headline {
  margin: 0;
  font-family: 'Titania Modern', 'Noto Sans', Arial, sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: #fff;
  white-space: normal;
}

@media (min-width: 992px) {
  .service-band__headline {
    white-space: nowrap;
  }
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-primary,
a.btn-primary,
.location-card__menu,
.location-card__menu:visited {
  background: var(--color-crimson);
  color: #fff;
  border-color: var(--color-crimson);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.section {
  padding: 2.8rem 1.5rem;
}

.section--alt {
  background: var(--color-light);
}

.section--promos {
  background: #f9f5f2;
}

.promo-grid {
  display: grid;
  gap: 1.75rem;
}

.promo-card {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 15px 35px rgba(31, 31, 31, 0.08);
  overflow: hidden;
}

.promo-card__media {
  flex: 1 1 45%;
  min-width: 240px;
  display: flex;
}

.promo-card__media picture {
  width: 100%;
  display: block;
}

.promo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-card__body {
  flex: 1 1 55%;
  padding: 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.promo-card__body p {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.55;
}

.promo-card__body h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  color: var(--color-primary);
}

.promo-card__notes,
.promo-card__body p.promo-card__notes {
  margin: auto 0 0;
  padding: 0;
  color: #a2968e;
  font-size: 0.8rem;
  line-height: 1.5;
  font-style: normal;
}

@media (max-width: 720px) {
  .promo-card {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .promo-card__media {
    flex: none;
    min-width: 100%;
    min-height: auto;
  }

  .promo-card__body {
    padding: 1.1rem 1.5rem 0.8rem;
    width: 100%;
    flex: none;
  }

  .promo-card__media img {
    height: auto;
  }

  .promo-card__notes {
    margin: 0.25rem 0 0;
    align-self: flex-start;
  }
}

.service-band {
  background: var(--color-footer);
  color: #fff;
  padding: 2.8rem 1.5rem;
}

.service-band__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-band__text h2 {
  color: #fff;
  margin: 0 0 1rem;
}

.service-band__text p {
  margin: 0.5rem 0;
  font-size: 1.05rem;
}

.service-band__text a {
  color: #fff;
  text-decoration: underline;
}

.service-band__phones {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.service-band__phones li {
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.service-band__locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
  color: var(--color-primary);
  font-family: 'Titania Modern', 'Noto Sans', Arial, sans-serif;
}

.section p {
  margin-bottom: 1rem;
}

.section--about {
  background: #fff;
}

.about__intro {
  margin-bottom: 1.5rem;
}

.about__intro p:last-child {
  margin-bottom: 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.delivery-list li {
  margin-bottom: 1rem;
}

.delivery-list strong {
  font-weight: 600;
  display: block;
}

.delivery-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.delivery-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: none;
}

.delivery-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.delivery-operators {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.delivery-operator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.delivery-operator .delivery-link {
  flex-shrink: 0;
}

.delivery-operator-label {
  font-weight: 600;
  color: var(--color-primary);
}

.delivery-operator-label:hover,
.delivery-operator-label:focus-visible {
  text-decoration: underline;
}

.contact-social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

[hidden] { display: none !important; }

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0 1.5rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  box-sizing: border-box;
}

.booking-form__row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.booking-form__row--full {
  grid-column: 1 / -1;
}

.booking-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark);
}

.booking-form__hint {
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.2rem;
}

.booking-form__input--invalid {
  border-color: var(--color-accent) !important;
}

.booking-form__error-msg {
  display: none;
  font-size: 0.75rem;
  color: var(--color-accent);
  margin-top: 0.2rem;
}

.booking-form__label span {
  color: var(--color-primary);
}

.booking-form__input {
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #ddd;
  border-radius: 0.5rem;
  font-family: 'Noto Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-dark);
  background: #fff;
  transition: border-color 0.2s;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.booking-form__input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.booking-form__input:invalid,
.booking-form__input--empty {
  border-color: var(--color-accent);
}

.booking-form__textarea {
  resize: vertical;
  min-height: 100px;
}

input[type="time"].booking-form__input,
input[type="date"].booking-form__input {
  min-height: 2.9rem;
  text-align: left;
}

select.booking-form__input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231f1f1f' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}


.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: 'Noto Sans', Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: transparent;
  color: var(--color-dark);
  border: 2px solid #ccc;
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--color-dark);
}

.booking-confirm {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  margin: 1.75rem 0 1.5rem;
}

.booking-confirm__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: 'Titania Modern', 'Noto Sans', Arial, sans-serif;
  margin-bottom: 1.25rem;
}

.booking-confirm__list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1.25rem;
}

.booking-confirm__list dt {
  font-weight: 600;
  font-size: 0.875rem;
  color: #888;
  white-space: nowrap;
}

.booking-confirm__list dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-dark);
}

.booking-confirm__note {
  font-size: 0.9rem;
  color: #444;
  padding: 0.75rem 1rem;
  background: #f0f7f0;
  border-left: 3px solid #4caf50;
  border-radius: 0.35rem;
  margin-bottom: 1.25rem;
}

.booking-confirm__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-confirm__actions .btn {
  width: 100%;
  box-sizing: border-box;
}

.booking-busy-warning {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  margin: 1.75rem 0 1.5rem;
}

.booking-busy-warning__icon {
  font-size: 2.5rem;
  margin: 0 0 0.5rem;
}

.booking-busy-warning__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: 'Titania Modern', 'Noto Sans', Arial, sans-serif;
  margin-bottom: 1rem;
}

.booking-busy-warning__text {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1rem;
}

.booking-busy-warning__phone {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
}

.booking-busy-warning__phone a {
  color: var(--color-primary);
  text-decoration: none;
}

.booking-busy-warning__confirm-note {
  font-size: 0.875rem;
  color: #7a4500;
  padding: 0.75rem 1rem;
  background: #fff8e1;
  border-left: 3px solid #f59e0b;
  border-radius: 0.35rem;
  margin-bottom: 1.25rem;
}

.booking-busy-warning__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-busy-warning__actions .btn {
  width: 100%;
  box-sizing: border-box;
}

.booking-thanks {
  text-align: center;
  padding: 2.5rem 1rem;
}

.booking-thanks__icon {
  font-size: 3rem;
  color: #4caf50;
  margin: 0 0 0.5rem;
}

.booking-thanks__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: 'Titania Modern', 'Noto Sans', Arial, sans-serif;
  margin-bottom: 0.5rem;
}

.booking-thanks__text {
  color: #555;
}

.booking-error {
  text-align: center;
  padding: 2.5rem 1rem;
}

.booking-error__icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin: 0 0 0.5rem;
}

.booking-error__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: 'Titania Modern', 'Noto Sans', Arial, sans-serif;
  margin-bottom: 0.5rem;
}

.booking-error__text {
  color: #555;
  margin-bottom: 1.25rem;
}

.booking-form__required-note {
  font-size: 0.8rem;
  color: #888;
  margin: 0 0 0.75rem;
}

.booking-form__submit {
  align-self: flex-start;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Noto Sans', Arial, sans-serif;
  border: none;
}

@media (max-width: 600px) {
  .booking-form {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .booking-form__row--full {
    grid-column: 1;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.location-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.location-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.location-card h3 {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 1.2;
  font-weight: 700;
}

.location-card--accent {
}

.location-card__address a {
  color: var(--color-dark);
  font-weight: 600;
}

.location-card__photo {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 0.85rem;
  margin-bottom: 0.6rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.location-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.location-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-weight: 600;
}

.location-card__quick-links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.location-card__delivery {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.location-card__actions a:not(.location-card__menu) {
  color: var(--color-accent);
}

.location-card__menu,
.location-card__menu:link,
.location-card__menu:visited {
  flex: 1;
  min-width: 0;
  text-align: center;
  color: #fff;
}

.location-card__links {
  display: flex;
  gap: 0.5rem;
}

.gallery {
  padding: 3rem 0;
  background: #0b0b0b;
  color: #fff;
}

.gallery__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.gallery__item {
  position: relative;
  margin: 0;
}

.gallery__instagram-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 4 / 5;
  background: #000;
}

.gallery__instagram-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery__instagram-link:hover img,
.gallery__instagram-link:focus-visible img {
  transform: scale(1.05);
}

.gallery__heading {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  font-family: 'Titania Modern', 'Noto Sans', Arial, sans-serif;
}

.gallery__heading--subtle {
  font-size: 1rem;
  font-weight: 400;
}

@media (max-width: 1440px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 420px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.icon-link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--color-crimson);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.icon-link:visited {
  color: #fff;
  background: var(--color-crimson);
}

.icon-link--facebook,
.icon-link--instagram {
  background: var(--color-crimson);
  color: #fff;
}

.icon-link:hover,
.icon-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.icon-link svg,
.icon-link img {
  width: 18px;
  height: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.highlight {
  font-size: 1.32rem;
  font-weight: 600;
}

.contact-block {
  border-left: 4px solid var(--color-accent);
  padding-left: 1rem;
  margin: 1.5rem 0;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.social-links a {
  font-weight: 600;
}

footer {
  background: var(--color-footer);
  color: #fff;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  text-align: center;
}

.footer__location {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.footer__email {
  text-align: center;
  padding: 0 1.5rem 2rem;
}

.footer__email a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer__email a:hover,
.footer__email a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.footer__icon {
  display: inline-flex;
  text-decoration: none;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.footer__icon svg,
.footer__icon img {
  width: 20px;
  height: 26px;
}

.footer__location-name {
  display: inline-block;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
}

.footer__location-name:hover,
.footer__location-name:focus-visible,
.footer__icon:focus-visible {
  text-decoration: underline;
}

.footer__address {
  display: inline-block;
  margin: 0;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
}

.footer__address:hover,
.footer__address:focus-visible {
  text-decoration: underline;
}

.footer__phone {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer__phone:visited {
  color: #fff;
}

.footer__hours {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.qr-layout {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.qr-layout h2 {
  color: var(--color-dark);
}

.notice {
  background: rgba(255, 96, 71, 0.1);
  border: 1px solid rgba(255, 96, 71, 0.2);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin: 2rem 0;
}

@media (max-width: 900px) {
  header {
    background: #111;
    border-bottom: none;
  }

  .header__inner {
    max-width: none;
    width: 100%;
    padding: 0.75rem 1rem;
    position: relative;
    justify-content: flex-end;
  }

  .brand {
    display: none;
  }

  .menu-logo {
    display: block;
    margin: 0 auto 1.25rem;
  }

  .nav-toggle__bar {
    background: #fff;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    gap: 1.4rem;
    padding: 1.75rem 1rem 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 20;
  }

  header.is-menu-open .header__menu {
    display: flex;
  }

  .header__nav {
    width: 100%;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.25rem;
    font-size: 1.25rem;
  }

  .header__contacts {
    flex-direction: column;
    gap: 1rem;
  }

  .header__phones {
    text-align: center;
  }

  .header__phone-line {
    align-items: center;
  }

  .header__extras {
    justify-content: center;
  }
}
.service-band__text--centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.booking-note {
  margin: 0.35rem 0 0;
  font-weight: 600;
  color: var(--color-crimson);
}
