*, *::before, *::after { box-sizing: border-box; }
:root {
  --red: #cf1017;
  --red-dark: #97090f;
  --text: #1a1a1a;
  --gray: #5b5b5b;
  --border: #e2e2e2;
}
html { -webkit-text-size-adjust: 100%; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}
.wrap { max-width: 640px; margin: 0 auto; padding: 0 18px 56px; }

header { padding: 18px 0; border-bottom: 1px solid var(--border); }
.logo { margin: 0; line-height: 0; }
.logo {
  font-size: 34px; font-weight: 800; letter-spacing: -0.5px;
  color: var(--red); margin: 0; line-height: 1.1;
}

.carousel {
  display: flex; gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel figure {
  flex: 0 0 92%;
  scroll-snap-align: center;
  margin: 0;
}
.carousel img {
  width: 100%; height: auto;
  display: block;
  border-radius: 10px;
  background: #f2f2f2;
}

.carousel-wrap { position: relative; }
.cnav { display: none; }
@media (min-width: 560px) {
  .cnav {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; padding: 0;
    border: 0; border-radius: 50%;
    background: rgba(255, 255, 255, .92); color: var(--red);
    box-shadow: 0 1px 6px rgba(0, 0, 0, .28);
    cursor: pointer;
  }
  .cnav svg { width: 15px; height: 15px; fill: currentColor; }
  .cnav.prev { left: 10px; }
  .cnav.next { right: 10px; }
  .cnav[disabled] { opacity: .35; cursor: default; }
}
.dots { display: flex; justify-content: center; gap: 9px; margin-top: 18px; }
.dots button {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: background .2s;
}
.dots button.on { background: var(--red); }

@media (min-width: 560px) {
  .carousel figure { flex: 0 0 100%; }
  .carousel img { max-height: 480px; width: auto; max-width: 100%; margin: 0 auto; }
}
.tagline { margin: 6px 0 0; color: var(--gray); font-size: 15px; }
.logo.alt { margin-top: 16px; }

h2 { font-size: 20px; margin: 34px 0 12px; letter-spacing: -0.2px; }

.quick { display: none; }
@media (max-width: 559px) {
  .quick {
    display: flex; gap: 8px;
    margin-top: 16px;
  }
  .quick a {
    flex: 1 1 0;
    display: flex; align-items: center; justify-content: center;
    min-height: 52px;
    color: var(--red);
  }
  .quick a:active { opacity: .55; }
  .quick svg { width: 22px; height: 22px; display: block; fill: currentColor; }
}

.notice {
  margin-top: 22px;
  background: var(--red);
  border-radius: 10px;
  padding: 16px 18px;
}
.notice p {
  display: flex; gap: 12px; align-items: flex-start;
  margin: 0;
  color: #fff;
  font-size: 17px;
}
.notice strong { font-weight: 700; }
.notice .heading-icon {
  width: 20px; height: 20px; flex: 0 0 20px;
  margin-top: 3px;
  fill: currentColor;
}

.contacts { list-style: none; padding: 0; margin: 0; }
.contacts li { margin-bottom: 10px; }
.contacts a, .contacts .row {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none; color: inherit;
}
.contacts a:hover, .contacts a:focus { border-color: var(--red); background: #fff7f7; }
.icon { flex: 0 0 26px; width: 26px; height: 26px; }
.icon svg { width: 100%; height: 100%; display: block; fill: var(--red); }
.text { min-width: 0; }
.label { display: block; font-size: 13px; color: var(--gray); text-transform: uppercase; letter-spacing: .6px; }
.value { display: block; font-size: 18px; font-weight: 700; word-break: break-word; }

.hours { list-style: none; padding: 0; margin: 0 0 12px; }
.hours li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid var(--border);
}
.hours li:last-child { border-bottom: 0; }
.hours .day { color: var(--gray); }
.hours .time { font-weight: 700; text-align: right; }
.hours .closed { font-weight: 700; color: var(--gray); text-align: right; }
.note { margin: 0; font-size: 15px; color: var(--gray); }

address { font-style: normal; margin: 0 0 14px; }
address.shared {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 16px 0 14px; color: var(--gray); font-size: 15px;
}
.addr-icon {
  width: 15px; height: 15px; flex: 0 0 15px;
  fill: var(--red); margin-top: 4px;
}
.button {
  display: inline-flex; align-items: center; gap: 10px; background: var(--red); color: #fff;
  text-decoration: none; font-weight: 700;
  padding: 12px 20px; border-radius: 8px;
}
.button:hover, .button:focus { background: var(--red-dark); }

.button-icon { width: 18px; height: 18px; flex: 0 0 18px; fill: #fff; }

footer {
  margin-top: 44px; padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 14px; color: var(--gray);
}
footer a { color: var(--gray); }

@media (max-width: 380px) {
  .value { font-size: 16px; }
}
