/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #fdf3f1;
  --bg-2: #f7e3df;
  --paper: #fffaf9;
  --wine: #4a1c28;
  --ink: #3a1620;
  --ink-soft: #6b3745;
  --ink-mute: #9a7680;
  --accent: #c98a9c;
  --accent-2: #cfa25c;
  --line: rgba(58,22,32,0.12);

  --display: "Cormorant", serif;
  --sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { font-family: var(--sans); font-size: 16px; line-height: 1.65; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: clip; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; line-height: 1.05; font-family: var(--display); font-weight: 600; }
em { font-style: italic; color: var(--accent-2); }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link { position: fixed; top: -100px; left: 1rem; z-index: 9999; padding: .6rem 1rem; background: var(--wine); color: #fff; border-radius: 6px; font-weight: 600; }
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Demo ribbon
   ============================================================= */
.demo-ribbon { display: flex; align-items: center; justify-content: center; gap: .5rem; background: var(--wine); color: rgba(255,255,255,.75); font-size: .78rem; padding: .5rem 1rem; text-align: center; flex-wrap: wrap; }
.demo-ribbon a { color: #fff; font-weight: 600; }
.demo-ribbon a:hover { text-decoration: underline; }

/* =============================================================
   4. Nav — minimal, hamburger only
   ============================================================= */
.nav { position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.6rem; }
.nav-logo { font-family: var(--display); font-style: italic; font-weight: 600; font-size: 1.4rem; }
.menu-btn { position: relative; z-index: 210; width: 44px; height: 44px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.menu-btn span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .35s var(--ease-out), opacity .3s; }
.menu-btn[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.menu-overlay { position: fixed; inset: 0; z-index: 200; background: var(--wine); color: #fff; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .4s var(--ease-out); }
.menu-overlay.is-open { opacity: 1; pointer-events: auto; }
.menu-overlay nav { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.menu-overlay a { font-family: var(--display); font-style: italic; font-size: 2.2rem; font-weight: 500; transition: color .3s; }
.menu-overlay a:hover { color: var(--accent-2); }

/* =============================================================
   5. Buttons
   ============================================================= */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: .92rem; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s, color .3s; }
.btn-primary { background: var(--wine); color: #fff; box-shadow: 0 12px 26px rgba(74,28,40,0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(74,28,40,0.32); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* =============================================================
   6. Hero + liquid blobs
   ============================================================= */
.hero { position: relative; padding: 2rem 1.4rem 0; overflow: clip; }
.blob-field { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.blob { position: absolute; border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%; filter: blur(6px); opacity: .55; animation: blobDrift 22s ease-in-out infinite; }
.blob-1 { width: 480px; height: 480px; background: var(--accent); top: -12%; left: -10%; }
.blob-2 { width: 380px; height: 380px; background: var(--accent-2); top: 10%; right: -8%; animation-delay: -6s; opacity: .35; }
.blob-3 { width: 300px; height: 300px; background: #eab9c4; bottom: -10%; left: 30%; animation-delay: -12s; opacity: .4; }
@keyframes blobDrift {
  0%, 100% { transform: translate(0,0) scale(1) rotate(0deg); border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%; }
  50% { transform: translate(3%, -4%) scale(1.08) rotate(12deg); border-radius: 55% 45% 40% 60% / 55% 40% 60% 45%; }
}
@media (prefers-reduced-motion: reduce) { .blob { animation: none; } }

.hero-inner { max-width: 760px; margin: 0 auto; padding: 2rem 0 6rem; text-align: center; position: relative; }
.mirror-frame { width: 170px; height: 220px; margin: 0 auto 2rem; border-radius: 50% 50% 45% 45%; border: 3px solid rgba(255,255,255,0.6); position: relative; overflow: hidden; box-shadow: 0 20px 40px rgba(74,28,40,0.25); }
.mirror-frame img { width: 100%; height: 100%; object-fit: cover; }
.mirror-shine { position: absolute; inset: -40% -60%; background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.55) 50%, transparent 60%); animation: shineSweep 3.2s ease-in-out infinite; }
@keyframes shineSweep { 0% { transform: translateX(-60%); } 100% { transform: translateX(60%); } }
@media (prefers-reduced-motion: reduce) { .mirror-shine { animation-duration: 5s; } }

.eyebrow { font-size: .84rem; font-weight: 600; color: var(--accent); margin-bottom: .9rem; letter-spacing: .02em; }
.hero-title { font-size: clamp(2.4rem, 6.4vw, 3.8rem); font-style: italic; }
.hero-sub { margin: 1.2rem auto 0; max-width: 46ch; color: var(--ink-soft); }
.hero-actions { margin-top: 1.8rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.wave-divider { display: block; width: 100%; height: 60px; }

/* =============================================================
   7. Sections
   ============================================================= */
.section { max-width: 1100px; margin: 0 auto; padding: 4rem 1.4rem; }
.section-head { max-width: 600px; margin-bottom: 2.5rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.section-dark { position: relative; max-width: none; background: var(--wine); color: #fdf3f1; padding: 4.5rem 1.4rem; overflow: clip; }
.section-dark .eyebrow { color: var(--accent-2); }

.services-figure { margin-bottom: 2rem; border-radius: 24px; overflow: hidden; }
.services-figure img { width: 100%; aspect-ratio: 21/8; object-fit: cover; display: block; }

/* =============================================================
   8. Services with shine sweep
   ============================================================= */
.services-grid { display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.service-card { position: relative; overflow: hidden; background: var(--paper); border-radius: 20px; padding: 1.7rem; box-shadow: 0 1px 0 var(--line); transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(74,28,40,0.14); }
.shine-sweep { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 45%, transparent 60%); transform: translateX(-120%); transition: transform .8s var(--ease-out); pointer-events: none; }
.service-card:hover .shine-sweep { transform: translateX(120%); }
.service-icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 14px; background: rgba(201,138,156,0.16); color: var(--accent); margin-bottom: 1rem; }
.service-card h3 { font-size: 1.15rem; margin-bottom: .4rem; font-style: italic; }
.service-card p { color: var(--ink-mute); font-size: .9rem; }

/* =============================================================
   9. Ritual steps
   ============================================================= */
.ritual-layout { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 860px) { .ritual-layout { grid-template-columns: .8fr 1.2fr; } }
.ritual-photo { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; }
.ritual-photo img { width: 100%; height: 100%; object-fit: cover; }
.ritual-steps { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-top: 2rem; }
.ritual-num { font-family: var(--display); font-style: italic; font-size: 2.2rem; color: var(--accent-2); }
.ritual-step h3 { font-size: 1.1rem; margin: .5rem 0 .4rem; }
.ritual-step p { font-size: .9rem; opacity: .8; }

.ambiance-section { padding-top: 0; }
.ambiance-figure { position: relative; border-radius: 24px; overflow: hidden; }
.ambiance-figure img { width: 100%; aspect-ratio: 21/9; object-fit: cover; display: block; }
.ambiance-figure figcaption { position: absolute; left: 1.3rem; bottom: 1rem; color: #fff; font-size: .9rem; font-style: italic; font-family: var(--display); text-shadow: 0 2px 12px rgba(0,0,0,0.5); }

/* =============================================================
   10. Testimonials
   ============================================================= */
.testi-grid { display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.testi-card { background: var(--paper); border-radius: 20px; padding: 1.7rem; box-shadow: 0 1px 0 var(--line); }
.testi-card p { font-style: italic; font-family: var(--display); font-size: 1.15rem; margin-bottom: 1rem; }
.testi-card footer { font-size: .85rem; color: var(--ink-mute); }

/* =============================================================
   11. Reserva
   ============================================================= */
.reserva-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 860px) { .reserva-grid { grid-template-columns: 1.1fr .9fr; } }
.reserva-copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin: .5rem 0 1rem; }
.reserva-copy p { color: var(--ink-soft); margin-bottom: 1.6rem; max-width: 44ch; }
.reserva-photo { border-radius: 24px; overflow: hidden; max-width: 380px; margin: 0 auto; box-shadow: 0 20px 40px rgba(74,28,40,0.15); aspect-ratio: 4/5; }
.reserva-photo img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================================
   12. Footer
   ============================================================= */
.footer { text-align: center; padding: 3rem 1.4rem; color: var(--ink-mute); font-size: .85rem; }
.footer-brand { font-family: var(--display); font-style: italic; font-size: 1.4rem; color: var(--ink); margin-bottom: .4rem; }
.footer-demo a { text-decoration: underline; }

/* =============================================================
   13. Floating WhatsApp button
   ============================================================= */
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 200; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #25d366; color: #2a0e15; box-shadow: 0 10px 28px rgba(58,22,32,0.3); transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out); }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 34px rgba(58,22,32,0.38); }
.whatsapp-float-ring { position: absolute; inset: 0; border-radius: 50%; background: #25d366; opacity: .55; animation: waPulse 2.4s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.7); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .whatsapp-float-ring { animation: none; display: none; } }
@media (max-width: 540px) { .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; } }

/* =============================================================
   14. Reveal
   ============================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
