/* ============================================
   MB FADES — Global Styles
   Clean Modern · Black & Gold
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --gold: #c9a84c;
  --gold-light: #f5d485;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gray: #888;
  --light-gray: #ccc;
  --white: #f8f8f8;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: 0.3s ease;
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  scroll-snap-type: y proximity;
  scroll-padding-top: 100px;
}

.hero,
section {
  scroll-snap-align: start;
}

/* Apple 3D Scroll Styles */
.apple-scroll-container {
  height: 400vh;
  position: relative;
  background: var(--black);
}

.apple-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.apple-image-wrapper,
.apple-video-wrapper {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
  transform-style: preserve-3d;
}

.apple-image-wrapper img,
.apple-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.apple-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.apple-text {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 40px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: translateZ(50px);
}

.apple-text h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--white);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.apple-text h1 span {
  color: var(--gold);
}

.apple-text p {
  font-size: clamp(16px, 2vw, 24px);
  color: var(--light-gray);
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* Initial states for GSAP */
.img-og,
.img-final {
  opacity: 0;
  visibility: hidden;
}

/* ── NAV ─────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(20px + env(safe-area-inset-top, 0px)) 48px 20px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  transition: padding var(--transition);
}

nav.scrolled {
  padding: calc(12px + env(safe-area-inset-top, 0px)) 48px 12px;
}

.nav-logo img {
  height: 48px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-book-btn {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
}

.nav-book-btn::after {
  display: none !important;
}

.nav-book-btn:hover {
  background: var(--gold-light) !important;
  color: var(--black) !important;
}

.nav-account-btn {
  background: transparent !important;
  color: var(--light-gray) !important;
  padding: 10px 22px !important;
  border: 1px solid rgba(201, 168, 76, 0.3) !important;
  border-radius: var(--radius) !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px !important;
  transition: all var(--transition) !important;
}

.nav-account-btn::after {
  display: none !important;
}

.nav-account-btn:hover {
  background: rgba(201, 168, 76, 0.1) !important;
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.6) 60%, var(--black) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: heroFadeIn 1.2s ease both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 120px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 8px;
}

.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 300;
  color: var(--light-gray);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 14px 36px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all var(--transition);
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  display: none !important;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── SECTION COMMON ─────────────────────────── */
section {
  padding: 100px 48px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--white);
}

.section-title span {
  color: var(--gold);
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 40px;
}

.max-width {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── VIDEO SCROLL SECTION ───────────────────── */
.video-scroll-section {
  position: relative;
  padding: 0;
  height: 100vh;
  overflow: hidden;
}

.video-scroll-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-scroll-track {
  display: flex;
  gap: 24px;
  padding: 0 48px;
  animation: scrollTrack 12s linear infinite;
  will-change: transform;
}

@keyframes scrollTrack {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.video-scroll-track:hover {
  animation-play-state: paused;
}

.video-card {
  flex: 0 0 320px;
  height: 560px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── SERVICES ─────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 60px;
}

.service-card {
  background: var(--dark2);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 32px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.service-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}

.service-price {
  font-size: 36px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.service-desc {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.8;
}

.service-duration {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── LOYALTY BANNER ─────────────────────────── */
.loyalty-banner {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 60px;
}

.loyalty-icon {
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.loyalty-text h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}

.loyalty-text p {
  color: var(--light-gray);
  font-size: 13px;
}

/* ── GALLERY ─────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 60px;
}


.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.9);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.gallery-overlay-icon {
  color: var(--gold);
  font-size: 24px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s;
}

.gallery-item:hover .gallery-overlay-icon {
  opacity: 1;
  transform: scale(1);
}

/* Gallery lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 32px;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 24px;
  padding: 16px 20px;
  cursor: pointer;
  border-radius: 2px;
  transition: background var(--transition);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(201, 168, 76, 0.3);
}

/* ── ABOUT ─────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-stack {
  position: relative;
  height: 500px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 400px;
  object-fit: cover;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 280px;
  object-fit: cover;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-top: 3px solid var(--gold);
}

.about-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  z-index: 2;
}

.about-text p {
  color: var(--light-gray);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.9;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.stat {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

/* ── BOOKING ─────────────────────────────── */
.booking-section {
  background: var(--dark);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.booking-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}

.booking-info p {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 32px;
  line-height: 1.9;
}

.availability-display {
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 24px;
}

.avail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.avail-month {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}

.avail-nav {
  display: flex;
  gap: 8px;
}

.avail-nav button {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
  width: 32px;
  height: 32px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 16px;
  transition: background var(--transition);
}

.avail-nav button:hover {
  background: rgba(201, 168, 76, 0.25);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day-header {
  text-align: center;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 8px 0;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--light-gray);
}

.cal-day:hover:not(.blocked):not(.empty):not(.past) {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
}

.cal-day.selected {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
}

.cal-day.blocked {
  color: var(--dark2);
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: line-through;
}

.cal-day.past {
  color: #333;
  cursor: not-allowed;
}

.cal-day.empty {
  cursor: default;
}

.cal-day.today {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.time-slots {
  display: none;
  margin-top: 16px;
}

.time-slots.visible {
  display: block;
}

.time-slots-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.time-slot {
  padding: 10px 8px;
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
  color: var(--light-gray);
  transition: all var(--transition);
}

.time-slot:hover:not(.booked) {
  border-color: var(--gold);
  color: var(--gold);
}

.time-slot.selected {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  border-color: var(--gold);
}

.time-slot.booked {
  color: #333;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Booking Form */
.booking-form {
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  padding: 40px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--white);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option {
  background: var(--dark2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-selected-time {
  background: var(--dark);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  padding: 14px 16px;
  font-size: 14px;
  min-height: 48px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 12px;
  letter-spacing: 2px;
}

.loyalty-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--gray);
  text-align: center;
}

.loyalty-note span {
  color: var(--gold);
}

/* ── CONTACT / SOCIAL ─────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  text-decoration: none;
  color: var(--white);
  transition: all var(--transition);
}

.contact-link:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateX(4px);
}

.contact-link-icon {
  font-size: 24px;
}

.contact-link-text strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.contact-link-text span {
  font-size: 12px;
  color: var(--gray);
}

.insta-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.insta-preview a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
}

.insta-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s;
  filter: brightness(0.8);
}

.insta-preview a:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

/* ── FOOTER ─────────────────────────────── */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

footer .footer-logo img {
  height: 36px;
  opacity: 0.7;
}

footer .footer-copy {
  font-size: 12px;
  color: var(--gray);
}

.admin-link {
  font-size: 11px;
  color: var(--gray);
  text-decoration: none;
  opacity: 0.4;
  transition: opacity var(--transition);
}

.admin-link:hover {
  opacity: 1;
  color: var(--gold);
}

/* ── BOOKING CONFIRMATION ───────────────── */
.booking-success {
  display: none;
  text-align: center;
  padding: 48px;
}

.booking-success.visible {
  display: block;
}

.success-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.success-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.success-detail {
  color: var(--light-gray);
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 2;
}

.loyalty-progress {
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  padding: 24px;
  margin: 24px 0;
  text-align: left;
}

.lp-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.lp-dots {
  display: flex;
  gap: 8px;
}

.lp-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray);
  transition: all 0.3s;
}

.lp-dot.filled {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 700;
}

.lp-dot.free {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold-light);
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
}

/* ── SCROLL ANIMATIONS ─────────────────── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}

html.js .reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ══════════════════════════════════════════
   RESPONSIVE / MOBILE OPTIMIZATION
   ══════════════════════════════════════════ */

/* ── TABLET (≤1024px) ───────────────────── */
@media (max-width: 1024px) {
  section {
    padding: 80px 32px;
  }

  nav {
    padding: 18px 32px;
  }

  nav.scrolled {
    padding: 12px 32px;
  }

  .about-grid {
    gap: 48px;
  }

  .booking-grid {
    gap: 48px;
  }

  .contact-grid {
    gap: 48px;
  }

  .video-card {
    flex: 0 0 280px;
    height: 500px;
  }

  .services-grid {
    gap: 2px;
  }

  .service-card {
    padding: 36px 28px;
  }

  .lightbox-prev {
    left: 12px;
    padding: 12px 16px;
  }

  .lightbox-next {
    right: 12px;
    padding: 12px 16px;
  }
}

/* ── MOBILE (≤768px) ────────────────────── */
@media (max-width: 768px) {

  /* ── NAV / HAMBURGER ── */
  nav {
    padding: 14px 20px;
  }

  nav.scrolled {
    padding: 10px 20px;
  }

  .nav-logo img {
    height: 40px;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger span {
    width: 26px;
    height: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.open li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.open li:nth-child(1) {
    transition-delay: 0.05s;
  }

  .nav-links.open li:nth-child(2) {
    transition-delay: 0.10s;
  }

  .nav-links.open li:nth-child(3) {
    transition-delay: 0.15s;
  }

  .nav-links.open li:nth-child(4) {
    transition-delay: 0.20s;
  }

  .nav-links.open li:nth-child(5) {
    transition-delay: 0.25s;
  }

  .nav-links.open li:nth-child(6) {
    transition-delay: 0.30s;
  }

  .nav-links.open li:nth-child(7) {
    transition-delay: 0.35s;
  }

  .nav-links.open li:nth-child(8) {
    transition-delay: 0.40s;
  }

  .nav-links a {
    font-size: 16px;
    letter-spacing: 3px;
    padding: 16px 0;
    display: block;
  }

  .nav-links a::after {
    bottom: 10px;
  }

  .nav-book-btn {
    margin-top: 12px;
    padding: 14px 32px !important;
    font-size: 13px !important;
  }

  /* ── SECTIONS (general) ── */
  section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: clamp(30px, 8vw, 48px);
    margin-bottom: 16px;
  }

  .section-label {
    font-size: 9px;
    letter-spacing: 3px;
    margin-bottom: 12px;
  }

  .section-divider {
    margin-bottom: 28px;
  }

  .max-width {
    padding: 0;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    /* dynamic viewport height for mobile browsers */
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: clamp(56px, 18vw, 100px);
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: clamp(16px, 4vw, 22px);
    letter-spacing: 4px;
    margin-bottom: 32px;
  }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .btn-hero-book {
    padding: 16px 36px !important;
    font-size: 12px !important;
  }

  .hero-scroll-hint {
    bottom: 24px;
  }

  .scroll-line {
    height: 28px;
  }

  /* ── VIDEO SCROLL ── */
  .video-scroll-header {
    padding: 0 20px 32px !important;
    gap: 16px !important;
  }

  .video-scroll-track {
    gap: 16px;
    padding: 0 20px;
  }

  .video-card {
    flex: 0 0 240px;
    height: 420px;
  }

  .video-card-label {
    padding: 16px 14px 12px;
    font-size: 10px;
  }

  /* ── SERVICES ── */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2px;
    margin-top: 40px;
  }

  .service-card {
    padding: 32px 24px;
  }

  .service-name {
    font-size: 24px;
  }

  .service-price {
    font-size: 30px;
  }

  .service-desc {
    font-size: 13px;
  }

  /* ── LOYALTY BANNER ── */
  .loyalty-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
    gap: 16px;
    margin-top: 40px;
  }

  .loyalty-icon {
    font-size: 32px;
  }

  .loyalty-text h3 {
    font-size: 20px;
  }

  /* ── GALLERY ── */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin-top: 40px;
  }

  .gallery-overlay-icon {
    font-size: 20px;
  }

  /* ── LIGHTBOX ── */
  .lightbox img {
    max-height: 80vh;
    max-width: 96vw;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    font-size: 28px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lightbox-prev,
  .lightbox-next {
    padding: 12px 14px;
    font-size: 20px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  /* ── CTA STRIP ── */
  .cta-strip {
    padding: 28px 20px;
  }

  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cta-strip-btn {
    width: 100%;
    text-align: center;
  }

  /* ── CLEANLINESS ── */
  /* Already handled by inline <style> in index.html */

  /* ── REVIEWS ── */
  .review-text {
    font-size: clamp(18px, 4.5vw, 26px) !important;
    line-height: 1.5 !important;
  }

  .review-stars {
    font-size: 22px !important;
    letter-spacing: 3px !important;
  }

  .review-nav button {
    width: 44px !important;
    height: 44px !important;
  }

  /* ── ABOUT ── */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image-stack {
    height: 300px;
    margin-bottom: 8px;
  }

  .about-img-main {
    width: 68%;
    height: 260px;
  }

  .about-img-accent {
    width: 52%;
    height: 200px;
  }

  .about-badge {
    width: 80px;
    height: 80px;
    font-size: 12px;
    padding: 14px;
  }

  .about-text p {
    font-size: 13px;
    line-height: 1.8;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .stat-number {
    font-size: 34px;
  }

  /* ── BOOKING ── */
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .booking-info h3 {
    font-size: 20px;
  }

  .booking-form {
    padding: 28px 20px;
  }

  .form-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group label {
    font-size: 10px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 14px;
    font-size: 16px;
    /* prevents iOS zoom on focus */
  }

  .form-submit {
    padding: 16px;
    font-size: 12px;
  }

  /* Calendar touch sizing */
  .calendar-grid {
    gap: 3px;
  }

  .cal-day {
    font-size: 13px;
    min-height: 40px;
  }

  .cal-day-header {
    font-size: 10px;
    padding: 6px 0;
  }

  .avail-month {
    font-size: 18px;
  }

  .avail-nav button {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  /* Time slots touch sizing */
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .time-slot {
    padding: 12px 8px;
    font-size: 13px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .time-slots-label {
    font-size: 11px;
  }

  /* Booking success */
  .booking-success {
    padding: 36px 20px;
  }

  .success-icon {
    font-size: 52px;
  }

  .success-title {
    font-size: 32px;
  }

  .success-detail {
    font-size: 13px;
  }

  .lp-dots {
    flex-wrap: wrap;
    gap: 6px;
  }

  .lp-dot {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  /* ── CONTACT ── */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-link {
    padding: 16px 20px;
  }

  .insta-preview {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  /* ── FOOTER ── */
  footer {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
    gap: 16px;
  }

  footer .footer-logo img {
    height: 32px;
  }

  footer .footer-copy {
    font-size: 11px;
    line-height: 1.7;
  }

  /* ── FLOATING BOOK BTN ── */
  .floating-book-btn {
    bottom: 20px;
    right: 16px;
    padding: 12px 18px;
    font-size: 11px;
    gap: 6px;
  }

  .floating-book-icon {
    font-size: 14px;
  }

  .floating-book-btn.banner-up {
    bottom: 100px;
  }

  /* ── PWA BANNER ── */
  #pwa-banner {
    padding: 0 12px 12px;
  }

  .pwa-banner-inner {
    padding: 12px 14px;
    gap: 10px;
  }

  .pwa-banner-icon {
    width: 38px;
    height: 38px;
  }

  .pwa-banner-title {
    font-size: 12px;
  }

  .pwa-banner-sub {
    font-size: 10px;
  }

  .pwa-install-btn {
    padding: 8px 14px;
    font-size: 11px;
  }

  /* ── CANCEL MODAL (mobile) ── */
  .cancel-modal-box {
    padding: 28px 24px;
    margin: 16px;
  }

  .cancel-modal-title {
    font-size: 22px;
  }

  .cancel-modal-btns {
    flex-direction: column;
    gap: 10px;
  }

  .cancel-modal-btns button {
    padding: 14px;
  }
}

/* ── SMALL PHONES (≤400px) ──────────────── */
@media (max-width: 400px) {
  section {
    padding: 48px 16px;
  }

  nav {
    padding: 12px 16px;
  }

  .hero-title {
    font-size: clamp(48px, 20vw, 72px);
  }

  .hero-subtitle {
    letter-spacing: 3px;
    font-size: clamp(14px, 4vw, 18px);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }

  .service-card {
    padding: 28px 20px;
  }

  .booking-form {
    padding: 24px 16px;
  }

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

  .video-card {
    flex: 0 0 200px;
    height: 360px;
  }

  .about-image-stack {
    height: 260px;
  }

  .about-img-main {
    height: 220px;
  }

  .about-img-accent {
    height: 160px;
  }

  .cta-strip {
    padding: 24px 16px;
  }

  .floating-book-btn {
    right: 12px;
    bottom: 16px;
    padding: 10px 16px;
    font-size: 10px;
  }
}

/* ── SLOT BLOCKING (client view) ─────────── */
.time-slot.slot-blocked {
  background: rgba(220, 60, 60, 0.08);
  color: #c0392b;
  text-decoration: line-through;
  cursor: not-allowed;
  font-size: 10px;
}

/* ── ADMIN SLOT PANEL ─────────────────────── */
.admin-slot-panel {
  display: none;
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  padding: 20px;
  margin-top: 16px;
}

.admin-slot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.admin-slot-title {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}

.admin-slot-hint {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.6;
}

.admin-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-bottom: 16px;
}

.admin-slot {
  padding: 9px 4px;
  text-align: center;
  font-size: 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  cursor: pointer;
  color: var(--light-gray);
  transition: all 0.2s;
  background: var(--dark);
}

.admin-slot:hover:not(.slot-booked):not(.slot-blocked-admin) {
  border-color: rgba(220, 60, 60, 0.5);
  color: #e05555;
  background: rgba(220, 60, 60, 0.08);
}

.admin-slot.slot-blocked-admin {
  background: rgba(220, 60, 60, 0.12);
  color: #e05555;
  text-decoration: line-through;
  border-color: rgba(220, 60, 60, 0.3);
}

.admin-slot.slot-booked {
  color: #333;
  cursor: not-allowed;
  text-decoration: line-through;
  background: rgba(255, 255, 255, 0.02);
}

.block-day-btn {
  background: rgba(220, 60, 60, 0.1);
  border: 1px solid rgba(220, 60, 60, 0.35);
  color: #e05555;
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.block-day-btn:hover {
  background: rgba(220, 60, 60, 0.2);
}

/* ── CANCEL MODAL ─────────────────────────── */
.cancel-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.cancel-modal-overlay.open {
  display: flex;
}

.cancel-modal-box {
  background: var(--dark2);
  border: 1px solid rgba(220, 60, 60, 0.3);
  border-radius: 4px;
  padding: 36px;
  max-width: 420px;
  width: 90%;
}

.cancel-modal-icon {
  font-size: 40px;
  text-align: center;
  margin-bottom: 16px;
}

.cancel-modal-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: #e05555;
  text-align: center;
  margin-bottom: 12px;
}

.cancel-modal-warning {
  font-size: 13px;
  color: var(--light-gray);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.8;
}

.cancel-client-info {
  background: var(--dark);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.cancel-client-row {
  font-size: 13px;
  color: var(--light-gray);
  padding: 4px 0;
  line-height: 1.7;
}

.cancel-client-row a {
  color: var(--gold);
  text-decoration: none;
}

.cancel-modal-note {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.7;
  text-align: center;
}

.cancel-modal-btns {
  display: flex;
  gap: 12px;
}

.cancel-modal-btns button {
  flex: 1;
  padding: 12px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.cancel-go-back {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--light-gray);
}

.cancel-go-back:hover {
  border-color: var(--white);
}

.cancel-confirm {
  background: rgba(220, 60, 60, 0.15);
  border: 1px solid rgba(220, 60, 60, 0.4);
  color: #e05555;
}

.cancel-confirm:hover {
  background: rgba(220, 60, 60, 0.25);
}

/* ── SLOT BLOCKED (client view) ──────────── */
.time-slot.slot-blocked {
  background: rgba(220, 60, 60, 0.08);
  color: #c0392b;
  text-decoration: line-through;
  cursor: not-allowed;
  font-size: 10px;
}

/* ── ADMIN SLOT PANEL ─────────────────────── */
.admin-slot-panel {
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  padding: 20px;
}

.admin-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-bottom: 12px;
}

.admin-slot {
  padding: 9px 4px;
  text-align: center;
  font-size: 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  cursor: pointer;
  color: var(--light-gray);
  transition: all 0.2s;
  background: var(--dark);
}

.admin-slot:hover:not(.slot-booked):not(.slot-blocked-admin) {
  border-color: rgba(220, 60, 60, 0.5);
  color: #e05555;
  background: rgba(220, 60, 60, 0.08);
}

.admin-slot.slot-blocked-admin {
  background: rgba(220, 60, 60, 0.12);
  color: #e05555;
  text-decoration: line-through;
  border-color: rgba(220, 60, 60, 0.3);
}

.admin-slot.slot-booked {
  color: #333;
  cursor: not-allowed;
  text-decoration: line-through;
  background: rgba(255, 255, 255, 0.02);
}

.block-day-btn {
  background: rgba(220, 60, 60, 0.1);
  border: 1px solid rgba(220, 60, 60, 0.35);
  color: #e05555;
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.block-day-btn:hover {
  background: rgba(220, 60, 60, 0.2);
}

/* ── PWA INSTALL BANNER ────────────────────── */
#pwa-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: 0 16px 16px;
  pointer-events: none;
}

.pwa-banner-inner {
  max-width: 480px;
  margin: 0 auto;
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.5);
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: all;
}

.pwa-banner-show .pwa-banner-inner {
  transform: translateY(0);
}

.pwa-banner-hide .pwa-banner-inner {
  transform: translateY(110%);
}

.pwa-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.pwa-banner-text {
  flex: 1;
  min-width: 0;
}

.pwa-banner-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pwa-banner-sub {
  font-size: 11px;
  color: var(--gray);
}

.pwa-banner-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.pwa-install-btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  white-space: nowrap;
}

.pwa-install-btn:hover {
  background: var(--gold-light);
}

.pwa-dismiss-btn {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 16px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.2s;
  line-height: 1;
}

.pwa-dismiss-btn:hover {
  color: var(--white);
}

/* ── NAV INSTALL BUTTON ────────────────────── */
.nav-install-btn {
  background: transparent !important;
  border: 1px solid rgba(201, 168, 76, 0.35) !important;
  color: var(--gold) !important;
  padding: 8px 16px !important;
  border-radius: 4px !important;
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  transition: all 0.2s !important;
}

.nav-install-btn:hover {
  background: rgba(201, 168, 76, 0.1) !important;
  border-color: var(--gold) !important;
}

.nav-install-btn::after {
  display: none !important;
}

/* ── PROMINENT BOOKING CTAs ─────────────────── */

/* Hero book button — larger and more eye-catching */
.btn-hero-book {
  padding: 18px 52px !important;
  font-size: 13px !important;
  letter-spacing: 3px !important;
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.3);
  position: relative;
}

.btn-hero-book::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.4), transparent, rgba(201, 168, 76, 0.4));
  z-index: -1;
  animation: bookPulse 2.5s ease-in-out infinite;
}

@keyframes bookPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

/* Floating sticky button — appears after scrolling past hero */
.floating-book-btn {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 1500;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, background 0.2s, box-shadow 0.2s;
  pointer-events: none;
}

.floating-book-btn.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.floating-book-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 32px rgba(201, 168, 76, 0.55);
  transform: translateY(-2px);
}

.floating-book-icon {
  font-size: 16px;
}

.floating-book-text {
  white-space: nowrap;
}

/* Hide floating button when PWA banner is showing so they don't stack */
#pwa-banner.pwa-banner-show~.floating-book-btn,
.floating-book-btn.banner-up {
  bottom: 110px;
}

/* CTA Strip between sections */
.cta-strip {
  background: var(--gold);
  padding: 40px 48px;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-strip-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 4px;
}

.cta-strip-sub {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.cta-strip-btn {
  background: var(--black) !important;
  color: var(--gold) !important;
  padding: 16px 40px !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-strip-btn:hover {
  background: var(--dark2) !important;
  transform: translateY(-2px);
}

/* CTA strip + floating btn mobile styles are now in the consolidated mobile block above */

/* ── INLINE PWA INSTALL BANNERS ────────────── */
.pwa-inline-banner {
  background: linear-gradient(135deg, var(--dark2) 0%, rgba(201, 168, 76, 0.06) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 40px 48px;
}

.pwa-inline-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pwa-inline-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
  border: 2px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15);
}

.pwa-inline-text {
  flex: 1;
  min-width: 200px;
}

.pwa-inline-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.pwa-inline-sub {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

.pwa-inline-btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 14px 32px !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
}

@media (max-width: 768px) {
  .pwa-inline-banner {
    padding: 28px 20px;
  }

  .pwa-inline-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .pwa-inline-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto;
  }

  .pwa-inline-title {
    font-size: 18px;
  }

  .pwa-inline-sub {
    font-size: 12px;
  }

  .pwa-inline-btn {
    width: 100%;
    text-align: center;
  }
}

/* ── VOICE BOOKING VISUAL FEEDBACK ──────── */
.voice-listening {
  animation: voicePulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 var(--gold), 0 0 0 0 var(--gold);
}

.voice-responding {
  animation: voiceRespond 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 var(--gold), 0 0 0 0 var(--gold);
}

@keyframes voicePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.7), 0 0 0 0 rgba(201, 168, 76, 0.7);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0), 0 0 0 16px rgba(201, 168, 76, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0), 0 0 0 0 rgba(201, 168, 76, 0);
  }
}

@keyframes voiceRespond {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.8), 0 0 0 0 rgba(201, 168, 76, 0.8);
  }

  25% {
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0), 0 0 0 8px rgba(201, 168, 76, 0);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0), 0 0 0 16px rgba(201, 168, 76, 0);
  }

  75% {
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0), 0 0 0 8px rgba(201, 168, 76, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0), 0 0 0 0 rgba(201, 168, 76, 0);
  }
}

/* Voice status styling */
#voice-status {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  padding: 12px 20px;
  margin: 20px auto;
  max-width: 400px;
  text-align: center;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.voice-processing {
  color: var(--gold);
  animation: textGlow 1s ease-in-out infinite alternate;
}

@keyframes textGlow {
  from {
    text-shadow: 0 0 5px rgba(201, 168, 76, 0.5);
  }

  to {
    text-shadow: 0 0 15px rgba(201, 168, 76, 0.8), 0 0 20px rgba(201, 168, 76, 0.6);
  }
}

@keyframes ringPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(201, 168, 76, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
}

/* ── CHATBOT UI ────────────────────────────── */
.chatbot-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  background: var(--gold);
  color: black;
  padding: 15px 22px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 0 0 2px rgba(255, 255, 255, 0.18);
  z-index: 1000;
  transition: transform var(--transition), box-shadow var(--transition);
}

.chatbot-toggle.chatbot-visible {
  display: flex;
}

.chatbot-toggle:hover {
  transform: translateY(-2px);
}

.chatbot-toggle.active,
.chatbot-toggle:focus {
  animation: ringPulse 1.8s ease-out infinite;
}

.chatbot-window {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 380px;
  height: 520px;
  max-height: 88vh;
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.8);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
  overflow: hidden;
}

.chatbot-header {
  background: rgba(201, 168, 76, 0.12);
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-messages {
  flex: 1;
  padding: 18px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.chatbot-input-area {
  padding: 15px;
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.chatbot-input-area input {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  padding: 14px 16px;
  border-radius: 12px;
  outline: none;
}

.chatbot-input-area button {
  border: none;
  background: var(--gold);
  color: var(--black);
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

.chatbot-window .reply-bubble {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-radius: 16px;
  padding: 14px 16px;
  max-width: 100%;
}

.chatbot-window .user-bubble {
  background: var(--gold);
  color: var(--black);
  border-radius: 16px;
  padding: 14px 16px;
  max-width: 100%;
  align-self: flex-end;
}

#voice-book-btn {
  min-width: 220px;
  font-size: 14px;
  padding: 16px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--gold);
  background: rgba(0, 0, 0, 0.45);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

#voice-book-btn:hover {
  background: rgba(201, 168, 76, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(201, 168, 76, 0.25);
}

#voice-book-btn.listening {
  background: rgba(201, 168, 76, 0.14);
  box-shadow: 0 0 28px rgba(201, 168, 76, 0.5);
}

#voice-status {
  display: none;
  text-align: center;
  color: var(--gold);
  margin: 20px auto;
  font-style: italic;
  font-size: 16px;
  max-width: 580px;
}

@media (max-width: 600px) {
  .chatbot-window {
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    border-radius: 0;
    max-height: 100vh;
  }

  .chatbot-toggle {
    bottom: 20px;
    right: 20px;
    padding: 16px 24px;
    width: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-secondary,
  .hero-actions .btn-primary {
    width: 100%;
    text-align: center;
    margin-left: 0 !important;
  }

  #voice-book-btn {
    min-width: auto;
    font-size: 16px;
    padding: 18px 22px;
    width: 100%;
  }
}

@media (max-width: 400px) {

  .chatbot-input-area input,
  .chatbot-input-area button {
    padding: 14px 12px;
    font-size: 13px;
  }
}

border-top: 1px solid rgba(255, 255, 255, 0.1);
display: flex;
gap: 10px;
}

.chatbot-input-area input {
  flex: 1;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px;
  border-radius: 4px;
  outline: none;
  font-family: var(--font-body);
}

.chatbot-input-area input:focus {
  border-color: var(--gold);
}

.chatbot-input-area button {
  background: var(--gold);
  border: none;
  color: black;
  padding: 0 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-family: var(--font-body);
}

@media (max-width: 768px) {
  .chatbot-toggle {
    bottom: 20px;
    right: 20px;
    padding: 12px 16px;
    font-size: 12px;
  }

  .chatbot-window {
    bottom: 70px;
    right: 20px;
    left: 20px;
    width: auto;
    max-width: calc(100vw - 40px);
    height: 60vh;
  }
}

@media (max-width: 400px) {
  .chatbot-toggle {
    bottom: 15px;
    right: 15px;
  }

  .chatbot-window {
    bottom: 65px;
    right: 15px;
    left: 15px;
    max-width: calc(100vw - 30px);
  }
}