/* ==========================================================================
   Allpawasi Lodge — style.css
   Single production stylesheet. See SITE_ARCHITECTURE.md §5 for the layer
   breakdown (tokens → base → layout primitives → components → sections).
   Source of truth for every value below: DESIGN_SYSTEM.md (revised).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Color — primary (olive/moss, the site's one accent) */
  --primary-900: #1B2318;
  --primary-700: #5C6B45;
  --primary-500: #7E8F5C;
  --primary-300: #A9BB8B;
  --primary-100: #DEE4C9;

  /* Color — dark surfaces (nav, footer, dark sections) */
  --dark-surface: #1B1D16;
  --dark-surface-alt: #22251C;

  /* Color — neutrals */
  --stone-950: #14160F;
  --stone-800: #2A2C24;
  --stone-600: #5C6058;
  --stone-400: #9A978C;
  --stone-200: #E4E0D3;
  --stone-100: #EFEBE0;
  --linen-50: #F6F3EA;

  /* Semantic */
  --success: #5C7A5C;
  --warning: #C98A2C;
  --danger: #A6503F;

  /* Structural */
  --background: var(--linen-50);
  --surface: var(--stone-100);
  --text-primary: var(--stone-950);
  --text-muted: var(--stone-600);
  --text-inverse: #FBF8F2;
  --text-inverse-muted: rgba(251, 248, 242, 0.7);
  --border: var(--stone-200);
  --overlay: rgba(10, 12, 8, 0.45);
  --overlay-strong: rgba(10, 12, 8, 0.65);
  --focus-ring: var(--primary-500);

  /* Typography */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing (8pt scale) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 96px;
  --space-12: 128px;
  --space-16: 192px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Motion */
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-emphasized: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-base: 400ms;
  --duration-slow: 800ms;

  /* Layout */
  --container-max: 1240px;
  --container-padding: clamp(20px, 4vw, 90px);
  --header-height: 80px;
  --header-height-mobile: 72px;
  --z-header: 100;
  --z-mobile-nav: 150;
  --z-lightbox: 300;
  --z-preloader: 400;
}

/* --------------------------------------------------------------------------
   2. BASE / RESET
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-normal.woff2") format("woff2");
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-italic.woff2") format("woff2");
  font-weight: 400 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--background);
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0; font-weight: 500; }
p { margin: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }
::selection { background-color: var(--primary-100); color: var(--text-primary); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100%; left: var(--space-3); z-index: 500;
  background: var(--text-inverse); color: var(--text-primary);
  padding: var(--space-2) var(--space-3); border-radius: var(--radius-sm);
  transition: top var(--duration-fast) var(--ease-standard);
}
.skip-link:focus { top: var(--space-3); }

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.flex { display: flex; align-items: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); }

/* --------------------------------------------------------------------------
   4. PRELOADER
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed; inset: 0; z-index: var(--z-preloader);
  background: var(--dark-surface); color: var(--text-inverse);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.04em;
  transition: opacity var(--duration-slow) var(--ease-standard), visibility var(--duration-slow);
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__logo { width: 120px; height: auto; }

/* --------------------------------------------------------------------------
   5. COMPONENTS
   -------------------------------------------------------------------------- */

/* --- Overline label --- */
.overline {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-700);
}
.overline--inverse { color: var(--primary-300); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 600; font-size: 0.8125rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius-sm);
  transition: background-color var(--duration-fast) var(--ease-standard),
              border-color var(--duration-fast) var(--ease-standard),
              color var(--duration-fast) var(--ease-standard),
              transform var(--duration-fast) var(--ease-standard);
}
.btn:active { transform: scale(0.97); }
.btn--sm { padding: 10px 20px; font-size: 0.75rem; }

.btn--primary { background: var(--primary-500); color: #fff; }
.btn--primary:hover { background: var(--primary-700); }

.btn--outline {
  background: transparent; color: var(--text-primary);
  border: 1.5px solid var(--text-primary);
}
.btn--outline:hover { background: var(--text-primary); color: var(--background); }

/* --- Ghost / arrow link --- */
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--primary-700);
  text-decoration: underline; text-underline-offset: 4px;
}
.link-arrow::after { content: "\2192"; text-decoration: none; }
.link-arrow--inverse { color: #fff; }
.link-arrow:hover { color: var(--primary-500); }
.link-arrow--inverse:hover { color: var(--primary-300); }

/* --- Divider ---
   NOTE: the client's source "linea.png" asset is a multicolor decorative
   line (confirmed by pixel sampling — not a rendering bug) that clashes
   with this design system's muted palette. Replaced with a plain CSS
   hairline + center mark matching the approved mockup's divider treatment. */
.divider {
  position: relative;
  display: block; width: 60px; height: 1px; margin: var(--space-3) auto 0;
  background: var(--primary-500); opacity: 0.6;
}
.divider::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 6px; height: 6px; background: var(--primary-500);
  transform: translate(-50%, -50%) rotate(45deg);
}

/* --- Icon-stat --- */
.icon-stat { display: flex; flex-direction: column; gap: 8px; }
.icon-stat__icon { width: 28px; height: 28px; color: var(--primary-700); }
.icon-stat--inverse .icon-stat__icon { color: var(--primary-300); }
.icon-stat__label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-primary);
}
.icon-stat--inverse .icon-stat__label { color: var(--text-inverse); }
.icon-stat__caption { font-size: 0.8125rem; color: var(--text-muted); }
.icon-stat--inverse .icon-stat__caption { color: var(--text-inverse-muted); }

/* --- Lightbox --- */
.lightbox { position: fixed; inset: 0; z-index: var(--z-lightbox); }
.lightbox[hidden] { display: none; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(10,12,8,0.85); }
.lightbox__panel {
  position: relative; max-width: 900px; width: 90vw; margin: 8vh auto;
  background: var(--dark-surface); border-radius: var(--radius-md);
  padding: var(--space-3); text-align: center;
}
.lightbox__close {
  position: absolute; top: -44px; right: 0; color: var(--text-inverse);
}
.lightbox__video { width: 100%; border-radius: var(--radius-sm); background: #000; aspect-ratio: 16/9; }
.lightbox__note { color: var(--text-inverse-muted); font-size: 0.875rem; margin-top: var(--space-2); }

/* --------------------------------------------------------------------------
   6. HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; inset-inline: 0; z-index: var(--z-header);
  height: var(--header-height); background: var(--dark-surface);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.site-header__logo { flex-shrink: 0; display: block; }
.site-header__logo img { height: 40px; width: 125px; flex-shrink: 0; }

.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav__link {
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-inverse); position: relative; padding-bottom: 6px;
}
.site-nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--primary-500); transform: scaleX(0); transform-origin: left;
  transition: transform var(--duration-base) var(--ease-standard);
}
.site-nav__link:hover::after, .site-nav__link.is-active::after { transform: scaleX(1); }

.site-header__actions { display: flex; align-items: center; gap: 28px; }
.lang-switch { display: flex; align-items: center; gap: 4px; color: var(--text-inverse); font-size: 0.8125rem; letter-spacing: 0.08em; }
.gtranslate_wrapper { display: flex; align-items: center; gap: 10px; min-width: 24px; min-height: 24px; }
.gtranslate_wrapper a.glink { display: flex; border-radius: 4px; opacity: 0.7; transition: opacity var(--duration-fast, 0.15s) var(--ease-standard, ease); }
.gtranslate_wrapper a.glink:hover, .gtranslate_wrapper a.glink.gt-current-lang { opacity: 1; }
.gtranslate_wrapper a.glink img { display: block; border-radius: 3px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 24px;
}
.nav-toggle span { display: block; height: 1.5px; width: 100%; background: var(--text-inverse); transition: transform var(--duration-fast), opacity var(--duration-fast); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: var(--header-height-mobile); left: 0; right: 0; bottom: 0;
  background: var(--dark-surface); z-index: var(--z-mobile-nav);
  display: flex; flex-direction: column; gap: var(--space-2); padding: var(--space-6) var(--container-padding);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard), visibility var(--duration-base);
}
.mobile-nav.is-open { opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 1.625rem; color: var(--text-inverse);
  padding-block: 14px; border-bottom: 1px solid rgba(255,255,255,0.1);
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s var(--ease-standard), transform .4s var(--ease-standard), color .2s;
}
.mobile-nav a.is-active { color: var(--primary-300); }
.mobile-nav.is-open a { opacity: 1; transform: none; }
.mobile-nav.is-open a:nth-child(1) { transition-delay: .05s; }
.mobile-nav.is-open a:nth-child(2) { transition-delay: .1s; }
.mobile-nav.is-open a:nth-child(3) { transition-delay: .15s; }
.mobile-nav.is-open a:nth-child(4) { transition-delay: .2s; }
.mobile-nav.is-open a:nth-child(5) { transition-delay: .25s; }
.mobile-nav.is-open a:nth-child(6) { transition-delay: .3s; }
.mobile-nav .btn {
  align-self: stretch; justify-content: center; margin-top: var(--space-4);
  opacity: 0; transition: opacity .4s var(--ease-standard) .35s;
}
.mobile-nav.is-open .btn { opacity: 1; }
/* Collapse the horizontal nav into the hamburger below tablet width — the
   desktop nav has no wrap/scroll fallback, so this is a hard requirement,
   not just a visual preference. */
@media (max-width: 1024px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  .lang-switch { display: none; }
  .gtranslate_wrapper { display: none; }
}
@media (max-width: 768px) {
  .site-header { height: var(--header-height-mobile); }
  .site-header__actions { gap: 16px; }
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero { position: relative; height: 100svh; min-height: 560px; overflow: hidden; }
.hero__video-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
  background: var(--dark-surface);
}
.hero__video-bg iframe {
  position: absolute; top: 50%; left: 50%;
  width: 177.78vh; height: 56.25vw;
  min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%);
}
.hero__slider, .hero__slider .swiper-wrapper, .hero__slide { height: 100%; }
.hero__slider { position: relative; z-index: 1; }
.hero__media { position: relative; width: 100%; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--overlay-strong) 0%, rgba(10,12,8,0.25) 40%, transparent 62%);
}
.hero__content {
  position: absolute; left: 0; right: 0; bottom: 16%; max-width: var(--container-max);
}
.hero__content .overline { margin-bottom: var(--space-2); }
.hero__headline {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--text-inverse); max-width: 520px; margin-bottom: var(--space-3);
  letter-spacing: -0.015em;
}
.hero__body { color: var(--text-inverse-muted); max-width: 440px; margin-bottom: var(--space-4); font-size: 1rem; }

.hero__pagination {
  position: absolute !important; bottom: 44px !important;
  left: 50% !important; transform: translateX(-50%);
  width: auto !important; display: flex; gap: 12px;
}
.hero .swiper-pagination-bullet {
  width: 8px; height: 8px; background: transparent; border: 1px solid rgba(255,255,255,0.7);
  opacity: 1; margin: 0 !important;
}
.hero .swiper-pagination-bullet-active { background: #fff; border-color: #fff; }

@media (max-width: 768px) {
  .hero__content { bottom: 12%; padding-inline: var(--container-padding); }
  .hero__headline { font-size: 2rem; }
  .hero__pagination { bottom: 28px !important; }
}

/* --------------------------------------------------------------------------
   8. WELCOME
   -------------------------------------------------------------------------- */
.welcome { background: var(--background); padding-block: var(--space-10); overflow: hidden; }
.welcome__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-6); align-items: center; }
.welcome__heading { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-block: var(--space-2) var(--space-4); color: var(--stone-950); }
.welcome__lead { font-size: 1.0625rem; margin-bottom: var(--space-3); }
.welcome__text p + p { margin-top: var(--space-3); }
.welcome__text .link-arrow { display: inline-flex; margin-top: var(--space-4); }
.welcome__text strong { font-weight: 600; color: var(--stone-950); }

.welcome__media { position: relative; }
.welcome__image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.welcome__image img { width: 100%; height: 100%; object-fit: cover; }
.welcome__stats {
  position: relative; margin-top: -56px; margin-inline: var(--space-4);
  background: var(--primary-100); border-radius: var(--radius-lg);
  padding: var(--space-4); display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3);
  box-shadow: none;
}

@media (max-width: 1023px) {
  .welcome__grid { grid-template-columns: 1fr; }
  .welcome__stats { margin-top: var(--space-4); margin-inline: 0; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .welcome__stats { grid-template-columns: 1fr 1fr; }
}

/* --------------------------------------------------------------------------
   9. VIDEO BAND
   -------------------------------------------------------------------------- */
.video-band { position: relative; height: 72vh; min-height: 440px; overflow: hidden; }
.video-band__media { position: absolute; inset: 0; }
.video-band__media img { width: 100%; height: 100%; object-fit: cover; }
.video-band__scrim { position: absolute; inset: 0; background: rgba(10,12,8,0.55); }
.video-band__content {
  position: relative; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: var(--space-3); text-align: center;
}
.video-band__play {
  width: 76px; height: 76px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.14); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.5); color: #fff;
  transition: background var(--duration-fast) var(--ease-standard), transform var(--duration-fast) var(--ease-standard);
}
.video-band__play:hover { background: rgba(255,255,255,0.24); transform: scale(1.04); }
.video-band__heading { font-family: var(--font-display); color: var(--text-inverse); font-size: clamp(1.5rem, 3vw, 1.875rem); }
.video-band__label { font-size: 0.75rem; }

/* --------------------------------------------------------------------------
   10. ROOMS
   -------------------------------------------------------------------------- */
.rooms { background: var(--background); padding-block: var(--space-10); }
.rooms__header { text-align: center; margin-bottom: var(--space-6); }
.rooms__heading { font-size: clamp(1.875rem, 3vw, 2.5rem); margin-top: var(--space-2); color: var(--stone-950); }

.rooms__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-4);
}
.room-card { grid-column: span 3; position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; }
.room-card--lg { grid-column: span 3; }
.rooms__grid .room-card:nth-child(3),
.rooms__grid .room-card:nth-child(4),
.rooms__grid .room-card:nth-child(5) { grid-column: span 2; aspect-ratio: 1/1; }

.room-card img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-standard); }
.room-card:hover img { transform: scale(1.03); }
.room-card__scrim {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--space-3);
  background: linear-gradient(180deg, transparent 55%, rgba(10,12,8,0.78) 100%);
}
.room-card__name { color: #fff; font-size: 1.25rem; margin-bottom: 2px; }
.room-card__desc { color: var(--text-inverse-muted); font-size: 0.8125rem; margin-bottom: var(--space-2); }
.room-card__scrim .link-arrow { position: relative; }
.room-card__scrim .link-arrow::after { content: "\2192"; }
.room-card:hover .room-card__name { text-decoration: underline; text-decoration-color: var(--primary-500); text-underline-offset: 4px; }

.rooms__cta { text-align: center; margin-top: var(--space-6); }

@media (max-width: 767px) {
  .rooms__grid { grid-template-columns: 1fr; }
  .room-card, .room-card--lg, .rooms__grid .room-card:nth-child(3), .rooms__grid .room-card:nth-child(4), .rooms__grid .room-card:nth-child(5) { grid-column: span 1; aspect-ratio: 4/3; }
}

/* --------------------------------------------------------------------------
   11. EXPERIENCES (dark)
   -------------------------------------------------------------------------- */
.experiences { background: var(--dark-surface); padding-block: var(--space-10); }
.experiences__grid { display: grid; grid-template-columns: 0.9fr 1.6fr; gap: var(--space-6); align-items: center; }
.experiences__heading { color: var(--text-inverse); font-size: clamp(1.75rem, 3vw, 2.25rem); margin-block: var(--space-2) var(--space-3); }
.experiences__text p { color: var(--text-inverse-muted); margin-bottom: var(--space-3); }

.experiences__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.experiences__media img {
  width: 100%; height: 340px; object-fit: cover;
  mask-image: linear-gradient(90deg, transparent, black 25%);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 25%);
  opacity: 0.55;
}
.experiences__icons {
  position: absolute; inset: 0; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4); padding: var(--space-4); align-items: end;
}

@media (max-width: 1023px) {
  .experiences__grid { grid-template-columns: 1fr; }
  .experiences__media img { opacity: 0.35; mask-image: none; -webkit-mask-image: none; }
}
@media (max-width: 640px) {
  .experiences__icons { grid-template-columns: 1fr; position: static; padding: var(--space-4) 0 0; }
  .experiences__media img { height: 200px; }
}

/* --------------------------------------------------------------------------
   12. QUOTE
   -------------------------------------------------------------------------- */
.quote { display: grid; grid-template-columns: 0.85fr 1.15fr; min-height: 60vh; }
.quote__panel {
  background: var(--background); display: flex; flex-direction: column; justify-content: center;
  padding: var(--space-8) var(--container-padding);
}
.quote__mark { font-family: var(--font-display); font-size: 3.5rem; color: var(--stone-950); line-height: 1; }
.quote__text {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.35; color: var(--stone-950);
  margin: var(--space-2) 0 var(--space-3); max-width: 460px;
}
.quote__divider { display: block; width: 90px; height: 1px; background: var(--stone-400); opacity: 0.6; }
.quote__media { position: relative; }
.quote__media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1023px) {
  .quote { grid-template-columns: 1fr; }
  .quote__media img { height: 320px; }
}

/* --------------------------------------------------------------------------
   13. PHOTO STRIP
   -------------------------------------------------------------------------- */
.photo-strip { display: flex; gap: 5px; }
.photo-strip__item { flex: 1 1 0; aspect-ratio: 4/5; overflow: hidden; }
.photo-strip__item img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 767px) {
  .photo-strip { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .photo-strip__item { flex: 0 0 65%; scroll-snap-align: start; }
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--dark-surface); color: var(--text-inverse); padding-top: var(--space-8); }
.site-footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr 1.2fr; gap: var(--space-5); }

.footer-col--brand img { margin-bottom: var(--space-3); }
.footer-col--brand p { color: var(--text-inverse-muted); font-size: 0.9375rem; margin-bottom: var(--space-4); max-width: 240px; }
.footer-social { display: flex; gap: var(--space-2); }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center; color: var(--text-inverse);
  transition: border-color var(--duration-fast), color var(--duration-fast);
}
.footer-social a:hover { border-color: var(--primary-500); color: var(--primary-300); }

.footer-col > .overline { margin-bottom: var(--space-3); }
.footer-col nav { display: flex; flex-direction: column; gap: 12px; }
.footer-col nav a, .footer-info-row a { color: var(--text-inverse-muted); font-size: 0.9375rem; }
.footer-col nav a:hover, .footer-info-row a:hover { color: var(--text-inverse); }

.footer-info-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; color: var(--text-inverse-muted); font-size: 0.9375rem; }
.footer-info-row svg { flex-shrink: 0; margin-top: 2px; color: var(--primary-300); }

.footer-newsletter { display: flex; gap: 8px; margin-top: var(--space-3); }
.footer-newsletter input {
  flex: 1; min-width: 0; background: var(--dark-surface-alt); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm); padding: 10px 14px; color: var(--text-inverse); font-size: 0.875rem;
}
.footer-newsletter input:focus { border-color: var(--primary-500); }
.footer-newsletter__status { font-size: 0.8125rem; color: var(--primary-300); margin-top: var(--space-2); min-height: 1em; }

.site-footer__legal {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-2);
  border-top: 1px solid rgba(255,255,255,0.12); margin-top: var(--space-8);
  padding-block: var(--space-3); font-size: 0.8125rem; color: var(--text-inverse-muted);
}

@media (max-width: 767px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: var(--space-5); }
}

/* --------------------------------------------------------------------------
   15. REVEAL ANIMATION START STATES
   -------------------------------------------------------------------------- */
[data-animate="fade-up"] { opacity: 0; transform: translateY(28px); }
[data-animate="fade-in"] { opacity: 0; }
[data-animate="scale-in"] { opacity: 0; transform: scale(0.96); }
[data-animate].is-animated { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1 !important; transform: none !important; }
  .room-card img, .video-band__play, .site-nav__link::after { transition: none !important; }
}

/* --------------------------------------------------------------------------
   16. WHATSAPP FLOAT
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
}
.wa-float__card {
  width: 280px; max-width: calc(100vw - 40px);
  background: var(--surface, #fff); border-radius: var(--radius-md, 12px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  padding: var(--space-4, 16px);
  opacity: 0; visibility: hidden; transform: translateY(10px) scale(0.98);
  pointer-events: none; transform-origin: bottom right;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.wa-float:hover .wa-float__card,
.wa-float:focus-within .wa-float__card {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1); pointer-events: auto;
}
.wa-float__brand {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--primary-600, #1d8a4e); margin-bottom: 10px;
}
.wa-float__row { display: flex; align-items: flex-start; gap: 10px; }
.wa-float__avatar {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 2px solid #25D366; padding: 3px; background: var(--surface, #fff);
}
.wa-float__msg { font-size: 0.875rem; line-height: 1.45; color: var(--stone-900, #222); margin: 0; }
.wa-float__button {
  position: relative; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.28); color: #fff; flex-shrink: 0;
  transition: transform 0.2s ease;
}
.wa-float__button:hover, .wa-float__button:focus-visible { transform: scale(1.06); }
.wa-float__button svg { width: 30px; height: 30px; }
.wa-float__dot {
  position: absolute; top: -2px; right: -2px; width: 14px; height: 14px;
  background: #ff4d4f; border-radius: 50%; border: 2px solid #fff;
}
@media (max-width: 480px) {
  .wa-float { right: 14px; bottom: 14px; }
  .wa-float__card { width: 240px; padding: var(--space-3, 12px); }
  .wa-float__button { width: 52px; height: 52px; }
}
