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

/* iOS Safari draws its own native rounded/shadowed chrome on form fields
   by default, which can visually fight with custom borders/padding and
   make inputs look like they don't fit their box. Reset that here so
   every input/textarea/select on the site renders using our own CSS. */
input, textarea, select, button{
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  background-color: transparent;
  font-family: inherit;
}

:root{
  --dark: #0d0d0d;
  --olive: #8a9a5b;
  --olive-light: #a3b276;
  --cream: #f5f2ea;
  --text-muted: #d8d5cc;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

html{
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body{
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

a{ text-decoration: none; color: inherit; }

/* ============ HEADER ============ */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled{
  background: rgba(13,13,13,0.92);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.header-inner{
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
}

.logo{
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.logo-text{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--cream);
}

.main-nav{
  display: flex;
  gap: 38px;
}

.main-nav a{
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.75);
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a:hover,
.main-nav a.active{
  color: #ffffff;
}

.main-nav a.active::after{
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--olive-light);
}

.btn-book{
  background: var(--olive);
  color: #1a1a1a;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 13px 26px;
  transition: background 0.25s ease;
}

.btn-book:hover{
  background: var(--olive-light);
}

.header-actions{
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  padding: 0;
}
.mobile-nav-toggle span{
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cream);
}

.mobile-nav-backdrop{
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 150;
}
.mobile-nav-backdrop.open{ display: block; }

/* ============ MOBILE BOTTOM NAVIGATION ============ */
.mobile-bottom-nav{
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 120;
  background: rgba(13,13,13,0.97);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 6px 0 max(6px, env(safe-area-inset-bottom));
  justify-content: space-between;
  align-items: stretch;
}

.mobile-bottom-nav a{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 2px;
  color: rgba(255,255,255,0.6);
}

.mobile-bottom-nav svg{
  width: 21px;
  height: 21px;
  stroke: currentColor;
}

.mobile-bottom-nav span{
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.mobile-bottom-nav a.active{
  color: var(--olive-light);
}

/* ============ HERO ============ */
.hero{
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides{
  position: absolute;
  inset: 0;
}

.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #0a0c0f; /* fallback while real photos are added */
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.hero-slide.active{
  opacity: 1;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.15) 35%,
    rgba(0,0,0,0.25) 65%,
    rgba(0,0,0,0.6) 100%
  );
  z-index: 1;
}

.hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-eyebrow{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}

.hero-title{
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 700;
  color: #fdfcf8;
  line-height: 1.1;
}

.hero-dots{
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-dots .dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-dots .dot.active{
  background: var(--olive-light);
  transform: scale(1.2);
}

/* ============ FEATURES ============ */
.features{
  background: #f5f2ea;
  color: #1a1a1a;
}

.features-inner{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-item{
  padding: 70px 40px;
  text-align: center;
  border-left: 1px solid rgba(0,0,0,0.08);
}

.feature-item:first-child{
  border-left: none;
}

.feature-icon{
  width: 62px;
  height: 62px;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--olive);
  color: var(--olive);
}

.feature-icon svg{
  width: 26px;
  height: 26px;
}

.feature-title{
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.feature-text{
  font-size: 14px;
  line-height: 1.7;
  color: #6b6f76;
}

/* ============ ABOUT ============ */
.about{
  background: #ffffff;
  color: #1a1a1a;
  padding: 110px 40px;
}

.about-inner{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text{
  max-width: 460px;
}

.section-eyebrow{
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--olive);
  margin-bottom: 18px;
}

.about-title{
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 26px;
}

.about-desc{
  font-size: 15px;
  line-height: 1.85;
  color: #6b6f76;
  margin-bottom: 30px;
}

.learn-more{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, gap 0.25s ease;
}

.learn-more:hover{
  border-color: var(--olive);
  gap: 10px;
}

.about-images{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
  height: 560px;
}

.about-img{
  background-size: cover;
  background-position: center;
  background-color: #e7e4da; /* fallback while real photos are added */
}

/* ============ ROOMS ============ */
.rooms{
  background: #f5f2ea;
  color: #1a1a1a;
  padding: 100px 40px 110px;
}

.rooms-inner{
  max-width: 1400px;
  margin: 0 auto;
}

.rooms-header{
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}

.section-eyebrow.center{
  text-align: center;
}

.rooms-title{
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
}

.rooms-desc{
  font-size: 15px;
  line-height: 1.8;
  color: #6b6f76;
}

.rooms-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.room-card{
  background: #ffffff;
}

.room-img{
  position: relative;
  height: 230px;
  background-size: cover;
  background-position: center;
  background-color: #d8d4c8; /* fallback while real photos are added */
}

.room-price{
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--olive);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 7px 12px;
}

.room-body{
  padding: 26px 26px 30px;
}

.room-category{
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--olive);
  margin-bottom: 10px;
}

.room-name{
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.room-desc{
  font-size: 14px;
  line-height: 1.75;
  color: #6b6f76;
  margin-bottom: 18px;
}

.room-meta{
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #6b6f76;
  margin-bottom: 24px;
}

.btn-outline{
  display: block;
  text-align: center;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 14px;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-outline:hover{
  background: #1a1a1a;
  color: #ffffff;
}

.rooms-footer{
  text-align: center;
  margin-top: 55px;
}

.btn-solid{
  display: inline-block;
  background: var(--olive);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 16px 34px;
  transition: background 0.25s ease;
}

.btn-solid:hover{
  background: #74844c;
}

/* ============ ACTIVITIES ============ */
.activities{
  background: #161616;
  color: #f5f2ea;
  padding: 100px 40px 110px;
}

.activities-inner{
  max-width: 1400px;
  margin: 0 auto;
}

.activities-header{
  max-width: 560px;
  margin-bottom: 60px;
}

.activities-title{
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: #ffffff;
  margin: 14px 0 20px;
}

.activities-desc{
  font-size: 15px;
  line-height: 1.8;
  color: #b9b6ad;
}

.activities-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.activity-img{
  height: 340px;
  background-size: cover;
  background-position: center;
  background-color: #232323; /* fallback while real photos are added */
  margin-bottom: 22px;
}

.activity-name{
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.activity-desc{
  font-size: 13.5px;
  line-height: 1.7;
  color: #b9b6ad;
}

/* ============ PAGE HERO (interior pages) ============ */
.page-hero{
  position: relative;
  height: 460px;
  background-size: cover;
  background-position: center;
  background-color: #12141a; /* fallback while real photo is added */
  display: flex;
  align-items: flex-end;
}

.page-hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.page-hero-content{
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px 70px;
}

.page-hero-title{
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: #fdfcf8;
  margin-top: 14px;
}

/* ============ POOL BANNER ============ */
.pool-banner{
  position: relative;
  min-height: 620px;
  background-size: cover;
  background-position: center;
  background-color: #12141a; /* fallback while real photo is added */
  display: flex;
  align-items: center;
}

.pool-banner-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.4) 45%,
    rgba(0,0,0,0.15) 100%
  );
}

.pool-banner-content{
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 0 100px;
}

.section-eyebrow.light{
  color: rgba(255,255,255,0.75);
}

.pool-banner-title{
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: #fdfcf8;
  margin: 16px 0 20px;
}

.pool-banner-desc{
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 34px;
}

.banner-btn{
  display: inline-block;
}

/* ============ RESTAURANT & BAR ============ */
.restaurant{
  background: #ffffff;
  color: #1a1a1a;
  padding: 110px 40px;
}

.restaurant-inner{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  align-items: center;
}

.restaurant-text{
  max-width: 460px;
}

.restaurant-title{
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 26px;
}

.restaurant-desc{
  font-size: 15px;
  line-height: 1.85;
  color: #6b6f76;
  margin-bottom: 30px;
}

.restaurant-slider{
  position: relative;
  height: 520px;
  overflow: hidden;
}

.restaurant-slides{
  position: relative;
  width: 100%;
  height: 100%;
}

.restaurant-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #e7e4da; /* fallback while real photos are added */
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.restaurant-slide.active{
  opacity: 1;
}

.slider-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255,255,255,0.85);
  color: #1a1a1a;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.25s ease;
}

.slider-arrow:hover{
  background: #ffffff;
}

.slider-prev{ left: 20px; }
.slider-next{ right: 20px; }

/* ============ TESTIMONIALS ============ */
.testimonials{
  background: #f5f2ea;
  color: #1a1a1a;
  padding: 100px 40px 110px;
}

.testimonials-inner{
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-header{
  text-align: center;
  margin-bottom: 55px;
}

.testimonials-title{
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  margin-top: 12px;
}

.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.testimonial-card{
  background: #ffffff;
  border-top: 3px solid var(--olive);
  padding: 40px 34px;
}

.stars{
  color: #c9a97a;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.quote-mark{
  font-family: var(--font-display);
  font-size: 40px;
  color: #d8bfa0;
  line-height: 1;
  margin-bottom: 6px;
}

.testimonial-text{
  font-size: 15px;
  font-style: italic;
  line-height: 1.8;
  color: #3d4149;
  margin-bottom: 28px;
}

.testimonial-footer{
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 22px;
}

.testimonial-avatar{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: #d8d4c8; /* fallback while real photos are added */
}

.testimonial-name{
  font-size: 14.5px;
  font-weight: 700;
  color: #1a1a1a;
}

.testimonial-date{
  font-size: 13px;
  color: #8a8d94;
}

/* ============ ARRIVAL / BOOKING ============ */
.arrival-booking{
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.arrival-panel{
  background: #33472e;
  color: #ffffff;
  padding: 90px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.arrival-title{
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 36px;
}

.arrival-list{
  list-style: none;
}

.arrival-list li{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 26px;
}

.check-icon{
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--olive-light);
  border-radius: 50%;
  color: var(--olive-light);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.booking-panel{
  background: #f5f2ea;
  color: #1a1a1a;
  padding: 90px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-title{
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 24px;
}

.booking-desc{
  font-size: 15px;
  line-height: 1.8;
  color: #4a4d54;
  margin-bottom: 20px;
  max-width: 480px;
}

.booking-contact{
  font-size: 14.5px;
  color: #6b6f76;
  margin-bottom: 34px;
}

.booking-contact a{
  color: var(--olive);
  font-weight: 600;
}

.btn-booking-solid{
  display: inline-block;
  background: #33472e;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 18px 34px;
  width: fit-content;
  transition: background 0.25s ease;
}

.btn-booking-solid:hover{
  background: #253420;
}

/* ============ LOCATION ============ */
.location{
  background: #ffffff;
  color: #1a1a1a;
  padding: 110px 40px;
}

.location-inner{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-text{
  max-width: 460px;
}

.location-title{
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 26px;
}

.location-desc{
  font-size: 15px;
  line-height: 1.85;
  color: #6b6f76;
  margin-bottom: 30px;
}

.location-map{
  position: relative;
  height: 480px;
}

.location-map iframe{
  display: block;
}

.map-open-btn{
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: #ffffff;
  color: #1a56d6;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.ext-icon{
  font-size: 13px;
}

/* ============ GET IN TOUCH ============ */
.get-in-touch{
  background: #33472e;
  color: #ffffff;
  padding: 60px 40px 70px;
  text-align: center;
}

.touch-inner{
  max-width: 1300px;
  margin: 0 auto;
}

.touch-title{
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 10px;
}

.touch-subtitle{
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}

.touch-form{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) repeat(2, minmax(0, 1fr)) auto;
  gap: 14px;
}

.touch-form input{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 16px;
}

.touch-form input::placeholder{
  color: rgba(255,255,255,0.6);
}

.touch-form input[type="date"]{
  color-scheme: dark;
}

.btn-send{
  background: #d8bfa0;
  color: #1a1a1a;
  border: none;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 16px 30px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.btn-send:hover{
  background: #e8d3b5;
}

/* ============ FOOTER ============ */
.site-footer{
  background: #141414;
  color: #b9b6ad;
}

.footer-inner{
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
}

.footer-logo{
  width: 46px;
  height: 46px;
  background: var(--olive);
  color: #1a1a1a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.footer-desc{
  font-size: 14px;
  line-height: 1.8;
  max-width: 340px;
}

.footer-heading{
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 22px;
}

.footer-links a,
.footer-contact p{
  display: block;
  font-size: 14.5px;
  line-height: 2.4;
  color: #b9b6ad;
}

.footer-contact a{
  color: #b9b6ad;
}

.footer-links a:hover,
.footer-contact a:hover{
  color: #ffffff;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 26px 20px;
  font-size: 13px;
  color: #7a7d84;
}

/* ============ OUR STORY ============ */
.our-story{
  background: #ffffff;
  color: #1a1a1a;
  padding: 110px 40px;
}

.story-inner{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text{
  max-width: 480px;
}

.story-title{
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 26px;
}

.story-para{
  font-size: 15px;
  line-height: 1.85;
  color: #6b6f76;
  margin-bottom: 20px;
}

.story-image{
  height: 640px;
  background-size: cover;
  background-position: center;
  background-color: #e7e4da; /* fallback while real photo is added */
}

/* ============ OUR VALUES ============ */
.values{
  background: #f5f2ea;
  color: #1a1a1a;
  padding: 100px 40px 110px;
}

.values-inner{
  max-width: 1400px;
  margin: 0 auto;
}

.values-header{
  text-align: center;
  margin-bottom: 55px;
}

.values-title{
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  margin-top: 12px;
}

.values-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.value-card{
  background: #ffffff;
  border-top: 3px solid var(--olive);
  padding: 44px 38px;
}

.value-icon{
  width: 40px;
  height: 40px;
  color: var(--olive);
  margin-bottom: 24px;
}

.value-icon svg{
  width: 100%;
  height: 100%;
}

.value-title{
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.value-desc{
  font-size: 14.5px;
  line-height: 1.8;
  color: #6b6f76;
}

/* ============ IMAGE STRIP ============ */
.image-strip{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 380px;
}

.strip-img{
  background-size: cover;
  background-position: center;
  background-color: #d8d4c8; /* fallback while real photos are added */
}

/* ============ CLOSING CTA ============ */
.closing-cta{
  background: #33472e;
  color: #ffffff;
  text-align: center;
  padding: 100px 40px;
}

.cta-title{
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: #fdfcf8;
  margin-bottom: 18px;
}

.cta-desc{
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-btn{
  display: inline-block;
}

/* ============ ROOM LISTING ============ */
.room-listing{
  background: #f5f2ea;
  color: #1a1a1a;
  padding: 70px 40px 110px;
}

.listing-inner{
  max-width: 1400px;
  margin: 0 auto;
}

.room-filters{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.filter-btn{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.15);
  color: #4a4d54;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.filter-btn:hover{
  border-color: var(--olive);
  color: var(--olive);
}

.filter-btn.active{
  background: #33472e;
  border-color: #33472e;
  color: #ffffff;
}

.room-listing-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.room-card-detailed{
  background: #ffffff;
}

.room-card-detailed.hidden{
  display: none;
}

.rcd-img{
  position: relative;
  height: 230px;
  background-size: cover;
  background-position: center;
  background-color: #d8d4c8; /* fallback while real photos are added */
}

.badge-discount{
  position: absolute;
  top: 16px;
  left: 0;
  background: #c0392b;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 6px 12px;
}

.badge-price{
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--olive);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 7px 12px;
}

.rcd-body{
  padding: 26px 26px 30px;
}

.rcd-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 12.5px;
  color: #8a8d94;
  margin: 14px 0;
}

.rcd-price{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  margin-bottom: 18px;
}

.price-old{
  font-size: 14px;
  color: #a9acb2;
  text-decoration: line-through;
}

.price-new{
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
}

.price-unit{
  font-size: 13px;
  color: #8a8d94;
}

.rcd-tags{
  margin-bottom: 12px;
}

.tag-inclusion{
  display: inline-block;
  background: #f0eee6;
  color: #4a4d54;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
}

.rcd-infobox{
  background: #f7f5ef;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.rcd-infobox p{
  font-size: 12.5px;
  line-height: 1.8;
  color: #6b6f76;
}

.room-card-detailed .btn-outline{
  margin-top: 16px;
}

/* ============ ACTIVITIES LIST (interior page) ============ */
.activities-list{
  background: #ffffff;
  padding: 90px 40px 110px;
}

.activities-list-inner{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.activity-list-card{
  background: #ffffff;
}

.alc-img{
  height: 340px;
  background-size: cover;
  background-position: center;
  background-color: #e7e4da; /* fallback while real photo is added */
}

.alc-body{
  background: #f5f2ea;
  padding: 32px 34px 36px;
}

.alc-title{
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.alc-desc{
  font-size: 14.5px;
  line-height: 1.8;
  color: #6b6f76;
  margin-bottom: 20px;
}

/* ============ ACTIVITIES CTA (Guest Favorites) ============ */
.activities-cta{
  background: #f5f2ea;
  padding: 100px 40px;
}

.activities-cta-inner{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  align-items: center;
}

.activities-cta-text{
  max-width: 460px;
}

.activities-cta-title{
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.25;
  color: #1a1a1a;
  margin: 16px 0 24px;
}

.activities-cta-desc{
  font-size: 15px;
  line-height: 1.85;
  color: #6b6f76;
  margin-bottom: 32px;
}

.activities-cta-images{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  height: 400px;
}

.cta-img{
  background-size: cover;
  background-position: center;
  background-color: #d8d4c8; /* fallback while real photo is added */
}

/* ============ GALLERY GRID ============ */
.gallery-section{
  background: #ffffff;
  padding: 90px 40px 110px;
}

.gallery-grid{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.gallery-tile{
  position: relative;
  height: 340px;
  background-size: cover;
  background-position: center;
  background-color: #e5ddc8; /* fallback while real photos are added */
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile-caption{
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--olive);
  letter-spacing: 0.3px;
}

/* ============ CONTACT PAGE ============ */
.contact-main{
  background: #ffffff;
  color: #1a1a1a;
  padding: 100px 40px;
}

.contact-main-inner{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

.contact-form-title,
.contact-details-title{
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 12px 0 34px;
}

.contact-form{
  display: flex;
  flex-direction: column;
}

.form-label{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #6b6f76;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea{
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #1a1a1a;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 14px 16px;
  margin-bottom: 22px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: #b0b3ba;
}

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

.form-group{
  display: flex;
  flex-direction: column;
}

.btn-send-msg{
  background: var(--olive);
  color: #ffffff;
  border: none;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 18px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.btn-send-msg:hover{
  background: #74844c;
}

.detail-item{
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
}

.detail-icon{
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: #f5f2ea;
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-icon svg{
  width: 22px;
  height: 22px;
}

.detail-label{
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.detail-text{
  font-size: 14.5px;
  line-height: 1.7;
  color: #6b6f76;
}

.detail-text a{
  color: #6b6f76;
}

.detail-text a:hover{
  color: var(--olive);
}

/* ============ CONTACT MAP (full width) ============ */
.contact-map-section{
  background: #ffffff;
}

.location-map.full-width{
  position: relative;
  height: 520px;
}

.location-map.full-width iframe{
  display: block;
}

/* ============ ROOM DETAIL MODAL ============ */
.rcd-img{
  cursor: pointer;
}

.room-modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 90px 20px 40px;
}

.room-modal-overlay.open{
  display: flex;
}

.room-modal{
  position: relative;
  background: #ffffff;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.room-modal-close{
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border: none;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.room-modal-slider{
  position: relative;
  height: 420px;
  overflow: hidden;
  background-color: #d8d4c8;
}

.room-modal-slides{
  position: relative;
  width: 100%;
  height: 100%;
}

.room-modal-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.room-modal-slide.active{
  opacity: 1;
}

.room-modal-price{
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  background: #33472e;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 18px;
}

.room-modal-old-price{
  position: absolute;
  bottom: 20px;
  left: 150px;
  z-index: 3;
  background: rgba(255,255,255,0.9);
  color: #a9acb2;
  text-decoration: line-through;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
}

.room-modal-body{
  padding: 40px 44px 46px;
  max-height: 340px;
  overflow-y: auto;
}

.room-modal-name{
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 10px 0 22px;
}

.room-modal-desc{
  font-size: 15px;
  line-height: 1.85;
  color: #6b6f76;
  margin-bottom: 30px;
}

.room-modal-amenities-label{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.room-modal-amenities{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.room-modal-amenities .tag-inclusion{
  margin: 0;
}

.room-modal-book{
  display: inline-block;
  width: auto;
  padding: 16px 40px;
}

/* ============ BOOKING WIZARD ============ */
.booking-wizard{
  background: #f5f2ea;
  min-height: 60vh;
}

.wizard-tabs{
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.wizard-tabs-inner{
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 22px 20px;
}

.wizard-tab{
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.4;
}

.wizard-tab.active,
.wizard-tab.completed{
  opacity: 1;
}

.tab-number{
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #d8d4c8;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wizard-tab.active .tab-number,
.wizard-tab.completed .tab-number{
  background: #33472e;
}

.tab-label{
  font-size: 13.5px;
  font-weight: 600;
  color: #1a1a1a;
}

.wizard-body{
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}

.wizard-step{
  display: none;
}

.wizard-step.active{
  display: block;
}

.step-title{
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.step-subtitle{
  font-size: 14.5px;
  color: #6b6f76;
  margin-bottom: 34px;
}

/* ---- Step 1: calendar ---- */
.step1-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.calendar-card{
  background: #ffffff;
  padding: 28px 30px 30px;
}

.calendar-mode-label{
  text-align: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--olive);
  margin-bottom: 18px;
}

.calendar-nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cal-nav-btn{
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #ffffff;
  color: #1a1a1a;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-nav-btn:hover{
  border-color: var(--olive);
  color: var(--olive);
}

.calendar-month-label{
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

.calendar-weekdays{
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-bottom: 8px;
}

.calendar-weekdays span{
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #a9acb2;
}

.calendar-days{
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  row-gap: 4px;
}

.cal-day{
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #1a1a1a;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}

.cal-day.empty{
  cursor: default;
}

.cal-day.past{
  color: #c8c6bd;
  cursor: not-allowed;
}

.cal-day:not(.empty):not(.past):hover{
  background: #f0eee6;
}

.cal-day.selected{
  background: #33472e;
  color: #ffffff;
  font-weight: 700;
}

.cal-day.in-range{
  background: #e3e8dd;
  color: #1a1a1a;
  border-radius: 0;
}

.calendar-legend{
  display: flex;
  gap: 20px;
  margin-top: 22px;
  font-size: 12px;
  color: #6b6f76;
}

.calendar-legend span{
  display: flex;
  align-items: center;
  gap: 6px;
}

.legend-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.legend-selected{ background: #33472e; }
.legend-range{ background: #e3e8dd; }
.legend-past{ background: #d8d4c8; }

.trip-details-card{
  background: #ffffff;
  padding: 30px 30px 34px;
}

.trip-details-title{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.trip-label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #a9acb2;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.trip-value{
  font-size: 15px;
  color: #1a1a1a;
  margin-bottom: 18px;
}

.trip-divider{
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 4px 0 20px;
}

.guest-select{
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: #1a1a1a;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 12px 36px 12px 14px;
  margin: 8px 0 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='1.6'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.btn-wizard-next{
  width: 100%;
  background: #b9c48f;
  color: #ffffff;
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 16px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.btn-wizard-next:not(:disabled){
  background: var(--olive);
}

.btn-wizard-next:not(:disabled):hover{
  background: #74844c;
}

.btn-wizard-next:disabled{
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-wizard-back{
  background: transparent;
  border: 1px solid rgba(0,0,0,0.2);
  color: #1a1a1a;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 15px 26px;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.btn-wizard-back:hover{
  border-color: var(--olive);
  color: var(--olive);
}

.wizard-actions{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.wizard-actions .btn-wizard-next{
  width: auto;
  padding: 15px 34px;
}

/* ---- Step 2: choose room ---- */
.step2-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 34px;
}

.step-subtitle-inline{
  font-size: 14px;
  color: #6b6f76;
  margin-top: 4px;
}

.change-dates-link{
  background: none;
  border: none;
  color: var(--olive);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  padding-top: 6px;
}

.change-dates-link:hover{
  text-decoration: underline;
}

.room-select-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.room-select-card{
  display: block;
  background: #ffffff;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.room-select-card input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.room-select-card:has(input:checked){
  border-color: var(--olive);
}

.rsc-img{
  position: relative;
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: #d8d4c8; /* fallback while real photos are added */
}

.rsc-check{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  color: #ffffff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.room-select-card:has(input:checked) .rsc-check{
  background: var(--olive);
  color: #ffffff;
  opacity: 1;
}

.rsc-body{
  padding: 18px 20px 22px;
}

.rsc-body .rcd-meta{
  margin: 10px 0 14px;
}

.rsc-price{
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 4px;
}

.rsc-price .price-old{
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  margin-right: 6px;
}

.rsc-price span:not(.price-old){
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: #8a8d94;
}

.rsc-total{
  font-size: 12.5px;
  color: #8a8d94;
  margin-top: 6px;
}

/* ---- Step 3: guest details ---- */
.guest-details-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  align-items: start;
}

.guest-details-form{
  display: flex;
  flex-direction: column;
}

.guest-details-form input,
.guest-details-form textarea{
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #1a1a1a;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 13px 15px;
  margin-bottom: 22px;
  resize: vertical;
}

.required-star{
  color: #c0392b;
}

.booking-summary-card{
  background: #ffffff;
  padding: 30px 30px 34px;
}

.bs-room-img{
  height: 170px;
  background-size: cover;
  background-position: center;
  background-color: #d8d4c8; /* fallback while real photos are added */
  margin-bottom: 18px;
}

.bs-room-name{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 6px 0 6px;
}

.bs-room-meta{
  font-size: 13px;
  color: #8a8d94;
}

.bs-divider{
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 20px 0;
}

.bs-row{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4a4d54;
  margin-bottom: 14px;
}

.bs-row:last-of-type{
  margin-bottom: 0;
}

.bs-icon{
  font-size: 14px;
  width: 20px;
  text-align: center;
}

.bs-total-row{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 15px;
  color: #1a1a1a;
}

.bs-total-row span:last-child{
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #33472e;
}

.bs-strike{
  text-decoration: line-through;
  color: #a9acb2;
  margin-right: 4px;
}

/* ---- Step 4: confirm & pay ---- */
.confirm-card{
  background: #ffffff;
  padding: 30px 32px 34px;
  margin-bottom: 22px;
}

.confirm-eyebrow{
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--olive);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.confirm-card-title{
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.reservation-details{
  display: flex;
  flex-direction: column;
}

.res-row{
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 10px 0;
}

.res-row span:first-child{
  color: #8a8d94;
}

.res-row span:last-child{
  color: #1a1a1a;
  font-weight: 600;
}

.res-divider{
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 18px 0;
}

.res-total-row{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 15px;
  color: #1a1a1a;
}

.res-total-row span:last-child{
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #33472e;
}

.payment-option-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.payment-choice-card{
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.payment-choice-card input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-choice-card:has(input:checked){
  border-color: var(--olive);
  border-width: 2px;
}

.pc-title{
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

.pc-desc{
  font-size: 13px;
  color: #8a8d94;
}

.amount-due-bar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f2ea;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 18px 24px;
  margin-bottom: 22px;
}

.amount-due-label{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--olive);
  text-transform: uppercase;
}

.amount-due-value{
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
}

.bank-detail-row{
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.bank-detail-row span:first-child{
  color: #8a8d94;
}

.bank-detail-row span:last-child{
  color: #1a1a1a;
  font-weight: 700;
}

.hold-note{
  background: #f5f2ea;
  font-size: 13px;
  line-height: 1.7;
  color: #6b6f76;
  padding: 16px 18px;
  margin-top: 20px;
}

.upload-label{
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.upload-input{
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
}

/* ---- Success / Receipt ---- */
.success-box{
  text-align: center;
  background: #ffffff;
  padding: 60px 40px 50px;
  max-width: 640px;
  margin: 0 auto 24px;
}

.success-icon-outline{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #2a5fb0;
  color: #2a5fb0;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.success-title-blue{
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #2a5fb0;
  margin-bottom: 16px;
}

.success-desc{
  font-size: 14px;
  line-height: 1.8;
  color: #6b6f76;
  margin-bottom: 26px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.success-ref-badge{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #f5f2ea;
  padding: 12px 24px;
  margin-bottom: 20px;
}

.success-ref-badge span{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #8a8d94;
}

.success-ref-badge strong{
  font-family: var(--font-display);
  font-size: 16px;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.success-sent-note{
  font-size: 13px;
  color: #8a8d94;
  margin-bottom: 30px;
}

.success-actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-success-download{
  background: #33472e;
  color: #ffffff;
  border: none;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 22px;
  cursor: pointer;
}

.btn-success-download:hover{
  background: #253420;
}

.btn-success-outline{
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid rgba(0,0,0,0.2);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 22px;
  cursor: pointer;
  display: inline-block;
}

.btn-success-outline:hover{
  border-color: var(--olive);
  color: var(--olive);
}

.need-assistance-bar{
  background: #33472e;
  color: #ffffff;
  text-align: center;
  padding: 30px 24px;
  margin-bottom: 24px;
}

.need-assistance-title{
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 14px;
}

.need-assistance-links{
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
}

.receipt-doc{
  background: #ffffff;
  max-width: 640px;
  margin: 0 auto;
  padding: 44px 46px 40px;
}

.receipt-header{
  text-align: center;
  margin-bottom: 22px;
}

.receipt-brand{
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--olive);
}

.receipt-tagline{
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a8d94;
  margin-top: 6px;
}

.receipt-title-row{
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 18px 0;
  margin-bottom: 22px;
}

.receipt-confirmation-label{
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--olive);
}

.receipt-date{
  font-size: 12.5px;
  color: #8a8d94;
  margin-top: 4px;
}

.receipt-ref-box{
  text-align: center;
  background: #f5f2ea;
  padding: 16px;
  margin-bottom: 26px;
}

.receipt-ref-label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #8a8d94;
  margin-bottom: 6px;
}

.receipt-ref-value{
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #33472e;
  letter-spacing: 1px;
}

.receipt-section-label{
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--olive);
  text-transform: uppercase;
  margin: 24px 0 10px;
}

.receipt-row{
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 7px 0;
}

.receipt-row span:first-child{
  color: #8a8d94;
}

.receipt-row span:last-child{
  color: #1a1a1a;
  font-weight: 600;
}

.receipt-total-row{
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 6px;
  padding-top: 12px;
  font-weight: 700;
}

.receipt-total-row span:last-child{
  font-family: var(--font-display);
  font-size: 17px;
  color: #33472e;
}

.receipt-requests-box{
  background: #f5f2ea;
  font-size: 13.5px;
  color: #6b6f76;
  padding: 14px 16px;
  margin-top: 4px;
}

.receipt-footer{
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 30px;
  padding-top: 20px;
  font-size: 12px;
  color: #a9acb2;
  line-height: 1.8;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px){
  body{ padding-bottom: 62px; }

  .main-nav{ display: none; }

  .main-nav.mobile-open{
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: rgba(13,13,13,0.98);
    padding: 90px 32px 32px;
    gap: 26px;
    z-index: 160;
    box-shadow: -8px 0 30px rgba(0,0,0,0.4);
  }
  .main-nav.mobile-open a{ font-size: 15px; }

  .mobile-nav-toggle{ display: flex; }

  .mobile-bottom-nav{ display: flex; }

  .hero-title{ font-size: 44px; }
  .hero-eyebrow{ font-size: 11px; letter-spacing: 2.5px; }
  .header-inner{ padding: 18px 20px; }
  .page-hero{ height: 340px; }
  .page-hero-title{ font-size: 34px; }

  .features-inner{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-item:nth-child(2n+1){
    border-left: none;
  }

  .feature-item:nth-child(1),
  .feature-item:nth-child(2){
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

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

@media (max-width: 520px){
  .features-inner{
    grid-template-columns: 1fr;
  }

  .feature-item{
    border-left: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .feature-item:last-child{
    border-bottom: none;
  }
}

@media (max-width: 900px){
  .about-inner{
    grid-template-columns: 1fr;
  }

  .about-text{
    max-width: 100%;
  }

  .about-title{
    font-size: 32px;
  }

  .about-images{
    height: 380px;
  }

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

  .rooms-title{
    font-size: 32px;
  }

  .activities-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activities-title{
    font-size: 34px;
  }
}

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

  .pool-banner-content{
    padding: 0 24px;
  }

  .pool-banner-title{
    font-size: 36px;
  }
}

@media (max-width: 900px){
  .restaurant-inner{
    grid-template-columns: 1fr;
  }

  .restaurant-text{
    max-width: 100%;
  }

  .restaurant-title{
    font-size: 32px;
  }

  .restaurant-slider{
    height: 360px;
  }
}

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

  .testimonials-title{
    font-size: 32px;
  }

  .arrival-booking{
    grid-template-columns: 1fr;
  }

  .arrival-panel,
  .booking-panel{
    padding: 60px 30px;
  }
}

@media (max-width: 900px){
  .location-inner{
    grid-template-columns: 1fr;
  }

  .location-text{
    max-width: 100%;
  }

  .location-title{
    font-size: 32px;
  }

  .location-map{
    height: 360px;
  }

  .location-map.full-width{
    height: 300px;
  }
}

@media (max-width: 900px){
  .touch-form{
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-inner{
    grid-template-columns: 1fr;
  }

  .story-text{
    max-width: 100%;
  }

  .story-title{
    font-size: 30px;
  }

  .story-image{
    height: 380px;
  }

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

  .values-title{
    font-size: 32px;
  }

  .image-strip{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
  }

  .strip-img{
    height: 220px;
  }

  .cta-title{
    font-size: 30px;
  }

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

  .room-filters{
    gap: 8px;
  }

  .filter-btn{
    padding: 10px 16px;
    font-size: 11.5px;
  }
}

@media (max-width: 900px){
  .activities-list-inner{
    grid-template-columns: 1fr;
  }

  .activities-cta-inner{
    grid-template-columns: 1fr;
  }

  .activities-cta-text{
    max-width: 100%;
  }

  .activities-cta-title{
    font-size: 30px;
  }

  .activities-cta-images{
    height: 300px;
  }
}

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

  .contact-main{
    padding: 60px 0;
  }

  .contact-main-inner{
    grid-template-columns: 1fr;
    gap: 50px;
    width: 300px;
    max-width: 300px;
    margin: 0 auto;
  }

  .contact-form-col,
  .contact-details-col,
  .contact-form{
    width: 300px;
    max-width: 300px;
  }

  .contact-form input,
  .contact-form textarea{
    width: 300px;
    max-width: 300px;
  }

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

@media (max-width: 640px){
  .room-modal-slider{
    height: 260px;
  }

  .room-modal-body{
    padding: 28px 24px 32px;
    max-height: 280px;
  }

  .room-modal-name{
    font-size: 26px;
  }

  .room-modal-old-price{
    left: 130px;
    font-size: 12.5px;
  }
}

@media (max-width: 900px){
  .wizard-tabs-inner{
    gap: 20px;
  }

  .tab-label{
    display: none;
  }

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

  .room-select-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step2-header{
    flex-direction: column;
    gap: 10px;
  }

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

  .payment-option-grid{
    grid-template-columns: 1fr;
  }

  .guest-details-grid{
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px){
  .room-select-grid{
    grid-template-columns: 1fr;
  }

  .wizard-actions{
    flex-direction: column-reverse;
  }

  .wizard-actions button{
    width: 100%;
  }
}

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

  .gallery-tile{
    height: 280px;
  }
}

@media (max-width: 520px){
  .touch-form{
    grid-template-columns: 1fr;
  }
}

/* ============ PRINT (used by the "Download PDF" receipt button) ============ */
@media print{
  body *{ visibility: hidden; }
  .receipt-doc, .receipt-doc *{ visibility: visible; }
  .receipt-doc{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
}

/* ============ FORM STATUS MESSAGES (contact form, get-in-touch form) ============ */
.form-status-message{
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.form-status-message.is-success{
  background: rgba(138,154,91,0.15);
  color: var(--olive-light);
  border: 1px solid rgba(138,154,91,0.35);
}
.form-status-message.is-error{
  background: rgba(192,86,74,0.12);
  color: #e28a80;
  border: 1px solid rgba(192,86,74,0.35);
}