:root {
  --font-dm-sans: 'DM Sans', sans-serif;
  --font-cormorant: 'Cormorant Garamond', serif;
  --sand: #b49874;
  --sand-light: #cdb898;
  --sand-pale: #f5ede0;
  --sand-wash: #faf6f0;
  --grey-100: #f7f6f3;
  --grey-200: #eeece8;
  --grey-300: #d5d1c9;
  --grey-400: #a8a49c;
  --grey-600: #6b6760;
  --grey-800: #3a3732;
  --grey-900: #1e1c19;
  --white: #ffffff;
  --border: rgba(180, 152, 116, 0.22);
  --border-g: rgba(0, 0, 0, 0.07);
  --padding-x: 64px;
  --section-pad: 110px;
}

@media (max-width: 1024px) {
  :root {
    --padding-x: 40px;
    --section-pad: 80px;
  }
}

@media (max-width: 768px) {
  :root {
    --padding-x: 24px;
    --section-pad: 60px;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-dm-sans), sans-serif;
  background: var(--white);
  color: var(--grey-800);
  overflow-x: hidden;
}

/* CURSOR */
.cursor {
  width: 7px;
  height: 7px;
  background: var(--sand);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}

.cursor-ring {
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(180, 152, 116, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.22s ease;
}

/* NAV */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: 80px;
  padding: 0 var(--padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border-g);
  transition: background 0.5s, box-shadow 0.5s;
}

nav.scrolled {
  background: var(--white);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.nav-logo-container {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Removed shrunk state for logo */

.nav-logo-img {
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.nav-wordmark {
  line-height: 1.2;
}

.nav-wordmark-main {
  font-family: var(--font-cormorant), serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--grey-900);
  display: block;
}

.nav-wordmark-sub {
  font-size: 0.57rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey-400);
  font-weight: 300;
  display: block;
}

.nav-links-desktop {
  display: flex;
  gap: 34px;
  list-style: none;
}

.nav-links-desktop a {
  font-size: 0.73rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--grey-600);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links-desktop a:hover {
  color: var(--sand);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--grey-900);
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links-desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .nav-cta {
    display: none;
  }
}

/* MOBILE SIDEBAR */
.nav-sidebar {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.4s;
}

.nav-sidebar.open {
  visibility: visible;
  pointer-events: auto;
}

.nav-sidebar-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s;
}

.nav-sidebar.open .nav-sidebar-overlay {
  opacity: 1;
}

.nav-sidebar-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 320px;
  background: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-sidebar.open .nav-sidebar-content {
  transform: translateX(0);
}

.nav-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.nav-logo-container.small {
  height: 44px;
}

.nav-sidebar-close {
  background: none;
  border: none;
  color: var(--grey-900);
  cursor: pointer;
}

.nav-sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.nav-sidebar-links a {
  font-family: var(--font-cormorant), serif;
  font-size: 1.8rem;
  color: var(--grey-900);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.nav-sidebar-links a:hover {
  color: var(--sand);
}

.nav-sidebar-footer {
  margin-top: auto;
  padding-top: 40px;
}

.nav-sidebar-cta {
  display: block;
  background: var(--sand);
  color: white;
  text-decoration: none;
  padding: 18px;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-cta {
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fff;
  background: var(--sand);
  padding: 11px 26px;
  text-decoration: none;
  transition: background 0.3s;
}

.nav-cta:hover {
  background: var(--grey-900);
}

@media (max-width: 640px) {
  .nav-wordmark {
    display: none;
  }
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hotel/hero.jpg') center/cover no-repeat;
  /* background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1900&q=85') center/cover no-repeat; */
  transform: scale(1.06);
  transition: transform 9s ease;
}

.hero-bg.ready {
  transform: scale(1);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.15) 52%,
      rgba(0, 0, 0, 0.04) 100%);
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: 0 var(--padding-x) 0;
  max-width: 860px;
}

@media (max-width: 768px) {
  .hero-body {
    padding-bottom: 40px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  opacity: 0;
  transform: translateY(16px);
  animation: up 0.9s 0.3s forwards;
}

.hero-line {
  width: 34px;
  height: 1px;
  background: var(--sand);
}

.hero-eyebrow-text {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
}

h1 {
  font-family: var(--font-cormorant), serif;
  font-size: clamp(3.8rem, 8.5vw, 7.8rem);
  font-weight: 300;
  line-height: 0.93;
  color: var(--grey-900);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(24px);
  animation: up 1.1s 0.5s forwards;
}

h1 em {
  font-style: italic;
  color: var(--sand);
}

.hero-p {
  font-size: 1rem;
  color: var(--grey-600);
  font-weight: 300;
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 44px;
  opacity: 0;
  animation: up 0.9s 0.85s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  opacity: 0;
  animation: up 0.9s 1.05s forwards;
  padding-bottom: 0;
}

.btn-solid {
  background: var(--sand);
  color: #fff;
  padding: 14px 34px;
  font-size: 0.73rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.25s;
  display: inline-block;
}

.btn-solid:hover {
  background: var(--grey-900);
  transform: translateY(-2px);
}

.btn-line {
  border: 1.5px solid var(--border);
  color: var(--grey-800);
  padding: 14px 34px;
  font-size: 0.73rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s;
  display: inline-block;
}

.btn-line:hover {
  border-color: var(--sand);
  background: var(--sand-pale);
}

/* stats bar */
.stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: up 0.9s 1.3s forwards;
}

.stat {
  flex: 1;
  padding: 22px 30px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.stat-n {
  font-family: var(--font-cormorant), serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--grey-900);
  line-height: 1;
}

.stat-l {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-400);
}

/* scroll indicator */
.scroll-ind {
  position: absolute;
  right: 64px;
  bottom: 110px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: up 0.9s 1.5s forwards;
}

.scroll-ind span {
  font-size: 0.59rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey-400);
  writing-mode: vertical-rl;
}

.scroll-ind-bar {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--sand), transparent);
  animation: grow 2s 2s infinite;
}

@keyframes grow {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

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

/* SECTION LABELS */
.s-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.67rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 400;
  margin-bottom: 16px;
}

.s-label::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--sand);
}

.s-h2 {
  font-family: var(--font-cormorant), serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--grey-900);
}

.s-h2 em {
  font-style: italic;
  color: var(--sand);
}

.s-p {
  font-size: 0.93rem;
  color: var(--grey-600);
  line-height: 1.85;
  font-weight: 300;
}

/* DIVIDER */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 64px;
}

/* INTRO */
.intro {
  padding: var(--section-pad) var(--padding-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  background: var(--white);
}

@media (max-width: 900px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.intro-img-wrap {
  position: relative;
}

.intro-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.intro-badge {
  position: absolute;
  bottom: -26px;
  right: -26px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 22px 26px;
}

.intro-badge-n {
  font-family: var(--font-cormorant), serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--sand);
  line-height: 1;
}

.intro-badge-t {
  font-size: 0.66rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-top: 4px;
}

.intro-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.intro-feats {
  display: flex;
  flex-direction: column;
}

.intro-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-g);
}

.intro-feat:first-child {
  border-top: 1px solid var(--border-g);
}

.intro-feat svg {
  color: var(--sand);
  flex-shrink: 0;
}

.intro-feat-t {
  font-size: 0.88rem;
  color: var(--grey-600);
  font-weight: 300;
}

/* PET STRIP */
.pet {
  background: var(--sand-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px var(--padding-x);
  display: flex;
  align-items: center;
  gap: 28px;
}

@media (max-width: 640px) {
  .pet {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .pet-pill {
    margin-left: 0;
  }
}

.pet-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  flex-shrink: 0;
}

.pet-title {
  font-family: var(--font-cormorant), serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--grey-900);
}

.pet-sub {
  font-size: 0.83rem;
  color: var(--grey-600);
  font-weight: 300;
  margin-top: 3px;
}

.pet-pill {
  margin-left: auto;
  border: 1.5px solid var(--sand);
  color: var(--sand);
  padding: 9px 22px;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

/* EXPERIENCES */
.exp-wrap {
  padding: var(--section-pad) var(--padding-x);
  background: var(--grey-100);
}

@media (max-width: 768px) {
  .exp-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 340px 240px;
  gap: 3px;
}

@media (max-width: 900px) {
  .exp-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 300px);
  }

  .exp-card:nth-child(1) {
    grid-column: span 2;
    grid-row: 1;
  }
}

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

  .exp-card {
    height: 350px;
  }

  .exp-card:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
  }
}

.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

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

.exp-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(30, 28, 25, 0.72) 0%,
      transparent 55%);
}

.exp-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 20px;
}

.exp-tag {
  font-size: 0.61rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-light);
  margin-bottom: 5px;
  display: block;
}

.exp-name {
  font-family: var(--font-cormorant), serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}

/* CAFE */
.cafe {
  padding: var(--section-pad) var(--padding-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  background: var(--white);
}

@media (max-width: 900px) {
  .cafe {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cafe-imgs {
    order: 2;
  }
}

.cafe-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 3px;
}

.cafe-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cafe-imgs img:first-child {
  grid-column: span 2;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  padding: 9px 18px;
  margin-bottom: 22px;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4a9e6b;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.live-text {
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-600);
}

.cafe-feats {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
}

.cafe-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--border-g);
}

.cafe-feat:first-child {
  border-top: 1px solid var(--border-g);
}

.cafe-feat-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  flex-shrink: 0;
}

.cafe-feat-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey-800);
}

.cafe-feat-desc {
  font-size: 0.79rem;
  color: var(--grey-400);
  font-weight: 300;
  margin-top: 2px;
}

/* REELS */
.reels-section {
  padding: var(--section-pad) var(--padding-x);
  background: var(--white);
}

.reels-container {
  max-width: 1400px;
  margin: 0 auto;
}

.reels-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.reel-card {
  position: relative;
  aspect-ratio: 9/16;
  background: var(--grey-200);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease;
}

.reel-card:hover {
  transform: translateY(-8px);
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 40%, transparent 80%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.reel-controls {
  display: flex;
  justify-content: flex-end;
}

.mute-btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.mute-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  pointer-events: none;
  opacity: 0.8;
}

.reel-info {
  color: white;
}

.reel-caption {
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 12px;
  line-height: 1.4;
}

.reel-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.reels-footer {
  display: flex;
  justify-content: center;
}

.instagram-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: var(--grey-900);
  color: white;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s;
}

.instagram-btn:hover {
  background: var(--sand);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .reels-section {
    padding: 80px 24px;
  }

  .reels-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reels-header {
    margin-bottom: 40px;
  }
}

/* EVENTS */
.events {
  padding: var(--section-pad) var(--padding-x);
  background: var(--grey-100);
}

.events-head {
  text-align: center;
  margin-bottom: 56px;
}

.events-head .s-label {
  justify-content: center;
}

.events-head .s-label::before {
  display: none;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.ev-card {
  background: var(--white);
  padding: 38px 26px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}

.ev-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.ev-card:hover {
  background: var(--sand-pale);
}

.ev-card:hover::after {
  transform: scaleX(1);
}

.ev-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  margin-bottom: 20px;
  transition: background 0.3s, border-color 0.3s;
}

.ev-card:hover .ev-icon {
  background: var(--sand);
  color: #fff;
  border-color: var(--sand);
}

.ev-name {
  font-family: var(--font-cormorant), serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--grey-900);
  margin-bottom: 9px;
}

.ev-desc {
  font-size: 0.79rem;
  color: var(--grey-400);
  line-height: 1.75;
  font-weight: 300;
}

/* EXPLORE */
.explore {
  padding: 110px 64px;
  background: var(--white);
}

.explore-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}

.places {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.place {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px;
  border-bottom: 1px solid var(--border-g);
  border-right: 1px solid var(--border-g);
  transition: background 0.3s;
}

.places>.place:nth-child(even) {
  border-right: none;
}

.place:hover {
  background: var(--sand-pale);
}

.place-l {
  display: flex;
  align-items: center;
  gap: 18px;
}

.place-num {
  font-family: var(--font-cormorant), serif;
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--grey-300);
  min-width: 34px;
}

.place-name {
  font-family: var(--font-cormorant), serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--grey-900);
  margin-bottom: 3px;
}

.place-dist {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
}

.place-arr {
  color: var(--grey-300);
  transition: color 0.3s, transform 0.3s;
}

.place:hover .place-arr {
  color: var(--sand);
  transform: translateX(4px);
}

/* TESTIMONIALS */
.testi {
  padding: 110px 0;
  background: var(--sand-pale);
  overflow: hidden;
}

.testi-head {
  padding: 0 64px;
  margin-bottom: 52px;
}

.t-track {
  display: flex;
  overflow: hidden;
}

.t-inner {
  display: flex;
  gap: 22px;
  animation: marquee 35s linear infinite;
  min-width: max-content;
}

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

  100% {
    transform: translateX(-50%);
  }
}

.t-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 38px;
  min-width: 355px;
  max-width: 355px;
  flex-shrink: 0;
}

.t-stars {
  display: flex;
  gap: 3px;
  color: var(--sand);
  margin-bottom: 14px;
}

.t-text {
  font-family: var(--font-cormorant), serif;
  font-size: 1.12rem;
  font-weight: 300;
  font-style: italic;
  color: var(--grey-800);
  line-height: 1.75;
  margin-bottom: 22px;
}

.t-rule {
  width: 30px;
  height: 1px;
  background: var(--sand);
  margin-bottom: 12px;
}

.t-author {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-400);
}

/* AMENITIES */
.amenities {
  padding: 110px 64px;
  background: var(--white);
}

.amenities-head {
  text-align: center;
  margin-bottom: 56px;
}

.amenities-head .s-label {
  justify-content: center;
}

.amenities-head .s-label::before {
  display: none;
}

.am-row {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--border);
}

.am {
  flex: 1;
  min-width: 140px;
  padding: 38px 18px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

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

.am:hover {
  background: var(--sand-pale);
}

.am-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  transition: background 0.3s, border-color 0.3s;
}

.am:hover .am-icon {
  background: var(--sand);
  color: #fff;
  border-color: var(--sand);
}

.am-name {
  font-size: 0.69rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-600);
}

/* GALLERY REDESIGN */
.gallery-section {
  padding: var(--section-pad) var(--padding-x);
  background: var(--white);
}

.gallery-header {
  margin-bottom: 50px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--grey-100);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Bento Grid Spanning Logic */
.item-1 { grid-column: span 2; grid-row: span 2; } /* Large Hero */
.item-2 { grid-column: span 1; grid-row: span 1; }
.item-3 { grid-column: span 1; grid-row: span 2; } /* Tall */
.item-4 { grid-column: span 1; grid-row: span 1; }
.item-5 { grid-column: span 1; grid-row: span 1; }
.item-6 { grid-column: span 2; grid-row: span 1; } /* Wide */
.item-7 { grid-column: span 1; grid-row: span 2; } /* Tall */
.item-8 { grid-column: span 1; grid-row: span 1; }
.item-9 { grid-column: span 1; grid-row: span 1; }
.item-10 { grid-column: span 1; grid-row: span 1; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-tag {
  color: white;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-tag {
  transform: translateY(0);
}

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

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  
  .item-1, .item-3, .item-6, .item-7 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
}

/* CONTACT */
.contact {
  padding: var(--section-pad) var(--padding-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
  background: var(--grey-100);
}

@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-items {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.c-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid var(--border-g);
}

.c-item:first-child {
  border-top: 1px solid var(--border-g);
}

.c-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  flex-shrink: 0;
}

.c-label {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 3px;
}

.c-value {
  font-size: 0.9rem;
  color: var(--grey-800);
}

/* form */
.form-wrap {
  background: var(--white);
  padding: 50px 42px;
  border: 1px solid var(--border);
}

.form-h {
  font-family: var(--font-cormorant), serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--grey-900);
  margin-bottom: 30px;
}

.form-h em {
  font-style: italic;
  color: var(--sand);
}

.fg {
  margin-bottom: 17px;
}

.fg label {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 7px;
}

.fg input,
.fg select {
  width: 100%;
  background: var(--grey-100);
  border: 1px solid var(--border);
  color: var(--grey-800);
  padding: 11px 14px;
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 0.87rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
}

.fg input:focus,
.fg select:focus {
  border-color: var(--sand);
  background: var(--white);
}

.f2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-btn {
  width: 100%;
  background: var(--sand);
  color: #fff;
  border: none;
  padding: 15px;
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 8px;
}

.form-btn:hover {
  background: var(--grey-900);
}

/* FOOTER */
footer {
  background: var(--grey-900);
  padding: 72px 64px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
}

.f-logo {
  font-family: var(--font-cormorant), serif;
  font-size: 1.12rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  display: block;
}

.f-logo em {
  font-style: italic;
  color: var(--sand);
}

.f-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.8;
  font-weight: 300;
}

.f-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.f-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}

.f-social a:hover {
  border-color: var(--sand);
  color: var(--sand);
}

.f-col h4 {
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}

.f-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.f-col ul a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}

.f-col ul a:hover {
  color: #fff;
}

.f-bottom {
  background: var(--grey-900);
  padding: 40px 64px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.f-bottom p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  nav {
    padding: 0 20px;
    height: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding: 8px 16px;
    font-size: 0.65rem;
  }

  .nav-wordmark-main {
    font-size: 0.9rem;
  }

  .nav-wordmark-sub {
    font-size: 0.5rem;
  }

  .hero-body {
    padding: 0 20px;
  }

  h1 {
    font-size: clamp(2.8rem, 10vw, 4rem);
    margin-bottom: 20px;
  }

  .hero-p {
    font-size: 0.9rem;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .scroll-ind {
    display: none;
  }

  .stats-bar {
    flex-wrap: wrap;
    position: relative;
    background: var(--white);
  }

  .stat {
    min-width: 50%;
    padding: 16px 20px;
  }

  .intro,
  .cafe,
  .contact {
    padding: 60px 20px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .exp-wrap,
  .events,
  .explore,
  .amenities,
  .testi-head {
    padding: 60px 20px;
  }

  .testi {
    padding: 60px 0;
  }

  .exp-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .exp-card:nth-child(1) {
    grid-column: auto;
    height: 300px;
  }

  .exp-card {
    height: 250px;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .places {
    grid-template-columns: 1fr;
  }

  .place {
    border-right: none;
    padding: 20px;
  }



  footer {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px 40px;
  }

  .f-bottom {
    flex-direction: column;
    gap: 12px;
    padding: 32px 20px;
    text-align: center;
  }

  .divider {
    margin: 0 20px;
  }

  .pet {
    padding: 40px var(--padding-x);
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .pet-pill {
    margin-left: 0;
  }

  .form-wrap {
    padding: 32px 20px;
  }

  .f2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fg label {
    font-size: 0.7rem;
    margin-bottom: 10px;
  }

  .fg input,
  .fg select {
    padding: 14px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }

  .nav-logo-container {
    width: 36px;
    height: 36px;
  }

  .nav-wordmark-main {
    font-size: 0.8rem;
  }

  .stat-n {
    font-size: 1.5rem;
  }

  .btn-solid,
  .btn-line {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .nav-cta-tel {
    display: none;
  }
}

/* BOOKING PAGE */
.booking-page {
  min-height: 100vh;
  background: var(--grey-100);
}

.booking-nav {
  background: var(--white);
  height: 72px;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-g);
}

.booking-container {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 24px;
}

.stepper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.step-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-400);
  margin-bottom: 12px;
  transition: all 0.3s;
}

.step.active .step-icon-wrap {
  border-color: var(--sand);
  color: var(--sand);
  background: var(--sand-pale);
}

.step.completed .step-icon-wrap {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--white);
}

.step-name {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-400);
  font-weight: 500;
}

.step.active .step-name {
  color: var(--grey-900);
}

.step-line {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: var(--border);
  z-index: -1;
}

.step.completed .step-line {
  background: var(--sand);
}

.step-card {
  background: var(--white);
  padding: 60px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.step-title {
  font-family: var(--font-cormorant), serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--grey-900);
  margin-bottom: 40px;
  text-align: center;
}

.step-title em {
  font-style: italic;
  color: var(--sand);
}

.booking-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.book-btn {
  width: 100%;
  background: var(--sand);
  color: var(--white);
  padding: 18px;
  border: none;
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background 0.3s, transform 0.2s;
  margin-top: 20px;
}

.book-btn:hover:not(:disabled) {
  background: var(--grey-900);
  transform: translateY(-2px);
}

.book-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ROOMS GRID */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.room-card {
  display: grid;
  grid-template-columns: 350px 1fr;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
  background: var(--white);
}

.room-card:hover {
  border-color: var(--sand);
  box-shadow: 0 15px 30px rgba(180, 152, 116, 0.08);
}

.room-card.selected {
  border-color: var(--sand);
  background: var(--sand-wash);
}

.room-img {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.room-details {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.room-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.room-head h3 {
  font-family: var(--font-cormorant), serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--grey-900);
}

.room-price {
  font-family: var(--font-cormorant), serif;
  font-size: 1.6rem;
  color: var(--sand);
}

.room-price span {
  font-size: 0.8rem;
  color: var(--grey-400);
  font-family: var(--font-dm-sans), sans-serif;
}

.room-details p {
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.room-amenities {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.room-amenities span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-400);
  background: var(--grey-100);
  padding: 4px 10px;
  border-radius: 2px;
}

.select-btn {
  margin-top: auto;
  align-self: flex-start;
  background: none;
  border: 1.5px solid var(--border);
  padding: 10px 24px;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-600);
  cursor: pointer;
  transition: all 0.3s;
}

.room-card.selected .select-btn {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--white);
}

.step-actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}

.step-actions .book-btn {
  width: auto;
  flex: 1;
  margin-top: 0;
}

.step-actions .back-btn-outline {
  flex-shrink: 0;
}

.back-btn-outline {
  background: none;
  border: 1px solid var(--border);
  padding: 18px 40px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-400);
  cursor: pointer;
  transition: all 0.3s;
}

.back-btn-outline:hover {
  border-color: var(--grey-900);
  color: var(--grey-900);
}

/* GUEST DETAILS */
.passengers-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.passenger-form {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-g);
}

.passenger-form:last-child {
  border-bottom: none;
}

.passenger-form h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sand);
  margin-bottom: 24px;
}

/* PAYMENT SUMMARY */
.payment-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.summary-section h4,
.payment-form h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--grey-900);
  margin-bottom: 30px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sand);
  display: inline-block;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--grey-600);
}

.summary-total {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid var(--grey-100);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-cormorant), serif;
  font-size: 1.8rem;
  color: var(--grey-900);
}

.pay-btn {
  margin-top: 30px;
  background: var(--grey-900);
}

.pay-btn:hover {
  background: var(--sand);
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@media (max-width: 960px) {
  .booking-nav {
    padding: 0 20px;
  }

  .step-card {
    padding: 40px 20px;
  }

  .room-card {
    grid-template-columns: 1fr;
  }

  .room-img {
    height: 200px;
  }

  .payment-summary {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .step-name {
    display: none;
  }

  .step-title {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* If using CSS modules or global CSS */
.text-white {
  color: #ffffff;
}

/* OR if you want to be more specific in your existing hero styles */
h1 .text-white {
  color: #ffffff;
  font-weight: 400;
}

h1 em {
  color: inherit;
}