.site-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin: 0;
  min-height: 64px;
  padding: 0 clamp(18px, 5vw, 88px);
  color: #fff8f1;
  background:
    linear-gradient(110deg, rgba(92, 55, 55, 0.98), rgba(54, 37, 34, 0.98));
  border-bottom: 1px solid rgba(255, 235, 216, 0.2);
  box-shadow: 0 14px 34px rgba(45, 27, 25, 0.22);
  backdrop-filter: blur(16px);
}

.site-header .brand-logo {
  color: #fff8f1;
  border-color: rgba(255, 244, 232, 0.5);
  background: rgba(255, 250, 242, 0.94);
}

.header-pages,
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-pages {
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
}

.header-actions {
  justify-content: flex-end;
  gap: 14px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 234, 216, 0.45);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 244, 232, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  background: rgba(255, 244, 232, 0.22);
  border-color: rgba(245, 234, 216, 0.72);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: clamp(14px, 5vw, 88px);
  display: grid;
  min-width: 210px;
  padding: 10px;
  border: 1px solid rgba(245, 234, 216, 0.2);
  border-radius: 18px;
  background: rgba(160, 126, 104, 0.88);
  box-shadow: 0 22px 52px rgba(91, 65, 50, 0.26);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header.is-menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-menu-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.mobile-menu-link:hover {
  color: #f9ead1;
  background: rgba(245, 234, 216, 0.1);
  transform: translateX(3px);
}

.header-link,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, color 180ms ease, text-shadow 180ms ease;
}

.header-link {
  position: relative;
  border: 0;
  background: transparent;
}

.header-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-header .header-cta {
  position: relative;
  overflow: hidden;
  min-height: 32px;
  padding: 0 16px;
  border: 1px solid rgba(255, 247, 236, 0.74);
  border-radius: 999px;
  color: #211916;
  background: linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(245, 234, 216, 0.9));
  box-shadow: 0 12px 28px rgba(26, 18, 14, 0.18);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.site-header .header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.48) 42%, transparent 72%);
  opacity: 0;
  transform: translateX(-55%);
  transition: transform 420ms ease, opacity 220ms ease;
  pointer-events: none;
}

.site-header .header-cta:hover {
  color: #211916;
  background: #fff7ec;
  border-color: #fff7ec;
  box-shadow: 0 18px 38px rgba(26, 18, 14, 0.24);
  transform: translateY(-2px);
}

.site-header .header-cta:hover::before {
  opacity: 1;
  transform: translateX(55%);
}

.site-header .header-cta:active {
  transform: translateY(-1px) scale(0.985);
  box-shadow: 0 10px 22px rgba(26, 18, 14, 0.2);
}

.header-link:hover {
  color: #f9ead1;
  transform: translateY(-2px);
  text-shadow: 0 0 18px rgba(245, 234, 216, 0.42);
}

.header-link:hover::after {
  opacity: 0.8;
  transform: scaleX(1);
}

.header-contact {
  border: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr;
    gap: 12px;
    min-height: 64px;
    padding: 0 14px;
  }

  .site-header .brand {
    min-width: 0;
  }

  .header-pages {
    display: none;
  }

  .header-actions {
    justify-content: flex-end;
    min-width: 0;
  }

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

  .header-link,
  .header-cta {
    min-height: 34px;
    font-size: 0.68rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: relative;
    grid-template-columns: auto 1fr;
    justify-items: stretch;
    gap: 8px;
    min-height: 64px;
    padding: 0 10px;
  }

  .site-header .brand {
    justify-self: start;
  }

  .header-actions {
    justify-content: flex-end;
    gap: 7px;
    min-width: 0;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    order: 3;
    width: auto;
  }

  .header-link,
  .header-cta {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 0.7rem;
  }

  .header-contact {
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-menu {
    left: 10px;
    right: 10px;
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .site-header .brand span:last-child {
    display: none;
  }

  .header-actions {
    gap: 4px;
  }

  .header-cta,
  .header-contact {
    padding-inline: 7px;
    font-size: 0.6rem;
  }

  .header-contact {
    max-width: 72px;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
  }
}

.site-footer {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(231, 188, 145, 0.24);
  color: #f7eee7;
  background:
    radial-gradient(circle at 12% 0%, rgba(153, 75, 84, 0.25), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(191, 136, 94, 0.16), transparent 27%),
    linear-gradient(145deg, #2c2020 0%, #211918 48%, #171211 100%);
  font-size: 0.94rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 197, 153, 0.72), transparent);
  transform: translateX(-50%);
}

.site-footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(62px, 7vw, 92px) 0 24px;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(150px, 0.72fr) minmax(235px, 1fr) minmax(220px, 0.95fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  padding-bottom: clamp(48px, 6vw, 72px);
}

.footer-brand-panel,
.footer-column {
  min-width: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fffaf5;
  text-decoration: none;
}

.footer-logo-wrap {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 245, 234, 0.19);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.footer-logo-wrap img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

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

.footer-brand strong {
  color: #fffaf5;
  font-size: 1.03rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.footer-brand small {
  color: #d9b792;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-description {
  max-width: 340px;
  margin: 24px 0 26px;
  color: rgba(247, 238, 231, 0.72);
  font-size: 0.94rem;
  line-height: 1.75;
}

.footer-book-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(240, 197, 153, 0.34);
  border-radius: 999px;
  color: #fff9f4;
  background: linear-gradient(135deg, rgba(118, 60, 68, 0.96), rgba(161, 91, 91, 0.92));
  box-shadow: 0 14px 34px rgba(7, 5, 5, 0.22);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.footer-book-link span {
  font-size: 1.05rem;
  transition: transform 180ms ease;
}

.footer-book-link:hover {
  border-color: rgba(255, 226, 195, 0.7);
  box-shadow: 0 18px 38px rgba(7, 5, 5, 0.3);
  transform: translateY(-2px);
}

.footer-book-link:hover span {
  transform: translateX(3px);
}

.footer-column h2 {
  margin: 4px 0 24px;
  color: #d9b792;
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-align: left;
  text-transform: uppercase;
}

.site-footer .footer-pages {
  display: block;
}

.footer-pages ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-pages a,
.site-footer-bottom a {
  color: rgba(255, 248, 241, 0.78);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-pages a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  font-size: 0.88rem;
  font-weight: 650;
}

.footer-pages a::before {
  content: "";
  width: 0;
  height: 1px;
  margin-right: 0;
  background: #d9b792;
  transition: width 180ms ease, margin-right 180ms ease;
}

.footer-pages a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-pages a:hover::before {
  width: 14px;
  margin-right: 8px;
}

.footer-visit address {
  display: grid;
  gap: 13px;
  margin: 0 0 26px;
  color: inherit;
  font-style: normal;
}

.footer-address-link,
.footer-phone-link {
  width: fit-content;
  color: rgba(255, 248, 241, 0.78);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.65;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-phone-link {
  color: #f2cfad;
}

.footer-address-link:hover,
.footer-phone-link:hover {
  color: #fff;
}

.footer-hours {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 245, 234, 0.12);
}

.footer-hours > div {
  display: grid;
  grid-template-columns: auto auto;
  gap: 16px;
  align-items: baseline;
  justify-content: space-between;
}

.footer-hours dt,
.footer-hours dd {
  margin: 0;
  font-size: 0.79rem;
  line-height: 1.5;
}

.footer-hours dt {
  color: rgba(255, 248, 241, 0.58);
  font-weight: 650;
  white-space: nowrap;
}

.footer-hours dd {
  color: #fff8f2;
  font-weight: 750;
  text-align: right;
  white-space: nowrap;
}

.footer-social-list {
  display: grid;
  gap: 12px;
}

.footer-social-link {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 62px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 245, 234, 0.12);
  border-radius: 17px;
  color: #fff;
  background: rgba(255, 250, 244, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-social-link:hover {
  border-color: rgba(255, 236, 217, 0.35);
  transform: translateY(-2px);
}

.footer-social-link.is-instagram:hover {
  background: linear-gradient(120deg, rgba(113, 55, 200, 0.32), rgba(214, 41, 118, 0.34), rgba(247, 119, 55, 0.25));
}

.footer-social-link.is-facebook:hover {
  background: linear-gradient(120deg, rgba(11, 87, 199, 0.32), rgba(24, 119, 242, 0.34), rgba(83, 166, 255, 0.22));
}

.footer-social-link > span:last-child {
  display: grid;
  gap: 3px;
}

.footer-social-link strong {
  color: #fffaf6;
  font-size: 0.83rem;
  font-weight: 800;
}

.footer-social-link small {
  color: rgba(255, 248, 241, 0.55);
  font-size: 0.7rem;
}

.footer-social-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  color: #fff;
}

.footer-instagram-icon {
  background: linear-gradient(135deg, #7137c8 0%, #d62976 52%, #f77737 100%);
}

.footer-instagram-icon::before {
  content: "";
  width: 17px;
  height: 17px;
  border: 1.8px solid currentColor;
  border-radius: 5px;
}

.footer-instagram-icon::after {
  content: "";
  position: absolute;
  top: 11px;
  right: 11px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -6px 6px 0 1.5px #d62976, -6px 6px 0 3px currentColor;
}

.footer-facebook-icon {
  align-items: end;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b57c7, #53a6ff);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 0.85;
  text-transform: lowercase;
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 245, 234, 0.12);
}

.site-footer-bottom p {
  margin: 0;
  color: rgba(255, 248, 241, 0.52);
  font-size: 0.76rem;
  font-weight: 600;
}

.site-footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  padding-right: 170px;
}

.site-footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  font-size: 0.75rem;
  font-weight: 700;
}

.site-footer-bottom a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.site-footer a:focus-visible {
  border-radius: 6px;
  outline: 2px solid #f0c599;
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-description {
    max-width: 420px;
  }
}

@media (max-width: 620px) {
  .site-footer-inner {
    width: min(100% - 32px, 1180px);
    padding-top: 52px;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-bottom: 44px;
  }

  .footer-brand-panel,
  .footer-column {
    padding-bottom: 4px;
  }

  .footer-column h2 {
    margin-bottom: 17px;
  }

  .footer-pages ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
  }

  .site-footer-bottom {
    display: grid;
    justify-items: start;
    gap: 10px;
    padding: 22px 0 28px;
  }

  .site-footer-bottom nav {
    justify-content: flex-start;
    padding-right: 0;
  }
}

@media (max-width: 390px) {
  .footer-pages ul {
    grid-template-columns: 1fr;
  }

  .footer-hours > div {
    grid-template-columns: 1fr;
    gap: 2px;
    justify-content: stretch;
  }

  .footer-hours dt {
    white-space: normal;
  }

  .footer-hours dd {
    text-align: left;
    white-space: normal;
  }
}
