:root {
  --ink: #09070a;
  --ink-violet: #120b11;
  --wine-deep: #28101e;
  --wine: #45152f;
  --gold: #c8a15a;
  --gold-light: #e0bd73;
  --cream: #f0e2cc;
  --beige: #d9c4a5;
  --muted: #b9a58a;
  --line: rgba(200, 161, 90, 0.56);
  --line-soft: rgba(200, 161, 90, 0.23);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
  --serif: "Cormorant Garamond", Georgia, serif;
  --display: "Cinzel", Georgia, serif;
  --script: "Allura", "Brush Script MT", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--cream);
  background:
    radial-gradient(circle at 14% 8%, rgba(69, 21, 47, 0.28), transparent 33rem),
    radial-gradient(circle at 88% 30%, rgba(40, 16, 30, 0.38), transparent 38rem),
    linear-gradient(180deg, #070507 0%, #0b070b 45%, #060406 100%);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background: url("../assets/images/ambient-bg.webp") center/cover fixed;
  opacity: 0.085;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  background: var(--cream);
  color: var(--ink);
  padding: .75rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.ambient-stars,
.ambient-stars::before,
.ambient-stars::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(224,189,115,.85) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(240,226,204,.6) 0 1px, transparent 1.6px);
  background-size: 117px 117px, 173px 173px;
  background-position: 12px 18px, 73px 41px;
  opacity: .14;
}
.ambient-stars::before { transform: scale(1.15) rotate(4deg); opacity: .55; }
.ambient-stars::after { transform: scale(1.35) rotate(-5deg); opacity: .35; }

.site-shell {
  width: min(1480px, calc(100% - 28px));
  margin: 14px auto;
  border: 1px solid var(--line);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.025);
  background: rgba(9, 7, 10, 0.92);
  position: relative;
}
.site-shell::before,
.site-shell::after {
  content: "✦";
  position: absolute;
  color: var(--gold-light);
  font-size: .75rem;
  opacity: .7;
  z-index: 3;
}
.site-shell::before { left: 9px; top: 7px; }
.site-shell::after { right: 9px; top: 7px; }

.site-header {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1.25rem 1rem 1.35rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(9,7,10,.98), rgba(18,11,17,.96));
  position: relative;
  z-index: 50;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  min-width: max-content;
}
.brand img { width: 52px; filter: drop-shadow(0 0 12px rgba(224,189,115,.18)); }
.brand span { display: grid; line-height: 1; }
.brand strong {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gold-light);
  font-size: clamp(1.2rem, 1.75vw, 1.78rem);
  font-weight: 500;
}
.brand small {
  margin-top: .35rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .32em;
  color: var(--beige);
  font-size: .66rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(.9rem, 2vw, 2rem);
}
.main-nav a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--beige);
  padding: .6rem .1rem;
  transition: color .25s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: .15rem;
  height: 1px;
  background: var(--gold-light);
  transition: left .25s ease, right .25s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible { color: var(--gold-light); }
.main-nav a:hover::after,
.main-nav a:focus-visible::after { left: 0; right: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 48px;
  padding: .8rem 1.35rem;
  border: 1px solid rgba(224,189,115,.62);
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-family: var(--display);
  font-size: .72rem;
  color: var(--cream);
  background: linear-gradient(180deg, rgba(79,22,53,.92), rgba(48,14,34,.96));
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 10px 24px rgba(0,0,0,.2);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  background: linear-gradient(180deg, rgba(99,31,67,.96), rgba(55,15,38,.98));
  box-shadow: inset 0 1px rgba(255,255,255,.1), 0 10px 28px rgba(69,21,47,.45), 0 0 18px rgba(200,161,90,.1);
}
.button-small { min-height: 42px; padding: .65rem 1.1rem; white-space: nowrap; }

.menu-toggle { display: none; }

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.67fr) minmax(390px, 1fr);
  align-items: start;
}
.left-column,
.right-column { min-width: 0; }
.left-column { border-right: 1px solid var(--line); }
.right-column { padding: 10px; display: grid; gap: 10px; }

.gold-frame {
  position: relative;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.018);
  overflow: hidden;
}
.gold-frame::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(200,161,90,.14);
  pointer-events: none;
  z-index: 3;
}

.hero {
  min-height: 625px;
  border-width: 0 0 1px;
  background: #0d080d;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.015);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,7,10,.97) 0%, rgba(9,7,10,.89) 27%, rgba(9,7,10,.34) 58%, rgba(9,7,10,.04) 100%),
    linear-gradient(0deg, rgba(9,7,10,.3), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 4;
  width: min(57%, 610px);
  padding: clamp(3rem, 6vw, 6.5rem) clamp(1.5rem, 4.5vw, 4.8rem) 3rem;
}
.eyebrow {
  color: var(--gold);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .68rem;
  margin: 0 0 1.15rem;
}
.hero h1 {
  margin: 0;
  font-size: clamp(3.35rem, 5.45vw, 6rem);
  line-height: .88;
  font-weight: 500;
  letter-spacing: -.03em;
  text-shadow: 0 3px 22px rgba(0,0,0,.78);
}
.hero h1 em {
  display: inline-block;
  color: var(--gold-light);
  font-family: var(--script);
  font-size: 1.08em;
  font-weight: 400;
  line-height: .75;
  transform: translateY(.1em);
}
.hero-content > p:not(.eyebrow) {
  margin: 1.85rem 0 1.45rem;
  color: var(--beige);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.35;
  text-shadow: 0 2px 14px rgba(0,0,0,.9);
}

.mobile-logo-panel { display: none; }
.logo-panel {
  min-height: 707px;
  background: var(--wine-deep);
}
.logo-panel > img {
  width: 100%;
  height: 100%;
  min-height: 707px;
  object-fit: cover;
  object-position: center top;
}
.logo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(18,8,15,.35) 65%, rgba(18,8,15,.96) 86%);
  pointer-events: none;
}
.logo-panel-title {
  position: absolute;
  z-index: 4;
  left: 1rem;
  right: 1rem;
  bottom: 1.35rem;
  text-align: center;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 2px 18px rgba(0,0,0,.8);
}
.logo-panel-title h2 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.2vw, 4.6rem);
  line-height: .95;
  letter-spacing: .06em;
  font-weight: 400;
  margin: 0;
}
.logo-panel-title p {
  margin: .65rem 0 .7rem;
  color: var(--beige);
  font-family: var(--display);
  letter-spacing: .35em;
  font-size: clamp(.8rem, 1.2vw, 1.05rem);
}
.logo-panel-title span { letter-spacing: .22em; }

.strengths {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(180deg, rgba(18,11,17,.98), rgba(10,7,10,.98));
  border-bottom: 1px solid var(--line);
}
.strength {
  min-height: 220px;
  padding: 1.45rem .7rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.strength:last-child { border-right: 0; }
.strength img { width: 58px; height: 58px; margin-bottom: .55rem; filter: drop-shadow(0 0 9px rgba(200,161,90,.12)); }
.strength h2 {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .045em;
  font-size: clamp(.82rem, 1.05vw, 1.03rem);
  line-height: 1.33;
  font-weight: 500;
}
.strength p { margin: .45rem 0 0; color: var(--beige); font-size: 1rem; line-height: 1.2; }

.ritual {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 490px;
  border-width: 0 0 1px;
  background: linear-gradient(135deg, rgba(17,10,16,.98), rgba(11,7,10,.98));
}
.salon-scene { position: relative; min-height: 490px; overflow: hidden; border-right: 1px solid var(--line); }
.salon-scene img { width: 100%; height: 100%; object-fit: cover; }
.salon-scene::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,5,8,.1), transparent 45%, rgba(9,6,9,.2)); }
.neon-copy {
  position: absolute;
  z-index: 2;
  top: 12%;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 85%;
  margin: 0;
  text-align: center;
  color: #f6d8be;
  font-family: var(--script);
  font-size: clamp(2rem, 3.35vw, 3.6rem);
  line-height: .75;
  text-shadow: 0 0 4px #fff6e8, 0 0 11px rgba(240,190,160,.9), 0 0 28px rgba(118,28,62,.95);
}
.ritual-copy {
  padding: clamp(2.25rem, 4vw, 4.4rem);
  align-self: center;
  text-align: left;
}
.section-kicker {
  margin: 0 0 .25rem;
  color: var(--gold-light);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
}
.ritual-copy h2 {
  margin: .1rem 0 .5rem;
  font-size: clamp(2.55rem, 4vw, 4.5rem);
  line-height: .95;
  font-weight: 500;
}
.moon-divider { display: block; color: var(--gold-light); letter-spacing: .16em; margin: .7rem 0 1.25rem; }
.ritual-copy p { color: var(--beige); font-size: clamp(1.05rem, 1.3vw, 1.26rem); line-height: 1.43; }
.ritual-copy strong { color: var(--cream); font-weight: 600; }
.signature { font-family: var(--script); font-size: clamp(2.5rem, 4vw, 4rem) !important; color: var(--gold-light) !important; text-align: center; margin: .8rem 0 0 !important; line-height: 1; }

.gallery-section { padding: 1rem 1rem 1.35rem; border-bottom: 1px solid var(--line); background: #0b080b; }
.ornament-title { display: flex; align-items: center; justify-content: center; gap: .85rem; color: var(--gold-light); margin: .1rem 0 .9rem; }
.ornament-title h2 { margin: 0; font-family: var(--display); text-transform: uppercase; letter-spacing: .07em; font-weight: 400; font-size: clamp(1rem, 1.6vw, 1.5rem); text-align: center; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.gallery-grid figure { margin: 0; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; aspect-ratio: .8; background: var(--wine-deep); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.gallery-grid figure:hover img { transform: scale(1.035); }

.booking-info { display: grid; grid-template-columns: 1fr 1fr; background: #0c080c; border-bottom: 1px solid var(--line); }
.info-card { display: flex; gap: 1rem; padding: 1.55rem 1.5rem 1.7rem; border-right: 1px solid var(--line); }
.info-card:last-child { border-right: 0; }
.info-card img { flex: 0 0 auto; width: 45px; height: 45px; }
.info-card h2 { margin: .1rem 0 .55rem; color: var(--gold-light); font-family: var(--display); text-transform: uppercase; letter-spacing: .05em; font-size: clamp(.95rem, 1.25vw, 1.18rem); font-weight: 500; }
.info-card p { margin: .35rem 0; color: var(--beige); line-height: 1.35; font-size: 1rem; }

.energy-banner {
  position: relative;
  min-height: 150px;
  padding: 1.35rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(148,48,89,.35), transparent 36%),
    linear-gradient(90deg, #2a101f, #43152f 48%, #26101d);
}
.energy-banner::before,
.energy-banner::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35; }
.energy-banner::before { background: repeating-linear-gradient(110deg, transparent 0 14px, rgba(224,189,115,.04) 15px 16px); }
.energy-banner p { margin: 0; font-size: clamp(1.75rem, 3vw, 3rem); line-height: .9; color: var(--gold-light); font-style: italic; }
.energy-banner strong { margin-top: .7rem; font-family: var(--display); text-transform: uppercase; letter-spacing: .22em; font-size: .7rem; color: var(--beige); }
.big-moon { position: absolute; right: 4.5%; top: 48%; transform: translateY(-50%); color: var(--gold-light); font-size: 4.6rem; text-shadow: 0 0 22px rgba(224,189,115,.2); }
.flower-corner { position: absolute; color: var(--gold); font-size: 4rem; opacity: .35; }
.flower-corner.left { left: 1.5rem; bottom: -.4rem; transform: rotate(-20deg); }
.flower-corner.right { right: 1.5rem; bottom: -.4rem; transform: scaleX(-1) rotate(-20deg); }

.price-panel {
  padding: 1.65rem 1rem 1rem;
  background: linear-gradient(180deg, #120b11, #0b080b 75%);
}
.price-header { display: flex; align-items: center; justify-content: center; gap: 1rem; text-align: center; color: var(--gold-light); }
.price-header > span { font-size: 1.35rem; }
.price-header h2 { margin: 0; font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; font-weight: 500; font-size: clamp(1.65rem, 2.25vw, 2.45rem); }
.price-header p { margin: .1rem 0 0; font-style: italic; color: var(--beige); font-size: 1.15rem; }
.mini-divider { text-align: center; color: var(--gold-light); letter-spacing: .15em; margin: .25rem 0 1.15rem; }
.price-columns { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.price-group,
.extras { border: 1px solid var(--line-soft); border-radius: 16px; padding: 1.25rem .9rem .9rem; position: relative; }
.price-group h3,
.extras h3 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 56%;
  margin: 0;
  padding: .25rem .9rem;
  border: 1px solid rgba(200,161,90,.38);
  border-radius: 999px;
  text-align: center;
  background: linear-gradient(180deg, #4b1735, #2d1022);
  color: var(--gold-light);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .96rem;
  font-weight: 500;
  white-space: nowrap;
}
.price-group dl,
.extras dl { margin: .55rem 0 0; }
.price-group dl > div,
.extras dl > div { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: .55rem; align-items: baseline; padding: .14rem 0; }
dt { min-width: 0; }
dd { margin: 0; color: var(--gold-light); white-space: nowrap; font-weight: 600; }
.price-group dt,
.price-group dd,
.extras dt,
.extras dd { font-size: clamp(.8rem, .9vw, .96rem); line-height: 1.25; }
.extras { margin-top: 1rem; padding-top: 1.45rem; }
.extras h3 { min-width: 48%; }
.price-note { margin: 1rem 0 0; padding: 1rem; border: 1px solid var(--line-soft); border-radius: 14px; color: var(--beige); text-align: center; font-size: .93rem; line-height: 1.35; background: rgba(69,21,47,.16); }

.final-cta {
  min-height: 280px;
  display: block;
  text-decoration: none;
  background: var(--wine-deep);
}
.final-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.final-cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24,8,17,.85), rgba(24,8,17,.25) 65%, rgba(24,8,17,.55)); }
.final-cta-copy { position: absolute; z-index: 3; left: 8%; top: 42%; transform: translateY(-50%); color: var(--gold-light); font-family: var(--script); font-size: clamp(2.8rem, 4.3vw, 4.7rem); line-height: .72; text-shadow: 0 2px 16px #000; transition: transform .35s ease; }
.final-cta-tagline { position: absolute; z-index: 3; left: 1rem; right: 1rem; bottom: 1rem; text-align: center; color: var(--beige); font-family: var(--display); text-transform: uppercase; letter-spacing: .08em; font-size: .66rem; }
.final-cta:hover .final-cta-copy { transform: translateY(-50%) scale(1.02); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.1rem 1.5rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, #100a0f, #080608);
}
.footer-brand { display: inline-grid; text-decoration: none; line-height: 1; }
.footer-brand strong { color: var(--gold-light); font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-size: 1.5rem; font-weight: 500; }
.footer-brand span { color: var(--beige); font-family: var(--display); text-transform: uppercase; letter-spacing: .32em; font-size: .65rem; margin-top: .4rem; }
.site-footer > p { color: var(--muted); font-style: italic; margin: .8rem 0 1rem; }
.footer-links { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: .8rem 1.25rem; }
.footer-links a { display: inline-flex; align-items: center; gap: .45rem; text-decoration: none; color: var(--cream); }
.footer-links a:hover { color: var(--gold-light); }
.footer-links img { width: 22px; color: currentColor; }
.site-footer small { display: block; margin-top: 1rem; color: #8e7d69; }

.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 50px;
  padding: .72rem 1rem;
  border: 1px solid rgba(224,189,115,.65);
  border-radius: 999px;
  background: rgba(44,13,31,.94);
  color: var(--cream);
  text-decoration: none;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .72rem;
  box-shadow: 0 12px 35px rgba(0,0,0,.45), 0 0 22px rgba(200,161,90,.1);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, background .25s ease;
}
.whatsapp-float:hover { transform: translateY(-2px); background: rgba(69,21,47,.98); }
.whatsapp-float img { width: 26px; height: 26px; color: var(--gold-light); }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .site-shell { width: min(100% - 18px, 1180px); margin: 9px auto; }
  .site-header { gap: 1rem; }
  .main-nav { gap: .8rem; }
  .main-nav a { font-size: .65rem; }
  .editorial-grid { grid-template-columns: minmax(0, 1.52fr) minmax(350px, .92fr); }
  .hero { min-height: 560px; }
  .logo-panel, .logo-panel > img { min-height: 642px; }
  .hero-content { width: 62%; padding-left: 2.1rem; }
  .hero h1 { font-size: clamp(3rem, 5.3vw, 4.8rem); }
  .strength { min-height: 205px; }
  .price-group { padding-left: .65rem; padding-right: .65rem; }
}

@media (max-width: 940px) {
  body { font-size: 17px; }
  .site-shell { width: 100%; margin: 0; border-left: 0; border-right: 0; }
  .site-header { min-height: 76px; grid-template-columns: auto 1fr auto; padding: .75rem 1rem; position: sticky; top: 0; backdrop-filter: blur(15px); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
  .brand img { width: 42px; }
  .brand strong { font-size: 1.2rem; }
  .brand small { font-size: .55rem; }
  .site-header > .button { display: none; }
  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(69,21,47,.26);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .menu-toggle span { width: 19px; height: 1px; background: var(--gold-light); transition: transform .25s ease, opacity .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    left: 0; right: 0; top: 100%;
    display: grid;
    gap: 0;
    padding: .6rem 1rem 1rem;
    background: rgba(10,7,10,.985);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(0,0,0,.38);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }
  .main-nav.is-open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .main-nav a { font-size: .78rem; padding: .9rem .25rem; border-bottom: 1px solid rgba(200,161,90,.12); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }

  .editorial-grid { display: block; }
  .left-column { border-right: 0; }
  .right-column { padding: 0; display: block; }
  .right-column > .logo-panel { display: none; }
  .mobile-logo-panel { display: block; min-height: auto; border-width: 0 0 1px; }
  .mobile-logo-panel > img { min-height: 0; aspect-ratio: .86; object-fit: cover; }
  .mobile-logo-panel .logo-panel-title h2 { font-size: clamp(2.9rem, 10vw, 5rem); }

  .hero { min-height: 620px; }
  .hero-photo { object-position: 61% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(9,7,10,.97) 0%, rgba(9,7,10,.84) 38%, rgba(9,7,10,.18) 80%), linear-gradient(0deg, rgba(9,7,10,.58), transparent 50%); }
  .hero-content { width: 62%; padding: 4.2rem 1.5rem 2.5rem; }
  .hero h1 { font-size: clamp(3.5rem, 8.8vw, 5.8rem); }

  .ritual { min-height: 520px; }
  .price-panel { border-width: 0 0 1px; border-radius: 0; padding: 2rem 1rem 1.25rem; }
  .final-cta { border-width: 0 0 1px; min-height: 330px; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .site-header { min-height: 70px; }
  .brand { gap: .55rem; }
  .brand img { width: 38px; }
  .brand strong { font-size: 1.02rem; }
  .brand small { letter-spacing: .23em; font-size: .49rem; }

  .hero { min-height: 650px; }
  .hero-photo { object-position: 67% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9,7,10,.94) 0%, rgba(9,7,10,.72) 55%, rgba(9,7,10,.18) 100%),
      linear-gradient(0deg, rgba(9,7,10,.92) 0%, rgba(9,7,10,.25) 50%, rgba(9,7,10,.25) 100%);
  }
  .hero-content { width: 100%; padding: 3.6rem 1.25rem 2rem; min-height: 650px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; }
  .hero h1 { font-size: clamp(3.2rem, 14.1vw, 5.2rem); line-height: .86; }
  .hero-content > p:not(.eyebrow) { font-size: 1.08rem; margin: 1.25rem 0; }
  .hero .button { width: 100%; }
  .eyebrow { margin-bottom: .85rem; }

  .mobile-logo-panel > img { aspect-ratio: .76; }
  .logo-panel-title { bottom: 1.1rem; }
  .logo-panel-title p { letter-spacing: .26em; }

  .strengths { grid-template-columns: 1fr 1fr; }
  .strength { min-height: 190px; border-bottom: 1px solid var(--line-soft); }
  .strength:nth-child(2) { border-right: 0; }
  .strength:nth-child(3), .strength:nth-child(4) { border-bottom: 0; }

  .ritual { grid-template-columns: 1fr; }
  .salon-scene { min-height: 520px; border-right: 0; border-bottom: 1px solid var(--line); }
  .neon-copy { font-size: clamp(2.8rem, 12vw, 4.5rem); top: 11%; }
  .ritual-copy { padding: 2.1rem 1.25rem 2.4rem; text-align: center; }
  .ritual-copy p { text-align: left; }
  .ritual-copy .section-kicker, .ritual-copy .signature { text-align: center; }
  .ritual-copy h2 { font-size: clamp(2.8rem, 12vw, 4rem); }

  .gallery-section { padding: 1rem .75rem 1.1rem; }
  .ornament-title { gap: .45rem; }
  .ornament-title h2 { font-size: .92rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: .65rem; }
  .gallery-grid figure { border-radius: 13px; }

  .booking-info { grid-template-columns: 1fr; }
  .info-card { border-right: 0; border-bottom: 1px solid var(--line); padding: 1.35rem 1.1rem; }
  .info-card:last-child { border-bottom: 0; }
  .info-card p { font-size: .98rem; }

  .energy-banner { min-height: 180px; padding: 1.4rem 3.2rem 1.4rem 1.2rem; align-items: flex-start; text-align: left; }
  .energy-banner p { font-size: clamp(1.65rem, 8vw, 2.4rem); }
  .energy-banner strong { letter-spacing: .15em; font-size: .62rem; }
  .big-moon { right: .6rem; font-size: 4rem; }
  .flower-corner { display: none; }

  .price-panel { padding-left: .7rem; padding-right: .7rem; }
  .price-header { gap: .55rem; }
  .price-header h2 { font-size: 1.55rem; }
  .price-header p { font-size: 1.02rem; }
  .price-columns { grid-template-columns: 1fr; gap: 1.45rem; }
  .price-group, .extras { padding: 1.35rem .85rem .95rem; border-radius: 13px; }
  .price-group h3, .extras h3 { min-width: 52%; }
  .price-group dt, .price-group dd, .extras dt, .extras dd { font-size: .92rem; }
  .extras { margin-top: 1.45rem; }
  .price-note { font-size: .9rem; }

  .final-cta { min-height: 290px; }
  .final-cta-copy { left: 7%; top: 42%; font-size: clamp(3rem, 12vw, 4.5rem); }
  .final-cta-tagline { font-size: .57rem; letter-spacing: .06em; bottom: .75rem; }

  .site-footer { padding: 1.8rem 1rem 5.4rem; }
  .footer-links { display: grid; }
  .whatsapp-float { right: 12px; bottom: 12px; min-height: 48px; }
}

@media (max-width: 390px) {
  .brand strong { font-size: .92rem; }
  .brand img { width: 34px; }
  .menu-toggle { width: 42px; height: 42px; }
  .hero h1 { font-size: 3.08rem; }
  .strength h2 { font-size: .78rem; }
  .strength p { font-size: .92rem; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 50px; height: 50px; padding: 0; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
