:root {
  --violet: #6C4CF5;
  --violet-dark: #4E30D6;
  --mint: #2FD9C4;
  --coral: #FF6B6B;
  --ink: #1B1230;
  --ink-soft: #5B5470;
  --bg: #FBFAFF;
  --card: #FFFFFF;
  --border: #ECE8FA;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(76, 45, 189, 0.08);
  --shadow-hover: 0 16px 40px rgba(76, 45, 189, 0.16);
}

* { box-sizing: border-box; }

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

[id] {
  scroll-margin-top: 80px;
}

:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 2px;
  border-radius: 4px;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.4em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-align: center;
}

p {
  color: var(--ink-soft);
}

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

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 90px 24px;
}

.section-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.logo-mark {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.logo-text span {
  color: var(--violet);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a:not(.btn) {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.15s;
}

.nav-links a:not(.btn):hover {
  color: var(--violet);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  color: white;
  box-shadow: 0 8px 20px rgba(108, 76, 245, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(108, 76, 245, 0.45);
}

.btn-ghost {
  background: white;
  color: var(--ink);
  border: 1px solid var(--border);
}

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

.btn-lg {
  padding: 15px 30px;
  font-size: 1rem;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.nav-mobile-actions {
  display: contents;
}

.nav-cta-mobile {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 24px 100px;
  text-align: center;
}

.hero-blob {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: linear-gradient(135deg, var(--mint), var(--violet));
  opacity: 0.18;
  border-radius: 50%;
  filter: blur(10px);
}

.hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  background: white;
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--violet-dark);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 520px;
  margin: 20px auto 36px;
}

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

.hero-perks {
  list-style: none;
  display: flex;
  gap: 10px 26px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0 0;
  padding: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* How it works */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.how-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
}

.how-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--mint));
  color: white;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.how-card h3 {
  font-size: 1.15rem;
}

.how-card p {
  font-size: 0.95rem;
  margin: 0;
}

/* Services / pricing */
.services {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.price-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.price-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.price-desc {
  font-size: 0.88rem;
  margin: 0 0 16px;
}

.price-tag {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--violet-dark);
}

.price-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.95rem;
}

.price-note a {
  color: var(--violet);
  font-weight: 700;
  text-decoration: underline;
}

/* Areas */
.area-chips {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.chip {
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow);
}

.areas-sub {
  text-align: center;
}

/* Booking */
.book {
  background: linear-gradient(180deg, rgba(108,76,245,0.06), transparent);
}

.booking-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
  overflow: hidden;
}

#cal-booking {
  width: 100%;
  min-height: 700px;
  overflow: auto;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--violet);
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 12px 0 0;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: var(--ink);
  color: white;
  text-align: center;
  padding: 48px 24px;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.footer-email {
  color: var(--mint);
  font-weight: 600;
}

.footer-copy {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-top: 18px;
}

/* Reveal animation — content only starts hidden when JS is confirmed running */
html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .price-card {
    transition: none;
  }
}

/* Responsive */
@media (max-width: 860px) {
  .how-grid, .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .nav-cta {
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

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

  .nav-cta-mobile {
    display: inline-flex;
  }

  .nav-links .nav-cta {
    display: none;
  }

  .how-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section-inner {
    padding: 60px 20px;
  }
}
