/* ============================================
   Hopeful Readings — Redesigned
   ============================================ */

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

:root {
  --deep: #0f0720;
  --purple-dark: #1c0f3a;
  --purple: #2d1854;
  --purple-mid: #4a2882;
  --purple-brand: #6b3fa0;
  --purple-bright: #9b6dd7;
  --lavender: #c9b1e0;
  --lavender-light: #e4d5f2;
  --cream: #f8f4fc;
  --white: #ffffff;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --text-body: #2a1a40;
  --text-muted: #7a6890;
  --text-on-dark: #e8ddf4;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --nav-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Raleway', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--deep);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

.section { padding: 100px 0; position: relative; }

/* --- Section Labels & Headings --- */
.section-label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-brand);
  margin-bottom: 12px;
}

.section-label--light { color: var(--gold-light); }

.section-heading {
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--purple-dark);
  margin-bottom: 16px;
}

.section-heading--light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--lavender);
  max-width: 520px;
  margin: 0 auto 56px;
  text-align: center;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--purple-brand);
  color: var(--white);
  border-radius: 4px;
  z-index: 1000;
  font-size: 0.85rem;
}
.skip-link:focus { top: 8px; }

/* ========== NAVIGATION ========== */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav-header.scrolled {
  background: rgba(15, 7, 32, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-brand {
  font-family: 'Great Vibes', cursive;
  font-size: 1.3rem;
  color: var(--lavender-light);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--lavender-light);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
}

.hamburger { position: relative; }

.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

.nav-menu {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(15, 7, 32, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  list-style: none;
  padding: 8px 0 24px;
}

.nav-menu.open {
  display: block;
  animation: menuSlide 0.25s var(--ease-out);
}

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

.nav-link {
  display: block;
  padding: 14px 28px;
  color: var(--lavender);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus { color: var(--white); }
.nav-link[aria-current="true"] { color: var(--gold-light); }

.nav-cta {
  margin: 8px 28px;
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--purple-brand), var(--purple-bright));
  color: var(--white) !important;
  border-radius: 28px;
  text-align: center;
  display: inline-block;
  font-weight: 600;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.nav-cta:hover,
.nav-cta:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(107, 63, 160, 0.4);
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--purple-bright);
  outline-offset: 2px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--deep);
  overflow: hidden;
  padding: 100px 24px 60px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(107, 63, 160, 0.25) 0%, rgba(107, 63, 160, 0.08) 40%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
}

.hero-logo-wrap {
  display: inline-block;
  position: relative;
  margin-bottom: 32px;
}

.hero-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 177, 224, 0.2);
  box-shadow:
    0 0 40px rgba(107, 63, 160, 0.3),
    0 0 120px rgba(107, 63, 160, 0.1);
}

.hero-heading {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 1.5rem;
  color: var(--lavender);
  margin-bottom: 40px;
}

.hero-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 32px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-brand) 0%, var(--purple-bright) 100%);
  box-shadow: 0 4px 24px rgba(107, 63, 160, 0.35);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.hero-btn:hover,
.hero-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(107, 63, 160, 0.5);
}

/* --- Sparkles --- */
.sparkle {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.95)) drop-shadow(0 0 14px rgba(196, 168, 224, 0.85));
}

.hero-logo-wrap { position: relative; }

/* Sparkles around the logo */
.sparkle--1 { width: 28px; height: 28px; top: 0%;    left: -8%;   animation: sparkle-pop 3.2s ease-in-out 0.0s infinite; }
.sparkle--2 { width: 20px; height: 20px; top: 10%;   right: -10%; animation: sparkle-pop 2.8s ease-in-out 0.7s infinite; }
.sparkle--3 { width: 24px; height: 24px; bottom: 10%; left: -4%;  animation: sparkle-pop 3.5s ease-in-out 1.2s infinite; }
.sparkle--4 { width: 18px; height: 18px; bottom: 2%;  right: -8%;  animation: sparkle-pop 2.6s ease-in-out 0.4s infinite; }
.sparkle--5 { width: 22px; height: 22px; top: 40%;   left: -12%;  animation: sparkle-pop 3.0s ease-in-out 1.8s infinite; }
/* Extra sparkles spread above/below the logo wrap, relative to hero */
.sparkle--6 { width: 16px; height: 16px; top: 55%;   right: -14%; animation: sparkle-pop 3.8s ease-in-out 0.5s infinite; }
.sparkle--7 { width: 26px; height: 26px; top: -8%;   left: 20%;   animation: sparkle-pop 3.3s ease-in-out 2.1s infinite; }
.sparkle--8 { width: 18px; height: 18px; top: -6%;   right: 15%;  animation: sparkle-pop 2.9s ease-in-out 1.0s infinite; }

@keyframes sparkle-pop {
  0%   { opacity: 0.15; transform: scale(0.6) rotate(0deg); }
  30%  { opacity: 0.2;  transform: scale(0.7) rotate(8deg); }
  50%  { opacity: 1;    transform: scale(1.15) rotate(20deg); }
  70%  { opacity: 0.85; transform: scale(1.0) rotate(12deg); }
  100% { opacity: 0.15; transform: scale(0.6) rotate(0deg); }
}

/* Services section sparkles */
.sec-sparkle { opacity: 0.45; }

.sec-sparkle--1 { width: 26px; height: 26px; top: 8%;   left: 3%;   animation: sparkle-pop 3.8s ease-in-out 0.0s infinite; }
.sec-sparkle--2 { width: 18px; height: 18px; top: 20%;  right: 4%;  animation: sparkle-pop 3.2s ease-in-out 0.8s infinite; }
.sec-sparkle--3 { width: 22px; height: 22px; top: 55%;  left: 1%;   animation: sparkle-pop 4.1s ease-in-out 1.5s infinite; }
.sec-sparkle--4 { width: 16px; height: 16px; bottom: 15%; right: 3%; animation: sparkle-pop 3.5s ease-in-out 0.4s infinite; }
.sec-sparkle--5 { width: 24px; height: 24px; bottom: 8%; left: 40%;  animation: sparkle-pop 3.0s ease-in-out 2.0s infinite; }
.sec-sparkle--6 { width: 20px; height: 20px; top: 38%;  right: 1%;  animation: sparkle-pop 4.3s ease-in-out 1.1s infinite; }

/* TikTok Live sparkles */
.live-sparkle--1 { width: 22px; height: 22px; top: 10%;    left: 2%;   animation: sparkle-pop 3.6s ease-in-out 0.2s infinite; }
.live-sparkle--2 { width: 16px; height: 16px; top: 60%;    right: 3%;  animation: sparkle-pop 3.2s ease-in-out 1.0s infinite; }
.live-sparkle--3 { width: 20px; height: 20px; bottom: 15%; left: 55%;  animation: sparkle-pop 4.0s ease-in-out 1.7s infinite; }
.live-sparkle--4 { width: 14px; height: 14px; top: 35%;    right: 15%; animation: sparkle-pop 2.9s ease-in-out 0.6s infinite; }

/* Booking section sparkles */
.book-sparkle--1 { width: 24px; height: 24px; top: 6%;    left: 2%;   animation: sparkle-pop 3.7s ease-in-out 0.0s infinite; }
.book-sparkle--2 { width: 18px; height: 18px; top: 30%;   right: 2%;  animation: sparkle-pop 3.3s ease-in-out 0.9s infinite; }
.book-sparkle--3 { width: 22px; height: 22px; bottom: 20%; left: 1%;  animation: sparkle-pop 4.2s ease-in-out 1.6s infinite; }
.book-sparkle--4 { width: 16px; height: 16px; bottom: 8%;  right: 5%; animation: sparkle-pop 3.0s ease-in-out 0.5s infinite; }
.book-sparkle--5 { width: 20px; height: 20px; top: 60%;   left: 45%;  animation: sparkle-pop 3.8s ease-in-out 2.1s infinite; }

/* Footer sparkles */
.sparkle-f {
  opacity: 0.5;
  filter: drop-shadow(0 0 4px rgba(201, 177, 224, 0.9)) drop-shadow(0 0 10px rgba(201,177,224,0.5));
}

.sparkle-f--1 { width: 24px; height: 24px; top: 15%;    left: 5%;    animation: sparkle-pop 4.0s ease-in-out 0.0s infinite; }
.sparkle-f--2 { width: 18px; height: 18px; top: 55%;    right: 7%;   animation: sparkle-pop 3.5s ease-in-out 0.6s infinite; }
.sparkle-f--3 { width: 26px; height: 26px; bottom: 18%; left: 45%;   animation: sparkle-pop 4.2s ease-in-out 1.2s infinite; }
.sparkle-f--4 { width: 20px; height: 20px; top: 25%;    right: 22%;  animation: sparkle-pop 3.8s ease-in-out 1.8s infinite; }
.sparkle-f--5 { width: 16px; height: 16px; bottom: 30%; left: 18%;   animation: sparkle-pop 3.3s ease-in-out 0.9s infinite; }
.sparkle-f--6 { width: 22px; height: 22px; top: 10%;    right: 40%;  animation: sparkle-pop 4.5s ease-in-out 2.2s infinite; }
.sparkle-f--7 { width: 18px; height: 18px; bottom: 12%; right: 30%;  animation: sparkle-pop 3.6s ease-in-out 1.4s infinite; }

@media (prefers-reduced-motion: reduce) {
  .sparkle, .sparkle-f { display: none; }
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-cue-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--lavender));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 0.8; transform: scaleY(1); }
}

/* ========== ABOUT ========== */
.about {
  background: var(--cream);
  overflow: hidden;
}

.section-bg-accent {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 63, 160, 0.06), transparent 70%);
  pointer-events: none;
}

.about-layout {
  display: grid;
  gap: 48px;
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-image-frame {
  position: relative;
  width: 260px;
  height: 260px;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid var(--lavender);
  opacity: 0.3;
}

.about-image-frame::after {
  content: '';
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  border: 1px solid var(--lavender);
  opacity: 0.12;
}

.about-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.about-heading {
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--purple-dark);
  margin-bottom: 20px;
}

.about-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 20px;
}

.pull-quote {
  position: relative;
  padding: 24px 28px;
  margin: 28px 0;
  background: linear-gradient(135deg, rgba(107, 63, 160, 0.06), rgba(107, 63, 160, 0.02));
  border-radius: 12px;
  border-left: 3px solid var(--purple-brand);
}

.pull-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--purple-dark);
  line-height: 1.6;
}

.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ========== SERVICES ========== */
.services {
  position: relative;
  overflow: hidden;
  background: linear-gradient(175deg, var(--purple-dark) 0%, var(--deep) 100%);
  text-align: center;
}

.services-grid {
  display: grid;
  gap: 20px;
}

.s-card {
  position: relative;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(160deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  transition: transform 0.4s var(--ease-out);
}

.s-card:hover {
  transform: translateY(-6px);
}

.s-card-inner {
  background: rgba(28, 15, 58, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 36px 24px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.s-card--featured {
  background: linear-gradient(160deg, rgba(201, 168, 76, 0.4), rgba(155, 109, 215, 0.3), rgba(255,255,255,0.08));
}

.s-card--featured .s-card-inner {
  background: rgba(28, 15, 58, 0.85);
}

.s-card-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 20px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--deep);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 0 0 12px 12px;
  z-index: 2;
}

.s-card-icon {
  width: 48px;
  height: 48px;
  color: var(--purple-bright);
  margin-bottom: 20px;
  opacity: 0.6;
}

.s-card-icon svg { width: 100%; height: 100%; }

.s-card-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--lavender-light);
  margin-bottom: 8px;
}

.s-card-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1;
}

.price-symbol {
  font-size: 1.5rem;
  vertical-align: top;
  margin-right: 2px;
  opacity: 0.7;
}

.s-card-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--lavender);
  margin-bottom: 24px;
  flex-grow: 1;
}

.s-card-btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender-light);
  border: 1px solid rgba(201, 177, 224, 0.25);
  transition: all 0.25s var(--ease-out);
}

.s-card-btn:hover,
.s-card-btn:focus {
  background: rgba(107, 63, 160, 0.3);
  border-color: var(--purple-bright);
  color: var(--white);
}

.s-card--featured .s-card-btn {
  background: linear-gradient(135deg, var(--purple-brand), var(--purple-bright));
  border: none;
  color: var(--white);
}

.s-card--featured .s-card-btn:hover,
.s-card--featured .s-card-btn:focus {
  box-shadow: 0 4px 20px rgba(107, 63, 160, 0.4);
  transform: scale(1.03);
}

/* ========== TIKTOK LIVE ========== */
.tiktok-live {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  padding: 64px 0;
}

.live-banner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(107, 63, 160, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 40px 36px;
}

.live-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(107, 63, 160, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lavender-light);
}

.live-body {
  flex: 1;
}

.live-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 12px;
}

.live-flamingo {
  display: inline-block;
  font-size: 1.6rem;
  vertical-align: middle;
  margin-right: 4px;
  animation: flamingo-sway 3s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes flamingo-sway {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}

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

.live-heading {
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.live-text {
  font-size: 0.95rem;
  color: var(--lavender);
  line-height: 1.7;
  margin-bottom: 24px;
}

.live-text strong {
  color: var(--gold-light);
  font-weight: 600;
}

.live-btn {
  display: inline-block;
  padding: 11px 28px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-brand), var(--purple-bright));
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.live-btn:hover,
.live-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 63, 160, 0.4);
}

@media (max-width: 600px) {
  .live-banner {
    flex-direction: column;
    gap: 20px;
    padding: 28px 20px;
  }

  .live-heading { font-size: 1.4rem; }
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--cream);
  text-align: center;
}

.t-grid {
  display: grid;
  gap: 20px;
  text-align: left;
}

.t-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px 28px;
  box-shadow: 0 2px 20px rgba(44, 24, 84, 0.05);
  border: 1px solid rgba(201, 177, 224, 0.12);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}

.t-card:hover {
  box-shadow: 0 8px 40px rgba(44, 24, 84, 0.1);
}

.t-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.t-card blockquote p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 20px;
  flex-grow: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-brand), var(--purple-bright));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--purple-dark);
}

/* ========== BOOKING ========== */
.booking {
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, var(--purple) 0%, var(--deep) 100%);
  color: var(--text-on-dark);
}

.booking-layout {
  display: grid;
  gap: 48px;
  align-items: start;
}

.booking-heading {
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.booking-text {
  font-size: 1rem;
  color: var(--lavender);
  margin-bottom: 32px;
  line-height: 1.7;
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--lavender-light);
}

.bf-icon {
  color: var(--gold);
  font-size: 0.75rem;
}

.booking-form-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--lavender);
  letter-spacing: 0.02em;
}

.form-group .optional {
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.6;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid rgba(201, 177, 224, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(201, 177, 224, 0.35);
}

.form-group select {
  padding-right: 36px;
  cursor: pointer;
}

.form-group {
  position: relative;
}

.form-group:has(select)::after {
  content: '';
  position: absolute;
  right: 16px;
  bottom: 18px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--lavender);
  pointer-events: none;
}

.form-group select option {
  background: var(--purple);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-bright);
  box-shadow: 0 0 0 3px rgba(155, 109, 215, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.field-error {
  font-size: 0.78rem;
  color: #f28b82;
  margin-top: 4px;
  display: block;
}

.input-error {
  border-color: #f28b82 !important;
  box-shadow: 0 0 0 3px rgba(242, 139, 130, 0.15) !important;
}

/* Honeypot spam trap — must stay invisible */
.hp-trap {
  display: none !important;
  position: absolute;
  left: -9999px;
}

.btn-submit {
  display: inline-block;
  width: 100%;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-brand), var(--purple-bright));
  cursor: pointer;
  margin-top: 8px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.btn-submit:hover,
.btn-submit:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(107, 63, 160, 0.4);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  text-align: center;
  padding: 48px 16px;
}

.success-check { margin: 0 auto 20px; }

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--lavender);
  font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 56px 0 32px;
  padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
  color: var(--lavender);
}

.footer-top {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.8;
}

.footer-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 1.1rem;
  color: var(--lavender-light);
  line-height: 1.5;
}

.footer-links h4,
.footer-connect h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--lavender);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 177, 224, 0.12);
  color: var(--lavender);
  transition: all 0.25s var(--ease-out);
}

.social-link:hover,
.social-link:focus {
  border-color: var(--purple-bright);
  color: var(--white);
  background: rgba(107, 63, 160, 0.2);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ========== SMALL MOBILE (max 380px) ========== */
@media (max-width: 380px) {
  .hero-heading { font-size: 2rem; }
  .hero-tagline { font-size: 1.25rem; }
  .hero-logo { width: 160px; height: 160px; }
  .hero-btn { padding: 14px 32px; font-size: 0.8rem; }
  .section { padding: 72px 0; }
  .about-heading,
  .booking-heading,
  .section-heading { font-size: 1.8rem; }
  .s-card-price { font-size: 2.2rem; }
  .s-card-inner { padding: 28px 16px 24px; }
  .booking-form-wrap { padding: 24px 16px; }
  .container { padding: 0 16px; }
}

/* ========== MOBILE TOUCH & USABILITY ========== */
@media (hover: none) and (pointer: coarse) {
  /* Larger tap targets on touch devices */
  .nav-link { padding: 16px 28px; min-height: 48px; }
  .s-card-btn { padding: 14px 32px; min-height: 48px; display: inline-flex; align-items: center; }
  .hero-btn { padding: 18px 44px; min-height: 52px; }
  .social-link { width: 48px; height: 48px; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 14px 16px; font-size: 16px; }
  .btn-submit { padding: 16px 28px; min-height: 52px; font-size: 1rem; }
  /* Prevent iOS zoom on focus (font-size >= 16px) */
  .form-group select { font-size: 16px; }
  /* Disable hover effects that feel wrong on touch */
  .s-card:hover { transform: none; }
  .t-card:hover { box-shadow: 0 2px 20px rgba(44, 24, 84, 0.05); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; }
  #hero-canvas { display: none; }
}

/* ========== TABLET (768px+) ========== */
@media (min-width: 768px) {
  .section { padding: 120px 0; }

  .section-heading { font-size: 2.6rem; }

  .nav-toggle { display: none; }

  .nav-menu {
    display: flex;
    position: static;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    align-items: center;
    gap: 0;
  }

  .nav-link {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .nav-cta {
    margin: 0 0 0 12px;
    padding: 9px 24px;
    font-size: 0.8rem;
  }

  .hero-logo {
    width: 260px;
    height: 260px;
  }

  .hero-heading { font-size: 3.2rem; }
  .hero-tagline { font-size: 1.8rem; }

  .about-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
  }

  .about-image-frame {
    width: 300px;
    height: 300px;
  }

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

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

  .booking-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
  }

  .booking-form-wrap {
    padding: 36px 32px;
  }

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

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
  }
}

/* ========== DESKTOP (1100px+) ========== */
@media (min-width: 1100px) {
  .container { padding: 0 48px; }

  .hero-heading { font-size: 3.6rem; }
  .hero-tagline { font-size: 2rem; }
  .hero-logo { width: 300px; height: 300px; }

  .section-heading { font-size: 2.8rem; }
  .about-heading { font-size: 2.6rem; }
  .booking-heading { font-size: 2.6rem; }

  .about-layout { gap: 80px; }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .s-card-inner { padding: 40px 20px 32px; }
}
