*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --sage:       #6bada0;
  --sage-light: #a8d5cc;
  --blush:      #f2c4bc;
  --blush-light:#f9e0db;
  --cream:      #fdfaf8;
  --warm-white: #fff9f7;
  --stone:      #8a8078;
  --deep:       #3a4a47;
  --accent:     #e8897a;
  --teal:       #4a9e8e;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--deep); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 6vw;
  background: rgba(253,250,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,173,160,0.2);
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav-logo img { height: 52px; width: 52px; object-fit: contain; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--deep); line-height: 1.1; }
.nav-logo-text span { display: block; font-size: 0.75rem; font-weight: 400; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--stone); font-size: 0.88rem; font-weight: 400; letter-spacing: 0.04em; transition: color 0.25s; }
.nav-links a:hover { color: var(--teal); }
.nav-links .btn-book { background: var(--teal); color: #fff !important; padding: 0.55rem 1.4rem; border-radius: 50px; font-weight: 500; transition: background 0.25s, transform 0.2s !important; }
.nav-links .btn-book:hover { background: var(--sage); transform: translateY(-1px); }
.nav-links .btn-whatsapp { background: var(--teal); color: #fff !important; padding: 0.55rem 1.4rem; border-radius: 50px; font-weight: 500; transition: background 0.25s, transform 0.2s !important; }
.nav-links .btn-whatsapp:hover { background: var(--sage); transform: translateY(-1px); }

/* HERO */
#home { min-height: 100vh; display: flex; align-items: center; padding: 8rem 6vw 4rem; position: relative; overflow: hidden; }
.hero-blob { position: absolute; border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; opacity: 0.4; pointer-events: none; }
.blob-1 { width: 520px; height: 520px; background: var(--blush); top: -80px; right: -60px; animation: float 8s ease-in-out infinite; }
.blob-2 { width: 360px; height: 360px; background: var(--sage-light); bottom: 40px; right: 200px; animation: float 11s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(3deg); } }
.hero-content { position: relative; max-width: 620px; animation: fadeUp 0.9s ease both; }
@keyframes fadeUp { from { opacity:0; transform: translateY(28px); } to { opacity:1; transform: translateY(0); } }
.hero-tag { display: inline-block; background: var(--blush-light); color: var(--accent); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.4rem; }
.hero-content h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 5.5vw, 4.2rem); font-weight: 300; line-height: 1.15; margin-bottom: 1.2rem; }
.hero-content h1 em { font-style: italic; color: var(--teal); }
.hero-content p { color: var(--stone); font-size: 1.05rem; line-height: 1.75; max-width: 480px; margin-bottom: 2.2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { display: inline-block; text-decoration: none; background: var(--teal); color: #fff; padding: 0.85rem 2rem; border-radius: 50px; font-size: 0.92rem; font-weight: 500; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 18px rgba(74,158,142,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,158,142,0.4); }
.btn-secondary { display: inline-block; text-decoration: none; border: 1.5px solid var(--sage-light); color: var(--deep); padding: 0.85rem 2rem; border-radius: 50px; font-size: 0.92rem; font-weight: 400; transition: background 0.2s; }
.btn-secondary:hover { background: var(--blush-light); }
.btn-whatsapp { display: inline-block; text-decoration: none; background: #25D366; color: #fff !important; padding: 0.85rem 2rem; border-radius: 50px; font-size: 0.92rem; font-weight: 500; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 18px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

/* SHARED */
section { padding: 5.5rem 6vw; }
.section-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 300; line-height: 1.2; margin-bottom: 1rem; }
.divider { width: 48px; height: 2px; background: var(--sage-light); border-radius: 4px; margin-bottom: 1.8rem; }

/* ABOUT */
#about { background: var(--warm-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1100px; }
.about-photo { position: relative; }
.photo-badge { position: absolute; bottom: 20px; right: -20px; background: white; border-radius: 16px; padding: 1rem 1.4rem; box-shadow: 0 8px 32px rgba(0,0,0,0.08); text-align: center; }
.photo-badge strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--teal); }
.photo-badge span { font-size: 0.75rem; color: var(--stone); }
.about-text p { color: var(--stone); line-height: 1.85; font-size: 0.97rem; margin-bottom: 1.2rem; }
.credentials { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.4rem; }
.credential-item { display: flex; align-items: center; gap: 0.8rem; font-size: 0.9rem; color: var(--deep); }
.credential-item::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* SERVICES */
#services { background: var(--cream); }
.services-intro { max-width: 560px; margin-bottom: 3rem; }
.services-intro p { color: var(--stone); line-height: 1.75; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; max-width: 1100px; }
.service-card { background: var(--warm-white); border-radius: 20px; padding: 2rem 1.8rem; border: 1px solid rgba(107,173,160,0.2); transition: transform 0.25s, box-shadow 0.25s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--blush)); opacity: 0; transition: opacity 0.25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.07); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--deep); }
.service-card p { font-size: 0.88rem; color: var(--stone); line-height: 1.65; }

/* BOOKING */
#booking { background: linear-gradient(135deg, #d4eeea 0%, var(--blush-light) 100%); text-align: center; padding: 6rem 6vw; }
#booking p { color: var(--stone); font-size: 1.05rem; line-height: 1.75; max-width: 520px; margin: 0 auto 2.4rem; }

/* CONTACT */
#contact { background: var(--warm-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1000px; align-items: start; }
.contact-block h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; margin-bottom: 1.4rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.4rem; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--blush-light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item-text strong { display: block; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.2rem; }
.contact-item-text span { font-size: 0.95rem; color: var(--stone); line-height: 1.5; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.5rem 0; font-size: 0.9rem; color: var(--stone); border-bottom: 1px solid rgba(107,173,160,0.2); }
.hours-table td:first-child { color: var(--deep); font-weight: 500; }
.hours-table td:last-child { text-align: right; }
.closed { color: var(--stone) !important; font-style: italic; }

/* FOOTER */
footer { background: var(--deep); color: rgba(255,255,255,0.55); text-align: center; padding: 2rem 6vw; font-size: 0.82rem; line-height: 1.8; }
footer strong { color: rgba(255,255,255,0.85); }

/* MOBILE */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--deep); border-radius: 4px; transition: 0.3s; }
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--cream); padding: 1.5rem 6vw 2rem; border-bottom: 1px solid var(--blush-light); gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .photo-badge { right: 0; }
  #home { padding-top: 6rem; }
}
