:root {
  --pink: #eb1868;
  --pink-dark: #c41254;
  --pink-soft: #fff0f5;
  --pink-mid: #ffc5d6;
  --white: #ffffff;
  --bg: #ffffff;
  --text: #222222;
  --muted: #777777;
  --line: #f7d4e0;
  --whatsapp: #25d366;
  --shadow: 0 6px 20px rgba(235, 24, 104, 0.12);
  --radius: 12px;
  --max: 1200px;
  --header: 78px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: var(--pink-soft);
  color: var(--text);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: var(--pink); font-weight: 700; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  height: var(--header);
}
.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { display: flex; align-items: center; min-width: 0; flex-shrink: 0; }
.logo img { height: 56px; width: auto; display: block; }
.foot-logo { margin-bottom: 10px; display: inline-flex; }
.foot-logo img { height: 64px; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { font-weight: 600; font-size: 14px; color: #555; }
.nav a:hover, .nav a.active { color: var(--pink); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: 0.15s ease;
  white-space: nowrap;
}
.btn-pink, .btn-wine, .btn-gold {
  background: var(--pink);
  color: #fff;
}
.btn-pink:hover, .btn-wine:hover, .btn-gold:hover { background: var(--pink-dark); }
.btn-ghost {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); }
.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 13px 22px; font-size: 15px; }
.btn-light {
  background: rgba(255,255,255,0.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
}
.btn-light:hover { background: #fff; color: var(--pink); }

.hero {
  position: relative;
  background: #1a1014;
  padding: 0 0 36px;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 6s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 8, 14, 0.72) 0%, rgba(18, 8, 14, 0.28) 55%, rgba(18, 8, 14, 0.2) 100%),
    linear-gradient(180deg, rgba(18, 8, 14, 0.15) 0%, rgba(18, 8, 14, 0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 0 28px;
  color: #fff;
}
.hero .kicker {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 720px;
  margin-bottom: 14px;
  color: #fff;
}
.hero p.lead {
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  max-width: 540px;
  margin-bottom: 22px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-stats {
  display: flex;
  gap: 32px;
}
.hero-stats strong { color: #fff; font-size: 1.35rem; }
.hero-stats span { color: rgba(255,255,255,0.75); }
.hero-dots {
  position: absolute;
  right: 28px;
  bottom: 110px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
}
.hero-dots button.active {
  background: #fff;
  height: 22px;
  border-radius: 8px;
}
.hero-book {
  position: relative;
  z-index: 3;
}
.booking-card {
  position: relative;
  background: #fff;
  border: 0;
  border-radius: 22px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.9fr auto;
  gap: 10px;
  align-items: stretch;
  box-shadow: 0 18px 40px rgba(20, 10, 16, 0.22);
}
.pick {
  position: relative;
  background: #f7f4ef;
  border-radius: 14px;
  padding: 10px 14px 10px 16px;
  min-width: 0;
  border: 1px solid transparent;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.pick.open,
.pick:focus-within {
  background: #fff;
  border-color: #eadfd3;
  box-shadow: 0 0 0 3px rgba(235, 24, 104, 0.12);
}
.pick-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #8a7f79;
  margin-bottom: 2px;
}
.pick-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: inherit;
  min-height: 28px;
}
.pick-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pick-value.is-placeholder { color: #b0a59d; font-weight: 700; }
.pick-caret, .pick-cal {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #8a7f79;
}
.pick.open .pick-caret { transform: rotate(180deg); }
.pick-caret { transition: transform 0.15s ease; }
.pick-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid #efe8df;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(30, 16, 16, 0.16);
  z-index: 20;
  padding: 8px;
  max-height: 280px;
  overflow: auto;
}
.pick-search {
  width: 100%;
  border: 1px solid #efe8df;
  background: #faf8f4;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  margin-bottom: 6px;
}
.pick-search:focus { border-color: var(--pink); background: #fff; }
.pick-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
}
.pick-option:hover,
.pick-option.is-active { background: var(--pink-soft); color: var(--pink); }
.pick-empty {
  padding: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.book-go {
  min-width: 148px;
  height: 100%;
  min-height: 64px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 14px;
  padding: 0 22px;
}
.cal-pop {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: min(320px, 92vw);
  background: #fff;
  border: 1px solid #efe8df;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(30, 16, 16, 0.16);
  z-index: 21;
  padding: 14px;
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cal-head strong {
  font-size: 15px;
  font-weight: 800;
}
.cal-shift {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f7f4ef;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #222;
}
.cal-shift:hover { background: var(--pink-soft); color: var(--pink); }
.cal-shift svg { width: 16px; height: 16px; }
.cal-week, .cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.cal-week span {
  font-size: 11px;
  font-weight: 800;
  color: #9a9089;
  padding: 4px 0;
}
.cal-day {
  height: 36px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  color: var(--text);
}
.cal-day:hover:not(:disabled) { background: var(--pink-soft); color: var(--pink); }
.cal-day.is-today { box-shadow: inset 0 0 0 1.5px #eadfd3; }
.cal-day.is-on { background: var(--pink); color: #fff; }
.cal-day:disabled { color: #d4ccc6; cursor: default; }
.cal-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.cal-foot button {
  border: 0;
  background: transparent;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  padding: 6px 4px;
}
.kicker {
  display: inline-flex;
  width: fit-content;
  background: var(--pink-soft);
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.cats {
  padding: 22px 0 8px;
  background: #fff;
}
.cat-wrap {
  position: relative;
}
.cat-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 4px 44px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-tile {
  flex: 0 0 156px;
  text-align: center;
  scroll-snap-align: start;
}
.cat-photo {
  display: block;
  width: 156px;
  height: 156px;
  border-radius: 18px;
  overflow: hidden;
  background: #f6eee6;
}
.cat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.cat-tile:hover .cat-photo img { transform: scale(1.06); }
.cat-tile b {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #2c3344;
  line-height: 1.3;
}
.cat-tile.active b { color: var(--pink); }
.cat-tile.active .cat-photo { box-shadow: 0 0 0 2px var(--pink); }
.cat-nav {
  position: absolute;
  top: 62px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: #444;
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.cat-nav:hover { border-color: var(--pink); color: var(--pink); }
.cat-nav.prev { left: 0; }
.cat-nav.next { right: 0; }

.section { padding: 36px 0; }
.section.alt { background: var(--pink-soft); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}
.section-head h2 {
  font-size: 1.35rem;
  font-weight: 800;
}
.section-head p { color: var(--muted); font-size: 13px; margin-top: 2px; }
.link-more { color: var(--pink); font-weight: 700; font-size: 13px; }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: 0.2s ease;
}
.card:hover { border-color: var(--pink-mid); box-shadow: var(--shadow); }
.card-media {
  position: relative;
  aspect-ratio: 1 / 0.92;
  overflow: hidden;
  background: var(--pink-soft);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 6px;
}
.badge.gold, .badge.soft { background: #fff; color: var(--pink); }
.card-body { padding: 12px 12px 14px; }
.card-body h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  min-height: 38px;
}
.meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.stars {
  color: #f5a524;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.stars .count { color: var(--muted); font-weight: 700; }
.quote-chip {
  font-size: 12px;
  font-weight: 700;
  color: var(--pink);
}

.reels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.reel {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #1a1014;
  color: inherit;
  font: inherit;
  text-align: left;
}
.reel img,
.reel video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end start;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.45));
  color: #fff;
  padding: 14px;
  font-weight: 700;
  font-size: 13px;
}
.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--pink);
  display: grid;
  place-items: center;
  font-size: 16px;
}
.video-box {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 8, 0.92);
  z-index: 130;
  display: none;
  place-items: center;
  padding: 48px 20px 20px;
}
.video-box.open { display: grid; }
.video-frame {
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
.video-frame video,
.video-frame iframe,
.video-frame img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #000;
}
.video-x {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}
.video-x svg { width: 16px; height: 16px; display: block; }

.trust-sec { background: linear-gradient(180deg, #fff 0%, #fff6f6 100%); }
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-item {
  background: #fff;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 22px 16px 20px;
  text-align: center;
  transition: 0.2s ease;
}
.trust-item:hover { transform: translateY(-5px); box-shadow: 0 14px 28px rgba(0,0,0,0.08); }
.trust-ico {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.trust-ico svg {
  display: block;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.trust-item b { display: block; margin: 0 0 6px; font-size: 16px; }
.trust-item span { color: var(--muted); font-size: 13px; display: block; line-height: 1.4; }
.t-red { background: var(--pink-soft); border-color: var(--pink-mid); }
.t-red .trust-ico { background: var(--pink); color: #fff; }
.t-gold { background: #fff8e8; border-color: #ffe4a8; }
.t-gold .trust-ico { background: #f5b400; color: #fff; }
.t-green { background: #edfbf2; border-color: #b7ebc9; }
.t-green .trust-ico { background: #22a45a; color: #fff; }
.t-purple { background: #f4efff; border-color: #dccbff; }
.t-purple .trust-ico { background: #7b5cff; color: #fff; }

.about-band {
  background: var(--pink-soft);
  border: 1px solid var(--pink-mid);
  color: var(--text);
  border-radius: 16px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: center;
}
.about-band h2 { font-size: 1.4rem; margin-bottom: 8px; font-weight: 800; }
.about-band p { color: var(--muted); }
.about-points { display: grid; gap: 6px; margin-top: 14px; font-weight: 600; font-size: 14px; }
.gold-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.gold-box strong { font-size: 1.3rem; color: var(--pink); display: block; margin-bottom: 8px; }

.page-hero { background: #f7f4ef; padding: 22px 0 8px; border-bottom: 1px solid #efe8df; }
.crumbs { color: var(--muted); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.crumbs a:hover { color: var(--pink); }

.detail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 20px 0 48px;
}
.gallery {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  align-items: stretch;
}
.gallery-main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--pink-soft);
  min-height: 320px;
  aspect-ratio: 4 / 3.1;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gal-nav,
.gal-zoom,
.zoom-close {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
  aspect-ratio: 1 / 1;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: #222;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 8px 18px rgba(0,0,0,.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  flex: none;
  align-self: center;
  justify-self: center;
}
.gal-nav svg,
.gal-zoom svg,
.zoom-close svg {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}
.gal-nav {
  top: 50%;
  transform: translateY(-50%);
}
.gal-nav.prev { left: 12px; }
.gal-nav.next { right: 12px; }
.gal-nav:hover, .gal-zoom:hover, .zoom-close:hover { background: #fff; }
.gal-zoom {
  right: 12px;
  bottom: 12px;
}
.zoom-box {
  position: fixed;
  inset: 0;
  background: rgba(10,8,8,.92);
  z-index: 120;
  display: none;
  place-items: center;
  padding: 48px 72px;
}
.zoom-box.open { display: grid; }
.zoom-box img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
}
.zoom-box .gal-nav,
.zoom-box .zoom-close {
  position: absolute;
  width: 44px;
  height: 44px;
}
.zoom-close {
  top: 16px;
  right: 18px;
  z-index: 3;
}
.thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  max-height: 100%;
  overflow: auto;
}
.thumbs button {
  border: 2px solid transparent;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  width: 92px;
  height: 92px;
  flex-shrink: 0;
}
.thumbs button.active { border-color: var(--pink); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }

.detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  position: sticky;
  top: calc(var(--header) + 16px);
}
.code { color: var(--pink); font-weight: 700; letter-spacing: 0.06em; font-size: 12px; }
.detail-card h1 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 8px 0 8px;
}
.no-price {
  background: var(--pink-soft);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 14px 0;
}
.no-price strong { display: block; font-size: 15px; }
.no-price span { font-size: 13px; color: var(--muted); }
.actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.tiny { font-size: 12px; color: var(--muted); margin-top: 10px; text-align: center; }

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
}
.panel h2 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.list { padding-left: 18px; color: #444; }
.list li { margin: 7px 0; }

.footer {
  background: var(--pink-soft);
  color: var(--text);
  padding: 40px 0 18px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
}
.footer h4 { color: var(--pink); margin-bottom: 10px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.footer a, .footer p { color: #666; font-size: 14px; }
.footer a:hover { color: var(--pink); }
.footer ul { list-style: none; display: grid; gap: 7px; }
.copy {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
  z-index: 40;
  font-size: 26px;
}
.call-float {
  position: fixed;
  right: 16px;
  bottom: 80px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 40;
  font-size: 18px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 8, 10, 0.62);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 24px;
}
.modal.open { display: grid; }
.modal-card {
  width: min(440px, 100%);
  background: #fff;
  border-radius: 14px;
  padding: 22px;
}
.quote-box {
  position: relative;
  width: min(980px, 100%);
  padding: 0;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
  border-radius: 20px;
  min-height: 540px;
  box-shadow: 0 28px 70px rgba(20, 8, 12, 0.35);
}
.quote-x {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: #222;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}
.quote-x svg { width: 16px; height: 16px; display: block; }
.quote-visual {
  position: relative;
  min-height: 540px;
  background: #1a1014;
  overflow: hidden;
}
.quote-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.quote-visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,8,12,.08) 10%, rgba(20,8,12,.72) 100%);
  z-index: 1;
}
.qb {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset -6px -8px 12px rgba(0,0,0,.12), 0 10px 18px rgba(0,0,0,.12);
}
.qb1 { width: 54px; height: 54px; background: var(--pink); top: 28px; left: 28px; }
.qb2 { width: 34px; height: 34px; background: var(--pink-mid); top: 78px; left: 68px; }
.qb3 { width: 22px; height: 22px; background: #f4c56d; top: 36px; left: 92px; }
.qb4 { width: 16px; height: 16px; background: #fff; top: 92px; left: 36px; }
.quote-visual-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  color: #fff;
}
.quote-visual-copy small {
  display: inline-block;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.quote-visual-copy strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 8px;
}
.quote-visual-copy p {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 600;
}
.quote-pane {
  padding: 32px 34px 28px;
  background: #fff;
}
.quote-kicker {
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.quote-box h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.25;
}
.quote-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 4px;
}
.quote-pane .form { margin-top: 16px; gap: 12px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #6b615c;
}
.form label input,
.form label select,
.form label textarea {
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
}
.form { display: grid; gap: 10px; margin-top: 12px; }
.form input, .form select, .form textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  background: #fff;
  font-size: 15px;
  font-weight: 600;
}
.form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 9l6 6 6-6' fill='none' stroke='%238a7f79' stroke-width='2.2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--pink); }
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: var(--text);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 90;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.contact-grid, .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.info-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 10px;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header) 0 0 0;
  background: #fff;
  z-index: 45;
  padding: 18px;
}
.mobile-nav.open { display: grid; gap: 4px; align-content: start; }
.mobile-nav a { font-weight: 700; font-size: 16px; padding: 12px 4px; border-bottom: 1px solid var(--line); }

.sticky-book {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px 16px 14px;
  z-index: 35;
  gap: 8px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.review-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.review-card-top .star-row { margin-left: auto; }
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff0f0;
  color: var(--pink);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}
.review-card .who { font-weight: 800; margin: 0; line-height: 1.2; }
.review-card .city { color: var(--muted); font-size: 12px; }
.review-card p { color: #3d3035; }
.review-photos {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.review-photos a {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.review-photos img { width: 100%; height: 100%; object-fit: cover; }
.thanks { background: #edfbf2; color: #166534; padding: 10px 12px; border-radius: 10px; margin-bottom: 16px; }

.star-row {
  display: inline-flex;
  gap: 1px;
  line-height: 1;
}
.star-row .star {
  color: #e4d8d0;
  font-size: 16px;
}
.star-row .star.on { color: #f5a524; }
.star-row .star.half {
  background: linear-gradient(90deg, #f5a524 50%, #e4d8d0 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.meta .star-row .star { font-size: 13px; }

.rating-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 6px;
}
.rate-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rate-badge {
  background: #2f9e44;
  color: #fff;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 13px;
  font-weight: 800;
}
.rate-count {
  color: #6b5f63;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
  font-size: 13px;
}

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 22px;
}
.review-head h2 { font-size: 1.6rem; }
.review-head p { color: var(--muted); }
.review-score {
  text-align: right;
}
.review-score b {
  display: block;
  font-size: 2rem;
  line-height: 1;
}
.review-score span { color: var(--muted); font-size: 13px; font-weight: 700; }
.review-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 24px;
  align-items: start;
}
.review-layout .reviews { grid-template-columns: 1fr; }
.review-empty {
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 28px 20px;
  color: var(--muted);
  text-align: center;
}
.review-form { display: grid; gap: 12px; }
.review-form h2 { margin: 0; }
.review-form-note { color: var(--muted); font-size: 13px; margin: 0; }
.review-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
}
.review-form input,
.review-form textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  font-weight: 500;
}
.star-pick-wrap {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
}
.star-pick {
  display: flex;
  gap: 2px;
}
.star-pick button {
  border: 0;
  background: none;
  color: #e4d8d0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.star-pick button.on { color: #f5a524; }
.star-pick-wrap em {
  font-style: normal;
  color: var(--muted);
  font-weight: 600;
}
.photo-drop {
  border: 1px dashed #e3c8c8;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  background: #fffaf9;
}
.photo-drop input { display: none; }
.photo-drop strong { display: block; color: var(--pink); }
.photo-drop span { font-weight: 500; color: var(--muted); font-size: 12px; }
.photo-previews {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.photo-previews img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}
.related-sec { padding-top: 8px; }
#reviews { scroll-margin-top: 90px; }
@media (max-width: 1024px) {
  .reviews { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .review-layout { grid-template-columns: 1fr; }
  .review-head, .review-score { text-align: left; }
}
@media (max-width: 760px) {
  .reviews { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .grid-4, .reels, .trust { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail, .about-band, .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .detail-card { position: static; }
  .hero { min-height: 70vh; }
  .hero-dots { bottom: 150px; }
  .quote-box { grid-template-columns: 0.9fr 1.1fr; min-height: 0; }
  .quote-visual { min-height: 100%; }
}
@media (max-width: 760px) {
  .logo img { height: 44px; }
  .nav, .header-actions .hide-sm { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .booking-card { grid-template-columns: 1fr; }
  .book-go { min-height: 54px; width: 100%; }
  .cal-pop { left: auto; right: 0; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-content { padding: 48px 0 20px; }
  .hero-dots { display: none; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card-body h3 { min-height: 48px; font-size: 13px; }
  .actions { grid-template-columns: 1fr; }
  .sticky-book { display: grid; grid-template-columns: 1fr 1fr; }
  body.has-sticky { padding-bottom: 76px; }
  body.has-sticky .wa-float { bottom: 92px; }
  body.has-sticky .call-float { bottom: 156px; }
  .topbar { display: none; }
  .cat-tile { flex-basis: 124px; }
  .cat-photo { width: 124px; height: 124px; border-radius: 16px; }
  .cat-tile b { font-size: 12px; }
  .cat-nav { top: 46px; }
  .gallery { grid-template-columns: 72px 1fr; gap: 8px; }
  .thumbs button { width: 72px; height: 72px; }
  .gallery-main { min-height: 240px; }
  .gal-nav, .gal-zoom, .zoom-close {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
  }
  .gal-nav svg, .gal-zoom svg, .zoom-close svg { width: 18px; height: 18px; }
  .zoom-box { padding: 56px 16px 16px; }
  .quote-box { grid-template-columns: 1fr; max-height: 92vh; overflow: auto; }
  .quote-visual { min-height: 200px; }
  .quote-visual-copy strong { font-size: 1.25rem; }
  .quote-pane { padding: 22px 18px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .quote-x { background: #fff; }
}
