/* ═══════════════════════════════════════════════════════════════
   Hotel Villa Cute — Premium Redesign
   Aesthetic: POB Hotels / Mallory Court
   ═══════════════════════════════════════════════════════════════ */

/* ─── Custom Properties ──────────────────────────────────────── */
:root {
  --cream:        #f4ede0;
  --cream-mid:    #ede4d4;
  --cream-dark:   #e5d9c5;
  --dark:         #1a1714;
  --dark-mid:     #2e2a25;
  --warm:         #8b6f47;
  --warm-light:   #c4a882;
  --white:        #ffffff;
  --text:         #2a2520;
  --text-muted:   #6b5f52;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-swipe:   cubic-bezier(0.76, 0, 0.24, 1);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);

  --font-serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-pad: 24px;
  --r-pill:  999px;
  --r-card:  10px;
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

main,
section {
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}


img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── Typography helpers ─────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 18px;
}

.eyebrow--light { color: var(--warm-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 28px;
  /* Allow long German compounds (e.g. "Sonnenuntergangstour") to break */
  overflow-wrap: break-word;
  hyphens: auto;
}

.section-title em {
  font-style: italic;
  font-weight: 300;
}

.section-title--light { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.section-lead {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: -8px;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  color: var(--dark);
  border-radius: var(--r-pill);
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-pill:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.btn-pill--dark {
  background: var(--dark);
  color: var(--white);
}

.btn-pill--dark:hover {
  background: var(--dark-mid);
}

.btn-pill--lg {
  padding: 18px 40px;
  font-size: 15px;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 3px;
  transition: color 0.2s, gap 0.2s;
}

.btn-arrow span { transition: transform 0.2s var(--ease-out); }
.btn-arrow:hover { color: var(--warm); }
.btn-arrow:hover span { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════
   FLOATING NAV
   ═══════════════════════════════════════════════════════════════ */

/* ── Outer container ── */
.float-nav {
  position: fixed;
  top: var(--nav-pad);
  /* Center via auto margins (not left:50% + translateX). A fixed element
     positioned with left:50% and no `right` has its shrink-to-fit width
     capped at 50% of the viewport, which clipped the open menu's links on
     narrower laptops (esp. longer FR/DE labels). left:0/right:0 + auto
     margins lets the pill grow to its content width and stay centered. */
  left: 0;
  right: 0;
  margin-inline: auto;
  transform: translateY(-14px);
  z-index: 900;
  /* Content-sized: width follows the links-track as it expands/collapses */
  width: -moz-fit-content;
  width: fit-content;
  max-width: min(calc(100% - 48px), 1240px);
  opacity: 0;
  pointer-events: none;

  background: #ffffff;
  border-radius: var(--r-pill);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.11), 0 1px 4px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;

  transition:
    opacity   0.5s ease,
    transform 0.5s var(--ease-out),
    width     0.46s var(--ease-out),
    border-radius 0.38s var(--ease-swipe),
    box-shadow 0.3s ease;
}

.float-nav.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.float-nav.is-scrolled {
  box-shadow: 0 8px 36px rgba(0,0,0,0.15), 0 2px 6px rgba(0,0,0,0.08);
}

/* ── Mobile panel: slides down above the pill row ── */
.float-nav__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.46s var(--ease-out);
}

.float-nav__panel-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 18px 20px 10px;
}

.float-nav__panel-links {
  display: flex;
  flex-direction: column;
  padding-bottom: 8px;
}

.float-nav__panel-links li {
  border-top: 1px solid rgba(0,0,0,0.07);
}

.panel-link {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  padding: 14px 20px;
  transition: background 0.15s ease, color 0.15s ease;
}

.panel-link:hover {
  background: rgba(0,0,0,0.03);
  color: var(--warm);
}

/* ── Always-visible pill row ── */
.float-nav__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  flex-shrink: 0;
}

/* ── Menu button — gray pill ── */
.float-nav__menu-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #e3ddd6;
  border: none;
  border-radius: var(--r-pill);
  padding: 14px 26px;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--dark);
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.float-nav__menu-btn:hover { background: #d4cec7; }

.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
  height: 15px;
  flex-shrink: 0;
}

.menu-icon span {
  display: block;
  height: 1.5px;
  background: var(--dark);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.35s var(--ease-swipe), opacity 0.22s ease;
}

.float-nav.is-open .menu-icon span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.float-nav.is-open .menu-icon span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.float-nav.is-open .menu-icon span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Desktop center links ──
   The track is a 1-column grid that animates 0fr → 1fr.
   A grid track animating to `1fr` resolves to the content's natural
   width, so the nav grows/shrinks to fit its links smoothly in BOTH
   directions — no JS width, no empty white-space on close. */
.float-nav__links-track {
  display: grid;
  grid-template-columns: 0fr;
  opacity: 0;
  pointer-events: none;
  transition:
    grid-template-columns 0.46s var(--ease-out),
    opacity 0.26s ease;
}

.float-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;       /* allow the grid item to shrink to 0 */
  overflow: hidden;   /* clip links while the track is collapsing */
}

.float-nav__links a {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--dark);
  padding: 10px 13px;
  border-radius: var(--r-pill);
  transition: background 0.18s ease;
  white-space: nowrap;
}

.float-nav__links a:hover   { background: rgba(0,0,0,0.06); }
.float-nav__links a.is-active { background: rgba(0,0,0,0.07); font-weight: 500; }

/* ── Book button — dark pill ── */
.float-nav__book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--r-pill);
  padding: 14px 28px;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s var(--ease-bounce);
}

.float-nav__book-btn:hover {
  background: #3a342d;
  transform: scale(1.02);
}

/* ═══════════════════════════════════════════════════════════════
   DESKTOP (≥ 1101px) — pure-CSS horizontal expansion
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 1101px) {
  .float-nav__panel { display: none; }  /* panel only on mobile */

  /* When open: track expands to its links' natural width and fades in */
  .float-nav.is-open .float-nav__links-track {
    grid-template-columns: 1fr;
    opacity: 1;
    pointer-events: all;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE / TABLET (≤ 1100px) — stacked layout + vertical panel
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .float-nav {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    left: 0;
    right: 0;
    margin-inline: auto;
    width: -moz-fit-content;
    width: fit-content;
    max-width: calc(100% - 20px);
    min-width: 0;
    transform: translateY(-14px);
    border-radius: var(--r-pill);
  }
  .float-nav.is-visible { transform: translateY(0); }

  .float-nav__links-track { display: none; }  /* desktop links hidden */

  .float-nav__inner {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 6px;
    min-width: 0;
  }

  .hero-logo {
    top: clamp(96px, 14vh, 140px);
  }
  .hero-logo img { width: clamp(130px, 38vw, 175px); }

  .float-nav__menu-btn,
  .float-nav__book-btn {
    width: auto;
    min-width: 0;
    flex: none;
    justify-content: center;
  }

  /* Panel expansion */
  .float-nav.is-open .float-nav__panel { max-height: 600px; }
  .float-nav.is-open {
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    width: auto;
    max-width: none;
    transform: translateY(0);
    border-radius: 20px;
  }
}

/* Very small screens: hide "diretto" to save space */
@media (max-width: 520px) {
  .btn-long { display: none; }
  .float-nav__menu-btn,
  .float-nav__book-btn { font-size: 15px; padding: 12px 18px; }
  .float-nav__panel-title { padding: 14px 18px 8px; }
  .panel-link { font-size: 22px; padding: 12px 18px; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE STICKY BOTTOM TOOLBAR  — centered floating pill
   ═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   BACK-TO-TOP — discreet frosted circle, desktop only
   Hidden ≤1100px so it never collides with the sticky bottom toolbar.
   ═══════════════════════════════════════════════════════════════ */
.back-to-top {
  display: none;           /* enabled on desktop below */
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 940;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  backdrop-filter: blur(12px) saturate(160%);
  color: var(--dark);
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.13), 0 1px 3px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  pointer-events: none;
  transition:
    opacity 0.4s var(--ease-out),
    transform 0.4s var(--ease-out),
    background 0.2s ease,
    color 0.2s ease;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  display: block;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px) scale(1.05);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--dark);
  outline-offset: 3px;
}

@media (min-width: 1101px) {
  .back-to-top { display: flex; }
}

.bottom-toolbar {
  display: none;
  position: fixed;
  bottom: max(14px, env(safe-area-inset-bottom));
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 950;
  align-items: stretch;
  justify-content: center;
  gap: 0;

  width: calc(100% - 24px);
  max-width: 440px;

  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-radius: var(--r-pill);
  box-shadow: 0 4px 28px rgba(0,0,0,0.14), 0 1px 4px rgba(0,0,0,0.08);
  padding: 6px;
}

@media (max-width: 1100px) {
  .bottom-toolbar {
    display: flex;
    position: fixed;
    top: auto;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    width: auto;
    transform: none;
    will-change: auto;
  }
  body { padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
}

.bottom-toolbar__item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px;
  color: var(--text-muted);
  border-radius: var(--r-pill);
  transition: color 0.2s, background 0.2s;
}

.bottom-toolbar__item span {
  max-width: 100%;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bottom-toolbar__item:hover,
.bottom-toolbar__item.is-active {
  color: var(--dark);
  background: rgba(0,0,0,0.05);
}

/* Booking CTA — dark pill (same flex width as the others) */
.bottom-toolbar__item--cta {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--r-pill);
}

.bottom-toolbar__item--cta:hover {
  color: var(--white);
  background: var(--dark-mid);
}

/* Narrow phones: shrink type/icons so five equal columns fit comfortably */
@media (max-width: 520px) {
  .bottom-toolbar {
    width: calc(100% - 20px);
    padding: 5px;
  }
  .bottom-toolbar__item { padding: 7px 3px; gap: 2px; }
  .bottom-toolbar__item span { font-size: 8px; letter-spacing: 0.03em; }
  .bottom-toolbar__item svg { width: 19px; height: 19px; }
}

@media (max-width: 360px) {
  .bottom-toolbar__item span { font-size: 7.5px; }
  .bottom-toolbar__item svg { width: 18px; height: 18px; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(15,12,10,0.08) 0%,
    rgba(15,12,10,0.25) 45%,
    rgba(15,12,10,0.72) 100%
  );
}

/* ── Centered brand logo — fades out on scroll ── */
.hero-logo {
  position: fixed;
  top: clamp(104px, 15vh, 162px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 850;
  display: flex;
  opacity: 1;
  transition: opacity 0.55s ease, transform 0.55s var(--ease-out);
  will-change: opacity, transform;
}

.hero-logo img {
  display: block;
  width: clamp(130px, 16vw, 190px);
  height: auto;
  filter: drop-shadow(0 3px 18px rgba(0,0,0,0.45));
}

.hero-logo.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(-18px);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 18px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(60px, 10vw, 116px);
  font-weight: 300;
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 44px;
  /* Allow long German compounds to break instead of overflowing */
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  color: var(--dark);
  border-radius: var(--r-pill);
  padding: 16px 32px;
  font-size: 14.5px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s ease, background 0.2s;
}

.hero__cta:hover {
  background: var(--white);
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.hero__scroll-hint {
  position: absolute;
  right: 48px;
  bottom: 48px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.7);
  animation: lineScroll 2.2s ease-in-out infinite;
}

@keyframes lineScroll {
  0%   { top: -100%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 110%; opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL-REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

/* ── Image wipe reveal (dark panel sweeps off the image) ── */
.img-reveal {
  position: relative;
  overflow: hidden;
}

.img-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  z-index: 5;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 1.15s var(--ease-swipe);
}

.img-reveal.is-revealed::after {
  transform: scaleX(0);
}

/* ── Text / element fade-up ── */
.reveal-text {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

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

/* ── Card / service fade-up ── */
.reveal-fade {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}

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

/* ── Hero entrance animations ── */
.hero-anim {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

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

.hero__eyebrow.hero-anim { transition-delay: 0.25s; }
.hero__title.hero-anim   { transition-delay: 0.45s; }
.hero__cta.hero-anim     { transition-delay: 0.65s; }

/* ═══════════════════════════════════════════════════════════════
   INTRO / OVERVIEW
   ═══════════════════════════════════════════════════════════════ */
.intro {
  padding: 130px 0;
}

.intro__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.intro__text .eyebrow { margin-bottom: 14px; }
.intro__text .section-title { margin-bottom: 22px; }

.intro__text p {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 18px;
}

.intro__stats {
  display: flex;
  gap: 0;
  padding-top: 36px;
  margin-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.intro__reviews {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.1);
  /* Side-by-side on desktop, stacked on mobile (see media query) */
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Shared review badge (static, links to live reviews) ── */
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-card);
  padding: 14px 22px 14px 14px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.review-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

.review-badge__score {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Booking's signature square bottom-left corner */
.review-badge__score--booking { background: #003b95; border-radius: 8px 8px 8px 0; }
.review-badge__score--google  { background: #1a73e8; border-radius: 50%; }

.review-badge__detail {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.review-badge__word {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.review-badge__count {
  font-size: 13px;
  color: var(--text-muted);
}

.review-badge__brand {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.review-badge__brand--booking { color: #006ce4; }

/* Gold star row with partial fill driven by --rating (0–5) */
.review-badge__stars {
  --pct: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  height: 15px;
  line-height: 1;
}

.review-badge__stars::before {
  content: "★★★★★";
  font-size: 15px;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #fbbc05 var(--pct), #d8d2c8 var(--pct));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 24px;
}

.stat + .stat {
  padding-left: 24px;
  padding-right: 24px;
  border-left: 1px solid rgba(0,0,0,0.1);
}

.stat:last-child { border-right: none; }

.stat strong {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  color: var(--dark);
}

.stat span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.intro__image {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.14);
}

/* ═══════════════════════════════════════════════════════════════
   ROOMS
   ═══════════════════════════════════════════════════════════════ */
.rooms {
  padding: 130px 0;
  background: var(--cream-mid);
}

.rooms__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}

.room-card {
  background: var(--white);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s ease;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.13);
}

.room-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream-dark);
  flex-shrink: 0;
}

.room-card__image img {
  transition: transform 0.7s var(--ease-out);
}

.room-card:hover .room-card__image img { transform: scale(1.06); }

/* ─── Room photo carousel ─────────────────────────────────── */
.room-carousel { position: relative; }

.room-carousel__track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}

.room-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Keep the existing hover-zoom feel on the visible photo */
.room-card:hover .room-carousel__slide img { transform: scale(1.06); }

.room-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.82);
  color: var(--dark);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
  transition: opacity 0.3s ease, background 0.25s ease, transform 0.25s var(--ease-out);
}

.room-carousel__arrow--prev { left: 14px; }
.room-carousel__arrow--next { right: 14px; }

.room-carousel:hover .room-carousel__arrow,
.room-carousel:focus-within .room-carousel__arrow { opacity: 1; }

.room-carousel__arrow:hover { background: var(--white); }
.room-carousel__arrow--prev:hover { transform: translateY(-50%) translateX(-2px); }
.room-carousel__arrow--next:hover { transform: translateY(-50%) translateX(2px); }

.room-carousel__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: var(--r-pill);
  background: rgba(26, 23, 20, 0.28);
  backdrop-filter: blur(6px);
  z-index: 3;
}

.room-carousel__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition:
    width 0.46s var(--ease-out),
    background 0.3s ease;
}

.room-carousel__dot.is-active {
  width: 20px;
  background: var(--white);
}

.room-card__body {
  padding: 30px 30px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-card__tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 10px;
}

.room-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 12px;
}

.room-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

/* Wide / featured room */
.room-card--wide {
  grid-column: unset;
  flex-direction: row;
  min-height: 380px;
}

.room-card--wide .room-card__image {
  aspect-ratio: unset;
  width: 50%;
  flex-shrink: 0;
  flex: 0 0 50%;
}

.room-card--wide .room-card__body {
  padding: 48px 48px;
  justify-content: center;
}

.room-card--wide h3 {
  font-size: 36px;
  margin-bottom: 16px;
}

.room-card--wide p {
  font-size: 16px;
  margin-bottom: 28px;
}

.room-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.room-card__amenities span {
  background: var(--cream-mid);
  color: var(--text-muted);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

.room-card__links {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}

.room-card__faq {
  font-size: 12.5px;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.room-card__faq:hover { color: var(--warm); }

/* ═══════════════════════════════════════════════════════════════
   POOL SPLIT — DARK
   ═══════════════════════════════════════════════════════════════ */
.pool-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  min-width: 0;
}

.pool-split__image {
  overflow: hidden;
  margin: 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.pool-split__content {
  background: var(--dark);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-width: 0;
}

.pool-split__content p {
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  line-height: 1.82;
  margin-bottom: 20px;
}

.feature-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
}

.feature-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--warm-light);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   ROOM AMENITIES
   ═══════════════════════════════════════════════════════════════ */
.amenities {
  padding: 120px 0;
  background: var(--cream-mid);
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-card);
  padding: 16px 20px;
}

.amenity-item i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--cream-mid);
  border-radius: 10px;
  color: var(--warm);
  font-size: 16px;
}

.amenity-item span {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.4;
}

.amenities__note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
}

.amenities__note i {
  color: var(--warm);
  font-size: 16px;
}

@media (max-width: 1100px) {
  .amenities__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .amenities { padding: 88px 0; }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .amenity-item { gap: 12px; padding: 14px 14px; }
  .amenity-item i { width: 36px; height: 36px; font-size: 14px; }
  .amenity-item span { font-size: 13.5px; }
}

@media (max-width: 420px) {
  .amenities__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ PAGE
   ═══════════════════════════════════════════════════════════════ */
.faq-hero {
  padding: clamp(150px, 20vh, 210px) 0 24px;
  text-align: center;
}

.faq-hero .section-lead {
  margin: 0 auto;
  max-width: 620px;
}

.faq-content {
  padding: 40px 0 110px;
}

.faq-wrap {
  max-width: 860px;
}

.faq-group {
  margin-top: 64px;
}

.faq-group:first-child { margin-top: 0; }

.faq-group__title {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 18px;
}

.faq-group__title i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--cream-mid);
  border-radius: 12px;
  color: var(--warm);
  font-size: 18px;
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--dark);
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--warm); }

.faq-item summary i {
  flex-shrink: 0;
  color: var(--warm);
  font-size: 14px;
  transition: transform 0.3s var(--ease-out);
}

.faq-item[open] summary i { transform: rotate(45deg); }

.faq-item__body {
  padding: 0 36px 24px 0;
}

.faq-item__body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.faq-item__body p:last-child { margin-bottom: 0; }

.faq-cta {
  margin-top: 72px;
  text-align: center;
}

@media (max-width: 720px) {
  .faq-content { padding: 24px 0 80px; }
  .faq-group { margin-top: 48px; }
  .faq-group__title { gap: 14px; }
  .faq-group__title i { width: 40px; height: 40px; font-size: 15px; }
  .faq-item summary { font-size: 18px; padding: 18px 0; gap: 16px; }
  .faq-item__body { padding-right: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════ */
.services {
  padding: 130px 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.service-item__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-mid);
  border-radius: 12px;
  color: var(--warm);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.service-item h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ═══════════════════════════════════════════════════════════════
   ACTIVITIES
   ═══════════════════════════════════════════════════════════════ */
.activities {
  padding: 130px 0;
  background: var(--cream-mid);
}

.activities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.activity-card { }

/* The whole card is a link to its dedicated post */
.activity-card__link {
  display: block;
  border-radius: var(--r-card);
  outline-offset: 4px;
}
.activity-card__link:focus-visible {
  outline: 2px solid var(--warm);
}

.activity-card__image {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: var(--r-card);
  margin: 0;
}

.activity-card__image img {
  transition: transform 0.7s var(--ease-out);
}

.activity-card__link:hover .activity-card__image img { transform: scale(1.07); }

.activity-card__cap {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,12,10,0.82) 0%, rgba(15,12,10,0) 58%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  z-index: 1;
}

.activity-card__cap h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.15;
}

.activity-card__cap p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
}

/* "Discover →" cue — slides in on hover/focus */
.activity-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.activity-card__arrow {
  transition: transform 0.3s var(--ease-out);
}

.activity-card__link:hover .activity-card__more,
.activity-card__link:focus-visible .activity-card__more {
  opacity: 1;
  transform: translateY(0);
}

.activity-card__link:hover .activity-card__arrow {
  transform: translateX(5px);
}

/* On touch devices (no hover) the cue is always visible */
@media (hover: none) {
  .activity-card__more { opacity: 1; transform: none; }
}

/* Sunset tour promo */
.sunset-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark);
  border-radius: var(--r-card);
  overflow: hidden;
  min-height: 460px;
  min-width: 0;
}

.sunset-promo__image {
  overflow: hidden;
  margin: 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.sunset-promo__content {
  padding: 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  min-width: 0;
}

.sunset-promo__content p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════════════════════════════ */
.location { }

.location__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 660px;
  min-width: 0;
}

.location__image {
  overflow: hidden;
  margin: 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.location__content {
  background: var(--cream);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-width: 0;
}

.location__content .section-title { margin-bottom: 18px; }

.location__content > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 28px;
}

.location__detail {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
  align-items: baseline;
}

.location__detail dt {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.location__detail dd {
  font-size: 15.5px;
  color: var(--dark);
}

.location__detail a {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0,0,0,0.25);
  transition: text-decoration-color 0.2s;
}

.location__detail a:hover { text-decoration-color: var(--dark); }

.location__ferry h4 {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.ferry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ferry-tags span {
  background: var(--cream-dark);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--r-pill);
}

.location__map iframe { display: block; }

/* ═══════════════════════════════════════════════════════════════
   OFFERS
   ═══════════════════════════════════════════════════════════════ */
.offers {
  padding: 130px 0;
}

.offers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.offer-card {
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--r-card);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s var(--ease-out);
}

.offer-card:hover {
  border-color: var(--warm);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}

.offer-card__num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 18px;
  transition: color 0.3s;
}

.offer-card:hover .offer-card__num { color: var(--warm-light); }

.offer-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.offer-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.72;
}

.offers__cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: var(--white);
}

.footer__top { padding: 88px 0 72px; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 56px;
}

.footer__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  object-position: left;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.72;
  margin-bottom: 14px;
}

.footer__address {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s;
}

.footer__social a:hover {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}

.footer__nav h4,
.footer__contact h4,
.footer__book h4 {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 22px;
}

.footer__nav ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav a,
.footer__contact a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer__nav a:hover,
.footer__contact a:hover { color: var(--white); }

.footer__book p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.footer__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom-row > p {
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__legal a {
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer__legal a:hover { color: rgba(255,255,255,0.65); }

.footer__legal span { color: rgba(255,255,255,0.15); }

/* ═══════════════════════════════════════════════════════════════
   POST PAGES (Lipari guides) — /trekking-a-lipari/ etc.
   ═══════════════════════════════════════════════════════════════ */
.post-page { background: var(--cream); }

/* Per-language content blocks: show only the one matching <html lang>.
   IT is the default/fallback and stays visible until a known locale wins. */
.post-l10n[data-lang="it"] { display: block; }
.post-l10n:not([data-lang="it"]) { display: none; }
html[lang="en"] .post-l10n[data-lang="it"],
html[lang="fr"] .post-l10n[data-lang="it"],
html[lang="de"] .post-l10n[data-lang="it"] { display: none; }
html[lang="en"] .post-l10n[data-lang="en"],
html[lang="fr"] .post-l10n[data-lang="fr"],
html[lang="de"] .post-l10n[data-lang="de"] { display: block; }

/* ── Hero header ── */
.post-hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

.post-hero__media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.post-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,12,10,0.86) 0%, rgba(15,12,10,0.30) 45%, rgba(15,12,10,0.42) 100%);
  z-index: 1;
}

.post-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 56px;
}

.post-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 22px;
  transition: color 0.2s, gap 0.2s;
}
.post-hero__back:hover { color: var(--white); gap: 12px; }

.post-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.4vw, 76px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 16ch;
  margin: 10px 0 0;
}

.post-hero__lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 54ch;
  margin-top: 20px;
}

/* ── Article body ── */
.post-body {
  max-width: 760px;
  padding-top: 84px;
  padding-bottom: 96px;
}

.post-intro {
  font-family: var(--font-serif);
  font-size: clamp(21px, 2.3vw, 27px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--warm);
  margin-bottom: 44px;
}

.post-l10n h2 {
  font-family: var(--font-serif);
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin: 52px 0 18px;
}

.post-l10n h2:first-child { margin-top: 0; }

.post-l10n p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 22px;
}

.post-l10n p:last-child { margin-bottom: 0; }

.post-divider {
  width: 56px;
  height: 2px;
  border: 0;
  background: var(--warm-light);
  margin: 0 0 44px;
}

/* ── Closing call-to-action ── */
.post-cta {
  margin-top: 72px;
  padding: 56px 48px;
  border-radius: var(--r-card);
  background: var(--dark);
  text-align: center;
}

.post-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}

.post-cta p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.66);
  max-width: 52ch;
  margin: 0 auto 30px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1100px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }

  .intro__layout { grid-template-columns: 1fr; gap: 56px; }
  .intro__image { aspect-ratio: 16 / 9; }

  .pool-split { grid-template-columns: 1fr; }
  .pool-split__image { min-height: 400px; aspect-ratio: 16/8; }
  .pool-split__content { padding: 60px 48px; }

  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }

  .location__split { grid-template-columns: 1fr; }
  .location__image { min-height: 380px; aspect-ratio: 16/8; }
  .location__content { padding: 60px 48px; }

  .sunset-promo { grid-template-columns: 1fr; }
  .sunset-promo__image { min-height: 320px; aspect-ratio: 16/8; }
  .sunset-promo__content { padding: 48px 40px; }

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

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  :root { --nav-pad: 16px; }

  .hero__content { padding: 0 24px 64px; }
  .hero__scroll-hint { display: none; }

  /* Post pages */
  .post-hero { min-height: 56vh; }
  .post-hero__inner { padding-top: 116px; padding-bottom: 40px; }
  .post-body { padding-top: 56px; padding-bottom: 72px; }
  .post-l10n p { font-size: 16px; }
  .post-cta { padding: 44px 24px; margin-top: 56px; }

  .intro { padding: 88px 0; }
  .intro__stats { flex-direction: column; gap: 20px; }
  .stat + .stat { padding-left: 0; border-left: none; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 20px; }
  .intro__reviews { flex-direction: column; align-items: stretch; }
  .review-badge { width: 100%; }

  .rooms { padding: 88px 0; }
  .rooms__grid { grid-template-columns: 1fr; }
  .room-card--wide { flex-direction: column; }
  .room-card--wide .room-card__image { width: 100%; flex: 0 0 auto; aspect-ratio: 16/10; }
  .room-card--wide .room-card__body { padding: 28px 24px 32px; }
  .room-card--wide h3 { font-size: 28px; }

  .pool-split__content { padding: 44px 24px; }
  .pool-split__content p { font-size: 15px; }

  .services { padding: 88px 0; }
  .services__grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }

  .activities { padding: 88px 0; }
  .activities__grid { grid-template-columns: 1fr; }
  .activity-card__image { aspect-ratio: 16/10; }

  .location__content { padding: 44px 24px; }
  .location__detail { grid-template-columns: 1fr; gap: 2px; }

  .offers { padding: 88px 0; }
  .offers__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer__top { padding: 60px 0 44px; }

  .section-header { margin-bottom: 48px; }
}

/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY — reduced motion
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .img-reveal::after { display: none; }
  .reveal-text, .reveal-fade, .hero-anim { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   LANGUAGE SWITCHER  — globe pill + dropdown, lives in the nav pill row
   ═══════════════════════════════════════════════════════════════ */
.lang-switch {
  position: relative;
  flex-shrink: 0;
}

/* The floating nav clips its content (overflow:hidden) to keep the rounded
   pill and mobile panel neat. The dropdown opens *below* the pill row, so we
   lift that clip only while the language menu is open. */
.float-nav.is-lang-open { overflow: visible; }

.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #e3ddd6;
  border: none;
  border-radius: var(--r-pill);
  padding: 13px 16px;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--dark);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.lang-switch__btn:hover { background: #d4cec7; }

.lang-switch__globe {
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
}

.lang-switch.is-open .lang-switch__globe { transform: rotate(180deg); }

.lang-switch__current {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── Dropdown menu ── */
.lang-switch__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 168px;
  background: var(--white);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 14px 40px rgba(26, 23, 20, 0.16), 0 2px 8px rgba(26, 23, 20, 0.08);
  list-style: none;
  opacity: 0;
  transform: translate(-50%, -8px) scale(0.97);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity 0.22s var(--ease-out), transform 0.28s var(--ease-out);
  z-index: 20;
}

.lang-switch.is-open .lang-switch__menu {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}

.lang-switch__opt {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  border-radius: 9px;
  padding: 11px 13px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease;
}

.lang-switch__opt:hover { background: rgba(0, 0, 0, 0.05); }

.lang-switch__opt.is-active {
  background: var(--cream-mid);
  font-weight: 500;
  color: var(--dark);
}

.lang-switch__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--warm);
}

.lang-switch__opt.is-active .lang-switch__code { color: var(--dark); }

/* ── Language options inside the mobile slide-down panel ── */
.float-nav__panel-langs {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px 18px 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  margin-top: 4px;
}

.lang-switch__panel-opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-mid);
  border: none;
  border-radius: var(--r-pill);
  padding: 9px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease;
}

.lang-switch__panel-opt .lang-switch__code { width: auto; }
.lang-switch__panel-opt:hover { background: var(--cream-dark); }
.lang-switch__panel-opt.is-active {
  background: var(--dark);
  color: var(--white);
}
.lang-switch__panel-opt.is-active .lang-switch__code { color: var(--warm-light); }

/* The in-panel language row is intentionally never shown: the globe language
   switcher in the pill row already covers this on every breakpoint, so a
   second copy in the mobile menu would be redundant. Kept in markup so JS can
   stay simple, but hidden via the base `display: none` above. */

@media (max-width: 520px) {
  .lang-switch__btn { padding: 12px 13px; gap: 5px; }
  /* Keep just the globe on very small screens to save room in the pill */
  .lang-switch__current { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 950;
  width: min(calc(100% - 32px), 920px);
  transform: translateX(-50%) translateY(140%);
  opacity: 0;
  pointer-events: none;
  background: var(--cream);
  color: var(--text);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-card);
  box-shadow: 0 18px 50px rgba(26,23,20,0.22), 0 4px 14px rgba(26,23,20,0.10);
  transition: transform 0.55s var(--ease-out), opacity 0.45s ease;
}

.cookie-banner.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 28px;
}

.cookie-banner__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
}

.cookie-banner__text p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.cookie-banner__link {
  color: var(--warm);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.cookie-banner__link:hover { color: var(--dark); }

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn { padding: 12px 26px; }

.cookie-banner__btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--cream-dark);
}
.cookie-banner__btn--ghost:hover {
  background: var(--cream-mid);
  box-shadow: none;
  color: var(--dark);
}

@media (max-width: 680px) {
  .cookie-banner__inner { flex-direction: column; align-items: stretch; gap: 18px; padding: 22px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES (Privacy & Cookie Policy)
   ═══════════════════════════════════════════════════════════════ */
.legal-hero {
  background: var(--dark);
  padding: 150px 0 60px;
}

.legal-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 14px 0 0;
}

.legal-body {
  max-width: 820px;
  padding-top: 72px;
  padding-bottom: 96px;
}

.legal-content h2 + p { margin-top: 0; }

@media (max-width: 700px) {
  .legal-hero { padding: 124px 0 48px; }
  .legal-body { padding-top: 52px; padding-bottom: 72px; }
}
