/* ============================================================
   SALT & SWELL — Surf House, Imsouane
   Mobile-first • No frameworks • Vanilla CSS
   ============================================================ */

:root {
  /* Brand palette — deep ocean, warm sand, off-white, muted terracotta */
  --deep: #0d3542;
  --deep-2: #082834;
  --deep-3: #123f4e;
  --sand: #e9dcc4;
  --sand-soft: #f2ead7;
  --cream: #faf6ec;
  --paper: #fffdf7;
  --ink: #20313a;
  --ink-soft: #4c616c;
  --terra: #b97a4e;
  --terra-soft: #d9a77e;
  --sea: #5e8b8b;
  --line: rgba(13, 53, 66, 0.14);
  --line-light: rgba(250, 246, 236, 0.22);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 18px 45px -18px rgba(8, 40, 52, 0.28);
  --shadow-sm: 0 10px 28px -14px rgba(8, 40, 52, 0.25);

  --header-h: 68px;
  --max: 1180px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
}
/* Subtle natural grain over the whole page (pure CSS) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  background: var(--sand-soft);
}
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--deep);
  text-wrap: balance;
}
h2 { font-size: clamp(2rem, 5.4vw, 3.2rem); font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }
p { text-wrap: pretty; }
a { color: inherit; }
section { scroll-margin-top: calc(var(--header-h) + 12px); }

.container {
  width: min(var(--max), 100% - 2.5rem);
  margin-inline: auto;
}
.section { padding: clamp(4rem, 9vw, 7rem) 0; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.9rem;
}
.eyebrow-light { color: var(--sand); }
.lead { font-size: clamp(1.02rem, 2.4vw, 1.2rem); color: var(--ink-soft); }
.section-head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
  max-width: 640px;
}
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

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

/* Focus visibility */
:focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 3000;
  background: var(--deep);
  color: var(--cream);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  font-weight: 700;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  min-height: 48px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 0.65rem 1.2rem; min-height: 42px; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2rem; min-height: 54px; font-size: 0.95rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--terra); color: #fff8ef; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #a56a41; box-shadow: var(--shadow); }
.btn-dark { background: var(--deep); color: var(--cream); }
.btn-dark:hover { background: var(--deep-2); box-shadow: var(--shadow); }
.btn-ghost { border-color: var(--line); color: var(--deep); background: transparent; }
.btn-ghost:hover { border-color: var(--deep); background: rgba(13, 53, 66, 0.06); }
.btn-glass {
  background: rgba(250, 246, 236, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(250, 246, 236, 0.28); }
.btn-outline-light { border-color: var(--line-light); color: var(--cream); background: transparent; }
.btn-outline-light:hover { border-color: var(--cream); background: rgba(250, 246, 236, 0.12); }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}
/* Transparent over hero, solid after scroll */
.site-header:not(.scrolled) .nav-links a { color: #fff; text-shadow: 0 1px 10px rgba(8, 40, 52, 0.5); }
.site-header:not(.scrolled) .brand-fallback { color: #fff; }
.site-header:not(.scrolled) .nav-toggle span { background: #fff; }
.site-header.scrolled {
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.brand { text-decoration: none; display: inline-flex; align-items: center; }
.brand-logo { height: 42px; width: auto; background: transparent; object-fit: contain; }
.brand-fallback {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--deep);
}
.brand-fallback .amp, .amp { color: var(--terra); font-style: normal; }

.nav-links {
  display: none;
  list-style: none;
  padding: 0;
  gap: 1.8rem;
}
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: var(--deep);
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--terra);
  border-radius: 2px;
  transition: width 0.2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.8rem; }
.nav-actions .btn-primary { display: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  border-radius: 3px;
  background: var(--deep);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: var(--deep-2);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.4rem 2rem;
  transform: translateY(-102%);
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0.35, 1);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 52px;
}
.mobile-mark { width: 38px; height: 38px; border-radius: 10px; background: transparent; object-fit: contain; }
.mobile-brand { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.06em; font-size: 1.05rem; }
.menu-close {
  margin-left: auto;
  background: transparent;
  border: 1.5px solid var(--line-light);
  color: var(--cream);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.mobile-links { list-style: none; padding: 1.6rem 0; display: grid; gap: 0.2rem; }
.mobile-links a {
  display: block;
  padding: 0.7rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 8vw, 2.6rem);
  text-decoration: none;
  color: var(--cream);
  border-bottom: 1px solid var(--line-light);
}
.mobile-links a:hover { color: var(--sand); padding-left: 0.4rem; }
.mobile-links a { transition: padding 0.2s ease, color 0.2s ease; }
.mobile-cta { margin-top: auto; display: grid; gap: 0.8rem; }
.mobile-locale { text-align: center; letter-spacing: 0.25em; font-size: 0.75rem; text-transform: uppercase; color: var(--sand); opacity: 0.8; }
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: rgba(8, 40, 52, 0.5);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: clip;
  background: var(--deep-2);
}
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-position: center 42%; }
.hero-media.media-missing {
  background:
    radial-gradient(120% 90% at 80% 10%, #1a5a72 0%, transparent 55%),
    linear-gradient(180deg, #0d3542 0%, #123f4e 55%, #082834 100%);
}
.hero-overlay {
  background: linear-gradient(180deg, rgba(8, 40, 52, 0.45) 0%, rgba(8, 40, 52, 0.18) 38%, rgba(8, 40, 52, 0.62) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(6rem, 14vh, 8.5rem);
  padding-top: calc(var(--header-h) + 2rem);
  max-width: var(--max);
}
.hero-locale {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  margin-bottom: 1.4rem;
  background: rgba(8, 40, 52, 0.25);
  backdrop-filter: blur(6px);
}
.hero-title {
  color: #fff;
  font-size: clamp(3rem, 11.5vw, 7rem);
  font-weight: 600;
  text-wrap: balance;
  text-shadow: 0 4px 40px rgba(8, 40, 52, 0.45);
  margin-bottom: 1.1rem;
}
.hero-sub {
  max-width: 34rem;
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.8rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.6rem; }
.hero-tags { letter-spacing: 0.2em; font-size: 0.78rem; text-transform: uppercase; font-weight: 700; color: var(--sand); }
.scroll-hint {
  position: absolute;
  right: 1.4rem;
  bottom: 6.2rem;
  z-index: 2;
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  display: none;
  justify-content: center;
  padding-top: 8px;
}
.scroll-hint span {
  width: 4px;
  height: 9px;
  border-radius: 4px;
  background: #fff;
  animation: hint 1.8s ease-in-out infinite;
}
@keyframes hint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.4; }
}
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: clamp(48px, 8vw, 88px);
  z-index: 2;
  fill: var(--cream);
}

/* ---------- Intro ---------- */
.intro-grid { display: grid; gap: 3rem; }
.intro-copy h2 { margin-bottom: 1rem; }
.intro-copy .lead { margin-bottom: 2.2rem; max-width: 38rem; }
.values { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.value {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.value-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--sand-soft);
  color: var(--deep);
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}
.value-icon svg { width: 24px; height: 24px; }
.value h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.3rem; }
.value p { font-size: 0.92rem; color: var(--ink-soft); }

.intro-media { position: relative; display: grid; gap: 1.2rem; align-content: start; }
.photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--sand-soft);
  aspect-ratio: 4 / 3;
}
.photo-card img { width: 100%; height: 100%; transition: transform 0.5s ease; }
.photo-card:hover img { transform: scale(1.04); }
.tilt-left { transform: rotate(-1.2deg); }
.tilt-right { transform: rotate(1.2deg); margin-left: auto; width: 92%; }
.stamp {
  position: absolute;
  right: 0.6rem;
  top: -1.4rem;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--cream);
  display: grid;
  place-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.15;
  transform: rotate(10deg);
  box-shadow: var(--shadow-sm);
}
.stamp em { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; font-style: normal; color: var(--sand); }

/* Image fallback (shown only if a photo file is missing) */
.img-fallback {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: grid;
  place-content: center;
  gap: 0.4rem;
  text-align: center;
  padding: 2rem 1.4rem;
  color: var(--cream);
  background:
    radial-gradient(100% 100% at 85% 0%, rgba(217, 167, 126, 0.55) 0%, transparent 55%),
    linear-gradient(150deg, #155263 0%, var(--deep-2) 80%);
}
.img-fallback strong { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.04em; }
.img-fallback span { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.75; }

/* ---------- Stay ---------- */
.stay { background: var(--paper); border-block: 1px solid var(--line); }
.room-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(84%, 380px);
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin-inline: -1.25rem;
  padding-inline: 1.25rem;
  scrollbar-width: thin;
}
.room-card {
  scroll-snap-align: start;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.room-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand-soft); }
.room-media img { width: 100%; height: 100%; transition: transform 0.5s ease; }
.room-card:hover .room-media img { transform: scale(1.05); }
.room-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(8, 40, 52, 0.72);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.room-body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.room-body h3 { font-size: 1.5rem; }
.room-price strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--terra); }
.room-price span { color: var(--ink-soft); font-size: 0.9rem; }
.room-desc { color: var(--ink-soft); font-size: 0.96rem; }
.room-facts { list-style: none; padding: 0.4rem 0 0; display: grid; gap: 0.35rem; font-size: 0.9rem; color: var(--ink); }
.room-facts li { padding-left: 1.4rem; position: relative; }
.room-facts li::before { content: "✓"; position: absolute; left: 0; color: var(--sea); font-weight: 800; }
.room-actions { display: flex; gap: 0.7rem; margin-top: auto; padding-top: 0.8rem; }
.room-actions .btn { flex: 1; padding-inline: 0.6rem; font-size: 0.8rem; }
.swipe-hint { text-align: center; color: var(--ink-soft); font-size: 0.85rem; letter-spacing: 0.08em; }

/* ---------- Surf ---------- */
.surf-grid { display: grid; gap: 2.6rem; }
.coach-note {
  display: flex;
  gap: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--sea);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.3rem;
  margin: 1.6rem 0;
}
.coach-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--cream);
  display: grid;
  place-content: center;
}
.coach-icon svg { width: 24px; height: 24px; }
.coach-note h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.coach-note p { color: var(--ink-soft); font-size: 0.95rem; }
.microcopy { margin-top: 0.9rem; font-size: 0.88rem; color: var(--ink-soft); }

.level-cards { display: grid; gap: 1rem; }
.level-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 1.1rem;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.level-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.level-card figure { border-radius: 10px; overflow: hidden; aspect-ratio: 1; background: var(--sand-soft); }
.level-card figure img { width: 100%; height: 100%; }
.level-card h3 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.level-card p { font-size: 0.92rem; color: var(--ink-soft); }

.surf-banner { margin-top: 2.6rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 9; max-height: 420px; width: min(var(--max), 100% - 2.5rem); }
.surf-banner img { width: 100%; height: 100%; }

/* ---------- Yoga ---------- */
.yoga { background: var(--sand-soft); border-block: 1px solid var(--line); }
.yoga-grid { display: grid; gap: 2.4rem; align-items: center; }
.yoga-media { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 4 / 4.6; background: var(--sand); }
.yoga-media img { width: 100%; height: 100%; }
.yoga-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(250, 246, 236, 0.9);
  color: var(--deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: 999px;
}
.yoga-copy .lead { margin: 1rem 0 1.4rem; }
.check-list { list-style: none; padding: 0; display: grid; gap: 0.7rem; margin-bottom: 1.8rem; }
.check-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 600;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.15em;
  height: 1.15em;
  border-radius: 50%;
  background: var(--sea);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' d='M4 12.5 9.5 18 20 6.5'/%3E%3C/svg%3E") center / 68% no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' d='M4 12.5 9.5 18 20 6.5'/%3E%3C/svg%3E") center / 68% no-repeat;
}

/* ---------- Package ---------- */
.package { background: var(--deep-2); color: var(--cream); position: relative; overflow: clip; }
.package::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 60% at 50% 0%, rgba(94, 139, 139, 0.35) 0%, transparent 60%);
  pointer-events: none;
}
.package h2 { color: #fff; max-width: 34rem; margin-bottom: 2.2rem; }
.package-card {
  position: relative;
  display: grid;
  gap: 0;
  background: var(--cream);
  color: var(--ink);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.5);
}
.package-main { padding: 2rem 1.6rem; }
.package-kicker { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.5rem; }
.package-main h3 { font-size: clamp(1.8rem, 5vw, 2.5rem); margin-bottom: 0.7rem; }
.package-intro { color: var(--ink-soft); margin-bottom: 1.4rem; }
.package-list { list-style: none; padding: 0; display: grid; gap: 0.8rem; margin-bottom: 1.4rem; }
.package-list li { display: flex; gap: 0.8rem; align-items: center; font-weight: 700; }
.package-list svg { width: 22px; height: 22px; flex: none; color: var(--sea); }
.package-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-top: 1px dashed var(--line);
  padding-top: 1rem;
}
.package-side {
  background: var(--sand-soft);
  border-top: 1px solid var(--line);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.package-media { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 16 / 9; background: var(--sand); margin-bottom: 0.6rem; }
.package-media img { width: 100%; height: 100%; }
.package-from { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 800; color: var(--ink-soft); }
.package-price { font-family: var(--font-display); font-size: 3rem; color: var(--deep); line-height: 1; margin-bottom: 0.8rem; }
.package-price span { font-size: 1.1rem; color: var(--ink-soft); font-family: var(--font-body); font-weight: 600; }
.package-micro { text-align: center; font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.5rem; }

/* ---------- Experience timeline ---------- */
.timeline { list-style: none; padding: 2.4rem 0 0; display: grid; gap: 1.4rem; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 2.4rem;
  bottom: 1rem;
  width: 2px;
  background: linear-gradient(180deg, var(--terra-soft), var(--sea), var(--deep));
  border-radius: 2px;
  opacity: 0.5;
}
.t-step { display: grid; gap: 0.8rem; padding-left: 2.6rem; position: relative; }
.t-step::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.35rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--terra);
}
.t-time span {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--deep);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 0.3rem;
}
.t-time em { display: block; font-family: var(--font-display); font-style: normal; font-size: 1.3rem; color: var(--deep); }
.t-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: grid;
}
.t-card figure { aspect-ratio: 16 / 9; background: var(--sand-soft); }
.t-card figure img { width: 100%; height: 100%; }
.t-card p { padding: 1rem 1.2rem 1.2rem; color: var(--ink-soft); }
.timeline-footnote {
  margin-top: 2rem;
  padding: 1.2rem 1.4rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: 0.92rem;
  background: var(--paper);
}

/* ---------- Rooftop ---------- */
.rooftop { position: relative; color: #fff; overflow: clip; background: var(--deep-2); }
.rooftop-media, .rooftop-overlay { position: absolute; inset: 0; }
.rooftop-media img { width: 100%; height: 100%; object-position: center 42%; }
.rooftop-media.media-missing {
  background:
    radial-gradient(100% 80% at 50% 110%, rgba(217, 167, 126, 0.5) 0%, transparent 55%),
    linear-gradient(180deg, #0d3542, #082834);
}
.rooftop-overlay { background: linear-gradient(100deg, rgba(8, 40, 52, 0.72) 0%, rgba(8, 40, 52, 0.35) 55%, rgba(8, 40, 52, 0.15) 100%); }
.rooftop-inner { position: relative; z-index: 2; padding: clamp(5rem, 12vw, 9rem) 0; max-width: var(--max); }
.rooftop-inner h2 { color: #fff; margin-bottom: 1rem; max-width: 32rem; }
.rooftop-inner p:not(.eyebrow) { max-width: 34rem; color: rgba(255, 255, 255, 0.92); margin-bottom: 1.8rem; font-size: 1.05rem; }

/* ---------- Gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.8rem; }
.filter {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--deep);
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  min-height: 44px;
  cursor: pointer;
  transition: all 0.18s ease;
}
.filter:hover { border-color: var(--deep); }
.filter.is-active { background: var(--deep); color: var(--cream); border-color: var(--deep); }

.masonry { columns: 2; column-gap: 0.9rem; }
.g-item {
  break-inside: avoid;
  margin: 0 0 0.9rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--sand-soft);
}
.g-item:nth-child(3n) .g-btn { aspect-ratio: 3 / 3.6; }
.g-btn {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 3.2;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  background: var(--sand-soft);
}
.g-btn img { width: 100%; height: 100%; transition: transform 0.45s ease; }
.g-btn:hover img, .g-btn:focus-visible img { transform: scale(1.05); }
.g-item.hide { display: none; }

/* ---------- Imsouane ---------- */
.imsouane { background: var(--paper); border-block: 1px solid var(--line); }
.ims-grid { display: grid; gap: 2.2rem; align-items: center; }
.ims-copy .lead { margin: 1rem 0; }
.ims-copy p:not(.eyebrow):not(.lead) { color: var(--ink-soft); margin-bottom: 1.4rem; }
.ims-chips { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.ims-chips li {
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--deep);
}
.ims-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--sand-soft); }
.ims-media img { width: 100%; aspect-ratio: 4 / 3.4; }
.ims-media figcaption {
  background: var(--deep);
  color: var(--sand);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.75rem;
}

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; gap: 1.1rem; margin-top: 2rem; }
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
}
.review-coming { border-style: dashed; text-align: center; background: transparent; }
.review-mark { font-family: var(--font-display); font-size: 2.4rem; color: var(--terra-soft); line-height: 1; }
.review-coming h3 { font-size: 1.3rem; margin: 0.5rem 0; }
.review-coming p:not(.review-mark) { color: var(--ink-soft); }
.review-card blockquote p { font-family: var(--font-display); font-size: 1.25rem; color: var(--deep); margin-bottom: 1rem; }
.review-meta { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- Booking ---------- */
.book { background: var(--deep); color: var(--cream); position: relative; overflow: clip; }
.book::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 50% at 85% 10%, rgba(217, 167, 126, 0.18) 0%, transparent 60%),
    radial-gradient(60% 50% at 10% 90%, rgba(94, 139, 139, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.book-grid { position: relative; display: grid; gap: 2.6rem; }
.book-copy h2 { color: #fff; margin-bottom: 1rem; }
.book-copy .lead { color: rgba(250, 246, 236, 0.92); margin-bottom: 1rem; }
.book-copy p:not(.eyebrow):not(.lead) { color: rgba(250, 246, 236, 0.78); margin-bottom: 1.8rem; }
.book-options { display: grid; gap: 0.8rem; margin-bottom: 1.8rem; }
.ota-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem; }
.ota-row span { width: 100%; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--sand); }

.book-form {
  background: var(--cream);
  color: var(--ink);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.8rem 1.5rem;
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.5);
}
.book-form h3 { font-size: 1.6rem; }
.form-sub { color: var(--ink-soft); font-size: 0.92rem; margin: 0.3rem 0 1.3rem; }
.field { display: grid; gap: 0.4rem; margin-bottom: 1rem; }
.field > span { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--deep); }
.field > span em { font-style: normal; text-transform: none; letter-spacing: 0; color: var(--ink-soft); font-weight: 600; }
.field select, .field input {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  min-height: 52px;
  width: 100%;
}
.field select:focus, .field input:focus { border-color: var(--sea); outline: none; box-shadow: 0 0 0 3px rgba(94, 139, 139, 0.2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.form-error {
  background: #fbe9e4;
  border: 1px solid #d98a6d;
  color: #8a3d22;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 0.7rem 1rem;
  margin-bottom: 1rem;
}
.form-micro { text-align: center; font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.7rem; }

/* ---------- Social band ---------- */
.social { background: var(--sand-soft); border-top: 1px solid var(--line); }
.social-inner {
  display: grid;
  gap: 1.4rem;
  padding: 3rem 0;
  align-items: center;
}
.social-inner p:not(.eyebrow) { color: var(--ink-soft); margin-top: 0.4rem; }

/* ---------- Footer ---------- */
.footer { background: var(--deep-2); color: rgba(250, 246, 236, 0.85); padding: 3.5rem 0 0; }
.footer-grid { display: grid; gap: 2.2rem; padding-bottom: 2.4rem; }
.footer-logo { background: transparent; object-fit: contain; margin-bottom: 0.8rem; }
.footer-tag { font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.8rem; color: var(--sand); margin-bottom: 0.7rem; }
.footer-blurb { font-size: 0.94rem; max-width: 26rem; }
.footer h3 { color: #fff; font-family: var(--font-body); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-nav ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.footer-nav a { text-decoration: none; font-weight: 600; }
.footer-nav a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer-contact p { margin-bottom: 1rem; }
.footer-btns { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding: 1.2rem 0 calc(1.2rem + 76px);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}
.to-top { color: var(--sand); font-weight: 700; text-decoration: none; }
.to-top:hover { text-decoration: underline; }

/* ---------- Mobile bottom bar ---------- */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(8, 40, 52, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-light);
}
.mobile-bar .btn { flex: 1; }
.wa-fab {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--line-light);
  background: rgba(250, 246, 236, 0.12);
  color: var(--cream);
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.wa-fab:hover { background: rgba(250, 246, 236, 0.25); transform: translateY(-2px); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.lightbox[hidden] { display: none; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(8, 24, 32, 0.94); }
.lb-frame { position: relative; z-index: 2; max-width: min(1000px, 94vw); width: 100%; }
.lb-img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: transparent;
  border-radius: 14px;
}
.lb-cap { text-align: center; color: var(--sand); padding-top: 0.8rem; font-size: 0.95rem; }
.lb-count { position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%); color: rgba(250,246,236,0.7); font-size: 0.85rem; letter-spacing: 0.2em; z-index: 2; }
.lb-btn {
  position: absolute;
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(250, 246, 236, 0.12);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.18s ease;
}
.lb-btn:hover { background: rgba(250, 246, 236, 0.3); }
.lb-close { top: 1rem; right: 1rem; }
.lb-prev { left: 0.7rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 0.7rem; top: 50%; transform: translateY(-50%); }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(84px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 3000;
  background: var(--deep-2);
  color: var(--cream);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 0.9rem 1.3rem;
  font-size: 0.92rem;
  font-weight: 600;
  max-width: min(92vw, 480px);
  text-align: center;
  box-shadow: var(--shadow);
}
.toast[hidden] { display: none; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   BREAKPOINTS
   ============================================================ */

/* Small tablets */
@media (min-width: 640px) {
  .values { grid-template-columns: repeat(4, 1fr); }
  .value { padding: 1.3rem 1rem; }
  .masonry { columns: 3; }
  .book-options { grid-template-columns: 1fr 1fr; }
  .book-options .btn:first-child { grid-column: 1 / -1; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .social-inner { grid-template-columns: 1fr auto; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
}

/* Laptops / desktop */
@media (min-width: 960px) {
  :root { --header-h: 76px; }
  .nav-links { display: flex; }
  .nav-actions .btn-primary { display: inline-flex; }
  .nav-toggle { display: none; }
  .scroll-hint { display: flex; }

  .intro-grid { grid-template-columns: 1.15fr 0.85fr; gap: 4rem; align-items: start; }
  .room-track { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); overflow: visible; margin-inline: 0; padding-inline: 0; }
  .swipe-hint { display: none; }

  .surf-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .yoga-grid { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; }
  .package-card { grid-template-columns: 1.2fr 0.8fr; }
  .package-main { padding: 3rem; }
  .package-side { border-top: 0; border-left: 1px solid var(--line); padding: 2.4rem; justify-content: center; }

  .t-step { grid-template-columns: 220px 1fr; gap: 2rem; align-items: start; }
  .t-card { grid-template-columns: 240px 1fr; align-items: center; }
  .t-card figure { aspect-ratio: auto; height: 100%; min-height: 150px; }
  .t-card p { padding: 1.4rem; }

  .ims-grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
  .book-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; align-items: start; }
  .book-options { grid-template-columns: 1fr; }
  .book-options .btn:first-child { grid-column: auto; }
  .footer-bottom { padding-bottom: 1.4rem; }

  /* Desktop: hide mobile-only booking bar */
  .mobile-bar { display: none; }
  .toast { bottom: 2rem; }
}

/* Large screens */
@media (min-width: 1200px) {
  .masonry { columns: 4; }
}

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

/* Short landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: 130svh; }
}

/* ============================================================
   MULTI-PAGE ADDITIONS — subpages, journal, components
   ============================================================ */
.hero-brand { font-family: var(--font-display); font-size: clamp(1.3rem, 3.2vw, 1.9rem); letter-spacing: 0.16em; text-transform: uppercase; color: var(--sand); margin-bottom: 0.7rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.2rem; }
.text-link { color: var(--terra); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.split { display: grid; gap: 2.2rem; align-items: center; }
.duo-grid { display: grid; gap: 1.2rem; margin-top: 2rem; }
.duo-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.duo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.duo-card figure { aspect-ratio: 16 / 9; background: var(--sand-soft); }
.duo-card figure img { width: 100%; height: 100%; }
.duo-body { padding: 1.4rem; }
.duo-body h3 { margin-bottom: 0.4rem; }
.duo-body p { color: var(--ink-soft); margin-bottom: 0.8rem; }

/* Page heroes + breadcrumbs */
.page-hero { position: relative; display: flex; align-items: flex-end; color: #fff; overflow: clip; background: var(--deep-2); min-height: min(80vh, 600px); }
.page-hero-media, .page-hero-overlay { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; }
.page-hero-media.media-missing { background: radial-gradient(120% 90% at 80% 10%, #1a5a72 0%, transparent 55%), linear-gradient(180deg, #0d3542 0%, #123f4e 55%, #082834 100%); }
.page-hero-overlay { background: linear-gradient(180deg, rgba(8,40,52,0.5) 0%, rgba(8,40,52,0.25) 40%, rgba(8,40,52,0.68) 100%); }
.page-hero-inner { position: relative; z-index: 2; padding-top: calc(var(--header-h) + 2.5rem); padding-bottom: 3.2rem; }
.page-hero-inner h1 { color: #fff; font-size: clamp(2.2rem, 6vw, 3.8rem); max-width: 18em; margin-bottom: 0.8rem; }
.page-hero-inner p:not(.eyebrow) { color: rgba(255,255,255,0.9); max-width: 36rem; font-size: 1.05rem; }
.page-hero-sm { min-height: 0; }
.page-hero-sm .page-hero-inner { padding-bottom: 2.6rem; }
.crumbs { padding-top: calc(var(--header-h) + 1rem); padding-bottom: 0.4rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.35rem 0.7rem; padding: 0; margin: 0; font-size: 0.85rem; color: var(--ink-soft); }
.crumbs li + li::before { content: "/"; margin-right: 0.7rem; opacity: 0.6; }
.crumbs a { color: var(--deep); font-weight: 700; text-decoration: none; }
.crumbs a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Prose + FAQ */
.prose-narrow { max-width: 46rem; }
.prose-narrow h2 { font-size: clamp(1.6rem, 3.6vw, 2.1rem); margin: 2.2rem 0 0.8rem; }
.prose-narrow h2:first-child { margin-top: 0; }
.prose-narrow p { color: var(--ink-soft); margin-bottom: 1rem; }
.prose-narrow p.lead { color: var(--ink); font-size: 1.12rem; }
.prose-narrow ul { color: var(--ink-soft); margin: 0 0 1.2rem 1.1rem; padding: 0; display: grid; gap: 0.4rem; }
.prose-narrow a { color: var(--terra); font-weight: 700; }
.prose-img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin: 1.6rem 0; background: var(--sand-soft); }
.prose-img img { width: 100%; aspect-ratio: 16 / 9; }
.faq-list { display: grid; gap: 0.8rem; margin-top: 1.4rem; }
.faq { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq summary { cursor: pointer; font-weight: 800; color: var(--deep); padding: 1rem 1.2rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; min-height: 56px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--line); display: inline-flex; align-items: center; justify-content: center; color: var(--terra); font-size: 1.2rem; line-height: 1; }
.faq[open] summary::after { content: "–"; }
.faq summary:hover { background: rgba(13, 53, 66, 0.04); }
.faq > div { padding: 0 1.2rem 1.2rem; color: var(--ink-soft); }
.faq > div a { color: var(--terra); font-weight: 700; }

/* Cards */
.cards-grid { display: grid; gap: 1.2rem; margin-top: 2rem; }
.jcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.jcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.jcard figure { aspect-ratio: 16 / 9; background: var(--sand-soft); }
.jcard figure img { width: 100%; height: 100%; }
.jcard-body { padding: 1.3rem 1.4rem 1.5rem; display: grid; gap: 0.4rem; align-content: start; }
.jcard-tag { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terra); }
.jcard-body h2, .jcard-body h3 { font-size: 1.25rem; }
.jcard-body p:not(.jcard-tag) { color: var(--ink-soft); font-size: 0.94rem; }

/* Facts + CTA band */
.facts { background: var(--paper); border-block: 1px solid var(--line); }
.fact-grid { display: grid; gap: 1rem; margin-top: 1.8rem; }
.fact-box { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.3rem 1.4rem; }
.fact-box h3 { font-size: 1.02rem; font-family: var(--font-body); font-weight: 800; letter-spacing: 0.03em; margin-bottom: 0.4rem; }
.fact-box p { color: var(--ink-soft); font-size: 0.94rem; }
.cta-band { background: var(--deep); color: var(--cream); }
.cta-inner { display: grid; gap: 1.2rem; padding-top: 3rem; padding-bottom: 3rem; align-items: center; }
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(250, 246, 236, 0.8); }

/* Rooms + todos */
.room-detail-list { display: grid; gap: 2rem; }
.room-detail { display: grid; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.room-detail figure { min-height: 240px; background: var(--sand-soft); }
.room-detail figure img { width: 100%; height: 100%; }
.room-detail > div { padding: 1.6rem; }
.room-detail h2 { margin-bottom: 0.4rem; }
.room-detail p:not(.room-price) { color: var(--ink-soft); margin: 0.7rem 0 0; }
.room-detail .room-facts { margin-top: 0.7rem; }
.todo-list { display: grid; gap: 1.2rem; }
.todo { display: grid; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.todo figure { aspect-ratio: 16 / 9; background: var(--sand-soft); }
.todo figure img { width: 100%; height: 100%; }
.todo > div { padding: 1.4rem; }
.todo h2 { font-size: 1.4rem; margin: 0.3rem 0 0.5rem; }
.todo p { color: var(--ink-soft); }
.todo a { color: var(--terra); font-weight: 700; }

/* Articles */
.article-hero { padding-top: 1rem; max-width: 56rem; }
.article-hero h1 { font-size: clamp(2rem, 5.4vw, 3.2rem); margin: 0.6rem 0 0.8rem; }
.article-meta { color: var(--ink-soft); font-size: 0.9rem; }
.article-body { padding-bottom: 1rem; }
.related { margin-top: 2.4rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.4rem; }
.related h2 { font-size: 0.95rem; font-family: var(--font-body); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 0.7rem; }
.related ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }

/* Contact + book */
.contact-grid { display: grid; gap: 2.4rem; }
.contact-actions { display: grid; gap: 0.7rem; margin-top: 1.2rem; }
.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.5rem; }
.contact-form h2 { font-size: 1.5rem; }
.field textarea { font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--paper); border: 1.5px solid var(--line); border-radius: 12px; padding: 0.8rem 0.95rem; width: 100%; resize: vertical; }
.field textarea:focus { border-color: var(--sea); outline: none; box-shadow: 0 0 0 3px rgba(94, 139, 139, 0.2); }
.book-steps { list-style: none; padding: 0; margin: 1.4rem 0; display: grid; gap: 0.7rem; }
.book-steps li { display: flex; gap: 0.8rem; align-items: baseline; color: rgba(250, 246, 236, 0.85); }
.book-steps strong { color: var(--sand); font-family: var(--font-display); font-size: 1.3rem; }
.book-page { padding-top: calc(var(--header-h) + 2.5rem); }

/* Misc */
.footer h2 { color: #fff; font-family: var(--font-body); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; }
.mobile-menu { overflow-y: auto; }
.mobile-links a { font-size: clamp(1.45rem, 6.2vw, 2.1rem); }

@media (min-width: 640px) {
  .values.values-3 { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 860px) {
  .duo-grid { grid-template-columns: 1fr 1fr; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr auto; }
  .todo { grid-template-columns: 0.9fr 1.1fr; }
  .todo figure { aspect-ratio: auto; min-height: 220px; }
}
@media (min-width: 960px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .values.values-3 { grid-template-columns: repeat(3, 1fr); }
  .room-detail { grid-template-columns: 1fr 1fr; }
  .room-detail > div { padding: 2.2rem; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .level-cards.level-cards-row { grid-template-columns: repeat(3, 1fr); }
  .level-cards-row .level-card { grid-template-columns: 1fr; }
  .level-cards-row .level-card figure { aspect-ratio: 16 / 9; }
}
@media (min-width: 1020px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Brand logo lockup */
.brand { gap: 0.65rem; }
.brand-mark { width: 40px; height: 40px; border-radius: 11px; object-fit: cover; flex: none; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--deep); white-space: nowrap; }
.site-header:not(.scrolled) .brand-name { color: #fff; text-shadow: 0 1px 10px rgba(8, 40, 52, 0.5); }
.footer-logo { height: 150px; width: auto; border-radius: 14px; }
