:root {
  --pink: #ff3cac;
  --pink-soft: #ffb8e6;
  --cyan: #2ec4c6;
  --cyan-ink: #0e7378;
  --purple-900: #1a0f24;
  --purple-800: #2d1a3d;
  --purple-700: #4a2d5c;
  --purple-500: #7b5a8f;
  --purple-200: #e8d5f2;
  --purple-100: #edf8f8;
  --white: #ffffff;
  --text: #2a1838;
  --bg: #f2fafa;
  --surface: #ffffff;
  --surface-2: #eaf6f7;
  --heading: #2d1a3d;
  --text-soft: #4a2d5c;
  --muted: #7b5a8f;
  --line: #cfeaec;
  --header-bg: rgba(255, 255, 255, 0.92);
  --header-line: rgba(46, 196, 198, 0.3);
  --band-bg: #ffffff;
  --band-bg-2: #eaf6f7;
  --band-heading: #d4147e;
  --band-text: #4a2d5c;
  --hero-o1: rgba(255, 255, 255, 0.82);
  --hero-o2: rgba(234, 246, 247, 0.6);
  --media-grad: linear-gradient(145deg, #dff2f3, #ffdcf0);
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-line: rgba(46, 196, 198, 0.35);
  --shadow: 0 12px 40px rgba(74, 45, 92, 0.15);
  color-scheme: light;
  --radius: 16px;
  --font-display: "Great Vibes", cursive;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 3.75rem;
  --action-bar-h: 4.5rem;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  padding-bottom: calc(var(--action-bar-h) + var(--safe-bottom));
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
.btn {
  touch-action: manipulation;
}

.container {
  width: min(1120px, calc(100% - 1.25rem));
  margin: 0 auto;
}

/* Header — mobile drawer */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-line);
  padding-top: var(--safe-top);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.brand img.logo-mark {
  width: auto;
  height: 46px;
  flex-shrink: 0;
}

.brand img.wordmark {
  height: 30px;
  width: auto;
  max-width: min(140px, 42vw);
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: var(--heading);
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 10px;
  flex-shrink: 0;
}

.menu-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.08);
}

.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
  background: var(--band-bg);
  padding: 0.75rem 1rem calc(1rem + var(--safe-bottom));
  border-bottom: 1px solid var(--header-line);
  max-height: calc(100dvh - var(--header-h) - var(--safe-top));
  overflow-y: auto;
}

.nav.open {
  display: flex;
}

.nav a {
  color: var(--band-text);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.85rem 0.75rem;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--pink);
  background: var(--glass-bg);
}

.nav a.active {
  color: var(--band-heading);
  font-weight: 600;
}

.nav .btn,
.nav .nav-cta {
  width: 100%;
  margin-top: 0.5rem;
  min-height: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), #d946ef);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 60, 172, 0.35);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: var(--text-soft);
  border: 2px solid var(--cyan-ink);
}

/* Mobile sticky action bar */
.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
  padding: 0.4rem 0.5rem calc(0.4rem + var(--safe-bottom));
  background: var(--header-bg);
  border-top: 1px solid var(--header-line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-height: 52px;
  padding: 0.35rem 0.2rem;
  border-radius: 12px;
  color: var(--band-text);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s, color 0.15s;
}

.action-btn:active {
  background: var(--glass-bg);
}

.action-btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), #d946ef);
  box-shadow: 0 4px 16px rgba(255, 60, 172, 0.35);
}

.action-btn--primary:active {
  background: linear-gradient(135deg, #e8359c, #c93de0);
}

.action-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.action-btn--primary .action-icon {
  width: 24px;
  height: 24px;
}

.action-label {
  line-height: 1.1;
}

/* Hero — stacked */
.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--band-bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, var(--hero-o1), var(--hero-o2)),
    url("../assets/hero-elegant.webp") center/cover no-repeat;
}

.hero-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}

.hero-glow.pink {
  background: var(--pink);
  top: 5%;
  right: -5%;
}

.hero-glow.cyan {
  background: var(--cyan);
  bottom: 10%;
  left: -10%;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 12vw, 5.5rem);
  line-height: 1.05;
  color: var(--band-heading);
  margin: 0 0 0.75rem;
  text-shadow: 0 0 30px rgba(255, 60, 172, 0.35);
}

.hero-copy .tagline {
  font-size: 1.05rem;
  color: var(--band-text);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-actions .btn {
  width: 100%;
}

.hero-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  padding: 1rem;
  backdrop-filter: blur(12px);
}

.hero-card__photo,
.hero-card img {
  border-radius: calc(var(--radius) - 4px);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 200px;
  object-fit: cover;
  object-position: center;
}

.hero-card__swipe {
  position: relative;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--media-grad);
}

.hero-card__swipe-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hero-card__swipe-scroll::-webkit-scrollbar {
  display: none;
}

.hero-card__swipe-scroll img {
  flex: 0 0 100%;
  scroll-snap-align: start;
  border-radius: 0;
  box-shadow: none;
}

.hero-card__swipe .img-cutout {
  padding: 0.75rem;
}

.booking-embed {
  margin-top: 2rem;
  scroll-margin-top: 90px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.5rem 0.75rem 1rem;
  overflow: hidden;
}

.booking-embed__fallback {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

.booking-embed__fallback a {
  color: #0e7a80;
}

.deal-chip {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 60, 172, 0.18);
  border: 1px solid rgba(255, 184, 230, 0.35);
  color: var(--band-heading);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  min-height: 44px;
  max-width: 100%;
}

.deal-chip:hover,
.deal-chip:focus-visible {
  background: rgba(255, 60, 172, 0.28);
  color: var(--heading);
}

.deal-chip.is-weekend {
  background: var(--glass-bg);
  border-color: var(--glass-line);
  color: var(--band-text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

.stat {
  text-align: center;
  padding: 0.65rem 0.35rem;
  border-radius: 12px;
  background: var(--glass-bg);
}

.stat strong {
  display: block;
  color: var(--cyan-ink);
  font-size: 0.95rem;
}

.stat span {
  color: var(--band-text);
  font-size: 0.72rem;
}

/* Sections */
section {
  padding: 3rem 0;
  scroll-margin-top: calc(var(--header-h) + var(--safe-top) + 0.5rem);
}

.page-section {
  padding: 2.5rem 0;
}

.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--band-bg), var(--band-bg-2));
  color: var(--band-text);
  padding: 2.25rem 0 2rem;
  text-align: center;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 6vw, 2.75rem);
  color: var(--band-heading);
}

.page-hero p {
  margin: 0 auto;
  max-width: 52ch;
  color: var(--band-text);
  opacity: 0.92;
  font-size: 0.95rem;
  padding: 0 0.5rem;
}

.page-hero--photo {
  padding: 3rem 0 2.5rem;
  min-height: 220px;
  background:
    linear-gradient(135deg, var(--hero-o1), var(--hero-o2)),
    var(--hero-photo) var(--hero-pos, center) / cover no-repeat,
    var(--media-grad);
}

.page-hero--photo .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 15, 36, 0.1), rgba(26, 15, 36, 0.45));
  pointer-events: none;
}

.page-hero--photo h1 {
  text-shadow: none;
}

.page-hero--photo p {
  color: var(--band-text);
  opacity: 0.95;
}

.quick-links {
  background: var(--surface);
}

.quick-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.quick-link-card {
  display: block;
  padding: 1.25rem 1.35rem;
  background: var(--surface-2);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s, border-color 0.2s;
}

.quick-link-card h3 {
  margin: 0 0 0.35rem;
  color: var(--heading);
  font-size: 1.1rem;
}

.quick-link-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.quick-link-card--accent {
  border-color: var(--pink);
  background: linear-gradient(135deg, rgba(255, 60, 172, 0.08), rgba(46, 196, 198, 0.08));
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contact-actions .btn {
  flex: 1;
  min-width: 120px;
}

.walkin-grid {
  display: grid;
  gap: 1.25rem;
}

.walkin-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.walkin-card h2 {
  margin: 0 0 1rem;
  color: var(--heading);
  font-size: 1.25rem;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.hours-list li span {
  color: var(--muted);
}

.hours-list li strong {
  color: var(--heading);
}

.walkin-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.walkin-card--map .map-embed {
  margin-top: 1rem;
}

.queens--page {
  background: linear-gradient(160deg, var(--band-bg), var(--band-bg-2));
  padding-top: 0;
}

.queens--page .queens-grid {
  padding-top: 0.5rem;
}

.queens-intro {
  text-align: center;
  color: var(--band-text);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  padding: 0 0.5rem;
}

.queens-menu {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  position: sticky;
  top: calc(var(--header-h) + var(--safe-top));
  z-index: 20;
  padding: 0.75rem 0.25rem;
  background: var(--band-bg);
  box-shadow: 0 12px 18px -12px rgba(0, 0, 0, 0.45);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.queens-menu::-webkit-scrollbar {
  display: none;
}

.queen-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 31%;
  min-width: 104px;
  scroll-snap-align: center;
  padding: 0.75rem 0.5rem;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--band-text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  min-height: 44px;
  text-align: center;
}

.queen-tab:hover,
.queen-tab:focus-visible {
  border-color: rgba(255, 60, 172, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.queen-tab.active {
  border-color: var(--pink);
  background: rgba(255, 60, 172, 0.15);
  box-shadow: 0 8px 24px rgba(255, 60, 172, 0.2);
}

.queen-tab__thumb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.queen-tab.active .queen-tab__thumb {
  border-color: var(--band-heading);
}

.queen-tab__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.1;
  color: var(--band-heading);
}


.queens-profiles {
  display: block;
}

.queen-profile {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 60, 172, 0.22);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  animation: queen-fade-in 0.3s ease;
}

.queen-profile.active {
  display: block;
}

@keyframes queen-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .queen-profile {
    animation: none;
  }
}

.queen-profile-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.queen-crown-badge {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(26, 15, 36, 0.65);
  border: 2px solid var(--pink);
}

.queen-crown-badge img {
  width: 32px;
  height: auto;
}

.queen-profile-head h2 {
  margin: 0.1rem 0 0.35rem;
  color: var(--heading);
  font-size: 1.75rem;
}

.queen-carousel {
  position: relative;
  margin-bottom: 1.5rem;
}

.queen-carousel__track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.35rem 2.5rem;
  margin: 0 -0.5rem;
}

.queen-carousel__track::-webkit-scrollbar {
  display: none;
}

.queen-carousel__slide {
  flex: 0 0 82%;
  max-width: 340px;
  scroll-snap-align: center;
  padding: 0;
  border: none;
  background: none;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.queen-carousel__slide img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.queen-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(26, 15, 36, 0.75);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.queen-carousel__btn[hidden],
.queen-carousel__dots[hidden] {
  display: none;
}

.queen-carousel__btn--prev {
  left: 0;
}

.queen-carousel__btn--next {
  right: 0;
}

.queen-carousel__btn:hover,
.queen-carousel__btn:focus-visible {
  background: rgba(255, 60, 172, 0.85);
  border-color: var(--band-heading);
}

.queen-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.queen-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.queen-carousel__dot.active {
  background: var(--pink);
  transform: scale(1.2);
}

.queen-conversation h3 {
  margin: 0 0 0.35rem;
  color: var(--band-heading);
  font-size: 1.15rem;
}

.queen-conversation-intro {
  margin: 0 0 1rem;
  color: var(--band-text);
  font-size: 0.88rem;
  opacity: 0.9;
}

.queen-qa {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.queen-qa-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--pink);
}

.queen-qa-item dt {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan-ink);
  margin-bottom: 0.35rem;
}

.queen-qa-item dd {
  margin: 0;
  color: var(--band-text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.queen-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.queen-book {
  width: 100%;
  margin-top: 0;
}

.queen-ig {
  width: 100%;
  min-height: 48px;
  color: var(--heading);
  border-color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  gap: 0.5rem;
}

.queen-ig:hover,
.queen-ig:focus-visible {
  border-color: var(--band-heading);
  background: rgba(255, 60, 172, 0.12);
  color: var(--band-heading);
}

.queen-ig-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.eyebrow {
  display: inline-block;
  color: var(--cyan-ink);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 0.4rem;
}

.section-head h2 {
  font-size: clamp(1.65rem, 6vw, 3rem);
  margin: 0 0 0.65rem;
  color: var(--heading);
}

.section-head p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
  padding: 0 0.25rem;
}

/* Horizontal scroll strips */
.scroll-strip {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1.25rem;
  scrollbar-width: none;
  padding: 0.25rem 1.25rem 0.75rem;
  margin-inline: -1.25rem;
}

.scroll-strip::-webkit-scrollbar {
  display: none;
}

.scroll-strip__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

/* Home queens row */
.home-queens {
  background: linear-gradient(180deg, var(--band-bg), var(--band-bg-2));
  color: var(--band-text);
}

.home-queens .section-head h2 {
  color: var(--band-heading);
}

.home-queens .section-head p {
  color: var(--band-text);
  opacity: 0.92;
}

.section-head--left {
  text-align: left;
}

.section-head--left p {
  margin-inline: 0;
}

.scroll-strip--queens .queen-teaser {
  flex: 0 0 min(72vw, 220px);
}

.queen-teaser {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: inherit;
  min-height: 44px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.queen-teaser:hover,
.queen-teaser:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 60, 172, 0.45);
}

.queen-teaser__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface-2);
}

.queen-teaser__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.queen-teaser__body {
  padding: 0.85rem 0.9rem 1rem;
}

.queen-teaser__body strong {
  display: block;
  color: var(--band-heading);
  font-size: 1.05rem;
}

.queen-teaser__body span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.82rem;
  color: var(--band-text);
  opacity: 0.9;
}

.home-queens__cta {
  margin-top: 1.25rem;
  text-align: center;
}

.home-queens__cta .btn {
  width: 100%;
  min-height: 48px;
}

/* Visit highlights */
.visit-highlights {
  background: var(--surface);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.visit-highlights__grid {
  display: grid;
  gap: 0.75rem;
}

.visit-highlight-card {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid rgba(74, 45, 92, 0.08);
}

.visit-highlight-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.visit-highlight-card__value {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading);
}

.visit-highlight-card a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Home menu preview */
.home-menu {
  background: var(--surface-2);
}

.home-menu-inner {
  max-width: 640px;
}

.home-menu__link {
  margin-top: 1.25rem;
  text-align: center;
}

.home-menu__link .btn {
  width: 100%;
  min-height: 48px;
}

.price-list--compact .price-list-item {
  padding: 0.7rem 0;
}

/* Why choose us */
.home-promise {
  background: var(--surface);
}

.promise-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.promise-grid li {
  padding: 0.85rem 1rem;
  background: var(--surface-2);
  border-radius: 12px;
  border-left: 4px solid var(--pink);
  font-size: 0.92rem;
  color: var(--text-soft);
}

.promise-grid a {
  color: var(--text-soft);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Split bands & visual strips */
.split-band,
.visual-strip {
  padding: 0;
}

.split-band {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--surface-2);
}

.split-band__media {
  position: relative;
  min-height: 280px;
  background: var(--media-grad);
  overflow: hidden;
}

.split-band__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.split-band__media-scroll {
  display: flex;
  height: 100%;
  min-height: inherit;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.split-band__media-scroll::-webkit-scrollbar {
  display: none;
}

.split-band__media-scroll img {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
}

.scroll-hint {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-line);
  color: var(--heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.split-band__copy {
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-band__copy h2 {
  margin: 0 0 0.75rem;
  color: var(--heading);
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.split-band__copy p {
  margin: 0 0 1rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.split-band--queens {
  background: var(--band-bg);
}

.split-band--queens .split-band__copy {
  color: var(--band-text);
}

.split-band--queens .split-band__copy h2 {
  color: var(--band-heading);
}

.split-band--queens .split-band__copy p {
  color: var(--band-text);
  opacity: 0.92;
}

.visual-strip-section {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
  background: var(--surface-2);
}

.visual-strip-section .section-head {
  margin-bottom: 1rem;
}

.scroll-strip--visual .visual-strip__item {
  flex: 0 0 min(78vw, 300px);
  min-height: 200px;
  border-radius: var(--radius);
}

.visual-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.visual-strip__item {
  position: relative;
  display: block;
  min-height: 200px;
  overflow: hidden;
  background: var(--surface-2);
}

.visual-strip__item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.visual-strip__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26, 15, 36, 0.85) 0%, rgba(26, 15, 36, 0.15) 55%, transparent 100%);
  pointer-events: none;
}

.visual-strip__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.25rem 1.35rem;
  color: var(--white);
}

.visual-strip__label strong {
  display: block;
  font-size: 1.2rem;
  color: var(--band-heading);
  margin-bottom: 0.15rem;
}

.visual-strip__label span {
  font-size: 0.88rem;
  opacity: 0.9;
}

.feature-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
  padding: 0;
}

.feature-list li {
  list-style: none;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border-radius: 12px;
  border-left: 4px solid var(--cyan);
  box-shadow: 0 6px 20px rgba(74, 45, 92, 0.08);
  font-size: 0.92rem;
}

/* Services menu */
.services-menu {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
}

.services-menu-inner {
  max-width: 820px;
}

.services-menu-tagline {
  text-align: center;
  margin: 0 0 2.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.services-menu-grid {
  display: grid;
  gap: 2.5rem;
}

.service-category-title {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: 0.02em;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-list-item {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(74, 45, 92, 0.1);
}

.price-list-item:first-child {
  border-top: 1px solid rgba(74, 45, 92, 0.1);
}

.price-list-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-list-title {
  flex: 0 1 auto;
  font-weight: 600;
  color: var(--heading);
  font-size: 1rem;
}

.price-list-separator {
  flex: 1 1 auto;
  min-width: 1.5rem;
  border-bottom: 2px dotted rgba(74, 45, 92, 0.22);
  transform: translateY(-0.2em);
}

.price-list-price {
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--text-soft);
  font-size: 1rem;
  white-space: nowrap;
}

.price-list-meta {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
}

.price-list-desc {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

.service-category-note {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.service-category-note a {
  color: var(--text-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.services-menu-footer {
  margin-top: 2.5rem;
  text-align: center;
}

.services-menu-footer p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.services-menu-footer a:not(.btn) {
  color: var(--text-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Legacy service cards (home visual strip, etc.) */
.services {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
}

.scroll-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
  margin-inline: -0.25rem;
  padding-inline: 0.25rem;
}

.scroll-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn,
.portfolio-tab {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--surface);
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
}

.tab-btn.active,
.tab-btn:hover,
.portfolio-tab.active,
.portfolio-tab:hover {
  background: var(--purple-700);
  border-color: var(--text-soft);
  color: var(--white);
}

.portfolio-tab.active,
.portfolio-tab:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.service-panel {
  display: none;
}

.service-panel.active {
  display: block;
}

.service-list {
  display: grid;
  gap: 0.85rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem;
  background: var(--line);
  border-radius: 14px;
  border: 1px solid rgba(74, 45, 92, 0.08);
}

.service-card h3 {
  margin: 0 0 0.2rem;
  color: var(--heading);
  font-size: 1.1rem;
}

.service-meta {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.92rem;
}

.service-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card .btn {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  background: var(--purple-700);
  color: var(--white);
}

.service-note {
  text-align: center;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.88rem;
  padding: 0 0.5rem;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}

.service-photo {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--media-grad);
  box-shadow: var(--shadow);
  min-height: 280px;
}

.service-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.25s ease;
}

.service-main {
  min-width: 0;
}

.walkin-section {
  background: var(--surface-2);
}

.walkin-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.walkin-photo {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--media-grad);
  box-shadow: var(--shadow);
  min-height: 300px;
  max-height: 420px;
}

.walkin-photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center top;
}

/* Daily Deals */
.deals {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
}

.deals-rules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.deals-rule {
  background: var(--surface);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--cyan);
  box-shadow: 0 6px 20px rgba(74, 45, 92, 0.08);
}

.deals-rule strong {
  display: block;
  color: var(--heading);
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.deals-rule span {
  color: var(--muted);
  font-size: 0.88rem;
}

.deals-today {
  text-align: center;
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), #d946ef);
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.45;
  box-shadow: 0 8px 24px rgba(255, 60, 172, 0.3);
}

.deals-today:empty {
  display: none;
}

.deals-today.is-weekend {
  background: var(--purple-700);
}

.deals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.deal-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 0;
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.deal-card__media {
  aspect-ratio: 16 / 10;
  background: var(--media-grad);
  overflow: hidden;
}

.deal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.deal-card__body {
  padding: 1.15rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.deal-card__body .deal-code {
  margin-top: auto;
}

.deal-card.is-today {
  border-color: var(--pink);
  box-shadow: 0 12px 32px rgba(255, 60, 172, 0.2);
}

.deal-card.is-today .deal-day::after {
  content: " · Today";
  color: var(--pink);
}

.deal-card--off {
  opacity: 0.88;
  border-style: dashed;
}

.deal-day {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.3rem;
}

.deal-card h3 {
  margin: 0 0 0.4rem;
  color: var(--heading);
  font-size: 1.15rem;
}

.deal-focus {
  margin: 0 0 0.4rem;
  color: var(--cyan-ink);
  font-weight: 600;
  font-size: 0.85rem;
}

.deal-offer {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
}

.deal-detail {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.deal-code {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--text-soft);
  font-family: ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 600;
}

.deal-card--off .deal-code {
  display: none;
}

.deals-footer {
  text-align: center;
  margin-top: 2rem;
}

.deals-footer p {
  color: var(--muted);
  margin: 0 auto 1rem;
  font-size: 0.92rem;
  padding: 0 0.5rem;
}

.deals-footer .btn {
  width: 100%;
  max-width: 320px;
}

.deals-footer a:not(.btn) {
  color: var(--pink);
  font-weight: 600;
}

/* Portfolio */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.gallery-item {
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  -webkit-tap-highlight-color: transparent;
}

.gallery-item img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.gallery-item.wide,
.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-item.wide img,
.gallery-grid .wide img {
  aspect-ratio: 16/9;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(26, 15, 36, 0.94);
  padding: 1rem;
  padding-top: calc(1rem + var(--safe-top));
  padding-bottom: calc(1rem + var(--safe-bottom));
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: 100%;
  max-height: 85dvh;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: calc(0.75rem + var(--safe-top));
  right: 0.75rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

/* Queens */
.queens {
  background: linear-gradient(160deg, var(--band-bg), var(--band-bg-2));
  color: var(--band-text);
}

.queens .section-head h2 {
  color: var(--band-heading);
}

.queens .section-head p {
  color: var(--band-text);
  opacity: 0.9;
}

.queens-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.queen-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 60, 172, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.queen-photo {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 420px;
  overflow: hidden;
}

.queen-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.queen-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(26, 15, 36, 0.88));
}

.queen-crown {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(26, 15, 36, 0.65);
  border: 2px solid var(--pink);
}

.queen-crown img {
  width: 28px;
  height: auto;
}

.queen-body {
  padding: 1.25rem 1.15rem 1.5rem;
  text-align: center;
}

.queen-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--pink);
  line-height: 1;
}

.queen-body h3 {
  margin: 0.1rem 0 0.4rem;
  font-size: 1.65rem;
  color: var(--heading);
}

.queen-role {
  margin: 0 0 0.85rem;
  color: var(--cyan-ink);
  font-weight: 600;
  font-size: 0.9rem;
}

.queen-tags {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.queen-tags li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

.queen-body .btn {
  width: 100%;
}

/* Booking */
.booking {
  background: var(--band-bg-2);
  color: var(--band-text);
}

.booking .section-head h2,
.booking .section-head p {
  color: var(--band-text);
}

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.booking-info {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.booking-info h3 {
  color: var(--band-heading);
  margin-top: 0;
  font-size: 1.15rem;
}

.booking-info ul {
  padding-left: 1.1rem;
  margin: 0;
  font-size: 0.92rem;
}

.booking-info li {
  margin-bottom: 0.45rem;
}

.booking-info .btn {
  width: 100%;
}

.booking-mobile-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  opacity: 0.85;
}

.booking-frame {
  display: none;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.booking-frame iframe {
  width: 100%;
  height: 720px;
  border: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-top: 0;
  color: var(--heading);
}

.contact-card p {
  margin: 0.35rem 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.contact-card .btn {
  width: 100%;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 240px;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 240px;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--band-bg);
  color: var(--band-text);
  padding: 2rem 0 calc(1.5rem + var(--safe-bottom));
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 36px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.footer-links a {
  padding: 0.35rem 0.25rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.copyright {
  font-size: 0.82rem;
  opacity: 0.75;
  padding: 0 1rem;
}

/* Tablet */
@media (min-width: 600px) {
  .container {
    width: min(1120px, calc(100% - 1.75rem));
  }

  .deals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    width: auto;
    flex: 1;
    min-width: 140px;
  }

  .deals-footer .btn {
    width: auto;
  }

  .contact-card .btn {
    width: auto;
  }
}

@media (min-width: 768px) {
  :root {
    --radius: 20px;
    --shadow: 0 20px 60px rgba(74, 45, 92, 0.18);
  }

  body {
    padding-bottom: 0;
  }

  .mobile-action-bar {
    display: none;
  }

  section {
    padding: 4rem 0;
  }

  .brand img.logo-mark {
    height: 50px;
  }

  .brand img.wordmark {
    height: 36px;
    max-width: none;
  }

  .hero-content {
    padding: 2.25rem 0 2rem;
    gap: 2rem;
  }

  .hero-card__photo,
  .hero-card img {
    max-height: 220px;
  }

  .scroll-strip--queens {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
    gap: 1rem;
  }

  .scroll-strip--queens .queen-teaser {
    flex: unset;
    width: auto;
  }

  .home-queens__cta .btn {
    width: auto;
    min-width: 220px;
  }

  .visit-highlights__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-menu__link .btn {
    width: auto;
  }

  .deals-rules {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    gap: 0.85rem;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 300px;
    height: 300px;
  }

  .queens-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    padding: 0;
    background: transparent;
    border: none;
    max-height: none;
    overflow: visible;
  }

  .nav a {
    padding: 0;
    font-size: 0.88rem;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: transparent;
  }

  .nav .btn,
  .nav .nav-cta {
    width: auto;
    margin-top: 0;
    min-height: 44px;
    padding-inline: 1rem;
    font-size: 0.88rem;
  }

  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .walkin-grid {
    grid-template-columns: 1fr 1fr;
  }

  .walkin-card--map {
    grid-column: span 2;
  }

  .contact-actions .btn {
    flex: 0 1 auto;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 5rem 0 4rem;
    gap: 3rem;
  }

  .hero-copy .tagline {
    font-size: 1.15rem;
    max-width: 34ch;
  }

  .hero-glow {
    width: 420px;
    height: 420px;
    filter: blur(80px);
    opacity: 0.45;
  }

  .split-band {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .split-band--about .split-band__media {
    order: 1;
  }

  .split-band--about .split-band__copy {
    order: 2;
  }

  .split-band__media {
    min-height: 420px;
  }

  .split-band__media img {
    min-height: 420px;
  }

  .split-band__copy {
    padding: 3rem 2.5rem;
  }

  .scroll-strip--visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    margin-inline: 0;
    padding: 0 1.25rem 0.5rem;
    gap: 0;
  }

  .scroll-strip--visual .visual-strip__item {
    flex: unset;
    min-height: 280px;
    border-radius: 0;
  }

  .visual-strip__item {
    min-height: 280px;
  }

  .visual-strip__item img {
    min-height: 280px;
  }

  .visual-strip__item:hover img {
    transform: scale(1.04);
  }

  .hero-card__photo,
  .hero-card img {
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .service-layout {
    grid-template-columns: 1fr 1.15fr;
    gap: 2rem;
    align-items: start;
  }

  .service-photo {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    min-height: 520px;
  }

  .service-photo img {
    min-height: 520px;
  }

  .walkin-layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: stretch;
  }

  .walkin-photo {
    min-height: 100%;
    max-height: none;
  }

  .walkin-photo img {
    min-height: 480px;
    height: 100%;
    object-fit: cover;
  }

  .page-hero--photo {
    min-height: 300px;
    padding: 4rem 0 3rem;
  }

  .service-tabs {
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
  }

  .portfolio-tabs {
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
  }

  .service-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
  }

  .service-card p {
    grid-column: 1;
  }

  .service-card .btn {
    width: auto;
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .deals-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .queens-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }

  .queen-card:hover {
    transform: translateY(-6px);
    border-color: rgba(46, 196, 198, 0.45);
  }

  .deal-card:hover {
    transform: translateY(-4px);
  }

  .gallery-item:hover {
    transform: scale(1.03);
  }

  .booking-wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem 2rem;
  }

  .booking-frame {
    display: block;
    min-height: 620px;
  }

  .booking-mobile-note {
    display: none;
  }

  .booking-info .btn {
    width: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .contact-card .btn {
    width: auto;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 320px;
    height: 320px;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 60, 172, 0.45);
  }

  .quick-link-card:hover {
    transform: translateY(-3px);
    border-color: var(--pink);
  }

  .quick-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .queen-carousel__slide {
    flex: 0 0 70%;
    max-width: 420px;
  }

  .queen-carousel__btn {
    width: 44px;
    height: 44px;
  }

  .queen-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .queen-book,
  .queen-ig {
    width: auto;
    flex: 1 1 auto;
  }

  .queens-menu {
    gap: 1rem;
    padding: 1rem 0.25rem 1.25rem;
    justify-content: center;
  }

  .queen-tab {
    padding: 1rem 0.75rem;
    flex: 1 1 0;
    min-width: 0;
    max-width: 220px;
  }

  .queen-tab__thumb {
    width: 72px;
    height: 72px;
  }

  .queen-tab__name {
    font-size: 1.65rem;
  }

}

@media (min-width: 480px) {
  .brand img.wordmark {
    height: 34px;
  }
}
/* Theme toggle */
.theme-toggle {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-line);
  color: var(--heading);
  font-size: 1.05rem;
  cursor: pointer;
  border-radius: 999px;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(15deg);
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

/* Language toggle (EN/ES) */
.lang-toggle {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.35rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-line);
  color: var(--heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 999px;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  background: rgba(255, 60, 172, 0.18);
  color: var(--band-heading);
}

.footer-tagline {
  margin: 0.75rem 0 0.25rem;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Legal pages (Terms / Privacy) */
.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  color: var(--heading);
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.legal-content p {
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.legal-content ul {
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0 0 1rem;
  padding-left: 1.4rem;
}

.legal-content li {
  margin-bottom: 0.4rem;
}

.legal-content a {
  color: var(--band-heading);
  text-decoration: underline;
}

[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* Dark theme */
[data-theme="dark"] {
  --bg: #140b1d;
  --cyan-ink: #4dd6d8;
  --header-bg: rgba(26, 15, 36, 0.94);
  --header-line: rgba(255, 60, 172, 0.2);
  --band-bg: #1a0f24;
  --band-bg-2: #2d1a3d;
  --band-heading: #ffb8e6;
  --band-text: #e8d5f2;
  --hero-o1: rgba(26, 15, 36, 0.55);
  --hero-o2: rgba(74, 45, 92, 0.35);
  --media-grad: linear-gradient(145deg, #2d1a3d, #1a0f24);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-line: rgba(255, 255, 255, 0.14);
  --surface: #241533;
  --surface-2: #2d1c3e;
  --heading: #f3e8fa;
  --text-soft: #d9c3e8;
  --muted: #a98cbf;
  --text: #e8dcf2;
  --line: #1f4a4f;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
}

[data-theme="dark"] body {
  background: var(--bg);
}

[data-theme="dark"] .site-header {
  background: rgba(15, 8, 22, 0.94);
}

[data-theme="dark"] .page-hero,
[data-theme="dark"] .hero {
  color: #d9c3e8;
}

[data-theme="dark"] .price-list-separator {
  border-color: rgba(255, 255, 255, 0.18);
}

[data-theme="dark"] .map-embed iframe {
  filter: invert(0.9) hue-rotate(180deg);
}

/* Dark-mode crown mark (owner-provided dark version; taller aspect, cap height) */
[data-theme="dark"] img[src*="assets/logo.webp"] {
  content: url("/assets/logo-dark.webp?v=4");
}

[data-theme="dark"] img[src*="assets/wordmark.webp"] {
  content: url("/assets/wordmark-dark.webp?v=4");
}


/* Cutout-style images (transparent background) sit on gradient surfaces */
.img-cutout {
  object-fit: contain !important;
  padding: 1.25rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review-card {
  margin: 0;
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.review-stars {
  color: #f5b301;
  letter-spacing: 2px;
  font-size: 1rem;
}

.review-card blockquote {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.review-card figcaption {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 720px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
