/* ============================================================
   ASLY — Nocturne Editorial v2
   ink #0C0A0B · bone #EDE6DE · rose #D24B5A · mauve #8E7A80
   ============================================================ */

:root {
  --ink: #0c0a0b;
  --ink-2: #141013;
  --ink-3: #1c161a;
  --bone: #ede6de;
  --bone-dim: rgba(237, 230, 222, 0.78);
  --bone-faint: rgba(237, 230, 222, 0.55);
  --hairline: rgba(237, 230, 222, 0.12);
  --rose: #d24b5a;
  --rose-soft: #e0697a;
  --mauve: #8e7a80;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Archivo", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --rail-w: 56px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* ---------- grain overlay ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 90;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ---------- scroll progress ---------- */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 95;
  background: transparent;
}
.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--rose);
  transition: width 0.1s linear;
}

/* ---------- preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.02em;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__name {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 300;
  color: var(--bone);
  opacity: 0;
  transform: translateY(30px);
  animation: preIn 0.7s var(--ease) forwards;
}
.preloader__name:nth-child(2) { color: var(--rose); font-style: italic; animation-delay: 0.08s; }
.preloader__name:nth-child(3) { animation-delay: 0.16s; }
.preloader__name:nth-child(4) { animation-delay: 0.24s; }
@keyframes preIn {
  to { opacity: 1; transform: none; }
}

/* ---------- side rail ---------- */
.rail {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: var(--rail-w);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-right: 1px solid var(--hairline);
  background: rgba(12, 10, 11, 0.6);
  backdrop-filter: blur(6px);
}
.rail__label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.rail__dots { display: flex; flex-direction: column; gap: 12px; }
.rail__dots a {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bone-faint);
  transition: background 0.3s, transform 0.3s var(--ease);
}
.rail__dots a:hover { background: var(--rose); }
.rail__dots a.is-active { background: var(--rose); transform: scale(1.5); }
.rail__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  color: var(--rose);
}

/* ---------- topbar ---------- */
.topbar {
  position: fixed;
  top: 0; left: var(--rail-w); right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  mix-blend-mode: difference;
}
.topbar__mark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}
.topbar__mark span { color: var(--rose); font-size: 12px; vertical-align: super; }
.topbar__nav { display: flex; align-items: center; gap: 28px; }
.topbar__nav a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color 0.3s;
}
.topbar__nav a:hover { color: var(--bone); }
.topbar__cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 8px 18px;
  color: var(--bone) !important;
}
.lang-toggle {
  background: none;
  border: 1px solid rgba(237,230,222,0.3);
  border-radius: 999px;
  color: var(--bone-dim);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.lang-toggle:hover { border-color: var(--rose); color: var(--rose-soft); }

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 70;
}
.burger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--bone);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.burger.is-open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.burger.is-open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* ---------- drawer (mobile) ---------- */
.drawer[hidden] { display: none; }
.drawer {
  position: fixed;
  inset: 0;
  z-index: 65;
  background: rgba(12, 10, 11, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 32px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.drawer.is-open { opacity: 1; }
.drawer__nav { display: flex; flex-direction: column; gap: 8px; }
.drawer__nav a {
  font-family: var(--font-display);
  font-size: clamp(32px, 9vw, 48px);
  font-weight: 300;
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.drawer.is-open .drawer__nav a { opacity: 1; transform: none; }
.drawer.is-open .drawer__nav a:nth-child(1) { transition-delay: 0.05s; }
.drawer.is-open .drawer__nav a:nth-child(2) { transition-delay: 0.1s; }
.drawer.is-open .drawer__nav a:nth-child(3) { transition-delay: 0.15s; }
.drawer.is-open .drawer__nav a:nth-child(4) { transition-delay: 0.2s; }
.drawer.is-open .drawer__nav a:nth-child(5) { transition-delay: 0.25s; }
.drawer.is-open .drawer__nav a:nth-child(6) { transition-delay: 0.3s; }
.drawer.is-open .drawer__nav a:nth-child(7) { transition-delay: 0.35s; }
.drawer__nav a:hover { color: var(--rose-soft); }
.drawer__cta { color: var(--rose-soft) !important; font-style: italic; }
.drawer__foot {
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.35s;
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn--solid { background: var(--rose); color: var(--ink); font-weight: 500; }
.btn--solid:hover { background: var(--rose-soft); box-shadow: 0 8px 32px rgba(210, 75, 90, 0.35); }
.btn--ghost { border: 1px solid var(--hairline); color: var(--bone); }
.btn--ghost:hover { border-color: var(--rose); color: var(--rose-soft); }

/* ---------- section head ---------- */
.sec-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 56px;
}
.sec-head__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--rose);
}
.sec-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4.5vw, 52px);
  letter-spacing: -0.01em;
}
.sec-head__count {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 0 0 0 calc(var(--rail-w) + 40px);
}
.hero__media {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 46%;
  overflow: hidden;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: saturate(0.88) contrast(1.04);
  animation: heroIn 1.6s var(--ease) both;
}
@keyframes heroIn {
  from { transform: scale(1.08); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(12,10,11,0.92) 34%, rgba(12,10,11,0.55) 52%, rgba(12,10,11,0) 68%),
    linear-gradient(0deg, rgba(12,10,11,0.95) 0%, rgba(12,10,11,0.55) 18%, rgba(12,10,11,0) 45%);
}
.hero__body { position: relative; z-index: 2; max-width: 640px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 22px;
}
.pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  position: relative;
}
.pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid #4ade80;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  from { transform: scale(0.6); opacity: 1; }
  to { transform: scale(1.6); opacity: 0; }
}
.hero__kicker {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 28px;
}
.tick { color: var(--rose); margin-right: 8px; }
.hero__name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(88px, 16vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-left: -0.04em;
}
.hero__name-i {
  font-style: italic;
  color: var(--rose);
  font-weight: 400;
}
.hero__tag {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  margin-top: 28px;
  color: var(--bone-dim);
}
.hero__tag em { color: var(--bone); }
.hero__meta {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.hero__cta { display: flex; gap: 16px; margin-top: 44px; }
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: calc(var(--rail-w) + 40px);
  font-size: 18px;
  color: var(--bone-faint);
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  padding: 18px 0;
  background: var(--ink-2);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: scroll 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--mauve);
  white-space: nowrap;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============ shared section shell ============ */
.dossier, .about, .gallery, .reviews, .rates, .travel, .faq, .contact {
  padding: 120px calc(40px + 2vw) 120px calc(var(--rail-w) + 40px + 2vw);
  max-width: 1280px;
}

/* ============ DOSSIER ============ */
.dossier__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--hairline);
}
.dossier__cell {
  padding: 36px 24px 36px 24px;
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
}
.dossier__cell:first-child { padding-left: 0; }
.dossier__cell:last-child { border-right: none; }
.dossier__cell dt {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: 14px;
}
.dossier__cell dd {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  line-height: 1;
}
.dossier__cell:nth-child(2n) dd { font-style: italic; color: var(--rose-soft); }

/* ============ ABOUT ============ */
.about { background: var(--ink-2); }
.about__body { max-width: 760px; }
.about__lead {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 40px;
}
.about__lead em { color: var(--rose-soft); }
.about__body p:not(.about__lead) {
  color: var(--bone-dim);
  font-size: 17px;
  max-width: 620px;
  margin-bottom: 24px;
}

/* ============ GALLERY ============ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 20px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--hairline);
}
.gallery__item--tall {
  grid-row: span 2;
  grid-column: 1;
}
.gallery__item--tall img {
  object-position: 50% 10%;
  transform: scale(1.12);
  transform-origin: 50% 0;
}
.gallery__item--tall:hover img { transform: scale(1.18); }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: transform 0.8s var(--ease), filter 0.5s;
}
.gallery__item:hover img {
  transform: scale(1.05);
  filter: saturate(1);
}
.gallery__item--tall:hover img { transform: scale(1.18); }
.gallery__item figcaption {
  position: absolute;
  bottom: 14px; right: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--bone);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery__item:hover figcaption { opacity: 1; }

/* ============ REVIEWS ============ */
.reviews { background: var(--ink-2); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 32px;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.review:hover { border-color: rgba(210, 75, 90, 0.4); transform: translateY(-4px); }
.review__stars {
  color: var(--rose);
  font-size: 15px;
  letter-spacing: 0.3em;
}
.review p {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--bone-dim);
  flex: 1;
}
.review footer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review__who {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--rose);
  color: var(--rose-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review__meta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.reviews__note {
  margin-top: 32px;
  font-size: 13px;
  color: var(--mauve);
  font-style: italic;
}

/* ============ RATES ============ */
.rates { background: var(--ink-2); }
.rates__wrap { max-width: 760px; }
.rates__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.rates__table th {
  text-align: left;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--bone-faint);
  padding: 0 0 18px;
  border-bottom: 1px solid var(--hairline);
}
.rates__table td {
  padding: 26px 0;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
}
.rates__table td:first-child { font-size: 17px; font-family: var(--font-body); color: var(--bone-dim); }
.rates__table td:nth-child(2) { color: var(--rose-soft); font-style: italic; }
.rates__note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--mauve);
  font-style: italic;
}
.rates__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin-top: 36px;
}
.rates__chips li {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 10px 22px;
  color: var(--bone-dim);
  transition: border-color 0.3s, color 0.3s;
}
.rates__chips li:hover { border-color: var(--rose); color: var(--rose-soft); }
.rates__comp { margin-top: 36px; font-size: 15px; color: var(--bone-dim); }
.rates__comp span:first-child {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: 8px;
}

/* ============ TRAVEL ============ */
.travel__wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.travel__now {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 32px;
  background: var(--ink-2);
}
.travel__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  position: relative;
}
.travel__dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid #4ade80;
  animation: pulse 2s ease-out infinite;
}
.travel__city {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.1;
}
.travel__status {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-top: 6px;
}
.travel__label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: 18px;
}
.travel__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}
.travel__cities li {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--bone-dim);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 10px 24px;
  transition: border-color 0.3s, color 0.3s;
}
.travel__cities li:hover { border-color: var(--rose); color: var(--rose-soft); }
.travel__hint {
  margin-top: 28px;
  font-size: 15px;
  color: var(--mauve);
  max-width: 520px;
}

/* ============ FAQ ============ */
.faq { background: var(--ink-2); }
.faq__list { max-width: 760px; }
.faq__item {
  border-bottom: 1px solid var(--hairline);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  transition: color 0.3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--rose-soft); }
.faq__item summary i {
  font-style: normal;
  font-size: 22px;
  color: var(--rose);
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}
.faq__item[open] summary i { transform: rotate(45deg); }
.faq__item p {
  padding: 0 0 26px;
  color: var(--bone-dim);
  font-size: 16px;
  max-width: 640px;
  animation: faqIn 0.4s var(--ease);
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

/* ============ CONTACT / BOOKING ============ */
.contact__lead {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 48px;
}
.book {
  max-width: 720px;
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 40px;
  background: var(--ink-2);
}
.book__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.book__field {
  display: block;
  margin-bottom: 20px;
}
.book__field > span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: 10px;
}
.book__field input,
.book__field select,
.book__field textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
  color-scheme: dark;
}
.book__field textarea { resize: vertical; min-height: 88px; }
.book__field input:focus,
.book__field select:focus,
.book__field textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(210, 75, 90, 0.15);
}
.book__field input::placeholder,
.book__field textarea::placeholder { color: var(--bone-faint); }
.book__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}
.book__direct {
  display: flex;
  align-items: center;
  gap: 16px;
}
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--bone-dim);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.copy-btn:hover { border-color: var(--rose); color: var(--rose-soft); }
.copy-btn.is-copied { border-color: #4ade80; color: #4ade80; }
.book__tel {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--bone-dim);
  transition: color 0.3s;
}
.book__tel:hover { color: var(--rose-soft); }
.book__ok {
  margin-top: 20px;
  font-size: 14px;
  color: #4ade80;
  font-style: italic;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 56px calc(40px + 2vw) 56px calc(var(--rail-w) + 40px + 2vw);
  background: var(--ink-2);
}
.footer__mark {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 16px;
}
.footer__mark span { color: var(--rose); font-size: 12px; }
.footer__legal {
  font-size: 12px;
  color: var(--bone-faint);
  max-width: 560px;
  line-height: 1.7;
}

/* ============ LIGHTBOX ============ */
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 6, 7, 0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.35s;
}
.lightbox.is-open { opacity: 1; }
.lightbox__stage { max-width: min(80vw, 720px); max-height: 74vh; position: relative; }
.lightbox__stage img {
  max-width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border: 1px solid var(--hairline);
}
.lightbox__stage figcaption {
  text-align: center;
  margin-top: 14px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--bone-dim);
  letter-spacing: 0.2em;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  width: 52px; height: 52px;
  color: var(--bone);
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  flex-shrink: 0;
}
.lightbox__close { top: 28px; right: 32px; }
.lightbox__prev { left: 32px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 32px; top: 50%; transform: translateY(-50%); }
.lightbox button:hover { border-color: var(--rose); color: var(--rose-soft); }
.lightbox__thumbs {
  display: flex;
  gap: 10px;
}
.lightbox__thumbs img {
  width: 64px; height: 64px;
  object-fit: cover;
  border: 1px solid var(--hairline);
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.3s, border-color 0.3s;
}
.lightbox__thumbs img.is-active,
.lightbox__thumbs img:hover { opacity: 1; border-color: var(--rose); }

/* ============ toast ============ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translate(-50%, 80px);
  background: var(--ink-3);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--bone);
  font-size: 13px;
  padding: 14px 28px;
  z-index: 110;
  transition: transform 0.45s var(--ease);
  pointer-events: none;
}
.toast.is-show { transform: translate(-50%, 0); }

/* ============ reveal on scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============ AGE GATE ============ */
.agegate {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.agegate.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.agegate__card {
  max-width: 480px;
  text-align: center;
  padding: 48px 36px;
  border: 1px solid var(--hairline);
  border-radius: 24px;
  background: var(--ink-2);
}
.agegate__kicker {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 22px;
}
.agegate__kicker .tick { color: var(--rose); margin-right: 8px; }
.agegate__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.agegate__title span { color: var(--rose); margin: 0 6px; }
.agegate__title em { font-style: italic; color: var(--bone-dim); font-size: 0.5em; font-weight: 300; }
.agegate__body {
  font-size: 14px;
  color: var(--bone-dim);
  line-height: 1.7;
  margin-bottom: 32px;
}
.agegate__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.agegate__cta .btn { padding: 14px 26px; }
.agegate__note {
  font-size: 11px;
  color: var(--bone-faint);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

/* ============ TRUST BAR ============ */
.trustbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 36px calc(40px + 2vw) 36px calc(var(--rail-w) + 40px + 2vw);
  max-width: 1280px;
  border-bottom: 1px solid var(--hairline);
}
.trustbar__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  border-right: 1px solid var(--hairline);
}
.trustbar__item:last-child { border-right: none; }
.trustbar__item:first-child { padding-left: 0; }
.trustbar__icon {
  font-size: 22px;
  color: var(--rose);
  flex-shrink: 0;
  font-family: var(--font-display);
}
.trustbar__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--bone);
  line-height: 1.2;
  margin-bottom: 4px;
}
.trustbar__sub {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--bone-faint);
  line-height: 1.4;
}

/* ============ POLICIES (booking accordion) ============ */
.policies {
  max-width: 720px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
}
.policies__item {
  background: var(--ink-2);
}
.policies__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color 0.3s;
}
.policies__item summary::-webkit-details-marker { display: none; }
.policies__item summary:hover { color: var(--rose-soft); }
.policies__item summary i {
  font-style: normal;
  font-size: 16px;
  color: var(--rose);
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}
.policies__item[open] summary i { transform: rotate(45deg); }
.policies__item p {
  padding: 0 18px 18px;
  font-size: 13px;
  color: var(--bone-dim);
  line-height: 1.6;
  animation: faqIn 0.4s var(--ease);
}

/* ============ LIGHTBOX POETIC CAPTION ============ */
.lightbox__poetic {
  text-align: center;
  margin-top: 4px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--rose-soft);
  letter-spacing: 0.06em;
  min-height: 1.2em;
}

/* ============ STICKY CTA (desktop bar) ============ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: var(--rail-w); right: 0;
  z-index: 80;
  background: rgba(12, 10, 11, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--hairline);
  transform: translateY(100%);
  transition: transform 0.45s var(--ease);
}
.sticky-cta.is-show { transform: translateY(0); }
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.sticky-cta__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.sticky-cta__btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sticky-cta__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--ink);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.sticky-cta__wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35); }
.sticky-cta__tel {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--bone-dim);
  transition: color 0.3s;
}
.sticky-cta__tel:hover { color: var(--rose-soft); }

/* ============ FAB (mobile) ============ */
.fab {
  display: none;
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 80;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transform: scale(0);
  transition: transform 0.4s var(--ease);
}
.fab.is-show { transform: scale(1); }
.fab:hover { transform: scale(1.08); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .dossier__grid { grid-template-columns: repeat(3, 1fr); }
  .dossier__cell:nth-child(3n) { border-right: none; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .travel__wrap { grid-template-columns: 1fr; gap: 32px; }
  .trustbar { grid-template-columns: 1fr; }
  .trustbar__item { border-right: none; border-bottom: 1px solid var(--hairline); padding: 16px 0; }
  .trustbar__item:last-child { border-bottom: none; }
  .policies { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --rail-w: 0px; }
  .rail { display: none; }
  .topbar { left: 0; padding: 16px 20px; }
  .topbar__nav { display: none; }
  .burger { display: flex; }
  .hero {
    grid-template-columns: 1fr;
    padding: 0 20px;
    align-items: end;
    padding-bottom: 90px;
  }
  .hero__media { width: 100%; opacity: 0.32; }
  .hero__body { padding-top: 120px; }
  .hero__scroll { left: 20px; }
  .dossier, .about, .gallery, .reviews, .rates, .travel, .faq, .contact {
    padding: 80px 20px;
  }
  .trustbar { padding: 24px 20px; }
  .dossier__grid { grid-template-columns: repeat(2, 1fr); }
  .dossier__cell { padding-left: 0; border-right: none; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 380px; }
  .gallery__item--tall { grid-row: span 1; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .sec-head { flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
  .book { padding: 28px 20px; }
  .book__row { grid-template-columns: 1fr; gap: 0; }
  .book__foot { flex-direction: column; align-items: stretch; }
  .book__direct { justify-content: space-between; }
  .sticky-cta { display: none; }
  .fab { display: flex; }
  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }
  .lightbox__thumbs img { width: 48px; height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .preloader { display: none; }
  html { scroll-behavior: auto; }
}
