/* =====================================================================
   Velvet Skin · Estètica & Benestar
   ===================================================================== */

:root {
  --cream: #f3ece1;
  --offwhite: #fbf7f1;
  --beige: #e3d5bc;
  --beige-soft: #ece1cb;
  --gold: #ad8d5e;
  --gold-soft: #c4a57b;
  --gold-deep: #8a6f47;
  --ink: #2e2823;
  --ink-soft: #756a5e;
  --ink-mute: #a09385;
  --dark-bg: #1c1813;
  --dark-bg-2: #2a231b;
  --rule: rgba(46, 40, 35, 0.12);

  --font-serif: 'Instrument Serif', 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --container: 1180px;
  --radius: 2px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
*::selection { background: var(--gold-soft); color: var(--offwhite); }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--offwhite);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--ease-soft);
}
a:hover { color: var(--gold); }

p { margin: 0 0 1em; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: .005em;
  line-height: 1.15;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

em { font-style: italic; color: var(--gold-deep); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------------------------------------------------------
   Reusable bits
   --------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.2em;
  font-weight: 500;
}
.eyebrow--light { color: var(--gold-soft); }

.section {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
}
.section--cream { background: var(--cream); }
.section--dark {
  background: var(--dark-bg);
  color: var(--offwhite);
  background-image: radial-gradient(ellipse at top, rgba(173, 141, 94, 0.12), transparent 60%);
}
.section--dark p { color: rgba(251, 247, 241, 0.72); }

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 6vw, 72px);
}
.section__title {
  margin: 0 0 .5em;
}
.section__title--light { color: var(--offwhite); }
.section__lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn--small { padding: 10px 18px; font-size: 0.7rem; }
.btn--primary {
  background: var(--gold);
  color: var(--offwhite);
}
.btn--primary:hover {
  background: var(--gold-deep);
  color: var(--offwhite);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(138, 111, 71, 0.5);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  color: var(--offwhite);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--offwhite);
}
.btn--ghost-light {
  color: var(--offwhite);
  border-color: rgba(251, 247, 241, 0.4);
}
.btn--ghost-light:hover {
  background: var(--offwhite);
  color: var(--ink);
}

.grid { display: grid; gap: clamp(32px, 5vw, 64px); align-items: start; }
.grid--2 { grid-template-columns: 1fr 1fr; }
.grid--center { align-items: center; }

@media (max-width: 880px) {
  .grid--2 { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   Reveal on scroll
   --------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1.1s var(--ease);
  transition-delay: .05s;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* ---------------------------------------------------------------
   HERO — single-pass "entering the arch" zoom on the spa photo
   --------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  background: var(--cream);
}

/* Background photo: always fills the screen and only zooms IN (never out),
   so no blank is ever revealed. Plays once on load, then freezes. */
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
  transform-origin: 50% 54%;
  transform: scale(1);
  transition: transform 9000ms cubic-bezier(0.16, 0.6, 0.2, 1);
  will-change: transform;
  -webkit-user-select: none;
  user-select: none;
}
.hero.is-entered .hero__img { transform: scale(1.7); }

/* warm cream scrims keep the dark copy legible over the photo */
.hero__scrim { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero__scrim--top { background: linear-gradient(180deg, rgba(243, 236, 225, 0.72) 0%, transparent 34%); }
.hero__scrim--center { background: radial-gradient(ellipse 62% 48% at 50% 44%, rgba(243, 236, 225, 0.82), rgba(243, 236, 225, 0.30) 55%, transparent 78%); }
.hero__scrim--bottom { background: linear-gradient(0deg, rgba(243, 236, 225, 0.85) 0%, transparent 32%); }

.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero__eyebrow {
  margin-bottom: 1.3em;
  color: #fff;
  text-shadow: 0 1px 12px rgba(28, 24, 19, 0.55);
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.06;
  color: var(--ink);
  margin: 0;
  max-width: 18ch;
  text-shadow: 0 1px 22px rgba(243, 236, 225, 0.6);
}
.hero__title span { display: block; }
.hero__title em {
  display: block;
  font-style: italic;
  color: var(--gold-deep);
  margin-top: .08em;
}
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 32rem;
  margin: 1.5em auto 0;
  line-height: 1.6;
  text-shadow: 0 1px 14px rgba(243, 236, 225, 0.9);
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.2em;
}
@media (prefers-reduced-motion: reduce) {
  .hero__img,
  .hero.is-entered .hero__img { transition: none; transform: scale(1.12); }
}

/* ---------------------------------------------------------------
   HEADER
   --------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .45s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(251, 247, 241, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 1px 20px rgba(46, 40, 35, 0.04);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand__logo {
  height: 54px;
  width: auto;
  transition: height .35s var(--ease);
}
.site-header.is-scrolled .brand__logo { height: 42px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: .08em;
  color: var(--ink);
}
.brand__sub {
  font-size: 0.62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

.site-header:not(.is-scrolled) .brand__name { color: var(--ink); }
.site-header:not(.is-scrolled) .brand__sub { color: var(--ink-soft); }
.site-header:not(.is-scrolled) .nav a { color: var(--ink); }
.site-header:not(.is-scrolled) .lang__btn {
  color: var(--ink-soft);
  border-color: rgba(46, 40, 35, 0.25);
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  font-size: 0.78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang { display: flex; gap: 2px; }
.lang__btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: .12em;
  padding: 5px 9px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s var(--ease);
  font-weight: 500;
}
.lang__btn:hover { color: var(--gold); }
.lang__btn.is-active {
  color: var(--gold);
  border-color: currentColor;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: all .3s var(--ease);
}
.site-header:not(.is-scrolled) .menu-toggle span {
  background: var(--ink);
}

@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(80vw, 360px);
    background: var(--offwhite);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,.08);
  }
  .nav.is-open { transform: translateX(0); }
  .nav a, .site-header:not(.is-scrolled) .nav a {
    color: var(--ink);
    font-size: 1rem;
    text-shadow: none;
  }
  .menu-toggle { display: flex; }
  .header__actions .btn--small { display: none; }
}

/* ---------------------------------------------------------------
   ABOUT
   --------------------------------------------------------------- */
.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(46, 40, 35, 0.35);
}
.about__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 50% 50%;
  transition: transform 1.2s var(--ease);
}
.about__media:hover .about__image { transform: scale(1.04); }

.values {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}
.values li {
  display: grid;
  grid-template-columns: 18px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: baseline;
}
.values__mark {
  grid-column: 1;
  grid-row: 1;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
}
.values li strong {
  grid-column: 2;
  grid-row: 1;
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.values li span:last-child {
  grid-column: 2;
  grid-row: 2;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ---------------------------------------------------------------
   SERVICES — treatment menu
   --------------------------------------------------------------- */
.menu {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: clamp(44px, 6vw, 72px);
}
.menu__cat {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--ink);
  margin: 0 0 .15em;
}
.menu__cat::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-soft);
  margin: 14px auto 0;
}
.menu__catnote {
  text-align: center;
  font-style: italic;
  color: var(--ink-mute);
  font-size: 0.88rem;
  margin: 0 0 26px;
}
.menu__cat + .menu__list { margin-top: 26px; }
.menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.menu__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 28px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--rule);
  transition: background .35s var(--ease), padding-left .35s var(--ease);
}
.menu__item:hover {
  background: var(--cream);
  padding-left: 14px;
}
.menu__lead { min-width: 0; }
.menu__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.25;
}
.menu__name em {
  font-size: 0.85em;
  color: var(--gold-deep);
}
.menu__desc {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 5px;
  line-height: 1.5;
}
.menu__prices {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-deep);
  margin-top: 10px;
  letter-spacing: .01em;
}
.menu__meta {
  display: flex;
  align-items: baseline;
  gap: 18px;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu__dur {
  font-size: 0.7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.menu__price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-deep);
}

.services__note {
  text-align: center;
  font-style: italic;
  color: var(--ink-mute);
  margin: clamp(40px, 6vw, 64px) auto 0;
  max-width: 560px;
  font-size: 0.92rem;
}

@media (max-width: 560px) {
  .menu__item {
    flex-direction: column;
    gap: 8px;
  }
  .menu__meta { gap: 14px; }
}

/* ---------------------------------------------------------------
   HOURS
   --------------------------------------------------------------- */
.hours-card {
  background: linear-gradient(135deg, #d6b988 0%, #b8956a 50%, #8d6e44 100%);
  padding: 4px;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -25px rgba(138, 111, 71, 0.45);
  position: relative;
}
.hours-card__inner {
  background: linear-gradient(135deg, #c5a572 0%, #b8956a 50%, #a08453 100%);
  padding: 44px 36px;
  border-radius: var(--radius);
  position: relative;
  color: #2e2823;
}
.hours-card__inner::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(46, 40, 35, 0.18);
  border-radius: var(--radius);
  pointer-events: none;
}
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(46, 40, 35, 0.15);
  gap: 16px;
}
.hours__row:last-of-type { border-bottom: none; }
.hours__day {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #2e2823;
  font-weight: 500;
}
.hours__time {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #2e2823;
}
.hours__time--closed {
  color: #6b4f2f;
  font-style: italic;
}
.hours-card__seal {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  color: rgba(46, 40, 35, 0.35);
}

/* ---------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}
.contact-card {
  padding: 28px 20px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: all .4s var(--ease);
}
.contact-card__value { font-size: 1.05rem; }
.contact-card:hover {
  background: var(--offwhite);
  border-color: var(--gold-soft);
  transform: translateY(-3px);
}
.contact-card__label {
  font-size: 0.7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 12px;
}
.contact-card__value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
  display: block;
  word-break: break-word;
  line-height: 1.35;
}
a.contact-card__value:hover { color: var(--gold); }
.contact-card__hint {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--ink-mute);
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.map {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  box-shadow: 0 30px 60px -30px rgba(46, 40, 35, 0.25);
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.3) sepia(.1);
}
@media (max-width: 600px) {
  .map { aspect-ratio: 4 / 3; }
}

/* ---------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------- */
.footer {
  background: #1a1611;
  color: rgba(251, 247, 241, 0.7);
  padding: 64px 0 24px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(251, 247, 241, 0.08);
}
.footer__logo {
  height: 84px;
  width: auto;
}
.footer__brand .brand__name {
  color: var(--offwhite);
  font-size: 1.6rem;
}
.footer__brand .brand__sub {
  color: var(--gold-soft);
  margin-top: 6px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__cols p { color: rgba(251, 247, 241, 0.62); margin: 0 0 6px; }
.footer__cols a { color: var(--gold-soft); }
.footer__cols a:hover { color: var(--offwhite); }
.footer__label {
  font-size: 0.72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px !important;
  font-weight: 500;
}
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(251, 247, 241, 0.5);
}
.footer__legal a { color: rgba(251, 247, 241, 0.5); }
.footer__legal a:hover { color: var(--gold-soft); }

@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__cols { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   Floating contact bubbles (WhatsApp + Instagram) — always on
   --------------------------------------------------------------- */
.float-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.float-btn:hover {
  transform: translateY(-4px) scale(1.05);
  color: #fff;
}
.float-btn svg {
  width: 28px;
  height: 28px;
}
.float-whats {
  background: #25D366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}
.float-whats:hover {
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55);
}
.float-insta {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 10px 30px rgba(214, 36, 159, 0.35);
}
.float-insta:hover {
  box-shadow: 0 16px 40px rgba(214, 36, 159, 0.5);
}
