:root {
  --cream: #fbf3ea;
  --cream-2: #f0dfcf;
  --wine: #53040b;
  --wine-2: #7a1720;
  --gold: #ad8542;
  --ink: #231513;
  --muted: #75635c;
  --line: rgba(83, 4, 11, .16);
  --white: #fffdf9;
  --shadow: 0 24px 80px rgba(83, 4, 11, .18);
  --soft-shadow: 0 14px 44px rgba(83, 4, 11, .1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(173, 133, 66, .12), transparent 25%),
    linear-gradient(180deg, var(--cream), #fffaf4 45%, var(--cream));
  font-family: Inter, Arial, sans-serif;
}

::selection {
  color: var(--cream);
  background: var(--wine);
}

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

button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 253, 249, .2);
  background: rgba(251, 243, 234, .66);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: padding .25s ease, border-color .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  border-color: var(--line);
  background: rgba(251, 243, 234, .94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
  color: var(--wine);
}

.brand-diamond {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.brand-diamond::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--wine);
  transform: rotate(45deg);
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: .84;
  text-transform: uppercase;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: clamp(16px, 3vw, 38px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav a:hover,
.footer a:hover {
  color: var(--wine);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--wine);
  background: rgba(255, 253, 249, .72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-toggle,
.menu-close {
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.menu-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--cream);
  background: var(--wine);
  box-shadow: 0 12px 28px rgba(83, 4, 11, .18);
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform .2s ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 68;
  background: rgba(35, 21, 19, .44);
  opacity: 0;
  pointer-events: none;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: opacity .3s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.side-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 69;
  width: min(520px, 100vw);
  height: 100vh;
  height: 100dvh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: 22px clamp(22px, 5vw, 48px) max(26px, env(safe-area-inset-bottom));
  color: var(--ink);
  background: var(--white);
  box-shadow: -30px 0 80px rgba(35, 21, 19, .22);
  overflow: hidden;
  transform: translateX(102%);
  transition: transform .42s cubic-bezier(.2, .8, .2, 1);
}

.side-menu.is-open {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.menu-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--wine);
  background: var(--cream);
  font-size: 28px;
}

.side-menu-nav {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 30px 0;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.side-menu-nav::-webkit-scrollbar {
  width: 4px;
}

.side-menu-nav::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--gold);
}

.menu-main-link,
.side-menu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  line-height: 1.05;
  cursor: pointer;
  list-style: none;
}

.side-menu summary::-webkit-details-marker {
  display: none;
}

.side-menu summary::after {
  content: "+";
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
}

.side-menu details[open] summary::after {
  content: "\2212";
}

.menu-main-link span {
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-subnav {
  display: grid;
  gap: 2px;
  padding: 10px 0 18px 20px;
  border-bottom: 1px solid var(--line);
}

.menu-subnav a {
  padding: 8px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.menu-subnav a:hover,
.menu-main-link:hover {
  color: var(--gold);
}

.side-menu-footer {
  position: relative;
  z-index: 2;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.side-menu-footer p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.side-menu-footer a {
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta {
  color: var(--cream);
  border: 1px solid rgba(83, 4, 11, .12);
  background: var(--wine);
  box-shadow: 0 12px 28px rgba(83, 4, 11, .18);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--cream);
  background: var(--wine);
  box-shadow: 0 16px 34px rgba(83, 4, 11, .24);
}

.button.ghost {
  color: var(--wine);
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, .68);
}

.button.light {
  border-color: rgba(255, 253, 249, .32);
}

.button.primary.light {
  color: var(--wine);
  background: var(--cream);
}

.button.ghost.light {
  color: var(--cream);
  background: rgba(255, 253, 249, .08);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(300px, .74fr) minmax(340px, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 92px);
  padding: 112px clamp(18px, 5vw, 72px) 72px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 84px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(173, 133, 66, .42), transparent);
  animation: lineSweep 5s ease-in-out infinite;
}

.hero::after {
  right: clamp(18px, 6vw, 88px);
  bottom: 34px;
  width: min(36vw, 480px);
  height: min(36vw, 480px);
  border: 1px solid rgba(173, 133, 66, .2);
  border-radius: 38px;
  transform: rotate(12deg);
  animation: slowTilt 12s ease-in-out infinite;
}

.hero-image {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 28px -22px -22px 34px;
  z-index: -1;
  border: 1px solid rgba(173, 133, 66, .55);
  border-radius: 34px;
}

.hero-image img {
  width: min(100%, 600px);
  aspect-ratio: 4 / 5.35;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-image .image-trigger {
  border-radius: 34px;
  animation: heroFloat 7s ease-in-out infinite;
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}

.hero-image .image-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.22) 48%, transparent 64%);
  transform: translateX(-120%);
  animation: photoSheen 6.5s ease-in-out infinite;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--wine);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(46px, 6.4vw, 88px);
  line-height: .98;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.08;
}

h3 {
  color: var(--wine);
  font-size: 22px;
  margin-bottom: 10px;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 680px;
  margin-top: 34px;
}

.hero-stats span {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255, 253, 249, .62);
  box-shadow: var(--soft-shadow);
  font-size: 13px;
  font-weight: 700;
}

.hero-stats strong {
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: .8;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--wine);
  color: var(--cream);
}

.marquee div {
  display: flex;
  width: max-content;
  animation: slide 24s linear infinite;
}

.marquee span {
  min-width: max-content;
  padding: 20px 42px;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(74px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

[id] {
  scroll-margin-top: 92px;
}

.story-section,
.cosmetics-section {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, .86fr);
  align-items: center;
  gap: clamp(34px, 7vw, 100px);
}

.story-media img,
.cosmetics-media img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.story-media .image-trigger,
.cosmetics-media .image-trigger {
  border-radius: 24px;
}

.story-copy,
.cosmetics-copy {
  max-width: 650px;
}

.story-copy p:not(.eyebrow),
.cosmetics-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading h2 {
  max-width: 980px;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ritual-card {
  overflow: hidden;
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.ritual-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.ritual-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.image-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.image-trigger img {
  transition: transform .55s ease, filter .55s ease;
}

.image-trigger:hover img,
.image-trigger:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.02);
}

.image-trigger:focus-visible {
  outline: 3px solid rgba(173, 133, 66, .65);
  outline-offset: 4px;
}

.ritual-card div {
  padding: 24px;
}

.ritual-card span {
  color: var(--gold);
  font-weight: 900;
}

.ritual-card p,
.salon-copy p,
.reel-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.treatment-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.treatment-group {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.treatment-group h3 {
  max-width: 390px;
  margin-bottom: 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.05;
}

.treatment-group ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.treatment-group li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.treatment-group strong {
  flex: 0 0 auto;
  color: var(--wine);
}

.salon {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(74px, 10vw, 132px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 248, 240, .96), rgba(234, 214, 196, .88)),
    url("assets/site/texture.jpg") center / cover;
}

.salon-copy {
  max-width: 620px;
}

.salon-media img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.salon-media .image-trigger {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.reel-section {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(260px, 420px);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
}

.reel-copy {
  max-width: 670px;
}

.reel-copy p {
  max-width: 560px;
  margin-top: 6px;
  font-size: clamp(16px, 1.5vw, 19px);
}

.phone-frame {
  justify-self: center;
  width: min(100%, 360px);
  padding: 10px;
  border-radius: 32px;
  background: linear-gradient(145deg, var(--wine), #2d0206);
  box-shadow: var(--shadow);
}

.phone-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 24px;
  background: var(--wine);
}

.cosmetics-section {
  background: #fff8f0;
}

.cosmetics-copy .button {
  margin-top: 14px;
}

.gallery-section {
  background: #fff8f0;
}

.gallery-section .section-heading {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(240px, 24vw, 390px);
  gap: 18px;
  width: min(100%, 1220px);
  margin-inline: auto;
}

.gallery .image-trigger,
.gallery img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.gallery img {
  object-fit: cover;
  box-shadow: var(--soft-shadow);
}

.gallery .image-trigger:first-child {
  grid-row: span 2;
}

.gallery .image-trigger:nth-child(4) {
  grid-column: span 2;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 480px);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.price-cards article {
  min-height: 205px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 249, .82);
  box-shadow: var(--soft-shadow);
}

.price-cards span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.price-cards strong {
  display: block;
  margin: 22px 0 8px;
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 44px;
  line-height: .9;
}

.price-cards small {
  color: var(--muted);
  font-weight: 700;
}

.price-poster {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  text-align: left;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.price-poster img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.price-poster span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--wine);
  background: var(--cream);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(35, 21, 19, .16);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin: 0 clamp(18px, 5vw, 72px) 72px;
  padding: clamp(40px, 7vw, 78px);
  border-radius: 28px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(83, 4, 11, .92), rgba(43, 3, 7, .96)),
    url("assets/site/parking.jpg") center / cover;
}

.contact h2 {
  max-width: 760px;
  color: var(--cream);
}

.contact p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(251, 243, 234, .78);
  line-height: 1.65;
}

.booking-form {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 253, 249, .2);
  border-radius: 22px;
  background: rgba(255, 253, 249, .12);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .18);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(251, 243, 234, .86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-form .full {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 253, 249, .24);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--cream);
  background: rgba(35, 21, 19, .38);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.booking-form textarea {
  resize: vertical;
  min-height: 116px;
}

.booking-form select {
  color-scheme: dark;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(251, 243, 234, .52);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(251, 243, 234, .72);
  background: rgba(35, 21, 19, .52);
  box-shadow: 0 0 0 4px rgba(251, 243, 234, .1);
}

.privacy {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px !important;
  color: rgba(251, 243, 234, .76) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.45;
  text-transform: none !important;
}

.privacy input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: var(--gold);
}

.privacy a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
}

.footer {
  display: grid;
  grid-template-columns: minmax(180px, .8fr) minmax(260px, 1.2fr) auto;
  align-items: center;
  gap: 24px;
  padding: 32px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.footer-copyright,
.footer-business,
.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-copyright {
  color: var(--wine);
  font-weight: 900;
}

.footer-copyright small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.footer-business {
  justify-content: center;
  flex-wrap: wrap;
}

.footer-business strong {
  color: var(--wine);
  font-size: 10px;
}

.footer-legal {
  justify-content: flex-end;
}

.footer-legal a {
  white-space: nowrap;
}

.footer-legal a:hover {
  color: var(--wine);
}

.whatsapp-float {
  position: fixed;
  right: max(clamp(16px, 3vw, 34px), env(safe-area-inset-right));
  bottom: max(clamp(16px, 3vw, 30px), env(safe-area-inset-bottom));
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 6px 18px 6px 6px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: white;
  background: #18794e;
  box-shadow: 0 18px 46px rgba(24, 121, 78, .3);
  font-size: 12px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(24, 121, 78, .38);
}

.whatsapp-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #18794e;
  background: white;
  font-size: 17px;
  font-weight: 900;
}

.legal-page {
  min-height: 100vh;
  background: var(--white);
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, .94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-main {
  width: min(100% - 36px, 900px);
  margin-inline: auto;
  padding: clamp(70px, 10vw, 120px) 0;
}

.legal-main > h1 {
  max-width: 760px;
  margin-bottom: 10px;
}

.legal-updated {
  margin-bottom: 52px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.legal-main section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-main section h2 {
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 3.5vw, 38px);
}

.legal-main section p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.legal-main section a {
  color: var(--wine);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-footer [aria-current="page"] {
  color: var(--wine);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.chat-launcher {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 30px);
  right: max(clamp(16px, 3vw, 34px), env(safe-area-inset-right));
  bottom: max(clamp(16px, 3vw, 30px), env(safe-area-inset-bottom));
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 7px 18px 7px 7px;
  border: 1px solid rgba(255, 253, 249, .22);
  border-radius: 999px;
  color: var(--cream);
  background: var(--wine);
  box-shadow: 0 18px 48px rgba(83, 4, 11, .3);
  cursor: pointer;
  transition: transform .25s ease, opacity .2s ease, box-shadow .25s ease;
}

.chat-launcher:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(83, 4, 11, .38);
}

.chat-launcher.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.chat-launcher-icon,
.chat-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--wine);
  background: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}

.chat-launcher-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
}

.chat-launcher-label {
  font-size: 13px;
  font-weight: 800;
}

.chat-notification {
  position: absolute;
  top: -3px;
  right: 1px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  color: white;
  background: #218c55;
  font-size: 10px;
  font-weight: 800;
}

.chat-widget {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 30px);
  right: max(clamp(14px, 3vw, 34px), env(safe-area-inset-right));
  bottom: max(clamp(14px, 3vw, 30px), env(safe-area-inset-bottom));
  z-index: 61;
  width: min(390px, calc(100vw - 28px));
  height: min(650px, calc(100vh - 28px));
  height: min(650px, calc(100dvh - 28px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  overflow: hidden;
  border: 1px solid rgba(83, 4, 11, .12);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(35, 21, 19, .28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(.96);
  transform-origin: bottom right;
  transition: opacity .25s ease, transform .32s cubic-bezier(.2, .8, .2, 1);
}

.chat-widget.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 76px;
  padding: 14px 16px;
  color: var(--cream);
  background: var(--wine);
}

.chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 25px;
}

.chat-header > div:nth-child(2) {
  display: grid;
  gap: 4px;
}

.chat-header strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  line-height: 1;
}

.chat-header span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(251, 243, 234, .72);
  font-size: 11px;
  font-weight: 700;
}

.chat-header i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5fd28d;
  box-shadow: 0 0 0 3px rgba(95, 210, 141, .14);
}

.chat-close {
  width: 40px;
  height: 40px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  color: var(--cream);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
  font-size: 25px;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 11px;
  overflow-y: auto;
  padding: 18px 16px 12px;
  scroll-behavior: smooth;
  background:
    linear-gradient(rgba(255, 253, 249, .94), rgba(255, 253, 249, .94)),
    url("assets/site/texture.jpg") center / cover;
}

.chat-message {
  max-width: 84%;
  padding: 11px 13px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  animation: chatMessageIn .25s ease both;
}

.chat-message.bot {
  align-self: flex-start;
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  color: var(--ink);
  background: white;
  box-shadow: 0 8px 22px rgba(83, 4, 11, .07);
}

.chat-message.user {
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: var(--cream);
  background: var(--wine);
}

.chat-message strong {
  color: inherit;
}

.chat-quick-actions {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 10px 12px 8px;
  border-top: 1px solid var(--line);
  scrollbar-width: none;
}

.chat-quick-actions::-webkit-scrollbar {
  display: none;
}

.chat-quick-actions button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--wine);
  background: var(--cream);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
  padding: 8px 12px;
}

.chat-form input {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #fffaf5;
  font-size: 16px;
  outline: none;
}

.chat-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(173, 133, 66, .12);
}

.chat-form button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--cream);
  background: var(--wine);
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
}

.chat-whatsapp {
  min-height: 46px;
  margin: 2px 12px 0;
  border: 0;
  border-radius: 12px;
  color: white;
  background: #18794e;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.chat-disclaimer {
  margin: 7px 14px 11px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
  text-align: center;
}

@keyframes chatMessageIn {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
  background: rgba(20, 6, 7, .84);
  opacity: 0;
  pointer-events: none;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: opacity .25s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-panel {
  width: min(100%, 1120px);
  max-height: 88vh;
  display: grid;
  gap: 12px;
  transform: translateY(18px) scale(.98);
  transition: transform .25s ease;
}

.lightbox.is-open .lightbox-panel {
  transform: translateY(0) scale(1);
}

.lightbox-panel img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .36);
}

.lightbox-panel p {
  margin: 0;
  color: rgba(251, 243, 234, .78);
  text-align: center;
  font-size: 14px;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(251, 243, 234, .28);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(255, 253, 249, .1);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes lineSweep {
  0%, 100% {
    opacity: .35;
    transform: scaleX(.65);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes slowTilt {
  0%, 100% {
    transform: rotate(12deg) translateY(0);
  }
  50% {
    transform: rotate(7deg) translateY(-18px);
  }
}

@keyframes heroFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@keyframes photoSheen {
  0%, 42% {
    transform: translateX(-120%);
  }
  58%, 100% {
    transform: translateX(120%);
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero,
  .story-section,
  .cosmetics-section,
  .salon,
  .reel-section,
  .price-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-image {
    max-width: 520px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .ritual-grid,
  .price-cards,
  .treatment-groups {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery img:first-child,
  .gallery img:nth-child(4),
  .gallery .image-trigger:first-child,
  .gallery .image-trigger:nth-child(4) {
    grid-row: span 1;
    grid-column: span 1;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    min-width: auto;
    gap: 8px;
  }

  .brand-diamond {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .brand-text strong {
    font-size: 22px;
  }

  .brand-text small {
    display: none;
  }

  .header-whatsapp {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: auto;
    padding-inline: 16px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.12;
  }

  .hero-image::before {
    inset: 18px -10px -12px 22px;
  }

  .section,
  .story-section,
  .cosmetics-section,
  .salon,
  .reel-section {
    padding-inline: 16px;
  }

  .ritual-card {
    min-height: auto;
  }

  .ritual-card img {
    height: 300px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .price-cards strong {
    font-size: 38px;
  }

  .contact {
    margin-inline: 16px;
    padding: 30px 20px;
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
    padding-inline: 16px;
  }

  .footer-copyright,
  .footer-business,
  .footer-legal {
    justify-content: flex-start;
  }

  .footer-business {
    display: grid;
  }

  .whatsapp-float {
    padding-right: 6px;
  }

  .whatsapp-float > span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
