:root {
  --mint: #e8f7f4;
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --ink: #134e4a;
  --white: #fff;
  --ease: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--mint);
  color: var(--ink);
  overflow-x: hidden;
}
h1, h2, .logo { font-family: 'Fraunces', serif; }
a { text-decoration: none; color: inherit; }

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.5;
}
.blob-a { width: 400px; height: 400px; background: #99f6e4; top: -100px; right: -100px; }
.blob-b { width: 300px; height: 300px; background: #a7f3d0; bottom: 20%; left: -80px; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 48px);
}
.logo { font-size: 1.4rem; font-weight: 700; }
.logo span { color: var(--teal); font-weight: 500; }
.nav-links { display: flex; gap: 28px; align-items: center; font-weight: 500; }
.nav-pill {
  background: var(--teal);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 100px;
}
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; }

.hero {
  text-align: center;
  padding: 20px clamp(20px, 4vw, 48px) 64px;
  max-width: 640px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(13,148,136,0.12);
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); line-height: 1.1; margin-bottom: 16px; }
.hero h1 span { color: var(--teal); }
.hero > p { color: #4b7a75; margin-bottom: 32px; }

.hero-orbit {
  position: relative;
  width: min(320px, 85vw);
  margin: 0 auto 32px;
}
.hero-orbit img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--white);
  box-shadow: 0 24px 60px rgba(13,148,136,0.2);
}
.orbit-card {
  position: absolute;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  animation: float 4s ease-in-out infinite;
}
.orbit-1 { top: 10%; right: -20%; }
.orbit-2 { bottom: 15%; left: -25%; animation-delay: -2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.btn-main {
  display: inline-block;
  background: var(--teal-dark);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  transition: transform 0.3s var(--ease);
}
.btn-main:hover { transform: scale(1.04); }

.scroll-services { padding: 48px 0 64px; }
.scroll-services h2 {
  text-align: center;
  margin-bottom: 24px;
  padding: 0 24px;
}
.scroll-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 24px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.scroll-track::-webkit-scrollbar { height: 6px; }
.scroll-track::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }
.service-pill {
  flex: 0 0 160px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 24px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(13,148,136,0.1);
}
.service-pill span { font-size: 2rem; display: block; margin-bottom: 8px; }
.service-pill h3 { font-size: 1rem; margin-bottom: 4px; }
.service-pill p { font-size: 0.8rem; color: #6b8f8b; }

.comfort {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 64px clamp(20px, 4vw, 48px);
  background: var(--white);
  border-radius: 48px 48px 0 0;
  margin-top: 24px;
}
.comfort h2 { font-size: 1.8rem; margin-bottom: 16px; }
.comfort ul { margin-top: 20px; list-style: none; }
.comfort li {
  padding: 12px 0;
  border-bottom: 1px dashed #cce8e4;
  font-size: 0.95rem;
}
.comfort-visual img {
  width: 100%;
  border-radius: 32px;
  object-fit: cover;
  min-height: 280px;
}

.book {
  padding: 64px clamp(20px, 4vw, 48px);
}
.book-form {
  max-width: 420px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(13,148,136,0.15);
}
.book-form h2 { margin-bottom: 24px; text-align: center; }
.book-form input,
.book-form select {
  width: 100%;
  margin-bottom: 12px;
  padding: 14px 16px;
  border: 2px solid #e0f2f0;
  border-radius: 12px;
  font: inherit;
}
.book-form button {
  width: 100%;
  padding: 16px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
}

.footer { text-align: center; padding: 24px; font-size: 0.85rem; color: #6b8f8b; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    flex-direction: column;
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  }
  .nav-links.is-open { display: flex; }
  .comfort { grid-template-columns: 1fr; }
}
