:root {
  --bg: #17120f;
  --panel: #221a15;
  --text: #f4e8da;
  --muted: #c5b29f;
  --gold: #cda56b;
  --line: #3a2d24;
  --font-body: "Inter", system-ui, sans-serif;
  --font-display: "Cinzel", Georgia, serif;
}

html,
body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0.8rem;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.site-header {
  position: relative;
  z-index: 50;
  background: rgba(5, 4, 3, 0.96);
  border-bottom: 1px solid rgba(205, 165, 107, 0.28);
  backdrop-filter: blur(6px);
  margin: 0;
  padding: 0.8rem 0;
}

.header-inner {
  display: flex;
  padding: 0.2rem 0;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fffaf3;
}

.brand-logo {
  height: 62px;
  width: auto;
  border-radius: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav a {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fffaf3;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #f2c879;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}
.desktop-book-btn { white-space: nowrap; }
.mobile-menu { display: none; }
.mobile-menu-toggle { list-style: none; }
.mobile-menu-toggle::-webkit-details-marker { display: none; }
.mobile-menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 214, 128, 0.52);
  border-radius: 0.75rem;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(255, 236, 178, 0.09), rgba(255, 236, 178, 0.02)),
    rgba(5, 4, 3, 0.42);
  box-shadow: 0 0 0 1px rgba(255, 236, 178, 0.08) inset;
}
.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: #fffaf3;
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.mobile-menu-panel {
  position: relative;
  overflow: hidden;
  margin-top: 0.6rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 205, 115, 0.58);
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 197, 91, 0.34), rgba(255, 255, 255, 0.04) 20%, rgba(205, 165, 107, 0.28) 58%, rgba(255, 218, 130, 0.42)),
    #050403;
  box-shadow:
    0 0 0 1px rgba(255, 236, 178, 0.16) inset,
    0 24px 60px rgba(0, 0, 0, 0.34);
  transform-origin: top;
}
.mobile-menu-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.94), rgba(17, 10, 5, 0.76), rgba(5, 4, 3, 0.92)),
    url("/static/images/banner.png") center / cover no-repeat;
  opacity: 0.26;
  pointer-events: none;
}
.mobile-menu-panel > * {
  position: relative;
  z-index: 1;
}
.mobile-menu-panel a {
  display: block;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(205, 165, 107, 0.28);
  border-radius: 0.7rem;
  background: rgba(255, 250, 243, 0.05);
  text-decoration: none;
  color: #fff0d2;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.mobile-menu-panel a + a {
  margin-top: 0.45rem;
}
.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible {
  color: #fff2c3;
  border-color: rgba(255, 216, 132, 0.72);
  background: linear-gradient(180deg, rgba(205, 165, 107, 0.2), rgba(255, 250, 243, 0.06));
  outline: none;
}
.mobile-menu-panel a[aria-current="page"] {
  color: #ffd982;
  border-color: rgba(255, 216, 132, 0.72);
  background: linear-gradient(180deg, rgba(205, 165, 107, 0.24), rgba(255, 250, 243, 0.07));
  box-shadow: 0 0 20px rgba(205, 125, 37, 0.18) inset;
}
.mobile-branch-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 214, 128, 0.32);
}
.mobile-branch-switch a {
  margin-top: 0;
  padding: 0.7rem 0.6rem;
  text-align: center;
  color: #d8bea0;
  font-family: var(--font-body);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}
.mobile-book-btn {
  width: 100%;
  margin-top: 0.75rem;
  text-align: center;
}
.mobile-menu[open] .mobile-menu-toggle {
  border-color: rgba(255, 216, 132, 0.78);
  background: linear-gradient(180deg, rgba(205, 165, 107, 0.22), rgba(255, 250, 243, 0.06));
}
.mobile-menu[open] .mobile-menu-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-menu[open] .mobile-menu-toggle span:nth-child(2) { opacity: 0; }
.mobile-menu[open] .mobile-menu-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (prefers-reduced-motion: no-preference) {
  .mobile-menu.is-opening .mobile-menu-panel {
    animation: menu-panel-enter 0.32s ease both;
  }

  .mobile-menu.is-closing .mobile-menu-panel {
    animation: menu-panel-exit 0.24s ease both;
  }
}

@keyframes menu-panel-enter {
  from {
    opacity: 0;
    transform: translateY(-0.45rem) scaleY(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes menu-panel-exit {
  from {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
  to {
    opacity: 0;
    transform: translateY(-0.35rem) scaleY(0.98);
  }
}

.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 12, 9, 0.85), rgba(16, 12, 9, 0.45));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 4rem 0;
}

.hero-home {
  min-height: 0;
  display: block;
  overflow: hidden;
  background: #050403;
}

.hero-home picture {
  display: block;
}

.hero-banner {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 1774 / 887;
  object-fit: contain;
  border-radius: 0;
}

.hero-home-panel {
  margin-top: -0.1rem;
  background: linear-gradient(180deg, rgba(5, 4, 3, 0.98), rgba(23, 18, 15, 0.95));
  border-top: 1px solid rgba(205, 165, 107, 0.4);
}

.hero-home .hero-content {
  max-width: 760px;
  padding: 1.65rem 0 2rem;
}

.hero-home .hero-content p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.home-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  background: linear-gradient(180deg, rgba(5, 4, 3, 0.76), rgba(5, 4, 3, 0.2));
  border-bottom: 1px solid rgba(205, 165, 107, 0.22);
  backdrop-filter: none;
}

.home-page .desktop-book-btn {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

h1,
h2,
h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.title-location {
  display: block;
  margin-top: 0.2rem;
  color: #d8bea0;
  font-family: var(--font-body);
  font-size: 0.45em;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.section,
.page-head {
  padding: 2.3rem 0;
}

.section-soft {
  background: linear-gradient(180deg, #1b1410, #15110d);
}

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

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

.branches-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.branch-showcase {
  border-radius: 1rem;
  overflow: hidden;
}

.branch-carousel {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.branch-carousel-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.branch-carousel img {
  flex: 0 0 100%;
  width: 100%;
  height: clamp(220px, 32vw, 340px);
  object-fit: cover;
  border-radius: 0;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(248, 241, 231, 0.55);
  background: rgba(23, 18, 15, 0.6);
  color: #f8f1e7;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.carousel-arrow-prev { left: 0.7rem; }
.carousel-arrow-next { right: 0.7rem; }
.carousel-arrow:hover { background: rgba(23, 18, 15, 0.78); }
.carousel-arrow:focus-visible {
  outline: 2px solid #cda56b;
  outline-offset: 2px;
}

.branch-map-wrap {
  margin-top: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  overflow: hidden;
}

.branch-map-wrap iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.branch-panel-map {
  position: relative;
  margin-top: 1rem;
  border-color: rgba(255, 214, 128, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 236, 178, 0.08), rgba(255, 236, 178, 0.02)),
    rgba(13, 8, 5, 0.74);
  box-shadow:
    0 0 0 1px rgba(255, 236, 178, 0.08) inset,
    0 16px 32px rgba(0, 0, 0, 0.18);
}

.branch-panel-map iframe {
  height: clamp(190px, 26vw, 260px);
  filter: sepia(0.12) saturate(0.82) contrast(0.94);
}

.branch-map-link {
  display: block;
  padding: 0.75rem 0.9rem;
  border-top: 1px solid rgba(255, 214, 128, 0.26);
  color: #ffd982;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.branch-map-link:hover,
.branch-map-link:focus-visible {
  color: #fff2c3;
  background: rgba(255, 236, 178, 0.06);
  outline: none;
}

.branch-board {
  margin-bottom: 2.2rem;
}

.branch-board-inner {
  text-align: center;
}

.branch-showcase-grid,
.branch-detail-layout,
.branch-reviews-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.branch-showcase-grid,
.branch-reviews-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.branch-detail-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: stretch;
}

.branch-panel,
.reviews-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 209, 123, 0.38);
  border-radius: 0.9rem;
  background:
    linear-gradient(180deg, rgba(255, 236, 178, 0.08), rgba(255, 236, 178, 0.02)),
    rgba(13, 8, 5, 0.74);
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.16) inset;
  text-align: left;
}

.branch-panel-media {
  border-bottom: 1px solid rgba(205, 165, 107, 0.28);
}

.branch-panel-heading {
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border-bottom: 1px solid rgba(205, 165, 107, 0.28);
  text-align: left;
}

.branch-panel-heading h3 {
  margin-bottom: 0;
}

.branch-panel-media img {
  height: clamp(250px, 34vw, 390px);
}

.branch-panel-content,
.branch-contact-panel {
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.branch-panel h2,
.branch-panel h3,
.reviews-panel h3 {
  color: #ffd982;
}

.branch-facts {
  display: grid;
  gap: 0.75rem;
  margin: 0.9rem 0 0;
}

.branch-facts div {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(205, 165, 107, 0.22);
}

.branch-facts dt {
  color: #d8bea0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.branch-facts dd {
  margin: 0.18rem 0 0;
  color: #fff0d2;
}

.branch-map-quiet {
  border-color: rgba(205, 165, 107, 0.32);
}

.branch-reviews-section {
  scroll-margin-top: 6rem;
  padding-top: 0.6rem;
  text-align: center;
}

.branch-reviews-section h2 {
  color: #fff2c3;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  text-shadow: 0 0 18px rgba(255, 178, 58, 0.26);
}

.reviews-panel {
  padding: clamp(1rem, 2.5vw, 1.25rem);
}

.reviews-panel-single {
  width: min(780px, 100%);
  margin: 1.5rem auto 0;
}

.reviews-panel-head {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.reviews-panel-head h3 {
  margin-bottom: 0;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
}

.card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
}

.branch-card-image {
  aspect-ratio: 1 / 1;
}

.branch-card-title {
  padding: 1rem 1rem 0.85rem;
  margin-bottom: 0;
}

.branch-card-meta {
  margin-top: 0.25rem;
  color: var(--muted);
}

.card-body {
  padding: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 0.65rem;
  padding: 0.62rem 0.95rem;
  text-decoration: none;
  border: 1px solid var(--gold);
}

.btn-primary {
  background: var(--gold);
  color: #1b140f;
  font-weight: 700;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
}

.price {
  color: var(--gold);
  font-weight: 700;
}

.pricing-section {
  position: relative;
  padding-top: clamp(2rem, 5vw, 4rem);
}

.pricing-board {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(255, 205, 115, 0.58);
  border-radius: 1.1rem;
  background:
    linear-gradient(135deg, rgba(255, 197, 91, 0.38), rgba(255, 255, 255, 0.04) 19%, rgba(205, 165, 107, 0.32) 52%, rgba(255, 218, 130, 0.5)),
    #050403;
  box-shadow:
    0 0 0 1px rgba(255, 236, 178, 0.16) inset,
    0 28px 80px rgba(0, 0, 0, 0.36);
}

.pricing-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.92), rgba(17, 10, 5, 0.72), rgba(5, 4, 3, 0.9)),
    url("/static/images/banner.png") center / cover no-repeat;
  opacity: 0.28;
  filter: saturate(1.15);
}

.pricing-board::after {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border: 1px solid rgba(255, 214, 128, 0.5);
  border-radius: 0.8rem;
  pointer-events: none;
}

.pricing-board-inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.4rem, 4vw, 3.4rem);
  border-radius: 0.75rem;
  background:
    radial-gradient(circle at 18% 0%, rgba(250, 183, 76, 0.28), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(255, 227, 156, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(15, 9, 5, 0.86), rgba(18, 12, 8, 0.92));
  text-align: center;
}

.pricing-kicker {
  margin: 0 0 0.5rem;
  color: #ffe4a3;
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 2vw, 1rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.pricing-board h1 {
  margin-bottom: 0.35rem;
  color: #fff2c3;
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  text-shadow:
    0 2px 0 #6f4018,
    0 0 22px rgba(255, 178, 58, 0.48);
}

.pricing-lead {
  max-width: 620px;
  margin: 0 auto;
  color: #e9d5b2;
  font-size: clamp(0.98rem, 2vw, 1.1rem);
}

.promo-strip {
  width: min(720px, 100%);
  margin: 1.35rem auto 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(255, 222, 143, 0.82);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(108, 56, 13, 0.88), rgba(205, 145, 49, 0.34), rgba(108, 56, 13, 0.88)),
    rgba(5, 4, 3, 0.72);
  color: #fff1c8;
  box-shadow:
    0 0 0 1px rgba(255, 246, 204, 0.12) inset,
    0 0 34px rgba(255, 172, 54, 0.28),
    0 0 30px rgba(205, 125, 37, 0.26) inset;
}

.promo-label {
  color: #1b140f;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe4a3, #cda56b);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo-highlight,
.promo-price {
  color: #ffd36f;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.8vw, 1.38rem);
  letter-spacing: 0.09em;
  text-shadow:
    0 0 10px rgba(255, 222, 143, 0.54),
    0 0 22px rgba(255, 152, 32, 0.36);
}

.promo-price {
  padding: 0.18rem 0.5rem;
  border-radius: 0.55rem;
  background: rgba(255, 221, 127, 0.12);
  border: 1px solid rgba(255, 221, 127, 0.44);
}

.price-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.price-group {
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border: 1px solid rgba(255, 209, 123, 0.38);
  border-radius: 0.9rem;
  background:
    linear-gradient(180deg, rgba(255, 236, 178, 0.08), rgba(255, 236, 178, 0.02)),
    rgba(13, 8, 5, 0.72);
}

.price-group h2 {
  margin-bottom: 1rem;
  color: #ffd982;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
}

.price-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.price-option {
  min-height: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem;
  border: 1px solid rgba(205, 165, 107, 0.34);
  border-radius: 0.75rem;
  background: rgba(255, 250, 243, 0.06);
}

.price-option span {
  color: #d8bea0;
  font-size: 0.9rem;
}

.price-option strong {
  color: #fff0be;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  line-height: 1;
  text-shadow: 0 0 16px rgba(255, 176, 58, 0.28);
}

.price-option.is-featured {
  border-color: rgba(255, 216, 132, 0.72);
  background: linear-gradient(180deg, rgba(205, 165, 107, 0.22), rgba(255, 250, 243, 0.06));
  box-shadow: 0 0 24px rgba(205, 125, 37, 0.2) inset;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 0.7rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.muted {
  color: var(--muted);
}

.review-quote {
  margin: 0.9rem 0 0;
  padding: 0.9rem;
  border-left: 3px solid var(--gold);
  background: rgba(248, 241, 231, 0.06);
  border-radius: 0.6rem;
}

.review-quote p {
  margin: 0;
}

.review-quote footer {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background: rgba(5, 4, 3, 0.42);
  color: rgba(244, 232, 218, 0.72);
  border-top: 1px solid rgba(205, 165, 107, 0.22);
  margin-top: 2.5rem;
  padding: 0.8rem 0;
}

.booking-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}

.booking-modal.is-open {
  display: block;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 7, 5, 0.76);
  backdrop-filter: blur(4px);
}

.booking-modal-panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(92vw, 720px);
  margin: 10vh auto 0;
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid rgba(255, 205, 115, 0.58);
  border-radius: 1.1rem;
  background:
    linear-gradient(135deg, rgba(255, 197, 91, 0.34), rgba(255, 255, 255, 0.04) 20%, rgba(205, 165, 107, 0.28) 58%, rgba(255, 218, 130, 0.42)),
    #050403;
  color: #fff0d2;
  box-shadow:
    0 0 0 1px rgba(255, 236, 178, 0.16) inset,
    0 28px 80px rgba(0, 0, 0, 0.42);
  text-align: center;
}

.booking-modal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.92), rgba(17, 10, 5, 0.72), rgba(5, 4, 3, 0.9)),
    url("/static/images/banner.png") center / cover no-repeat;
  opacity: 0.24;
  pointer-events: none;
}

.booking-modal-panel > * {
  position: relative;
  z-index: 1;
}

.booking-modal-panel h2 {
  margin-bottom: 0.4rem;
  color: #fff2c3;
  font-size: clamp(1.7rem, 5vw, 3rem);
  text-shadow:
    0 2px 0 #6f4018,
    0 0 22px rgba(255, 178, 58, 0.42);
}

.booking-modal-lead {
  max-width: 520px;
  margin: 0 auto;
  color: #e9d5b2;
}

.booking-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 222, 143, 0.44);
  border-radius: 999px;
  background: rgba(13, 8, 5, 0.64);
  color: #fff0d2;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.booking-modal-actions {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.booking-branch-choice {
  min-height: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(205, 165, 107, 0.38);
  border-radius: 0.8rem;
  background:
    linear-gradient(180deg, rgba(255, 236, 178, 0.08), rgba(255, 236, 178, 0.02)),
    rgba(13, 8, 5, 0.74);
  color: #fff0d2;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-branch-choice:hover,
.booking-branch-choice:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 216, 132, 0.76);
  box-shadow: 0 0 24px rgba(205, 125, 37, 0.22) inset;
}

.booking-branch-choice span {
  color: #d8bea0;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-branch-choice strong {
  color: #fff0be;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.1;
}

.booking-branch-choice small {
  color: #ffd982;
  font-weight: 700;
}

.booking-branch-choice.is-featured {
  border-color: rgba(255, 216, 132, 0.72);
  background: linear-gradient(180deg, rgba(205, 165, 107, 0.22), rgba(255, 250, 243, 0.06));
}

.footer-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  line-height: 1.45;
  text-align: center;
}

.footer-line span:not(:last-child)::after {
  content: "·";
  margin-left: 0.75rem;
  color: rgba(205, 165, 107, 0.58);
}

.footer-brand {
  color: #f5dca5;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-line a {
  color: rgba(244, 232, 218, 0.82);
  text-decoration: none;
}

.footer-line a:hover {
  color: #f2c879;
}

@media (max-width: 900px) {
  .home-page .site-header {
    position: relative;
    background: rgba(5, 4, 3, 0.96);
    backdrop-filter: blur(6px);
  }
  .nav { display: none; }
  .desktop-book-btn { display: none; }
  .header-inner { flex-wrap: nowrap; align-items: center; }
  .mobile-menu { display: block; margin-left: auto; }
  .mobile-menu[open] .mobile-menu-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.35rem);
    width: 100%;
    z-index: 60;
  }
  .branches-grid { grid-template-columns: 1fr; }
  .branch-showcase-grid,
  .branch-detail-layout,
  .branch-reviews-grid {
    grid-template-columns: 1fr;
  }
  .price-groups { grid-template-columns: 1fr; }
  .booking-modal-actions { grid-template-columns: 1fr; }
  .promo-strip {
    border-radius: 0.85rem;
  }
}

@media (max-width: 520px) {
  .pricing-board {
    padding: 0.6rem;
    border-radius: 0.9rem;
  }
  .pricing-board-inner {
    padding: 1.35rem 0.9rem;
  }
  .price-options {
    grid-template-columns: 1fr;
  }
  .price-option {
    min-height: 4.9rem;
  }
  .reviews-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .branch-panel-media img {
    height: 240px;
  }
  .booking-modal-panel {
    width: min(94vw, 720px);
    margin-top: 5vh;
    padding: 1rem;
  }
  .booking-branch-choice {
    min-height: 6.6rem;
  }
}
