:root {
  --sand-dark:    #9e8a74;
  --sand-mid:     #b09a84;
  --sand-warm:    #a8917a;
  --sand-deep:    #8a7260;
  --sand-light:   #c4ae96;
  --cream-1:      #ede8e0;
  --cream-2:      #e8e2d8;
  --cream-3:      #ede6d6;
  --cream-4:      #ddd7ce;
  --taupe-1:      #b5a28e;
  --taupe-2:      #a08878;
  --taupe-3:      #baaа96;
  --taupe-4:      #c0ae9e;
  --taupe-5:      #9a8878;
  --white:        #faf8f5;
  --dark:         #3a3028;
  --text-body:    #5c5044;
  --text-light:   #8a7a6e;
  --accent:       #8a7260;
  --border:       rgba(158,138,116,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 3.5rem;
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--dark);
  text-decoration: none;
}

.nav-logo span { color: var(--sand-dark); font-style: italic; }

.nav-links {
  display: flex; gap: 2.4rem; list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.3s;
}

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

.nav-cta {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--sand-dark);
  border: none;
  padding: 0.7rem 1.8rem;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.nav-cta:hover { background: var(--sand-deep); }

/* ── HERO ── */
#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 5rem;
  background: var(--cream-1);
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,154,132,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 1.6rem;
  display: flex; align-items: center; gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--sand-dark);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.8rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--sand-dark);
}

.hero-sub {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 400px;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex; gap: 1.2rem; align-items: center;
}

.btn-primary {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--sand-dark);
  padding: 1rem 2.4rem;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover { background: var(--sand-deep); transform: translateY(-1px); }

.btn-ghost {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--sand-dark);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.btn-ghost:hover { color: var(--sand-deep); border-color: var(--sand-deep); }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}


.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--dark);
}
.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-img-stack {
  width: 100%; height: 100%;
  position: relative;
}

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

/* SVG placeholder hero image */
.hero-placeholder {
  width: 100%; height: 100%;
  min-height: 600px;
  background: linear-gradient(145deg, var(--sand-mid) 0%, var(--cream-4) 40%, var(--sand-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.hero-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.floating-card {
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(10px);
  padding: 1.6rem 2rem;
  width: 100%;
  max-width: 280px;
  position: absolute;
  bottom: 3rem; left: 3rem;
  border-left: 3px solid var(--sand-dark);
  z-index: 10;
}

.floating-card-label {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 0.5rem;
}

.floating-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.floating-card-sub {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-light);
}

.hero-decorative-room {
  width: 100%; height: 100%;
  min-height: 600px;
  background: linear-gradient(160deg, #c4ae96 0%, #b09a84 30%, #9e8a74 60%, #8a7260 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG Room Illustration */
.room-svg {
  width: 85%;
  max-width: 460px;
  opacity: 0.92;
  animation: floatIn 1.2s ease forwards;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 0.92; transform: translateY(0); }
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 5;
  animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── SEARCH BAR ── */
.search-strip {
  background: var(--dark);
  padding: 0;
}

.search-bar {
  display: flex;
  align-items: stretch;
  max-width: 100%;
}

.search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.6rem 2.4rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: background 0.2s;
}

.search-field:hover { background: rgba(255,255,255,0.04); }

.search-field-label {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand-light);
  margin-bottom: 0.3rem;
}

.search-field-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--cream-1);
  letter-spacing: 0.05em;
}

.search-btn {
  background: var(--sand-dark);
  border: none;
  padding: 0 3rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

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

/* ── SECTION COMMONS ── */
section { padding: 7rem 5rem; }

.section-eyebrow {
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}

.section-eyebrow::before {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--sand-dark);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
}

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

/* ── PROPERTIES ── */
#properties {
  background: var(--white);
}

.properties-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.prop-card {
  background: var(--cream-1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
  position: relative;
}

.prop-card:hover { transform: translateY(-6px); }

.prop-card:first-child {
  grid-column: span 2;
}

.prop-img {
  height: 280px;
  background: linear-gradient(135deg, var(--sand-mid) 0%, var(--taupe-2) 100%);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.prop-card:first-child .prop-img { height: 380px; }

.prop-img-inner {
  width: 100%; height: 100%;
  position: relative;
}

/* Property illustration backgrounds */
.prop-bg-1 { background: linear-gradient(150deg, #c4ae96 0%, #9e8a74 60%, #8a7260 100%); }
.prop-bg-2 { background: linear-gradient(150deg, #b09a84 0%, #ddd7ce 50%, #c0ae9e 100%); }
.prop-bg-3 { background: linear-gradient(150deg, #a8917a 0%, #b5a28e 60%, #9a8878 100%); }

.prop-badge {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  background: var(--dark);
  color: var(--sand-light);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
}

.prop-fav {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 34px; height: 34px;
  background: rgba(250,248,245,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
}

.prop-info {
  padding: 1.6rem 1.8rem 2rem;
}

.prop-location {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 0.5rem;
}

.prop-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.prop-meta {
  display: flex; gap: 1.2rem;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.prop-meta span { display: flex; align-items: center; gap: 0.35rem; }

.prop-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.prop-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--dark);
}

.prop-price small {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--text-light);
}

.prop-rating {
  font-size: 0.72rem;
  color: var(--text-light);
}

.prop-rating strong { color: var(--dark); font-weight: 400; }

/* ── EXPERIENCE ── */
#experience {
  background: var(--dark);
  color: var(--cream-1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

.exp-left {
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exp-left .section-eyebrow { color: var(--sand-light); }
.exp-left .section-eyebrow::before { background: var(--sand-light); }
.exp-left .section-title { color: var(--cream-1); }

.exp-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(237,232,224,0.7);
  margin: 1.8rem 0 3rem;
  max-width: 440px;
}

.exp-features {
  display: flex; flex-direction: column; gap: 1.2rem;
}

.exp-feature {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(176,154,132,0.2);
  transition: border-color 0.3s, background 0.3s;
}

.exp-feature:hover {
  border-color: var(--sand-dark);
  background: rgba(176,154,132,0.05);
}

.exp-feature-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}


.exp-feature-title {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--cream-1);
  margin-bottom: 0.25rem;
}

.exp-feature-desc {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(237,232,224,0.55);
  line-height: 1.6;
}

.exp-right {
  background: linear-gradient(160deg, var(--sand-mid) 0%, var(--sand-dark) 50%, var(--sand-deep) 100%);
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.exp-pattern {
  position: absolute; inset: 0;
  opacity: 0.12;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.3) 40px,
    rgba(255,255,255,0.3) 41px
  );
}

.exp-quote-card {
  background: rgba(250,248,245,0.95);
  padding: 2.5rem;
  max-width: 340px;
  position: relative;
  z-index: 2;
}

.exp-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.exp-quote-author {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-dark);
}

.exp-stars {
  color: var(--sand-dark);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

/* ── AMENITIES ── */
#amenities {
  background: var(--cream-2);
  text-align: center;
}

#amenities .section-eyebrow {
  justify-content: center;
}

#amenities .section-eyebrow::before { display: none; }

#amenities .section-eyebrow::after {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--sand-dark);
}

.amenities-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 540px;
  margin: 1rem auto 4rem;
}

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

.amenity-item {
  background: var(--cream-2);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.3s;
}

.amenity-item:hover { background: var(--cream-1); }

.amenity-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.amenity-name {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.amenity-desc {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--white);
}

.testimonials-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  padding: 2.4rem;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}

.testi-card:hover {
  border-color: var(--sand-dark);
  transform: translateY(-4px);
}

.testi-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--cream-4);
  position: absolute;
  top: 1rem; left: 1.8rem;
}

.testi-stars { color: var(--sand-dark); font-size: 0.75rem; margin-bottom: 1.2rem; }

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex; align-items: center; gap: 1rem;
}

.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sand-mid), var(--taupe-2));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 300;
  flex-shrink: 0;
  overflow: hidden;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-name {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--dark);
}

.testi-prop {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--text-light);
  margin-top: 0.15rem;
  letter-spacing: 0.08em;
}

/* ── DIVIDER BANNER ── */
.divider-banner {
  background: var(--sand-dark);
  padding: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.divider-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 30px,
    rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 31px
  );
}

.divider-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.divider-banner-sub {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(250,248,245,0.7);
  margin-bottom: 2.5rem;
  letter-spacing: 0.08em;
  position: relative;
}

.divider-banner .btn-primary {
  background: var(--white);
  color: var(--dark);
  position: relative;
}

.divider-banner .btn-primary:hover { background: var(--cream-1); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: var(--cream-1);
  padding: 5rem 5rem 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2.5rem;
}


.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--cream-1);
  margin-bottom: 1rem;
  display: block;
}

.footer-logo span { color: var(--sand-light); font-style: italic; }

.footer-tagline {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(237,232,224,0.55);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex; gap: 0.8rem;
}

.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(176,154,132,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--sand-light);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  text-decoration: none;
}

.social-btn:hover {
  border-color: var(--sand-light);
  background: rgba(176,154,132,0.12);
}

.footer-col-title {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand-light);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none; display: flex; flex-direction: column; gap: 0.75rem;
}

.footer-links a {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(237,232,224,0.55);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--sand-light); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
}

.footer-copy {
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(237,232,224,0.35);
  letter-spacing: 0.1em;
}

.footer-legal {
  display: flex; gap: 2rem;
}

.footer-legal a {
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(237,232,224,0.35);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover { color: var(--sand-light); }

/* ────────────────────────────────────────────────────────
   BOOKING PAGE
──────────────────────────────────────────────────────── */

#booking-page {
  display: none;
  min-height: 100vh;
  background: var(--cream-2);
  padding-top: 72px;
}

.booking-hero {
  background: var(--dark);
  padding: 5rem 5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
}

.booking-hero-left { padding-bottom: 4rem; }

.booking-eyebrow {
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand-light);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}

.booking-eyebrow::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--sand-light);
}

.booking-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--cream-1);
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

.booking-sub {
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(237,232,224,0.6);
  line-height: 1.7;
  max-width: 380px;
}

.booking-hero-right {
  background: linear-gradient(150deg, var(--sand-mid) 0%, var(--sand-dark) 100%);
  height: 260px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 25px,
    rgba(255,255,255,0.04) 25px, rgba(255,255,255,0.04) 26px
  );
}

.booking-trust {
  display: flex; gap: 2rem; flex-wrap: wrap;
  position: relative; z-index: 2;
  padding: 2rem;
}

.trust-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem;
}

.trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
}

.trust-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.65);
  text-align: center;
}

/* Main booking layout */
.booking-main {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  padding: 3rem 5rem 6rem;
  max-width: 1400px;
}

/* Property selector */
.booking-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.booking-label {
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 0.8rem;
  display: block;
}

.properties-select {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.prop-select-card {
  background: var(--white);
  border: 2px solid transparent;
  padding: 1.4rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.prop-select-card:hover { border-color: var(--sand-light); }
.prop-select-card.active { border-color: var(--sand-dark); }

.prop-select-card.active::after {
  content: '✓';
  position: absolute;
  top: 0.7rem; right: 0.9rem;
  font-size: 0.7rem;
  color: var(--sand-dark);
}

.prop-select-thumb {
  height: 100px;
  margin-bottom: 0.9rem;
  position: relative;
  overflow: hidden;
}

.pst-1 { background: linear-gradient(135deg, var(--sand-mid) 0%, var(--sand-dark) 100%); }
.pst-2 { background: linear-gradient(135deg, var(--cream-4) 0%, var(--taupe-2) 100%); }
.pst-3 { background: linear-gradient(135deg, var(--taupe-1) 0%, var(--sand-deep) 100%); }

.prop-select-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.prop-select-loc {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

/* Date + Guest picker */
.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.form-field {
  background: var(--white);
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
  cursor: pointer;
}

.form-field:hover { border-color: var(--sand-dark); }

.form-field-label {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 0.4rem;
  display: block;
}

.form-field input, .form-field select {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--dark);
  cursor: pointer;
}

.form-field select {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
}

/* Guest selector */
.guest-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.guest-row:last-child { border: none; }

.guest-type {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--dark);
}

.guest-type small {
  display: block;
  font-size: 0.65rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

.guest-counter {
  display: flex; align-items: center; gap: 1.2rem;
}

.guest-btn {
  width: 30px; height: 30px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--dark);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}

.guest-btn:hover {
  border-color: var(--sand-dark);
  color: var(--sand-dark);
}

.guest-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--dark);
  min-width: 20px;
  text-align: center;
}

/* Special Requests */
.special-req {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
  transition: border-color 0.3s;
}

.special-req:hover { border-color: var(--sand-dark); }

.special-req textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.6;
  resize: none;
  height: 90px;
}

.special-req textarea::placeholder { color: var(--text-light); }

/* Add-ons */
.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.addon-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.addon-item:hover { border-color: var(--sand-dark); }
.addon-item.selected { border-color: var(--sand-dark); background: rgba(158,138,116,0.06); }

.addon-checkbox {
  width: 18px; height: 18px;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  color: var(--sand-dark);
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.addon-item.selected .addon-checkbox { border-color: var(--sand-dark); }

.addon-info { flex: 1; }
.addon-name {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--dark);
}
.addon-price {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--text-light);
  margin-top: 0.15rem;
}

/* Sidebar */
.booking-sidebar {
  position: sticky;
  top: 90px;
  height: fit-content;
}

.summary-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.summary-prop-img {
  height: 180px;
  background: linear-gradient(150deg, var(--sand-mid) 0%, var(--sand-dark) 100%);
  position: relative;
  display: flex; align-items: flex-end;
  padding: 1.2rem;
}

.summary-prop-tag {
  background: rgba(250,248,245,0.92);
  padding: 0.3rem 0.8rem;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
}

.summary-body { padding: 1.8rem; }

.summary-prop-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.summary-prop-loc {
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}

.summary-line:last-child { border: none; }

.summary-line-label {
  font-size: 0.73rem;
  font-weight: 300;
  color: var(--text-light);
}

.summary-line-val {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--dark);
}

.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.8rem;
  background: var(--cream-1);
  border-top: 1px solid var(--border);
}

.summary-total-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
}

.summary-total-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--dark);
}

.booking-guarantee {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.guarantee-item {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.5;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.guarantee-item:last-child { border: none; }
.guarantee-icon { font-size: 0.9rem; flex-shrink: 0; margin-top: 0.05rem; }

.book-now-btn {
  width: 100%;
  background: var(--dark);
  color: var(--cream-1);
  border: none;
  padding: 1.3rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 0.8rem;
}

.book-now-btn:hover { background: var(--sand-dark); }

.book-pay-later {
  width: 100%;
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--border);
  padding: 1.1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.3s;
}

.book-pay-later:hover { border-color: var(--dark); }

.secure-note {
  text-align: center;
  font-size: 0.63rem;
  font-weight: 300;
  color: var(--text-light);
  margin-top: 0.8rem;
  letter-spacing: 0.08em;
}

/* ── PAGE TOGGLE ── */
.page { display: block; }
.page.hidden { display: none; }

/* ── INLINE STYLE REPLACEMENTS ── */

/* Hero section: remove default section padding */
#home.section-no-padding { padding: 0; }

/* Decorative diagonal-line overlay on hero image */
.hero-overlay-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 50px,
    rgba(255,255,255,0.04) 50px,
    rgba(255,255,255,0.04) 51px
  );
  z-index: 6;
}

/* Room SVG position within the hero decorative panel */
.room-svg-positioned {
  position: relative;
  z-index: 1;
}

/* Experience section: no padding (full-bleed grid) */
#experience.section-no-padding { padding: 0; }

/* Properties grid — single column (current listing) */
.properties-grid-single {
  grid-template-columns: 1fr;
}

/* Prop card link wrapper */
.prop-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Tall prop image for single featured listing */
.prop-img-tall {
  height: 450px;
  position: relative;
}

/* Full-cover property image inside card */
.prop-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* SVG/placeholder overlay inside prop-img */
.prop-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  position: relative;
  z-index: 0;
}

/* Amenities section-title: tighter bottom margin */
#amenities .section-title {
  margin-bottom: 0.8rem;
}

/* Testimonials aggregate rating block */
.testimonials-rating {
  text-align: right;
}

.testimonials-rating-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--dark);
}

.testimonials-rating-stars {
  color: var(--sand-dark);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.testimonials-rating-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Booking: step wrapper spacing */
.booking-step {
  margin-bottom: 3rem;
}

.booking-step-last {
  margin-bottom: 0;
}

/* Booking: step header row (number + title) */
.booking-step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.booking-step-header-sm {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* Numbered step badge */
.booking-step-num {
  width: 36px;
  height: 36px;
  background: var(--dark);
  color: var(--cream-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

/* Booking section title inline (removes default bottom margin) */
.booking-section-title-inline {
  margin: 0;
}

/* Guest section container */
.guest-section-container {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0 1.8rem;
}

/* Airbnb exclusive label in prop-select-card */
.prop-select-exclusive {
  margin-top: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--dark);
}

/* Book on Airbnb button link overrides */
.book-now-btn-link {
  text-align: center;
  text-decoration: none;
  display: block;
}

/* Post-button note ("Exclusive to Airbnb") */
.book-now-note {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-light);
}

/* CTA banner em — ensure italic (overrides any reset) */
.divider-banner-title em {
  font-style: italic;
}

/* Search bar: last field has no right border */
.search-field-no-border {
  border-right: none;
}

/* Booking guests step header: extra top spacing */
.booking-step-header-guests {
  margin-top: 2rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.7s ease forwards;
}

.fade-up-2 { animation-delay: 0.15s; opacity: 0; }
.fade-up-3 { animation-delay: 0.3s; opacity: 0; }
.fade-up-4 { animation-delay: 0.45s; opacity: 0; }

/* ── MOBILE (basic) ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  .nav-links { display: none; }
  #home { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .search-bar { flex-wrap: wrap; }
  .search-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  section { padding: 4rem 2rem; }
  .properties-grid { grid-template-columns: 1fr; }
  .prop-card:first-child { grid-column: span 1; }
  #experience { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  footer { padding: 4rem 2rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .booking-main { grid-template-columns: 1fr; }
  .booking-hero { grid-template-columns: 1fr; padding: 3rem 2rem 0; }
  .booking-hero-right { display: none; }
  .properties-select { grid-template-columns: 1fr; }
  .booking-main { padding: 2rem; }
}
