:root {
  --bg: #faf5fb;
  --surface: #ffffff;
  --ink: #2f1a45;
  --muted: #6b547e;
  --primary: #d055b6;
  --primary-dark: #6a2a87;
  --line: #eadff2;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe57;
  --shadow: 0 18px 40px rgba(106, 42, 135, 0.12);
  --radius: 1.15rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(208, 85, 182, 0.12), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(106, 42, 135, 0.1), transparent 30%),
    linear-gradient(180deg, #fff8fc 0%, var(--bg) 40%, #f7f0fb 100%);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 248, 252, 0.82);
  border-bottom: 1px solid rgba(234, 223, 242, 0.9);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(140px, 15vw, 200px);
  height: auto;
  border-radius: 0.35rem;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.btn {
  display: inline-block;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: 0 10px 24px rgba(106, 42, 135, 0.22);
}

.btn-small {
  font-size: 0.92rem;
  padding: 0.55rem 0.95rem;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-dark);
  border: 1.5px solid #d8b6ea;
}

.btn-secondary:hover {
  background: #f7ebfd;
  box-shadow: none;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 4rem;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  animation: floatGlow 9s ease-in-out infinite;
}

.hero-glow-a {
  width: 28rem;
  height: 28rem;
  top: -8rem;
  right: -6rem;
  background: rgba(208, 85, 182, 0.28);
}

.hero-glow-b {
  width: 22rem;
  height: 22rem;
  bottom: -7rem;
  left: -5rem;
  background: rgba(106, 42, 135, 0.18);
  animation-delay: -3s;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-logo {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin-bottom: 1.4rem;
  border-radius: 0.5rem;
  filter: drop-shadow(0 12px 24px rgba(106, 42, 135, 0.12));
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1,
.section h2,
.book-panel h2,
.cta h2 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.08;
  color: var(--primary-dark);
}

.lead {
  color: var(--muted);
  max-width: 38ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.booking-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.book-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(234, 223, 242, 0.95);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.4rem;
  backdrop-filter: blur(8px);
}

.panel-label {
  margin: 0 0 0.35rem;
  color: var(--whatsapp);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.book-panel h2 {
  margin: 0 0 0.5rem;
  font-size: 1.55rem;
}

.book-panel p {
  margin: 0;
  color: var(--muted);
}

.full {
  width: 100%;
  text-align: center;
  margin-top: 0.7rem;
}

.contact-points {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.contact-points li {
  padding: 0.45rem 0;
  border-top: 1px solid var(--line);
}

.contact-points strong {
  display: inline-block;
  min-width: 5.5rem;
  color: var(--ink);
}

.section {
  padding: clamp(3.4rem, 7vw, 5rem) 0;
}

.section-head {
  margin-bottom: 1.6rem;
}

.section h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary-dark);
}

.section-intro {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

.service-list {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid transparent;
  border-left: 4px solid var(--primary);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-item:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: var(--line);
}

.service-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.15rem;
  line-height: 1;
}

.service-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.service-item p {
  margin: 0;
  color: var(--muted);
}

.section-accent {
  background:
    linear-gradient(135deg, rgba(245, 238, 251, 0.95), rgba(255, 236, 247, 0.9));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.checklist {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.checklist li {
  margin-bottom: 0.55rem;
}

.quote {
  margin: 0;
  background: #fff;
  border: 1px solid #e2cdf0;
  border-radius: var(--radius);
  padding: 1.4rem;
  color: #4d3664;
  box-shadow: var(--shadow);
}

.quote p {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.4;
}

.quote cite {
  font-style: normal;
  color: var(--muted);
  font-weight: 600;
}

.hours-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hours-item {
  padding: 1.1rem 0;
  border-top: 2px solid var(--primary);
}

.hours-item p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-faq {
  background: rgba(255, 255, 255, 0.45);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.2rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding: 0.95rem 0;
  color: var(--primary-dark);
}

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

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

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

.faq-item p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.faq-cta {
  margin-top: 1.3rem;
}

.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(208, 85, 182, 0.35), transparent 40%),
    linear-gradient(145deg, #2f1c43, #4a2864 55%, #3b1f55);
  color: #f9f1ff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.4rem;
  align-items: center;
}

.cta h2 {
  color: #fff;
}

.cta .btn-secondary {
  border-color: #e8b9d9;
  color: #fdefff;
}

.cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.location-panel {
  background: rgba(65, 38, 93, 0.7);
  border: 1px solid rgba(106, 70, 144, 0.9);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.location-panel h3 {
  margin: 0 0 0.4rem;
}

.location-panel p {
  margin: 0 0 0.7rem;
}

.location-panel a {
  color: #f7c6ea;
  font-weight: 700;
}

.site-footer {
  padding: 1.4rem 0;
  background: #241436;
  color: #d9c6ea;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand p {
  margin: 0;
}

.footer-logo {
  display: block;
  width: 110px;
  height: auto;
  border-radius: 0.3rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  min-height: 3.5rem;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  animation: pulseSoft 2.6s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  animation: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.12s;
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(18px) scale(1.05);
  }
}

@keyframes pulseSoft {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.55);
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .service-list,
  .about-grid,
  .hours-row,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .brand-logo {
    width: 140px;
  }

  .hero-logo {
    width: min(100%, 280px);
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-glow,
  .whatsapp-float,
  .reveal {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}
