:root {
  --bg: #faf3e6;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-2: #fbeedb;
  --text: #3a2a1d;
  --muted: #7d6a57;
  --accent: #c69a3f;
  --accent-2: #7c1f2b;
  --gold-soft: #e9c26a;
  --border: rgba(124, 31, 43, 0.16);
  --shadow: 0 20px 55px rgba(122, 82, 20, 0.14);
  --font-display: 'Playfair Display', 'Manrope', serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: linear-gradient(160deg, #fdf8ee, var(--bg) 45%, #f4e6cb 100%);
  color: var(--text);
  line-height: 1.7;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(14px);
  background: rgba(253, 248, 238, 0.82);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.site-logo {
  height: 44px;
  display: block;
}

.nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  padding: 0.3rem;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-2);
  margin: 5px 0;
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  line-height: 1.15;
  font-family: var(--font-display);
  color: var(--accent-2);
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
}

.hero-text,
.section-heading p,
.feature-list,
.booking-info p,
.faq-answer p,
.card p,
.step p,
.testimonial p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--accent) 55%, var(--accent-2));
  color: #fff8ec;
  box-shadow: var(--shadow);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  color: var(--accent-2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats div,
.card,
.step,
.about-card,
.booking-info,
.faq-item,
.testimonial {
  background: var(--surface);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 1rem;
  border-radius: 1rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.1rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: min(100%, 360px);
  padding: 2rem;
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(230, 190, 110, 0.35), rgba(124, 31, 43, 0.14));
  border: 1px solid rgba(198, 154, 63, 0.4);
  box-shadow: var(--shadow);
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--accent-2);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-card h3 {
  color: var(--accent-2);
}

.hero-card ul {
  padding-left: 1.2rem;
  color: var(--muted);
  margin: 1rem 0;
}

.hero-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-2);
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: rgba(198, 154, 63, 0.07);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 0.7rem;
}

.service-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card,
.step {
  border-radius: 1.2rem;
  padding: 1.4rem;
}

.card span {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 700;
}

.about-grid,
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.5rem;
}

.about-card,
.booking-info {
  border-radius: 1.4rem;
  padding: 1.6rem;
}

.feature-list {
  padding-left: 1.2rem;
  margin-top: 1rem;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.pill-group span {
  background: rgba(198, 154, 63, 0.1);
  border: 1px solid var(--border);
  color: var(--accent-2);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.step h3 {
  font-size: 1.7rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

/* Ensure the booking grid isn't clipped on small screens */
.booking-grid {
  overflow: visible;
}

.booking-info ul {
  margin-top: 1rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.testimonial-slider {
  position: relative;
  min-height: 190px;
}

.testimonial {
  display: none;
  border-radius: 1.4rem;
  padding: 1.6rem;
}

.testimonial.active {
  display: block;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(124, 31, 43, 0.22);
  cursor: pointer;
}

.dot.active {
  background: var(--accent-2);
}

/* Floating WhatsApp button */
.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(180deg,#25D366,#128C7E);
  color: #fff;
  box-shadow: 0 8px 30px rgba(18,140,126,0.22);
  z-index: 9999;
  border: 2px solid rgba(255,255,255,0.06);
  text-decoration: none;
}
.whatsapp-btn svg {
  width: 22px;
  height: 22px;
  fill: white;
}
.whatsapp-btn:hover { transform: translateY(-4px); }

/* Step-by-step ritual videos: full-width slider, one step at a time */
.video-slider {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface);
}

/* Full-page variant: edge-to-edge, near full-viewport height */
.video-slider-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  border-left: none;
  border-right: none;
}

.video-slider-full .video-track {
  height: 100vh;
  height: 100svh;
}

.video-track {
  position: relative;
  height: min(62vh, 560px);
}

.video-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 550ms ease;
}

.video-slide.active {
  opacity: 1;
  visibility: visible;
}

.video-slide video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1c130d;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, var(--gold-soft), var(--accent-2));
  color: #fff8ec;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  transition: transform 200ms ease, opacity 200ms ease;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.video-play-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.video-slide .video-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.2rem 1.8rem 1.5rem;
  background: linear-gradient(0deg, rgba(20, 12, 8, 0.72), rgba(20, 12, 8, 0));
  color: #fff8ec;
}

.video-slide .video-caption h3 {
  color: #fff8ec;
}

.video-step {
  display: inline-block;
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.video-caption h3 {
  font-size: 1.15rem;
}

.video-placeholder {
  background: linear-gradient(150deg, #3a2a1d, #7c1f2b 150%);
}

.video-placeholder-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: rgba(255, 248, 236, 0.8);
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.01) 10px,
    rgba(255, 255, 255, 0.01) 20px
  );
}

.video-placeholder-inner svg {
  color: var(--gold-soft);
  opacity: 0.85;
}

.video-placeholder-inner p {
  font-size: 0.9rem;
}

.video-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(58, 42, 29, 0.55);
  color: #fff8ec;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}

.video-arrow.prev {
  left: 1.2rem;
}

.video-arrow.next {
  right: 1.2rem;
}

.video-dots {
  margin-top: 1.2rem;
}

/* Spa moments image slider */
.moment-slider {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.moment-track {
  position: relative;
  height: 340px;
}

.moment-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease;
  background: linear-gradient(150deg, var(--slide-a), var(--slide-b) 140%);
  color: rgba(255, 255, 255, 0.92);
}

.moment-slide.active {
  opacity: 1;
  visibility: visible;
}

.moment-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moment-slide img + .moment-label {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
}

.moment-art {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.moment-label {
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(15, 11, 18, 0.35);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
}

.moment-label span {
  color: #ffe3b3;
  font-size: 0.85rem;
  font-weight: 800;
}

.moment-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(15, 11, 18, 0.45);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.moment-arrow.prev {
  left: 1rem;
}

.moment-arrow.next {
  right: 1rem;
}

.moment-dots {
  margin-top: 1.2rem;
}

@media (max-width: 680px) {
  .video-track {
    height: 320px;
  }

  .moment-track {
    height: 280px;
  }
}

.faq-container {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  color: var(--text);
  border: 0;
  padding: 1rem 1.2rem;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 1.2rem;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding-bottom: 1rem;
}

.footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.footer-middle {
  max-width: 520px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }

.social-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.4rem;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.social-icon svg {
  width: 17px;
  height: 17px;
}
.social-icon:hover {
  background: var(--accent-2);
  color: #fff8ec;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    background: rgba(253, 248, 238, 0.98);
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .service-grid,
  .steps-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
