/* Hallmark · pre-emit critique: P5 H5 E4 S5 R5 V5 · macrostructure: Photographic · genre: editorial hospitality · tone: quiet Casablanca · anchor: mineral blue · nav: N9 · footer: Ft2 · contrast: pass (40–41) · slop: pass (42–45) · honest: pass (46) · chrome: pass (47) · tokens: pass (48) · responsive: pass (49) · mobile: pass (34, 49, 50–57) */
:root {
  --ink: oklch(22% 0.025 318);
  --ink-soft: oklch(38% 0.03 318);
  --paper: oklch(96% 0.018 210);
  --paper-deep: oklch(91% 0.03 211);
  --aqua: oklch(78% 0.065 201);
  --plum: oklch(42% 0.12 335);
  --plum-dark: oklch(30% 0.08 335);
  --white: oklch(99% 0.005 210);
  --line: color-mix(in oklch, var(--ink) 20%, transparent);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "IBM Plex Sans", Arial, sans-serif;
  --gutter: clamp(1.15rem, 4vw, 4.5rem);
  --measure: 68rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-short: 220ms;
  --duration-long: 680ms;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--paper); overflow-x: clip; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: clip;
}

body::selection { background: var(--aqua); color: var(--ink); }

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

.skip-link {
  position: fixed;
  inset-block-start: 0.5rem;
  inset-inline-start: 0.5rem;
  z-index: 100;
  transform: translateY(-150%);
  opacity: 0;
  pointer-events: none;
  background: var(--white);
  color: var(--ink);
  padding: 0.7rem 1rem;
}
.skip-link:focus { transform: translateY(0); opacity: 1; pointer-events: auto; }

.masthead {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--gutter);
  color: var(--white);
  border-block-end: 1px solid color-mix(in oklch, var(--white) 25%, transparent);
}

.brand { display: inline-flex; align-items: center; min-height: 44px; }
.brand img { width: 72px; height: auto; }
.masthead__call { position: relative; min-height: 44px; display: inline-flex; align-items: center; padding-inline: 1rem; border: 1px solid color-mix(in oklch, var(--white) 72%, transparent); color: var(--white); font-weight: 600; line-height: 1; text-decoration: none; white-space: nowrap; }
.masthead__call:hover { background: var(--white); color: var(--ink); }
.masthead__call:active { background: var(--aqua); color: var(--ink); }

.languages { display: flex; align-items: center; gap: 0.15rem; }
.languages button {
  min-width: 44px;
  min-height: 44px;
  padding: 0.35rem 0.55rem;
  border: 0;
  border-block-end: 2px solid transparent;
  color: inherit;
  background: transparent;
  font: 600 0.78rem/1 var(--body);
  cursor: pointer;
}
.languages button[aria-pressed="true"] { border-color: var(--aqua); }
.languages button:hover { color: var(--aqua); }
.languages button:active { color: var(--white); border-color: var(--white); }
.languages button:disabled { opacity: 0.55; cursor: not-allowed; }
.languages button:focus-visible { outline: 2px solid var(--aqua); outline-offset: 2px; }

.hero {
  position: relative;
  min-height: min(52rem, 100svh);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}
.hero__image,
.hero__veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: center; }
.hero__veil {
  background: linear-gradient(90deg, color-mix(in oklch, var(--ink) 82%, transparent) 0%, color-mix(in oklch, var(--ink) 28%, transparent) 62%, color-mix(in oklch, var(--ink) 40%, transparent) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: min(46rem, 100%);
  padding: clamp(4.5rem, 9vh, 6rem) var(--gutter) clamp(6rem, 13vh, 8rem);
}
.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow--dark { color: var(--plum); }
h1, h2 { font-family: var(--display); font-weight: 600; line-height: 0.95; text-wrap: balance; }
h1, h2 { min-width: 0; overflow-wrap: anywhere; }
h1 { margin: 0; font-size: clamp(3.3rem, 8vw, 7.2rem); max-width: 10ch; }
h2 { margin: 0; font-size: clamp(2.4rem, 5vw, 4.8rem); }
.hero__lede { max-width: 38rem; margin: 1.5rem 0 0; font-size: clamp(1.05rem, 1.5vw, 1.3rem); }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; margin-block-start: 2rem; }
.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--duration-short) var(--ease-out), border-color var(--duration-short) var(--ease-out), color var(--duration-short) var(--ease-out), transform 120ms var(--ease-out);
}
.button--primary { background: var(--plum); color: var(--white); }
.button--primary:hover { background: var(--plum-dark); }
.button--primary:active { background: var(--ink); }
.button--secondary { align-self: flex-start; margin-block-start: 1.4rem; border-color: var(--plum); color: var(--plum); background: transparent; }
.button--secondary:hover { background: var(--plum); color: var(--white); }
.button--secondary:active { background: var(--plum-dark); color: var(--white); }
.button[aria-disabled="true"], .button:disabled { opacity: 0.55; cursor: not-allowed; }
.button:focus-visible, .text-link:focus-visible, .masthead__call:focus-visible, .mobile-call:focus-visible, .consent-banner button:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; }
.text-link { display: inline-flex; min-height: 44px; align-items: center; font-weight: 600; text-underline-offset: 0.35rem; white-space: nowrap; }
.text-link:hover { color: var(--plum); }
.text-link:active { color: var(--plum-dark); }
.text-link::after { content: "↓"; margin-inline-start: 0.55rem; }
.text-link--light { color: var(--white); }
.call-assurance { max-width: 40rem; margin: 1rem 0 0; color: color-mix(in oklch, var(--white) 78%, transparent); font-size: 0.82rem; }
.service { display: grid; min-height: 46rem; grid-template-columns: minmax(0, 1.4fr) minmax(20rem, 0.8fr); background: var(--paper-deep); }
.service--massage { grid-template-columns: minmax(20rem, 0.8fr) minmax(0, 1.4fr); background: var(--white); }
.service--massage .service__visual { order: 2; }
.service--massage .service__copy { order: 1; }
.service__visual { margin: 0; min-height: 36rem; overflow: hidden; }
.service__visual img { width: 100%; height: 100%; object-fit: cover; }
.service__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 7rem) var(--gutter); }
.service__copy h2 { margin-block-end: 1.4rem; }
.service__copy > p { max-width: 33rem; color: var(--ink-soft); }
.service__copy .text-link { align-self: flex-start; margin-block-start: 1.4rem; }
.service__facts { margin: 2rem 0 0; border-block-start: 1px solid var(--line); }
.service__facts > div { display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; padding-block: 0.8rem; border-block-end: 1px solid var(--line); }
.service__facts dt { color: var(--ink-soft); font-size: 0.82rem; }
.service__facts dd { margin: 0; font-weight: 500; }

.gallery { padding: clamp(5rem, 9vw, 9rem) var(--gutter); background: var(--ink); color: var(--white); }
.gallery__heading { width: min(var(--measure), 100%); margin: 0 auto 3.5rem; }
.gallery__heading h2 { max-width: 14ch; }
.gallery__grid { display: grid; grid-template-columns: 0.9fr 1.1fr 0.9fr; gap: clamp(0.75rem, 2vw, 1.5rem); align-items: stretch; }
.gallery__grid figure { margin: 0; min-height: 34rem; overflow: hidden; }
.gallery__grid figure:nth-child(2) { transform: translateY(2.5rem); }
.gallery__grid img { width: 100%; height: 100%; object-fit: cover; }

.booking { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr); gap: clamp(3rem, 8vw, 8rem); padding: clamp(5rem, 10vw, 10rem) var(--gutter); background: var(--aqua); }
.booking h2 { max-width: 14ch; margin-block: 0 1.5rem; }
.booking__copy > p:last-child { max-width: 43rem; }
.booking__actions { display: flex; flex-direction: column; justify-content: center; gap: 0.75rem; }
.booking__actions .button { flex-direction: column; align-items: flex-start; min-height: 74px; }
.booking__actions strong { font-size: 1.05rem; }
.call-proof { padding-block-start: 1rem; border-block-start: 1px solid color-mix(in oklch, var(--ink) 28%, transparent); }
.call-proof p { margin: 0; }
.call-proof p:first-child { font-weight: 600; }
.call-proof p:last-child { margin-block-start: 0.25rem; color: var(--ink-soft); font-size: 0.85rem; }

.footer { display: grid; grid-template-columns: 1fr auto; gap: 2rem; padding: 3rem var(--gutter); background: var(--ink); color: var(--white); }
.footer img { width: 72px; height: auto; margin-block-end: 1rem; }
.footer p { margin: 0; color: color-mix(in oklch, var(--white) 75%, transparent); }
.footer__links { display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem; }
.footer__links a { min-height: 44px; display: inline-flex; align-items: center; }
.footer__links a { white-space: nowrap; }
.footer__note { grid-column: 1 / -1; padding-block-start: 1.5rem; border-block-start: 1px solid color-mix(in oklch, var(--white) 18%, transparent); font-size: 0.72rem; }
.mobile-call {
  position: fixed;
  z-index: 70;
  inset-inline-end: 1.25rem;
  inset-block-end: 1.25rem;
  width: min(17rem, calc(100vw - 2.5rem));
  min-height: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.8rem 1rem;
  border: 1px solid color-mix(in oklch, var(--white) 35%, transparent);
  background: var(--plum);
  color: var(--white);
  box-shadow: 0 0.9rem 2.8rem color-mix(in oklch, var(--plum-dark) 30%, transparent);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  isolation: isolate;
}
.mobile-call small { display: none; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.02em; opacity: 0.9; }
.mobile-call:hover { background: var(--plum-dark); }
.mobile-call:active { background: var(--ink); transform: translateY(1px); }
.consent-banner { position: fixed; z-index: 80; inset-inline: var(--gutter); inset-block-end: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; max-width: 48rem; margin-inline: auto; padding: 1rem; background: var(--white); color: var(--ink); box-shadow: 0 1rem 3rem color-mix(in oklch, var(--ink) 20%, transparent); }
.consent-banner[hidden] { display: none; }
.consent-banner p { max-width: 52ch; margin: 0; font-size: 0.86rem; }
.consent-banner div { display: flex; align-items: center; gap: 0.5rem; }
.consent-banner button { min-height: 44px; padding: 0.55rem 0.8rem; border: 1px solid var(--line); background: var(--paper); color: var(--ink); cursor: pointer; white-space: nowrap; }
.consent-banner button:hover { border-color: var(--plum); }
.consent-banner button:active { background: var(--paper-deep); }

.motion-ready .reveal {
  opacity: 0;
  transition: opacity var(--duration-long) var(--ease-out), transform var(--duration-long) var(--ease-out);
}
.motion-ready .reveal:not([data-reveal="media"]) { transform: translateY(2.25rem); }
.motion-ready .reveal[data-reveal="media"] img {
  transform: scale(1.075);
  transition: transform 820ms var(--ease-out);
}
.motion-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }
.motion-ready .reveal[data-reveal="media"].is-visible img { transform: scale(1); }
.motion-ready .gallery__grid .reveal:nth-child(2) { transition-delay: 120ms; }
.motion-ready .gallery__grid .reveal:nth-child(3) { transition-delay: 240ms; }
.motion-ready .hero__content { opacity: 1; transform: none; }
.motion-ready .hero__content > * {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
}
.motion-ready .hero__content.is-visible > * { opacity: 1; transform: translateY(0); }
.motion-ready .hero__content.is-visible > :nth-child(2) { transition-delay: 90ms; }
.motion-ready .hero__content.is-visible > :nth-child(3) { transition-delay: 170ms; }
.motion-ready .hero__content.is-visible > :nth-child(4) { transition-delay: 250ms; }
.motion-ready .hero__content.is-visible > :nth-child(5) { transition-delay: 330ms; }
.motion-ready .hero__image { animation: hero-settle 1100ms var(--ease-out) both; }

[data-number]::before {
  content: attr(data-number);
  position: absolute;
  z-index: 2;
  left: 50%;
  inset-block-end: calc(100% + 0.65rem);
  width: max-content;
  max-width: calc(100vw - 2rem);
  padding: 0.55rem 0.8rem;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 0.8rem 2rem color-mix(in oklch, var(--ink) 24%, transparent);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
  direction: ltr;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.45rem);
  transition: opacity var(--duration-short) var(--ease-out), transform var(--duration-short) var(--ease-out);
}
[data-number]:hover::before,
[data-number]:focus-visible::before { opacity: 1; transform: translate(-50%, 0); }

.button--primary::after,
.mobile-call::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -0.38rem;
  border: 1px solid color-mix(in oklch, var(--plum) 72%, var(--white));
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
  animation: call-signal 2.8s var(--ease-out) infinite;
}

@keyframes call-signal {
  0%, 55% { opacity: 0; transform: scale(0.96); }
  72% { opacity: 0.72; }
  100% { opacity: 0; transform: scale(1.08); }
}

@keyframes hero-settle {
  from { opacity: 0.72; transform: scale(1.065); }
  to { opacity: 1; transform: scale(1); }
}

html[dir="rtl"] .hero__veil { transform: scaleX(-1); }
html[dir="rtl"] .text-link::after { content: "↓"; margin-inline-start: 0.55rem; }
html[dir="rtl"] .footer__links { align-items: flex-start; }

@media (max-width: 780px) {
  .masthead { padding-block: 0.65rem; align-items: flex-start; }
  .brand img { width: 58px; }
  .masthead__call { display: none; }
  .languages { max-width: calc(100vw - 6rem); overflow-x: auto; }
  .hero { min-height: 46rem; }
  .hero__image { object-position: 58% center; }
  .hero__veil { background: linear-gradient(0deg, color-mix(in oklch, var(--ink) 88%, transparent) 0%, color-mix(in oklch, var(--ink) 20%, transparent) 70%); }
  .hero__content { padding-block-start: 5.25rem; padding-block-end: 7rem; }
  h1 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .service, .service--massage { min-height: auto; grid-template-columns: 1fr; }
  .service--massage .service__visual, .service--massage .service__copy { order: initial; }
  .service__visual { min-height: 22rem; max-height: 62svh; }
  .service__copy { min-height: 0; padding-block: 3.5rem; }
  .gallery { padding-inline: 0; }
  .gallery__heading { padding-inline: var(--gutter); }
  .gallery__grid {
    grid-auto-flow: column;
    grid-auto-columns: min(78vw, 24rem);
    grid-template-columns: none;
    gap: 0.85rem;
    overflow-x: auto;
    padding: 0 var(--gutter) 1rem;
    scroll-padding-inline: var(--gutter);
    scroll-snap-type: inline mandatory;
    overscroll-behavior-inline: contain;
  }
  .gallery__grid figure { min-height: 25rem; scroll-snap-align: start; }
  .gallery__grid figure:nth-child(2) { transform: none; }
  .gallery__grid figure:last-child { grid-column: auto; min-height: 25rem; }
  .booking { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; padding-block-end: 7rem; }
  .footer__links { align-items: flex-start; }
  .mobile-call { inset-inline: 0; inset-block-end: 0; width: auto; padding: 0.7rem var(--gutter); box-shadow: 0 -0.5rem 2rem color-mix(in oklch, var(--ink) 18%, transparent); }
  .mobile-call small { display: inline; }
  [data-number]::before { display: none; }
  .consent-banner { inset-block-end: 4.6rem; }
}

@media (max-width: 460px) {
  .languages button { min-width: 44px; padding-inline: 0.35rem; }
  .languages button:last-child { min-width: 58px; }
  .hero { min-height: 44rem; }
  .hero__lede { font-size: 1rem; }
  .actions { align-items: flex-start; flex-direction: column; gap: 0.55rem; }
  .service__facts > div { grid-template-columns: 6rem 1fr; }
  .consent-banner { align-items: stretch; flex-direction: column; }
  .consent-banner div { justify-content: flex-end; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .motion-ready .reveal, .motion-ready .reveal[data-reveal="media"] img, .motion-ready .hero__content > * { opacity: 1; transform: none; transition: none; }
  .motion-ready .hero__image { animation: none; }
  .button--primary::after, .mobile-call::after { animation: none; opacity: 0.45; transform: none; }
}
