:root {
  --ink: #181715;
  --ink-soft: #28241f;
  --ivory: #f5f0e8;
  --ivory-deep: #eae2d5;
  --white: #fffdf9;
  --rose: #a66b78;
  --rose-deep: #713e4b;
  --sage: #a7b69c;
  --gold: #c6aa77;
  --muted: #716b62;
  --line: rgba(42, 36, 29, .13);
  --glass: rgba(255, 253, 249, .58);
  --shadow: 0 30px 80px rgba(49, 39, 28, .13);
  --shadow-dark: 0 30px 80px rgba(0, 0, 0, .24);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 2%, rgba(166, 107, 120, .12), transparent 31rem),
    radial-gradient(circle at 90% 20%, rgba(167, 182, 156, .13), transparent 35rem),
    var(--ivory);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
::selection { color: var(--white); background: var(--rose-deep); }

.skip-link {
  position: fixed;
  z-index: 999;
  left: 1rem;
  top: -5rem;
  color: #fff;
  background: var(--ink);
  padding: .85rem 1.1rem;
  border-radius: 12px;
}
.skip-link:focus { top: 1rem; }
.page-noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}
.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .24;
  pointer-events: none;
  animation: ambientFloat 13s ease-in-out infinite alternate;
}
.ambient-one { width: 34rem; height: 34rem; right: -14rem; top: 6rem; background: var(--rose); }
.ambient-two { width: 30rem; height: 30rem; left: -17rem; top: 55%; background: var(--sage); animation-delay: -5s; }
.cursor-glow {
  position: fixed;
  z-index: -1;
  width: 23rem;
  height: 23rem;
  left: -12rem;
  top: -12rem;
  border-radius: 50%;
  background: rgba(198, 170, 119, .12);
  filter: blur(45px);
  pointer-events: none;
  transition: transform .2s linear;
}
.shell { width: min(1320px, calc(100% - 8vw)); margin-inline: auto; }
.section { padding-block: clamp(6rem, 9vw, 10rem); }
.glass {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 16px 45px rgba(57, 44, 31, .09), inset 0 1px 0 rgba(255, 255, 255, .65);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
}
.glass-dark {
  color: #fff;
  background: rgba(22, 20, 18, .43);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .13);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

/* Navigation */
.site-header { position: fixed; z-index: 50; inset: 0 0 auto; padding: 1rem 4vw; }
.nav {
  min-height: 72px;
  max-width: 1320px;
  margin: auto;
  padding: .65rem .75rem .65rem 1.35rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: min-height .45s var(--ease), background .45s, box-shadow .45s;
}
.site-header.scrolled .nav { min-height: 62px; background: rgba(255, 253, 249, .82); box-shadow: 0 12px 38px rgba(35, 29, 23, .12); }
.brand { display: flex; align-items: center; gap: .9rem; }
.brand-monogram {
  font-family: "Italiana", serif;
  font-size: 2.8rem;
  line-height: .8;
  letter-spacing: -.2em;
  transform: skew(-7deg);
}
.brand-name strong { display: block; font-family: "Italiana", serif; font-size: 1.4rem; font-weight: 400; line-height: 1; }
.brand-name small { display: block; margin-top: .28rem; color: var(--muted); font-size: .52rem; letter-spacing: .16em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.7rem; font-size: .8rem; font-weight: 600; }
.nav-links > a:not(.nav-cta) { position: relative; }
.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 100% -.4rem 0;
  height: 1px;
  background: var(--rose-deep);
  transition: right .35s var(--ease);
}
.nav-links > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { display: inline-flex; align-items: center; gap: .6rem; color: #fff; background: var(--ink); padding: .9rem 1.15rem; border-radius: 16px; }
.nav-cta span { color: #dbc397; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 15px; background: rgba(255, 255, 255, .5); cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 1.5px; margin: 5px auto; background: var(--ink); transition: .3s; }

/* Shared typography and buttons */
.micro-label {
  margin: 0 0 1.35rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.micro-label > span { width: 2.7rem; height: 1px; background: var(--rose); }
.micro-label.light { color: rgba(255, 255, 255, .65); }
.micro-label.light > span { background: var(--gold); }
h1, h2, h3 { font-weight: 400; }
h1, h2 { font-family: "Italiana", serif; letter-spacing: -.045em; }
h2 { margin: 0; font-size: clamp(3.1rem, 5.5vw, 5.7rem); line-height: .97; }
h2 em { color: var(--rose); font-style: italic; }
.button {
  min-height: 54px;
  padding: .95rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  font-size: .82rem;
  font-weight: 700;
  transition: transform .35s var(--ease), box-shadow .35s, background .35s;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(27, 23, 19, .15); }
.button span { color: var(--gold); }
.button-dark { color: #fff; background: var(--ink); border-color: var(--ink); }
.button-dark:hover { background: var(--ink-soft); }
.button-light { color: var(--ink); background: var(--white); border-color: rgba(255, 255, 255, .55); }
.button-glass { background: rgba(255, 255, 255, .37); border-color: rgba(255, 255, 255, .75); backdrop-filter: blur(15px); }

/* Hero */
.hero {
  min-height: 100vh;
  padding-top: 9.2rem;
  padding-bottom: 4.8rem;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 6rem);
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin: 0; font-size: clamp(4.25rem, 7vw, 7.5rem); line-height: .86; }
.hero h1 em { color: var(--rose-deep); font-style: italic; }
.hero-lead { max-width: 570px; margin: 2rem 0; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-notes { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .7rem 1.7rem; color: var(--muted); font-size: .72rem; }
.hero-notes i { width: 8px; height: 8px; margin-right: .45rem; display: inline-block; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 6px rgba(167, 182, 156, .17); }
.hero-slider { min-width: 0; }
.slider-stage {
  position: relative;
  min-height: min(73vh, 720px);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 46% 46% 30px 30px;
  background: #211f1c;
  box-shadow: var(--shadow);
}
.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1s var(--ease), visibility 1s; }
.slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 7s linear; }
.slide.is-active img { transform: scale(1); }
.slide-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(12, 11, 10, .64)); }
.slide-caption {
  position: absolute;
  z-index: 2;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.slide-caption span { color: rgba(255, 255, 255, .67); font-size: .6rem; letter-spacing: .17em; text-transform: uppercase; }
.slide-caption strong { font-family: "Italiana", serif; font-size: 1.45rem; font-weight: 400; text-align: right; }
.hero-seal {
  position: absolute;
  z-index: 4;
  top: 13%;
  right: 0;
  width: 112px;
  height: 112px;
  padding-left: 8px;
  border-radius: 56px 0 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  color: var(--ink);
  background: rgba(245, 240, 232, .88);
  box-shadow: -12px 15px 35px rgba(0, 0, 0, .14);
  backdrop-filter: blur(12px);
}
.hero-seal span { font-family: "Italiana", serif; font-size: 2.8rem; }
.hero-seal small { font-size: .48rem; line-height: 1.4; letter-spacing: .11em; }
.slider-controls {
  position: relative;
  z-index: 6;
  width: calc(100% - 3rem);
  min-height: 64px;
  margin: -1px auto 0;
  padding: .5rem .65rem;
  border-radius: 0 0 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
}
.slider-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .42);
  cursor: pointer;
  transition: .3s var(--ease);
}
.slider-arrow:hover { color: #fff; background: var(--ink); transform: translateY(-2px); }
.slider-dots { display: flex; align-items: center; gap: .45rem; }
.slider-dot { width: 28px; height: 30px; padding: 0; border: 0; display: grid; place-items: center; background: transparent; cursor: pointer; }
.slider-dot span { width: 7px; height: 7px; border-radius: 20px; background: #b4aea5; transition: width .4s var(--ease), background .4s; }
.slider-dot.is-active span { width: 24px; background: var(--rose-deep); }
.slider-count { min-width: 58px; color: var(--muted); font-size: .66rem; text-align: center; }
.slider-count b { color: var(--ink); font-size: .86rem; }

/* Moving strip */
.moving-strip { width: 102%; margin-left: -1%; padding: 1rem 0; overflow: hidden; color: var(--white); background: var(--ink); transform: rotate(-1deg); }
.moving-track { width: max-content; display: flex; align-items: center; gap: 2rem; animation: marquee 27s linear infinite; }
.moving-track span { font-family: "Italiana", serif; font-size: 1.65rem; }
.moving-track b { color: var(--gold); }

/* Cosmetics */
.cosmetics-section { position: relative; padding-block: clamp(7rem, 10vw, 11rem); overflow: hidden; color: #fff; background: var(--ink); }
.cosmetics-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  background: linear-gradient(120deg, transparent, rgba(166, 107, 120, .18), transparent 65%);
}
.cosmetics-orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .25; }
.orb-a { width: 36rem; height: 36rem; top: -19rem; right: -6rem; background: radial-gradient(circle at 30% 30%, var(--rose), transparent 67%); }
.orb-b { width: 26rem; height: 26rem; bottom: -13rem; left: -8rem; background: radial-gradient(circle at 50%, var(--sage), transparent 68%); }
.cosmetics-layout { position: relative; display: grid; grid-template-columns: 1fr .9fr; gap: clamp(3rem, 7vw, 8rem); align-items: center; }
.cosmetics-visual { position: relative; padding: 2rem 0 3rem 2rem; }
.cosmetics-image-wrap { position: relative; overflow: hidden; border: 1px solid rgba(255, 255, 255, .18); border-radius: 28px 48% 28px 28px; box-shadow: var(--shadow-dark); }
.cosmetics-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .35)); }
.cosmetics-image-wrap img { width: 100%; min-height: 630px; object-fit: cover; }
.quality-badge {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  top: 1.25rem;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
}
.quality-badge span, .quality-badge small { font-size: .5rem; letter-spacing: .16em; text-transform: uppercase; }
.quality-badge strong { font-family: "Italiana", serif; font-size: 2.6rem; line-height: .9; font-weight: 400; }
.formula-card { position: absolute; z-index: 3; right: -2.5rem; bottom: 0; width: min(330px, 76%); padding: 1.35rem 1.5rem; border-radius: 20px; color: var(--ink); }
.formula-card span { color: var(--rose-deep); font-size: .58rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.formula-card p { margin: .65rem 0 0; font-family: "Italiana", serif; font-size: 1.25rem; line-height: 1.35; }
.cosmetics-copy h2 em { color: #d9aeb8; }
.section-lead { max-width: 620px; margin: 1.8rem 0 2.2rem; color: rgba(255, 255, 255, .68); line-height: 1.75; }
.beauty-points { margin-bottom: 2rem; }
.beauty-points article { padding: 1.2rem 0; border-top: 1px solid rgba(255, 255, 255, .13); display: grid; grid-template-columns: 50px 1fr; gap: 1rem; }
.beauty-points article:last-child { border-bottom: 1px solid rgba(255, 255, 255, .13); }
.beauty-points article > span { color: var(--gold); font-size: .65rem; }
.beauty-points h3 { margin: 0 0 .4rem; font-family: "Italiana", serif; font-size: 1.55rem; }
.beauty-points p { margin: 0; color: rgba(255, 255, 255, .58); font-size: .82rem; line-height: 1.6; }

/* Collections */
.section-heading { margin-bottom: 3.8rem; display: grid; grid-template-columns: 1.2fr .65fr; gap: 4rem; align-items: end; }
.section-heading > p { margin: 0; color: var(--muted); line-height: 1.75; }
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.collection-card {
  min-height: 520px;
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 50px rgba(48, 38, 28, .08);
  transform-style: preserve-3d;
  transition: box-shadow .4s, border-color .4s;
}
.collection-card:hover { box-shadow: var(--shadow); border-color: rgba(255, 255, 255, .9); }
.card-dark { color: #fff; background: linear-gradient(145deg, #24211e, #11110f); }
.card-ivory { background: linear-gradient(145deg, #fffdf9, #e5dccd); }
.card-rose { color: #fff; background: linear-gradient(145deg, #ab7280, #653846); }
.card-top { position: relative; z-index: 2; display: flex; justify-content: space-between; color: currentColor; font-size: .67rem; }
.card-top i { width: 38px; height: 38px; border: 1px solid rgba(128, 117, 105, .32); border-radius: 50%; display: grid; place-items: center; font-style: normal; }
.card-copy { position: relative; z-index: 2; transform: translateZ(20px); }
.card-copy small { font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; opacity: .66; }
.card-copy h3 { margin: .7rem 0 1rem; font-family: "Italiana", serif; font-size: clamp(2.4rem, 3.4vw, 3.7rem); line-height: .94; }
.card-copy p { max-width: 330px; margin: 0; font-size: .78rem; line-height: 1.6; opacity: .69; }
.abstract-shape { position: absolute; left: 50%; top: 42%; transform: translate(-50%, -50%) rotate(-7deg); filter: drop-shadow(0 25px 35px rgba(0, 0, 0, .18)); transition: transform .7s var(--ease); }
.collection-card:hover .abstract-shape { transform: translate(-50%, -53%) rotate(2deg) scale(1.06); }
.shape-dress { width: 155px; height: 240px; border-radius: 75px 75px 20px 20px; background: linear-gradient(120deg, #a99175, #f0e1ca 45%, #705c48); clip-path: polygon(33% 0, 67% 0, 76% 18%, 64% 34%, 91% 100%, 9% 100%, 36% 34%, 24% 18%); }
.shape-bag { width: 215px; height: 170px; border-radius: 15px 15px 40px 40px; border: 2px solid rgba(50, 42, 34, .15); background: linear-gradient(135deg, #c6a87f, #f2e5d2 48%, #8c704e); }
.shape-bag::before { content: ""; position: absolute; width: 105px; height: 70px; left: 53px; top: -52px; border: 17px solid #b3946d; border-bottom: 0; border-radius: 60px 60px 0 0; }
.shape-shoe { width: 230px; height: 115px; border-radius: 100% 30% 35% 50%; background: linear-gradient(145deg, #151412, #493b3a 70%, #c6aa77); transform: translate(-50%, -50%) rotate(-18deg); }
.shape-shoe::after { content: ""; position: absolute; width: 85px; height: 42px; right: -9px; bottom: -27px; border-radius: 0 0 14px 14px; background: #171513; transform: skewX(-10deg); }

/* Experience */
.experience { padding-top: 2rem; }
.experience-heading { margin-bottom: 3rem; text-align: center; }
.experience-heading .micro-label { justify-content: center; }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.experience-card {
  min-height: 330px;
  padding: 2rem;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s;
}
.experience-card::before {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  right: -8rem;
  top: -8rem;
  border-radius: 50%;
  background: rgba(166, 107, 120, .18);
  transition: transform .6s var(--ease);
}
.experience-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.experience-card:hover::before { transform: scale(1.5); }
.experience-number { color: var(--muted); font-size: .65rem; }
.line-icon { margin: 3.4rem 0 1.5rem; color: var(--rose-deep); font-family: "Italiana", serif; font-size: 3rem; }
.experience-card h3 { margin: 0 0 .8rem; font-family: "Italiana", serif; font-size: 2rem; }
.experience-card p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.7; }

/* Location */
.location-panel {
  min-height: 700px;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #b2b7a7;
  box-shadow: var(--shadow);
}
.map-art { position: absolute; inset: 0; overflow: hidden; background: radial-gradient(circle at 20% 30%, #ccd0c3, transparent 35%), linear-gradient(145deg, #a3aa9a, #d1cec3); }
.map-art::before, .map-art::after { content: ""; position: absolute; border: 65px solid rgba(244, 239, 230, .5); border-radius: 48%; }
.map-art::before { width: 55%; height: 75%; left: -15%; top: -20%; transform: rotate(28deg); }
.map-art::after { width: 45%; height: 55%; right: -7%; bottom: -18%; transform: rotate(-30deg); }
.map-line { position: absolute; z-index: 1; height: 9px; border-radius: 20px; background: rgba(255, 255, 255, .62); box-shadow: 0 1px 0 rgba(81, 85, 76, .12); }
.line-one { width: 80%; left: -10%; top: 42%; transform: rotate(-14deg); }
.line-two { width: 70%; right: -8%; top: 65%; transform: rotate(21deg); }
.line-three { width: 52%; left: 13%; top: 22%; transform: rotate(67deg); }
.map-pin { position: absolute; z-index: 3; left: 27%; top: 45%; width: 88px; height: 88px; border-radius: 50% 50% 50% 8px; display: grid; place-items: center; color: #fff; background: var(--rose-deep); box-shadow: 0 18px 40px rgba(72, 38, 47, .25); transform: rotate(-45deg); animation: pinPulse 2.7s ease-in-out infinite; }
.map-pin b { font-family: "Italiana", serif; font-size: 2.8rem; font-weight: 400; transform: rotate(45deg); }
.map-label { position: absolute; z-index: 3; left: 13%; top: 66%; padding: 1rem 1.25rem; border-radius: 16px; font-family: "Italiana", serif; font-size: 1.3rem; }
.map-label small { color: rgba(255, 255, 255, .63); font-family: "DM Sans", sans-serif; font-size: .55rem; letter-spacing: .13em; text-transform: uppercase; }
.location-copy { position: absolute; z-index: 4; width: min(540px, 47%); right: 2rem; top: 2rem; bottom: 2rem; padding: clamp(2rem, 4vw, 4rem); border-radius: 26px; display: flex; flex-direction: column; justify-content: center; }
.location-copy h2 { font-size: clamp(2.8rem, 4.5vw, 4.7rem); }
.address { margin: 1.6rem 0 .5rem; font-weight: 600; line-height: 1.65; }
.reference { margin: 0 0 1.5rem; color: var(--muted); font-size: .8rem; line-height: 1.6; }
.location-copy .button { align-self: flex-start; }
.hours { margin-top: 2rem; border-top: 1px solid var(--line); }
.hours div { padding: .72rem 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; font-size: .76rem; }
.hours strong { color: var(--rose-deep); }
.hours-note { margin-top: .8rem; color: var(--muted); font-size: .64rem; }

/* Contact and footer */
.contact-section { padding-bottom: clamp(6rem, 9vw, 10rem); }
.contact-glass { padding: clamp(2.5rem, 6vw, 6rem); border-radius: 34px; text-align: center; }
.contact-glass .micro-label { justify-content: center; }
.contact-glass h2 { font-size: clamp(2.8rem, 5vw, 5.2rem); }
.contact-glass > p { margin: 1.5rem auto 2rem; max-width: 650px; color: var(--muted); line-height: 1.7; }
.contact-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; }
.social-links { margin-top: 3rem; display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem 2rem; }
.social-links a { padding-bottom: .25rem; border-bottom: 1px solid var(--line); font-size: .78rem; font-weight: 700; }
.social-links span { color: var(--rose-deep); }
footer {
  width: min(1320px, calc(100% - 8vw));
  margin: auto;
  padding: 2.2rem 0 3rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--muted);
  font-size: .72rem;
}
.footer-brand { color: var(--ink); }
.back-top { font-weight: 700; }
.whatsapp-fab {
  position: fixed;
  z-index: 40;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow: 0 14px 35px rgba(19, 104, 51, .28);
  transition: transform .35s var(--ease);
  animation: whatsappBreathe 3.2s ease-in-out infinite;
}
.whatsapp-fab:hover { transform: translateY(-4px) scale(1.05); }
.whatsapp-fab svg { width: 29px; fill: #fff; }

/* Motion */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .09s; }
.reveal:nth-child(3) { transition-delay: .17s; }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes ambientFloat { to { transform: translate3d(2rem, 3rem, 0) scale(1.09); } }
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 18px 40px rgba(72, 38, 47, .25), 0 0 0 0 rgba(113, 62, 75, .2); }
  55% { box-shadow: 0 18px 40px rgba(72, 38, 47, .25), 0 0 0 18px rgba(113, 62, 75, 0); }
}
@keyframes whatsappBreathe { 50% { box-shadow: 0 14px 35px rgba(19, 104, 51, .28), 0 0 0 10px rgba(37, 211, 102, 0); } }

@media (max-width: 1020px) {
  .nav-links { gap: 1rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 10rem; }
  .hero-copy { max-width: 760px; }
  .hero-slider { width: min(760px, 100%); margin-inline: auto; }
  .slider-stage { min-height: 680px; }
  .cosmetics-layout { grid-template-columns: 1fr; }
  .cosmetics-visual { max-width: 760px; margin-inline: auto; }
  .cosmetics-copy { max-width: 760px; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .collection-card:last-child { grid-column: 1 / -1; min-height: 420px; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .experience-card:last-child { grid-column: 1 / -1; }
  .location-panel { min-height: 960px; }
  .location-copy { width: calc(100% - 4rem); top: auto; }
}

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .nav-links {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 90px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 253, 249, .94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(.98);
    transition: .35s var(--ease);
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-links > a { padding: .95rem; }
  .nav-cta { margin-top: .5rem; justify-content: center; }
  .section-heading { grid-template-columns: 1fr; gap: 1.6rem; }
}

@media (max-width: 640px) {
  .site-header { padding: .65rem .75rem; }
  .nav { min-height: 62px; padding-left: 1rem; border-radius: 19px; }
  .brand-name small { display: none; }
  .brand-monogram { font-size: 2.55rem; }
  .shell, footer { width: calc(100% - 2rem); }
  .section { padding-block: 5.8rem; }
  h2 { font-size: 3.1rem; }
  .hero { width: calc(100% - 1.4rem); padding-top: 7.7rem; padding-bottom: 4rem; gap: 2.8rem; }
  .hero h1 { font-size: clamp(3.8rem, 17vw, 5.4rem); }
  .hero-lead { margin: 1.5rem 0; font-size: .95rem; }
  .hero-actions .button, .contact-actions .button { width: 100%; }
  .hero-notes { flex-direction: column; }
  .slider-stage { min-height: 520px; border-radius: 42% 42% 22px 22px; }
  .slide img { object-position: center center; }
  .slide-caption { left: .75rem; right: .75rem; bottom: .75rem; padding: .9rem; }
  .slide-caption strong { max-width: 65%; font-size: 1.15rem; }
  .hero-seal { width: 86px; height: 86px; top: 12%; }
  .hero-seal span { font-size: 2.2rem; }
  .hero-seal small { font-size: .38rem; }
  /* Los controles viven debajo del escenario: nunca cubren la imagen en móvil. */
  .slider-controls {
    position: relative;
    width: 100%;
    min-height: 64px;
    margin: .7rem 0 0;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(48, 38, 28, .08);
  }
  .slider-count { display: none; }
  .slider-dots { order: 2; }
  [data-prev] { order: 1; }
  [data-next] { order: 3; }
  .moving-strip { padding: .8rem 0; }
  .moving-track { gap: 1.5rem; }
  .moving-track span { font-size: 1.35rem; }
  .cosmetics-section { padding-block: 6.5rem; }
  .cosmetics-layout { width: calc(100% - 2rem); gap: 4.5rem; }
  .cosmetics-visual { padding: 0 0 2rem; }
  .cosmetics-image-wrap { border-radius: 22px 42% 22px 22px; }
  .cosmetics-image-wrap img { min-height: 500px; }
  .quality-badge { width: 90px; height: 90px; }
  .formula-card { right: .7rem; bottom: 0; width: 84%; padding: 1.1rem; }
  .formula-card p { font-size: 1.05rem; }
  .beauty-points article { grid-template-columns: 36px 1fr; }
  .cosmetics-copy .button { width: 100%; }
  .collection-grid, .experience-grid { grid-template-columns: 1fr; }
  .collection-card, .collection-card:last-child { grid-column: auto; min-height: 460px; }
  .experience-card:last-child { grid-column: auto; }
  .experience-card { min-height: 300px; }
  .location-panel { min-height: 980px; border-radius: 25px; }
  .map-pin { left: 41%; top: 25%; width: 72px; height: 72px; }
  .map-label { left: 1rem; top: 41%; }
  .location-copy { width: calc(100% - 1.5rem); left: .75rem; right: .75rem; bottom: .75rem; padding: 1.5rem; }
  .location-copy h2 { font-size: 3.05rem; }
  .location-copy .button { width: 100%; }
  .hours div { font-size: .7rem; }
  .contact-glass { padding: 2.4rem 1.2rem; border-radius: 25px; }
  .social-links { gap: 1rem; }
  footer { flex-direction: column; text-align: center; }
  .footer-brand { display: none; }
  .whatsapp-fab { width: 54px; height: 54px; right: .9rem; bottom: .9rem; }
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .reveal { opacity: 1; transform: none; }
  .slide img { transform: none; }
  .cursor-glow { display: none; }
}
