/* ============================================================
   DESIGN TOKENS — Premium mountain hospitality
   Refined palette, serif display type, fluid motion
   ============================================================ */
:root {
  --bg: #FDFCFB;
  --paper: #F7F5F2;
  --ink: #1A1918;
  --ink-soft: #6B6560;

  --summer-yellow: #E8B84A;
  --summer-yellow-dark: #C99A2E;
  --summer-orange: #C4783A;
  --summer-orange-dark: #A8622E;
  --summer-green: #3D8B5E;
  --summer-green-dark: #2F7049;
  --summer-blue: #2B6CB0;
  --summer-blue-dark: #1E5590;
  --summer-sky: #6BA3BE;
  --summer-sky-dark: #528DA8;
  --summer-pink: #C45C6A;
  --summer-pink-dark: #A84A56;
  --summer-purple: #8B6BA8;
  --summer-purple-dark: #735890;
  --peach-deep: var(--summer-orange);

  --line: rgba(26, 25, 24, 0.08);
  --shadow-sm: 0 1px 3px rgba(26, 25, 24, 0.06), 0 1px 2px rgba(26, 25, 24, 0.04);
  --shadow-md: 0 4px 20px rgba(26, 25, 24, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 25, 24, 0.10);
  --shadow-xl: 0 24px 60px rgba(26, 25, 24, 0.12);

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

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1160px;
  --nav-height: 76px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-soft: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 16px);
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--summer-orange);
  margin: 0 0 18px;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 4.6rem); line-height: 1.06; font-weight: 500; }
h2 { font-size: clamp(2rem, 3.5vw, 2.9rem); line-height: 1.12; }
h3 { font-size: 1.55rem; line-height: 1.25; }

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }

.italic-accent {
  font-style: italic;
  color: var(--summer-orange);
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 251, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease-out-expo),
              border-color 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo);
}

.site-nav.is-scrolled {
  background: rgba(253, 252, 251, 0.92);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  position: relative;
}

.brand {
  text-decoration: none;
  transition: opacity 0.3s var(--ease);
}
.brand:hover { opacity: 0.85; }

.site-logo {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 16px;
}

.brand span {
  color: var(--summer-orange);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  border-radius: 2px;
  background: var(--summer-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out-expo);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  background: var(--ink);
  color: white !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease-out-expo),
              background 0.35s var(--ease-out-expo),
              box-shadow 0.35s var(--ease-out-expo);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--summer-green-dark);
  transform: translateY(-1px) translateZ(0);
  box-shadow: var(--shadow-md);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.25s var(--ease);
}
.nav-toggle:hover { background: var(--paper); }

@media (max-width: 860px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(253, 252, 251, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px clamp(20px, 4vw, 40px) 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out-expo),
                transform 0.35s var(--ease-out-expo);
  }

  .nav-links.is-open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links li {
    border-bottom: 1px solid var(--line);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 15px;
  }

  .nav-toggle { display: block; }
  .nav-cta { display: none; }
}

/* ============================================================
   IMAGE FRAMES
   ============================================================ */
.photo {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 180px;
  transition: transform 0.6s var(--ease-out-expo),
              box-shadow 0.6s var(--ease-out-expo);
}
.photo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.host-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: transform 0.8s var(--ease-out-expo);
}
.photo:hover .host-photo { transform: scale(1.04); }

.photo-label {
  position: relative;
  z-index: 1;
  color: rgba(46,43,38,0.75);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 14px;
  font-weight: 600;
  border-top: 1px dashed rgba(46,43,38,0.25);
  width: 100%;
  background: rgba(255,255,255,0.55);
}

.photo.tall { aspect-ratio: 3/4; }
.photo.wide { aspect-ratio: 16/9; }
.photo.square { aspect-ratio: 1/1; }
.photo.hero-photo { aspect-ratio: unset; min-height: 92vh; }

.hero.photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(15, 18, 12, 0.72) 0%,
    rgba(15, 18, 12, 0.08) 50%,
    rgba(15, 18, 12, 0.25) 100%
  );
  z-index: 1;
}
.hero.photo {
  background: linear-gradient(135deg, #2a3d2e 0%, #4a6741 100%);
}
.hero .photo-label {
  background: rgba(20,24,15,0.35);
  color: rgba(255,255,255,0.8);
  border-top-color: rgba(255,255,255,0.3);
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  animation: heroKenBurns 20s var(--ease-soft) infinite alternate;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding-bottom: clamp(60px, 10vh, 100px);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero .eyebrow { color: var(--summer-yellow); font-weight: 600; }
.hero h1 { color: #fff; font-weight: 500; }
.hero p.lede {
  color: rgba(255,255,255,0.88);
  font-family: var(--font-body);
  font-size: 1.12rem;
  max-width: 520px;
  margin-top: 20px;
  font-weight: 400;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

.hero-content .eyebrow,
.hero-content h1,
.hero-content p.lede,
.hero-content .hero-actions {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 1s var(--ease-out-expo) forwards;
}
.hero-content .eyebrow { animation-delay: 0.15s; }
.hero-content h1 { animation-delay: 0.3s; }
.hero-content p.lede { animation-delay: 0.45s; }
.hero-content .hero-actions { animation-delay: 0.6s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.4s var(--ease-out-expo),
              background 0.35s var(--ease),
              box-shadow 0.4s var(--ease-out-expo),
              border-color 0.35s var(--ease);
}
.btn-primary {
  background: var(--ink);
  color: white;
  font-weight: 500;
}
.btn-primary:hover {
  background: var(--summer-green-dark);
  transform: translateY(-2px) translateZ(0);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px) translateZ(0);
}
.btn-dark {
  background: var(--summer-green);
  color: white;
  font-weight: 500;
}
.btn-dark:hover {
  background: var(--summer-green-dark);
  transform: translateY(-2px) translateZ(0);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   RIDGELINE DIVIDER
   ============================================================ */
.ridgeline {
  width: 100%;
  height: 48px;
  display: block;
  opacity: 0.7;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: clamp(80px, 12vw, 128px) 0; }
.section-tight { padding: clamp(60px, 8vw, 96px) 0; }
.section-tight-top { padding-top: clamp(48px, 6vw, 72px); padding-bottom: clamp(80px, 12vw, 128px); }
.section-tint {
  background: linear-gradient(180deg, var(--paper) 0%, var(--bg) 100%);
}
.section-white { background: var(--bg); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.host-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.host-grid blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--ink);
  border-left: 3px solid var(--summer-orange);
  padding-left: 24px;
  margin: 36px 0;
  line-height: 1.45;
}
.host-grid cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 10px;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  perspective: 1200px;
}

.tour-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  transition: transform 0.55s var(--ease-out-expo),
              box-shadow 0.55s var(--ease-out-expo),
              border-color 0.55s var(--ease-out-expo);
  will-change: transform;
}
.tour-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(26, 25, 24, 0.12);
}
.tour-card--live:hover { transform: translateY(-10px) translateZ(0); }
.tour-card--upcoming:hover { transform: translateY(-6px) translateZ(0); }

/* Tour image frame */
.tour-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #2a3540 0%, #1a2228 100%);
  flex-shrink: 0;
}

.tour-card--upcoming .tour-media {
  aspect-ratio: 16 / 11;
  background: linear-gradient(145deg, #1e2a32 0%, #0f1619 100%);
}

.tour-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s var(--ease-out-expo),
              filter 0.6s var(--ease);
}

/* Per-image focal points (analysed from source assets) */
.img-fit--mountains { object-position: center 42%; }
.img-fit--cafe { object-position: center 58%; }
.img-fit--portrait { object-position: center 18%; }
.img-fit--upcoming {
  object-fit: contain;
  object-position: center center;
  padding: 0;
  filter: brightness(0.92);
}

.tour-card--live:hover .tour-cover { transform: scale(1.06); }
.tour-card--upcoming:hover .tour-cover {
  transform: none;
  filter: brightness(0.96);
}

.tour-media-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease-out-expo);
  pointer-events: none;
  z-index: 2;
}
.tour-card--live:hover .tour-media-shine {
  transform: translateX(120%);
  transition: transform 1.1s var(--ease-out-expo);
}

.tour-media-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 18, 0.15) 0%,
    rgba(10, 14, 18, 0.35) 50%,
    rgba(10, 14, 18, 0.2) 100%
  );
  pointer-events: none;
  z-index: 3;
}

.tour-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: soonFloat 3.5s var(--ease-soft) infinite;
}

.tour-soon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--summer-yellow);
  box-shadow: 0 0 12px var(--summer-yellow);
  animation: soonPulse 2s var(--ease-soft) infinite;
}

@keyframes soonFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes soonPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.tour-card--upcoming::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.04),
    transparent
  );
  background-size: 200% 100%;
  animation: cardShimmer 4s linear infinite;
  z-index: 5;
  opacity: 0.6;
}

@keyframes cardShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.tour-body {
  padding: 28px 26px 30px;
  position: relative;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-status {
  display: inline-block;
  align-self: center;
  margin-bottom: 12px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tour-status--live {
  background: rgba(61, 139, 94, 0.12);
  color: var(--summer-green-dark);
}

.tour-card--upcoming {
  opacity: 0.92;
}
.tour-card--upcoming .tour-body { opacity: 0.95; }

.tour-card--upcoming .tour-meta span:nth-child(3) {
  background: rgba(196, 120, 58, 0.15);
  color: var(--summer-orange-dark);
}

.view--muted { color: var(--ink-soft) !important; }
.view--muted:hover { color: var(--summer-orange) !important; }

/* Legacy — keep for other pages */
.upcoming-badge { display: none; }

.tour-card .photo {
  min-height: 240px;
  border-radius: 0;
}
.tour-card .photo:hover { transform: none; box-shadow: none; }

/* Vision Section — Editorial two-column */
.wrap--vision {
  max-width: 980px;
}

.vision-section {
  margin: 0;
  padding: clamp(36px, 5vw, 52px) clamp(28px, 4.5vw, 48px);
  background: linear-gradient(135deg, #FAF7F2 0%, #F3EDE4 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4.5vw, 56px);
  align-items: center;
}

.vision-main {
  max-width: 650px;
}

.vision-header {
  margin-bottom: clamp(24px, 3.5vw, 32px);
}

.vision-header .eyebrow {
  margin-bottom: 14px;
}

.vision-title {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}

.vision-rule {
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--summer-orange), rgba(196, 120, 58, 0.25));
  border-radius: 2px;
}

.vision-content {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 18px);
}

.vision-lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.38rem);
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
}

.vision-text {
  font-size: clamp(0.98rem, 1.5vw, 1.05rem);
  line-height: 1.78;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 400;
}

.vision-text--closing {
  padding-top: 4px;
  color: var(--ink);
  opacity: 0.88;
}

.vision-quote-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: clamp(20px, 3vw, 32px) clamp(12px, 2vw, 24px);
  border-left: 1px solid rgba(196, 120, 58, 0.18);
}

.vision-quote-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 16vw, 12rem);
  line-height: 1;
  color: var(--summer-orange);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

.vision-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: none;
}

.vision-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 20px;
}

.vision-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--summer-orange);
}

@media (max-width: 820px) {
  .vision-grid {
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 44px);
  }

  .vision-main { max-width: none; }

  .vision-quote-col {
    border-left: none;
    border-top: 1px solid rgba(196, 120, 58, 0.18);
    padding: clamp(28px, 4vw, 36px) 0 0;
    text-align: center;
  }

  .vision-quote-mark {
    top: 28%;
    transform: translate(-50%, -50%);
  }

  .vision-quote p {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================================
   HOMESTAY SHOWCASE — Editorial property gallery
   ============================================================ */
.homestay-showcase {
  padding-top: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(48px, 7vw, 72px);
}

.showcase-head {
  max-width: 620px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}

.showcase-lede {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 18px auto 0;
  max-width: 540px;
}

.showcase-editorial {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: minmax(260px, 38vw) 1fr 1fr;
  gap: clamp(12px, 1.8vw, 18px);
  max-width: 1080px;
  margin: 0 auto;
}

.showcase-item {
  margin: 0;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 1s var(--ease-out-expo),
              transform 1s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0s);
}

.showcase-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.showcase-item--hero {
  grid-column: 1 / -1;
  grid-row: 1;
}

.showcase-item--room {
  grid-column: 1;
  grid-row: 2 / 4;
}

.showcase-item--detail {
  grid-column: 2;
  grid-row: 2;
}

.showcase-item--ambient {
  grid-column: 2;
  grid-row: 3;
}

.showcase-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo);
  will-change: transform;
}

.showcase-item--hero .showcase-frame {
  min-height: clamp(240px, 36vw, 480px);
  border-radius: var(--radius-xl);
}

.showcase-item--room .showcase-frame { min-height: clamp(280px, 42vw, 520px); }
.showcase-item--detail .showcase-frame { min-height: clamp(160px, 22vw, 260px); }
.showcase-item--ambient .showcase-frame { min-height: clamp(160px, 22vw, 260px); }

.showcase-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(15, 18, 12, 0.22) 100%
  );
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
  z-index: 2;
}

.showcase-item:hover .showcase-frame {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px) translateZ(0);
}

.showcase-item:hover .showcase-frame::after { opacity: 1; }

.showcase-img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
  transition: transform 1.6s var(--ease-out-expo),
              filter 0.8s var(--ease);
  filter: brightness(1.04) contrast(1.05) saturate(0.9);
  will-change: transform;
}

.showcase-item:hover .showcase-img {
  transform: scale(1.04);
  filter: brightness(1.06) contrast(1.06) saturate(0.93);
}

/* Per-image focal crops (composition-analysed) */
.img-showcase--hero { object-position: 42% 28%; }
.img-showcase--room { object-position: 48% 32%; }
.img-showcase--detail { object-position: center 38%; }
.img-showcase--ambient { object-position: center 35%; }

.showcase-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 42%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 58%
  );
  transform: translateX(-130%);
  transition: transform 1.4s var(--ease-out-expo);
  pointer-events: none;
  z-index: 3;
}

.showcase-item--hero:hover .showcase-shimmer {
  transform: translateX(130%);
}

.showcase-caption {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s var(--ease-out-expo),
              transform 0.5s var(--ease-out-expo);
}

.showcase-item.is-visible .showcase-caption {
  opacity: 0.85;
  transform: translateY(0);
  transition-delay: calc(var(--reveal-delay, 0s) + 0.35s);
}

.showcase-item:hover .showcase-caption {
  opacity: 1;
  color: var(--ink);
}

.showcase-cta {
  text-align: center;
  margin-top: clamp(36px, 5vw, 52px);
}

.btn-showcase {
  gap: 10px;
  padding: 16px 32px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-showcase .btn-arrow {
  display: inline-block;
  transition: transform 0.45s var(--ease-out-expo);
}

.btn-showcase:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   HOMESTAY LIGHTBOX
   ============================================================ */
.homestay-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 24px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s var(--ease-out-expo),
              visibility 0.45s var(--ease-out-expo);
}

.homestay-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 10, 0.88);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.lightbox-shell {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  background: rgba(253, 252, 251, 0.98);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: translate3d(0, 20px, 0) scale(0.97);
  transition: transform 0.5s var(--ease-out-expo);
}

.homestay-lightbox.is-open .lightbox-shell {
  transform: translate3d(0, 0, 0) scale(1);
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px clamp(20px, 4vw, 28px) 12px;
  border-bottom: 1px solid var(--line);
}

.lightbox-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--summer-orange);
  margin-bottom: 4px;
}

.lightbox-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 500;
}

.lightbox-close {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s var(--ease),
              transform 0.35s var(--ease-out-expo);
}

.lightbox-close:hover {
  background: var(--paper);
  transform: rotate(90deg);
}

.lightbox-stage {
  position: relative;
  margin: 0;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  background: #0f0e0d;
}

.lightbox-image-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(220px, 50vh, 560px);
  max-height: 58vh;
  padding: clamp(12px, 2vw, 20px);
  overflow: hidden;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.4s var(--ease-out-expo),
              transform 0.5s var(--ease-out-expo);
}

.lightbox-image.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s var(--ease),
              transform 0.35s var(--ease-out-expo);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.06);
}

.lightbox-prev { left: clamp(8px, 2vw, 16px); }
.lightbox-next { right: clamp(8px, 2vw, 16px); }

.lightbox-footer {
  padding: 14px clamp(16px, 3vw, 24px) 18px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.lightbox-counter {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 12px;
  text-align: center;
}

.lightbox-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.lightbox-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 48px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  scroll-snap-align: start;
  transition: opacity 0.3s var(--ease),
              border-color 0.3s var(--ease),
              transform 0.35s var(--ease-out-expo);
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.02) saturate(0.9);
}

.lightbox-thumb:hover { opacity: 0.85; transform: translateY(-2px); }

.lightbox-thumb.is-active {
  opacity: 1;
  border-color: var(--summer-orange);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .showcase-editorial {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
  }

  .showcase-item--hero { grid-column: 1 / -1; grid-row: 1; }
  .showcase-item--room { grid-column: 1 / -1; grid-row: 2; }
  .showcase-item--room .showcase-frame { min-height: clamp(220px, 50vw, 360px); }
  .showcase-item--detail { grid-column: 1; grid-row: 3; }
  .showcase-item--ambient { grid-column: 2; grid-row: 3; }
}

@media (max-width: 600px) {
  .showcase-editorial {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }

  .showcase-item--hero,
  .showcase-item--room,
  .showcase-item--detail,
  .showcase-item--ambient {
    grid-column: 1;
    grid-row: auto;
  }

  .showcase-item--hero .showcase-frame { min-height: clamp(200px, 56vw, 280px); }
  .showcase-item--room .showcase-frame { min-height: clamp(200px, 62vw, 320px); }
  .showcase-item--detail .showcase-frame,
  .showcase-item--ambient .showcase-frame { min-height: clamp(180px, 48vw, 260px); }

  .showcase-caption { opacity: 0.85; transform: none; }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .lightbox-thumb { width: 52px; height: 40px; }
}

/* ============================================================
   CONSULTANCY SECTION
   ============================================================ */
.consultancy-sub {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--ink);
  margin: 16px 0 20px;
  line-height: 1.5;
}

.consultancy-trust {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--summer-orange);
  margin: 24px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.consultancy-cta {
  margin-top: 32px;
}

/* ============================================================
   CONSULTANCY PAGE
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(32px, 5vw, 48px);
}

.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 32px);
  transition: transform 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo),
              border-color 0.4s var(--ease-out-expo);
}

.service-card:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 25, 24, 0.12);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--ink);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

.discovery-cta {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.discovery-content {
  padding: clamp(36px, 6vw, 56px) clamp(28px, 5vw, 48px);
  background: linear-gradient(135deg, #FAF7F2 0%, #F3EDE4 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.discovery-content .eyebrow {
  margin-bottom: 14px;
}

.discovery-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.discovery-content p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.discovery-button {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .discovery-content {
    padding: clamp(28px, 5vw, 40px) clamp(20px, 4vw, 32px);
  }
}

/* Reviews Section */
.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink);
  line-height: 1.35;
  max-width: 800px;
  margin: 0 auto;
}

.rating-highlight {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--summer-yellow);
  display: inline-block;
  margin: 0 6px;
}

.reviews-marquee-container {
  overflow: hidden;
  position: relative;
  padding: 32px 0 24px;
}

.reviews-marquee-container::before,
.reviews-marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 10;
  pointer-events: none;
}

.reviews-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--paper), transparent);
}

.reviews-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--paper), transparent);
}

.reviews-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee var(--marquee-duration, 70s) linear infinite;
  will-change: transform;
}

.reviews-marquee-container:hover .reviews-marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reviews-marquee-track .review-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  width: 320px;
  height: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease-out-expo),
              box-shadow 0.5s var(--ease-out-expo);
  box-shadow: var(--shadow-sm);
}

.reviews-marquee-track .review-card:nth-child(8n+1) { background: #F0F5F0; }
.reviews-marquee-track .review-card:nth-child(8n+2) { background: #FAF6F0; }
.reviews-marquee-track .review-card:nth-child(8n+3) { background: #F0F4F8; }
.reviews-marquee-track .review-card:nth-child(8n+4) { background: #F5F2F8; }
.reviews-marquee-track .review-card:nth-child(8n+5) { background: #FAF2EC; }
.reviews-marquee-track .review-card:nth-child(8n+6) { background: #FDFAF5; }
.reviews-marquee-track .review-card:nth-child(8n+7) { background: #F8F0F0; }
.reviews-marquee-track .review-card:nth-child(8n+8) { background: #F5F5F3; }

.reviews-marquee-track .review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.review-author { flex: 1; }

.author-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.author-meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 400;
}

.review-stars {
  font-size: 1.1rem;
  color: var(--summer-yellow);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.review-text {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: auto;
  font-weight: 400;
  flex-grow: 1;
  overflow-y: auto;
}

.review-time {
  font-size: 0.72rem;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-top: 14px;
  font-weight: 500;
  flex-shrink: 0;
}

.tour-meta {
  display: flex;
  gap: 8px;
  font-size: 11.5px;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin: 14px 0 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.tour-meta span {
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s var(--ease-soft);
}
.tour-meta span:nth-child(1) { background: rgba(232, 184, 74, 0.25); color: var(--ink); }
.tour-meta span:nth-child(2) { background: rgba(61, 139, 94, 0.15); color: var(--summer-green-dark); }
.tour-meta span:nth-child(3) { background: rgba(43, 108, 176, 0.12); color: var(--summer-blue); }

.tour-card a.view {
  font-size: 13px;
  font-weight: 600;
  color: var(--summer-orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.4s var(--ease-out-expo), color 0.3s var(--ease);
}
.tour-card a.view:hover { gap: 12px; color: var(--summer-blue); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reviews-grid .review-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.5s var(--ease-out-expo),
              box-shadow 0.5s var(--ease-out-expo);
}
.reviews-grid .review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.reviews-grid .review-card p.quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
}
.review-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.wall-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.wall-grid .photo:nth-child(4n+1) { grid-row: span 2; background: var(--paper); }
.wall-grid .photo:nth-child(4n+2) { background: var(--paper); }
.wall-grid .photo:nth-child(4n+3) { background: var(--paper); }
.wall-grid .photo:nth-child(4n+4) { background: var(--paper); }

footer {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(60px, 8vw, 88px) 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
footer h4 {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
footer a, footer p { color: var(--ink-soft); font-size: 14.5px; }
footer a {
  transition: color 0.25s var(--ease);
}
footer a:hover { color: var(--summer-orange); }
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 12px;
}

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: #25D366;
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo);
  animation: waPulse 3s var(--ease-soft) infinite;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-xl);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: var(--shadow-lg); }
  50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out-expo),
              transform 0.9s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   GUEST SCROLL REVEAL SECTION
   ============================================================ */
.guest-scroll-section {
  position: relative;
  height: 280vh;
  background: var(--paper);
  padding-top: 40px;
}

.guest-scroll-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.guest-scroll-header {
  padding: clamp(48px, 8vw, 80px) clamp(20px, 4vw, 40px) 32px;
  text-align: center;
  flex-shrink: 0;
}

.guest-scroll-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.guest-scroll-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.guest-scroll-image-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4000px;
  height: 566px;
  overflow: hidden;
  will-change: transform;
}

.guest-scroll-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
  border-radius: var(--radius-md);
}

.guest-scroll-image[data-scroll-reveal] {
  transform: translateX(0);
  will-change: transform;
}

@media (max-width: 900px) {
  .host-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .wall-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .guest-scroll-section { height: 200vh; }
  .guest-scroll-image-wrapper { width: 2000px; height: 400px; }
}

@media (max-width: 768px) {
  .reviews-marquee-track .review-card {
    width: 280px;
    height: 340px;
    padding: 24px 20px;
  }

  .reviews-marquee-container::before,
  .reviews-marquee-container::after { width: 48px; }

  .site-logo { height: 44px; }
  .footer-logo { height: 38px; }

  .vision-section { border-radius: var(--radius-lg); }
}

@media (max-width: 600px) {
  .guest-scroll-section { height: 160vh; }
  .guest-scroll-image-wrapper { width: 1500px; height: 280px; }
}
