:root {
  /* ── TAWI Watamu brand palette (gold + charcoal, elegant) ── */
  --maroon: #b7924f;        /* primary — headings, wordmark, key UI (gold) */
  --burgundy: #9c7a3c;      /* secondary — hover, secondary headings (deep gold) */
  --cream: #f4efe6;         /* warm off-white canvas */
  --cream-soft: #faf6ef;    /* lighter warm panel */
  --ink: #1c1b19;           /* body copy (charcoal) */
  --turquoise: #6a8f7e;     /* imagery accent */
  --sand: #e6d6b4;          /* imagery accent */
  --palm: #5c6b4f;          /* imagery accent */
  --coral: #d9a76b;         /* imagery accent */

  /* mapped onto the template's token names so the whole sheet recolors */
  --primary: #b7924f;
  --primary-hover: #9c7a3c;
  --accent: #b7924f;
  --cyan: #9c7a3c;
  --bg: #f4efe6;
  --bg-light: #faf6ef;
  --border: #e5ddce;
  --text: #1c1b19;
  --text-light: #7c7362;
  --white: #ffffff;
  --dark: #1c1b19;
  --container: 1320px;
  --gutter: 30px;
  --radius-pill: 30px;
  --radius-card: 14px;
  --shadow-card: 0 18px 50px -20px rgba(28, 27, 25, 0.20);
  --ease: cubic-bezier(0.65, 0.05, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

@media (max-width: 767px) { :root { --gutter: 20px; } }

body {
  font-family: "Poppins", "Albert Sans", "Calibri", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Hedvig Letters Serif", "Georgia", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: var(--accent);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 35px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn--primary { background: var(--primary); color: var(--white); border: 1px solid var(--primary); }
.btn--primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
.btn--outline { background: transparent; color: var(--accent); border: 1px solid var(--border); }
.btn--outline:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn--ghost { background: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, 0.4); }
.btn--ghost:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.section { padding: 120px 0; }

section, footer { scroll-margin-top: 90px; }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  color: var(--white);
  background: rgba(28, 27, 25, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.is-stuck {
  background: rgba(28, 27, 25, 0.95);
  box-shadow: 0 10px 40px -16px rgba(28, 27, 25, 0.5);
}

.site-header__bar {
  display: flex; align-items: center; gap: 26px;
  height: 74px;
}
.site-header__logo {
  flex: none;
  display: flex; align-items: center; gap: 12px;
  color: var(--white);
}
.site-header__logo-img { height: 44px; width: auto; display: block; }
@media (max-width: 600px) { .site-header__logo-img { height: 34px; } }

.site-header__burger {
  display: none;
  flex-direction: column; gap: 6px;
  width: 30px; background: none; border: 0; cursor: pointer; padding: 0;
  color: var(--white); margin-left: auto;
}
.site-header__burger span { width: 100%; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }

/* Desktop nav — pushed to the right, uppercase with an animated underline */
.site-nav { margin-left: auto; display: flex; align-items: center; }
.site-nav > ul { display: flex; align-items: center; gap: 30px; }
.site-nav > ul > li { position: relative; }
.site-nav a,
.site-nav__toggle {
  display: inline-block; padding: 6px 0;
  font-size: 12px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--white); background: none; border: 0; cursor: pointer; font-family: inherit;
  transition: color .3s var(--ease);
}
.site-nav a::after {
  content: ""; display: block; height: 1.5px; width: 0; margin-top: 5px;
  background: var(--primary); transition: width .32s var(--ease);
}
.site-nav a:hover, .site-nav a.is-active { color: #fff; }
.site-nav a:hover::after, .site-nav a.is-active::after { width: 100%; }

.site-header__actions {
  flex: none; display: flex; align-items: center; gap: 22px; margin-left: 30px;
}
.site-header__phone {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 500;
  transition: color 0.3s var(--ease);
}
.site-header__phone:hover { color: var(--primary); }
.site-header__cta { padding: 11px 24px; }

/* mobile-only block inside the nav panel */
.site-nav__cta-mobile { display: none; }

@media (max-width: 1024px) {
  .site-header__burger { display: flex; }
  .site-header__actions { display: none; }
  .site-nav {
    position: fixed; inset: 74px 0 auto 0; margin: 0;
    flex-direction: column; align-items: stretch;
    background: var(--dark);
    padding: 8px var(--gutter) 30px;
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
    z-index: 1000;
    min-height: calc(100dvh - 74px);
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav > ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .site-nav > ul > li { display: block; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .site-nav a { display: block; padding: 16px 2px; font-size: 14px; letter-spacing: 1.2px; }
  .site-nav a::after { display: none; }
  .site-nav__cta-mobile {
    display: flex; flex-direction: column; gap: 14px; margin-top: 26px;
  }
  .site-nav__cta-mobile .btn {
    width: 100%; display: inline-flex; justify-content: center;
    padding: 15px 24px; border-radius: var(--radius-pill);
    background: var(--primary); color: var(--dark); border: 1px solid var(--primary);
  }
  .site-nav__phone-mobile {
    text-align: center; font-size: 15px; font-weight: 600; letter-spacing: .5px;
    color: var(--primary);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(28, 27, 25, 0.34), rgba(28, 27, 25, 0.58)),
    url("assets/img/tawi/room-11.jpg") center/cover no-repeat;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 126px;
}
.hero__text { font-size: 18px; letter-spacing: 0.5px; margin-bottom: 18px; }
.hero__title {
  font-size: 72px; color: var(--white); letter-spacing: -0.01em; font-weight: 500;
  max-width: 18ch; margin-bottom: 22px;
}

/* Frosted booking search bar */
.hero-search {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-pill);
  padding: 8px;
}
.hero-step { display: flex; align-items: stretch; flex-wrap: wrap; }
.hero-step[hidden] { display: none; }
.hero-search__field {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 12px 22px;
  flex: 1 1 0;
  min-width: 0;
  box-sizing: border-box;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}
/* last field before the submit row — drop the trailing divider */
.hero-step > .hero-search__field:last-of-type { border-right: 0; }
.hero-search__field label {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.7); margin-bottom: 4px;
}
.hero-search__field input {
  border: 0; background: none; font: inherit; font-size: 16px;
  color: var(--white); width: 100%; cursor: pointer;
}
.hero-search__field input::placeholder { color: var(--white); opacity: 0.85; }
.hero-search__caret {
  position: absolute; right: 24px; bottom: 16px;
  font-size: 10px; color: rgba(255, 255, 255, 0.7); font-style: normal;
}
.hero-search__guests {
  border: 0; background: none; font: inherit; font-size: 16px;
  color: var(--white); cursor: pointer; padding: 0; text-align: left;
}

/* ── hero-date-btn: frosted-glass date trigger ────────────────── */
.hero-date-btn {
  background: none; border: none;
  font: inherit; font-size: 16px;
  color: var(--white); cursor: pointer;
  padding: 0; text-align: left;
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0.7; width: 100%;
}
.hero-date-btn::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(255,255,255,.75);
  flex-shrink: 0;
  margin-left: auto;
}
.hero-date-btn:hover     { opacity: 1; }
.hero-date-btn--active   { opacity: 1; font-weight: 600; }

/* ── hero-bk-pop: fixed calendar popup (escapes backdrop-filter) */
.hero-bk-pop {
  position: fixed; z-index: 9999;
  background: var(--white);
  border-radius: 16px; padding: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,.16);
  width: min(310px, calc(100vw - 32px));
  color: var(--accent);
}
.hero-bk-pop[hidden] { display: none; }
.guests-popover {
  position: absolute; top: calc(100% + 14px); left: 0;
  width: 260px; background: var(--white); color: var(--accent);
  border-radius: var(--radius-card); box-shadow: var(--shadow-card);
  padding: 18px 20px; z-index: 20;
}
.guests-popover[hidden] { display: none; }
.guests-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
}
.guests-row + .guests-row { border-top: 1px solid var(--border); }
.guests-row__label { font-size: 15px; }
.guests-stepper { display: flex; align-items: center; gap: 14px; }
.guests-stepper button {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white);
  color: var(--accent); cursor: pointer; font-size: 15px; line-height: 1;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.guests-stepper button:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.guests-stepper span { min-width: 16px; text-align: center; font-size: 15px; }
.hero-search__submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer;
  background: var(--primary); color: var(--white);
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 40px; border-radius: var(--radius-pill);
  transition: background 0.3s var(--ease);
  /* own full-width row beneath the fields so it is never clipped */
  flex: 1 1 100%; margin-top: 8px;
}
.hero-search__submit span { font-size: 16px; }
.hero-search__submit:hover { background: var(--primary-hover); }

/* Multi-step enquiry — step 2 (contact + message) */
.hero-step--enquiry { flex-direction: column; width: 700px; max-width: 86vw; }
.hero-enq-grid { display: grid; grid-template-columns: 1fr 1fr; }
.hero-enq-grid .hero-search__field { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.hero-enq-grid .hero-search__field input { cursor: text; }
.hero-enq-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 12px 14px 6px;
}
.hero-enq-actions .hero-search__submit { flex: 0 0 auto; margin-top: 0; padding: 15px 34px; border-radius: var(--radius-pill); }
.hero-enq-back {
  border: 0; background: none; cursor: pointer; font: inherit;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 10px 6px; transition: color 0.25s var(--ease);
}
.hero-enq-back:hover { color: var(--white); }

/* Multi-step enquiry — step 3 (thank you) */
.hero-step--done {
  flex-direction: column; align-items: center; text-align: center;
  gap: 6px; padding: 32px 36px; width: 560px; max-width: 86vw;
}
.hero-step--done strong { color: var(--white); font-size: 19px; font-weight: 600; }
.hero-step--done p { color: rgba(255, 255, 255, 0.82); font-size: 14px; line-height: 1.55; }
.hero-enq-error { color: #fca5a5; font-size: 13px; text-align: center; padding: 6px 12px 0; margin: 0; }

.hero__scroll {
  position: absolute; right: 48px; bottom: 40px;
  width: 48px; height: 48px; border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%; display: grid; place-items: center; font-size: 20px;
  color: #fff; background: rgba(28, 27, 25, 0.28); backdrop-filter: blur(4px);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.hero__scroll:hover { background: rgba(28, 27, 25, 0.5); transform: translateY(3px); }
@media (max-width: 1024px) {
  .hero__title { font-size: 64px; margin-bottom: 44px; }
}
@media (max-width: 767px) {
  .hero__title { font-size: 40px; margin-bottom: 36px; }
  .hero__text { font-size: 16px; }
  .hero-search { border-radius: 20px; width: 100%; max-width: 380px; }
  .hero-step { flex-direction: column; }
  .hero-search__field { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.22); min-width: 0; }
  .hero-search__submit { justify-content: center; padding: 18px; margin-top: 8px; border-radius: 16px; }
  .guests-popover { width: 100%; }
  .hero-step--enquiry, .hero-step--done { width: 100%; max-width: 380px; }
  .hero-enq-grid { grid-template-columns: 1fr; }
  .hero-enq-actions { flex-direction: column-reverse; gap: 4px; padding: 14px 8px 6px; }
  .hero-enq-actions .hero-search__submit { width: 100%; margin-top: 0; padding: 16px; border-radius: 16px; }
  .hero-enq-back { padding: 12px 6px; }
  .hero__scroll { display: none; }
}

.resort { background: var(--bg); }
.resort__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 90px; align-items: center; }

.resort__eyebrow { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.resort__badge {
  position: relative; display: grid; place-items: center;
  width: 62px; height: 62px; color: var(--accent);
}
.resort__badge em {
  position: absolute; font-style: normal;
  font-size: 15px; font-weight: 500;
}
.resort__kicker {
  font-size: 13px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--text-light);
}

.resort__title { font-size: 54px; margin-bottom: 30px; }
.resort__text { color: var(--text-light); margin-bottom: 44px; max-width: 36ch; }

.resort__cta { display: flex; align-items: center; }
.resort__line { flex: 1; height: 1px; background: var(--border); margin-left: 30px; }

.resort__card { background: var(--white); border-radius: 18px; padding: 14px 14px 0; }
.resort__photo { position: relative; }
.resort__photo img {
  width: 100%; aspect-ratio: 41 / 47; object-fit: cover;
  border-radius: 12px;
}
.resort__award {
  position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 50%);
  width: 132px; height: 132px; border-radius: 50%;
  background: var(--white); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.resort__award img { width: 100%; height: 100%; object-fit: contain; }
.resort__caption {
  text-align: center; color: var(--text-light); font-size: 17px;
  padding: 72px 20px 30px; line-height: 1.4;
}

.amenities {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 30px; margin-top: 96px;
}
.amenities li {
  display: flex; flex-direction: column; align-items: center;
  gap: 18px; text-align: center;
}
.amenities__icon { color: var(--accent); }
.amenities__label { font-size: 16px; color: var(--text); max-width: 16ch; }

@media (max-width: 1024px) {
  .resort__grid { gap: 50px; }
  .resort__title { font-size: 46px; }
  .amenities { grid-template-columns: repeat(3, 1fr); gap: 40px 30px; margin-top: 70px; }
}
@media (max-width: 767px) {
  .resort__grid { grid-template-columns: 1fr; gap: 40px; }
  .resort__title { font-size: 38px; }
  .resort__text { max-width: none; }
  .amenities { grid-template-columns: repeat(2, 1fr); }
}

.rooms__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
.rooms__title { font-size: 48px; }
.rooms__nav { display: flex; align-items: center; gap: 24px; }
.rooms__fraction { font-size: 16px; color: var(--text-light); letter-spacing: 1px; }
.rooms__fraction [data-rooms-current] { color: var(--accent); font-size: 22px; }
.slider__nav { display: flex; gap: 12px; }
.slider__btn {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid var(--border); background: transparent; cursor: pointer;
  font-size: 18px; color: var(--accent);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.slider__btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.slider__btn:disabled { opacity: 0.35; cursor: default; }
.slider__btn:disabled:hover { background: transparent; color: var(--accent); border-color: var(--border); }

.slider { overflow: hidden; }
.slider__track { display: flex; gap: 30px; transition: transform 0.5s var(--ease); }

/* Centered peek carousel */
.rooms-carousel { overflow: hidden; }
.rooms-carousel__track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}
.room-slide {
  flex: 0 0 min(70vw, 1000px);
  opacity: 0.45;
  transform: scale(0.9);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.room-slide.is-active { opacity: 1; transform: scale(1); }
.room-slide__img {
  position: relative;
  display: block;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.room-slide__img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.room-slide.is-active .room-slide__img:hover img { transform: scale(1.04); }
.room-slide__price {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  display: flex; flex-direction: column;
  background: var(--white); color: var(--accent);
  border-radius: var(--radius-card); padding: 12px 20px; line-height: 1.2;
}
.room-slide__price label {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-light);
}
.room-slide__price strong { font-size: 22px; font-weight: 400; }
.room-slide__name {
  position: absolute; left: 0; right: 0; bottom: 36px; z-index: 2;
  text-align: center; color: var(--white);
  font-size: 48px; letter-spacing: -1px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.room-slide.is-active .room-slide__name { opacity: 1; transform: translateY(0); }
.room-slide__meta {
  display: flex; justify-content: center; gap: 32px;
  margin-top: 24px; opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.room-slide.is-active .room-slide__meta { opacity: 1; }
.room-slide__meta li {
  position: relative; font-size: 15px; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 1px;
}
.room-slide__meta li + li::before {
  content: ""; position: absolute; left: -17px; top: 50%;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--primary); transform: translateY(-50%);
}
.rooms__foot { display: flex; justify-content: center; margin-top: 50px; }

@media (max-width: 767px) {
  .rooms__head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
  .rooms__nav { width: 100%; justify-content: space-between; }
  .rooms__title { font-size: 34px; }
  .room-slide { flex-basis: 86vw; }
  .room-slide__name { font-size: 30px; bottom: 22px; }
  .room-slide__meta { gap: 22px; margin-top: 18px; }
  .room-slide__meta li { font-size: 13px; }
}

.wellness { background: var(--bg-light); }
.wellness__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.wellness__radio { position: absolute; width: 1px; height: 1px; opacity: 0; }
.wellness__title { font-size: 46px; margin-bottom: 14px; }
.wellness__lead {
  color: var(--text-light); font-size: 17px; line-height: 1.6;
  max-width: 44ch; margin-bottom: 30px;
}

.wellness__tabs { display: grid; gap: 14px; margin-bottom: 34px; }
.wellness__tab {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 22px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-card);
  cursor: pointer;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.wellness__tab:hover { border-color: var(--cyan); transform: translateY(-2px); }
.wellness__tab-num {
  font-size: 14px; font-weight: 700; letter-spacing: 1px;
  color: var(--cyan); padding-top: 3px; flex-shrink: 0;
}
.wellness__tab-text { flex: 1; }
.wellness__tab-title {
  display: block; font-size: 20px; font-weight: 600; color: var(--accent);
}
.wellness__tab-desc {
  display: block; font-size: 15px; line-height: 1.55; color: var(--text-light);
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .4s var(--ease), opacity .3s var(--ease), margin-top .4s var(--ease);
}
.wellness__tab-mark {
  font-size: 22px; font-weight: 300; color: var(--cyan); line-height: 1;
  flex-shrink: 0; transition: transform .3s var(--ease);
}

.wellness__media {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-card); background: var(--accent);
}
.wellness__slide {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; transform: scale(1.04);
  transition: opacity .6s var(--ease), transform 6s var(--ease);
}
.wellness__slide img { width: 100%; height: 100%; object-fit: cover; }
.wellness__slide figcaption {
  position: absolute; left: 18px; bottom: 18px;
  display: flex; align-items: center; gap: 10px;
  padding: 9px 18px 9px 9px; border-radius: var(--radius-pill);
  background: rgba(28, 27, 25, 0.78);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: var(--white); font-size: 14px; font-weight: 600; letter-spacing: .3px;
}
.wellness__slide figcaption span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--cyan); color: var(--white); font-size: 12px;
}

/* active tab + matching slide — CSS-only, driven by the radios */
#w-wedding:checked ~ .wellness__media .wellness__slide[data-for="wedding"],
#w-dinner:checked ~ .wellness__media .wellness__slide[data-for="dinner"],
#w-animation:checked ~ .wellness__media .wellness__slide[data-for="animation"],
#w-kids:checked ~ .wellness__media .wellness__slide[data-for="kids"],
#w-aqua:checked ~ .wellness__media .wellness__slide[data-for="aqua"] {
  opacity: 1; transform: scale(1);
}
#w-wedding:checked ~ .wellness__body label[for="w-wedding"],
#w-dinner:checked ~ .wellness__body label[for="w-dinner"],
#w-animation:checked ~ .wellness__body label[for="w-animation"],
#w-kids:checked ~ .wellness__body label[for="w-kids"],
#w-aqua:checked ~ .wellness__body label[for="w-aqua"] {
  border-color: var(--cyan); box-shadow: var(--shadow-card);
}
#w-wedding:checked ~ .wellness__body label[for="w-wedding"] .wellness__tab-desc,
#w-dinner:checked ~ .wellness__body label[for="w-dinner"] .wellness__tab-desc,
#w-animation:checked ~ .wellness__body label[for="w-animation"] .wellness__tab-desc,
#w-kids:checked ~ .wellness__body label[for="w-kids"] .wellness__tab-desc,
#w-aqua:checked ~ .wellness__body label[for="w-aqua"] .wellness__tab-desc {
  max-height: 140px; opacity: 1; margin-top: 8px;
}
#w-wedding:checked ~ .wellness__body label[for="w-wedding"] .wellness__tab-mark,
#w-dinner:checked ~ .wellness__body label[for="w-dinner"] .wellness__tab-mark,
#w-animation:checked ~ .wellness__body label[for="w-animation"] .wellness__tab-mark,
#w-kids:checked ~ .wellness__body label[for="w-kids"] .wellness__tab-mark,
#w-aqua:checked ~ .wellness__body label[for="w-aqua"] .wellness__tab-mark {
  transform: rotate(45deg);
}
#w-wedding:focus-visible ~ .wellness__body label[for="w-wedding"],
#w-dinner:focus-visible ~ .wellness__body label[for="w-dinner"],
#w-animation:focus-visible ~ .wellness__body label[for="w-animation"],
#w-kids:focus-visible ~ .wellness__body label[for="w-kids"],
#w-aqua:focus-visible ~ .wellness__body label[for="w-aqua"] {
  outline: 2px solid var(--cyan); outline-offset: 2px;
}

@media (max-width: 767px) {
  .wellness__grid { grid-template-columns: 1fr; gap: 32px; }
  .wellness__title { font-size: 34px; }
  .wellness__media { order: -1; aspect-ratio: 4 / 3; }
}

.dining { background: var(--bg); }
.dining__head {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 60px; align-items: start; margin-bottom: 56px;
}
.dining__title { font-size: 54px; }
.dining__aside { padding-top: 80px; }
.dining__text { color: var(--text-light); margin-bottom: 18px; }
.dining__more {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 3px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.dining__more:hover { color: var(--primary); border-color: var(--primary); }
.dining__nav { margin-top: 36px; }

/* Restaurant card slider */
.dining-carousel { overflow: hidden; padding: 0 var(--gutter); }
.dining-carousel__track {
  display: flex; gap: 24px;
  max-width: var(--container); margin: 0 auto;
  transition: transform 0.6s var(--ease);
}
.dish-card {
  flex: 0 0 calc((100% - 48px) / 3.25);
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.dish-card img {
  width: 100%; aspect-ratio: 41 / 56; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.dish-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(10, 22, 28, 0) 35%, rgba(10, 22, 28, 0.85));
  transition: background 0.45s var(--ease);
}
.dish-card:hover img { transform: scale(1.05); }
.dish-card:hover::after { background: linear-gradient(rgba(10, 22, 28, 0.55), rgba(10, 22, 28, 0.85)); }
.dish-card__body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 34px 32px;
  color: var(--white);
}
.dish-card__cat {
  display: block;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 8px;
}
.dish-card__name { font-size: 27px; color: var(--white); }
.dish-card__reveal {
  display: grid; grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.45s var(--ease), opacity 0.35s var(--ease), margin-top 0.45s var(--ease);
  margin-top: 0;
}
.dish-card__reveal > * { overflow: hidden; }
.dish-card:hover .dish-card__reveal {
  grid-template-rows: 1fr; opacity: 1; margin-top: 16px;
}
.dish-card__reveal p { font-size: 15px; line-height: 1.55; color: rgba(255, 255, 255, 0.85); }
.dish-card__link {
  display: inline-block; margin-top: 16px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); border-bottom: 1px solid rgba(255, 255, 255, 0.6); padding-bottom: 3px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.dish-card__link:hover { color: var(--primary); border-color: var(--primary); }

@media (max-width: 1024px) {
  .dining__head { grid-template-columns: 1fr; gap: 28px; }
  .dining__aside { padding-top: 0; }
  .dining__title { font-size: 46px; }
  .dish-card { flex-basis: calc((100% - 24px) / 2.2); }
}
@media (max-width: 767px) {
  .dining__title { font-size: 38px; }
  /* Mobile: stacked card — image on top, text in a solid panel below */
  .dish-card {
    flex-basis: 82%;
    background: var(--white);
    border: 1px solid var(--border);
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  }
  .dish-card::after { display: none; }
  .dish-card img { aspect-ratio: 4 / 3; }
  .dish-card:hover img { transform: none; }
  .dish-card__body {
    position: static;
    color: var(--text);
    padding: 22px 22px 24px;
  }
  .dish-card__name { color: var(--accent); }
  .dish-card__reveal { grid-template-rows: 1fr; opacity: 1; margin-top: 12px; }
  .dish-card__reveal p { color: var(--text-light); }
  .dish-card__link { color: var(--accent); border-bottom-color: var(--border); }
  .dish-card:hover { background: var(--bg-light); border-color: var(--cyan); }
}

.stats { background: var(--accent); color: var(--white); padding: 84px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 30px; text-align: center; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat__value { display: flex; align-items: baseline; justify-content: center; }
.stat__num, .stat__suffix { font-size: 58px; font-weight: 600; line-height: 1; letter-spacing: -1.5px; }
.stat__suffix { color: var(--primary); }
.stat__label {
  margin-top: 12px; color: rgba(255, 255, 255, 0.72);
  font-size: 14px; letter-spacing: 0.5px;
}
@media (max-width: 1024px) {
  .stat__num, .stat__suffix { font-size: 48px; }
}
@media (max-width: 767px) {
  .stats { padding: 56px 0; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .stat__num, .stat__suffix { font-size: 40px; letter-spacing: -1px; }
  .stat__label { font-size: 13px; margin-top: 8px; }
}

.testimonials { background: var(--bg-light); }
.testimonials__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
.testimonials__title { font-size: 48px; margin-bottom: 16px; }
.testimonials__meta { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; color: var(--text-light); font-size: 15px; }
.testimonials__airbnb { display: inline-flex; align-items: center; gap: 7px; }
.testimonials__airbnb img { display: block; }
.testimonials__airbnb strong { color: var(--accent); font-weight: 600; }
.quote-card {
  flex: 0 0 calc((100% - 60px) / 3);
  background: var(--white); border-radius: var(--radius-card);
  padding: 40px; box-shadow: var(--shadow-card);
}
.quote-card__text { font-size: 18px; margin-bottom: 24px; }
.quote-card__author { display: flex; align-items: center; gap: 14px; }
.quote-card__author img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
@media (max-width: 1024px) { .quote-card { flex-basis: calc((100% - 30px) / 2); } }
@media (max-width: 767px)  { .quote-card { flex-basis: 100%; } .testimonials__title { font-size: 38px; } }

.footer { background: var(--accent); color: rgba(255, 255, 255, 0.72); }

.footer__main {
  display: grid; grid-template-columns: 1.7fr 1fr 1.35fr 1.5fr;
  gap: 56px; padding-top: 64px; padding-bottom: 56px;
}
.footer__col { min-width: 0; }
.footer__contact li { overflow-wrap: anywhere; }
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.footer__logo-img { height: 40px; width: auto; }
.footer__tagline { font-size: 15px; line-height: 1.7; max-width: 36ch; }
.footer__h {
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.footer__links, .footer__contact { display: grid; gap: 13px; }
.footer__links a { font-size: 15px; transition: color 0.3s var(--ease); }
.footer__links a:hover { color: var(--sand); }
.footer__contact li { display: flex; gap: 12px; font-size: 15px; line-height: 1.6; }
.footer__contact svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--primary); margin-top: 3px; }
.footer__contact a { transition: color 0.3s var(--ease); }
.footer__contact a:hover { color: var(--sand); }
.footer__sub { font-size: 15px; line-height: 1.6; margin-bottom: 18px; }
.footer__form {
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.footer__form input {
  flex: 1; min-width: 0; border: 0; background: none; font: inherit; font-size: 15px;
  color: var(--white); padding: 12px 4px;
}
.footer__form input::placeholder { color: rgba(255, 255, 255, 0.55); }
.footer__form button {
  border: 1px solid rgba(255,255,255,0.6); background: rgba(255,255,255,0.12);
  border-radius: 6px; cursor: pointer; padding: 6px 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--primary); padding: 12px 4px;
  transition: color 0.3s var(--ease);
}
.footer__form button:hover { background: rgba(255,255,255,0.25); border-color: var(--white); color: var(--white); }

.footer__nl-feedback {
  font-size: 13px; color: rgba(255,255,255,0.75);
  margin-top: 12px; line-height: 1.5;
}

.footer__social { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__social a {
  padding: 7px 15px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.footer__social a:hover { background: var(--sand); border-color: var(--sand); color: var(--maroon); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-top: 26px; padding-bottom: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 26px; }
.footer__legal a { font-size: 14px; transition: color 0.3s var(--ease); }
.footer__legal a:hover { color: var(--sand); }

@media (max-width: 1024px) {
  .footer__main { grid-template-columns: 1fr 1fr; gap: 44px; }
}
@media (max-width: 767px) {
  .footer__main { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ── Room page — guest reviews ──────────────────────────────── */
.room-reviews { margin-top: 60px; padding-top: 48px; border-top: 1px solid var(--border); }
.room-reviews__list { display: flex; flex-direction: column; gap: 28px; margin-top: 28px; }
.room-review {
  background: var(--cream-soft); border-radius: 12px; padding: 24px;
  border: 1px solid var(--border); margin: 0;
}
.room-review__text { font-size: 15px; line-height: 1.7; color: var(--text); margin: 0 0 16px; font-style: italic; }
.room-review__author { display: flex; align-items: center; gap: 12px; }
.room-review__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px;
}
.room-review__author > div { display: flex; flex-direction: column; gap: 2px; }
.room-review__author strong { font-size: 14px; font-weight: 600; }
.room-review__author span  { font-size: 12px; color: var(--text-light); }

/* ── Cross-sell tours on room page ──────────────────────────── */
.cross-tours__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.cross-tour-card {
  display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--radius-card);
  border: 1px solid var(--border); overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none; color: inherit;
}
.cross-tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.cross-tour-card__img { aspect-ratio: 16/9; overflow: hidden; }
.cross-tour-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.cross-tour-card:hover .cross-tour-card__img img { transform: scale(1.05); }
.cross-tour-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.cross-tour-card__tag  { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); }
.cross-tour-card__name { font-family: "Hedvig Letters Serif", Georgia, serif; font-size: 17px; font-weight: 500; color: var(--accent); margin: 0; }
.cross-tour-card__meta { font-size: 13px; color: var(--text-light); margin: 0; }
.cross-tour-card__cta  { font-size: 13px; font-weight: 600; color: var(--primary); margin-top: auto; padding-top: 8px; }
@media (max-width: 768px) {
  .cross-tours__grid { grid-template-columns: 1fr; }
}

/* ── Breadcrumb nav ─────────────────────────────────────────── */
.breadcrumb { padding: 14px 0; background: var(--cream-soft); border-bottom: 1px solid var(--border); }
.breadcrumb__list {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  list-style: none; font-size: 13px; color: var(--text-light);
}
.breadcrumb__list li { display: flex; align-items: center; gap: 6px; }
.breadcrumb__list li:not(:last-child)::after { content: "›"; opacity: 0.5; }
.breadcrumb__list a { color: var(--text-light); transition: color 0.2s; }
.breadcrumb__list a:hover { color: var(--primary); }
.breadcrumb__list [aria-current="page"] { color: var(--accent); font-weight: 500; }

/* ── 404 page ───────────────────────────────────────────────── */
.notfound {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 0;
}
.notfound__inner { text-align: center; max-width: 560px; }
.notfound__code {
  font-family: "Hedvig Letters Serif", Georgia, serif;
  font-size: 120px; font-weight: 500; line-height: 1;
  color: var(--border); margin: 0 0 16px;
}
.notfound__title { font-size: 36px; margin: 0 0 16px; }
.notfound__text  { color: var(--text-light); font-size: 17px; margin: 0 0 40px; }
.notfound__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
@media (max-width: 480px) {
  .notfound__code { font-size: 80px; }
  .notfound__actions .btn { width: 100%; justify-content: center; }
}

/* ── Legal pages (privacy.php, terms.php) ──────────────────── */
.legal-body {
  max-width: 780px; margin: 0 auto;
  font-size: 16px; line-height: 1.8; color: var(--text);
}
.legal-body h2 {
  font-size: 22px; margin: 48px 0 14px;
  color: var(--accent);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p  { margin-bottom: 16px; }
.legal-body ul { margin: 0 0 16px 24px; list-style: disc; }
.legal-body ul li { margin-bottom: 8px; }
.legal-body a  { color: var(--primary); text-decoration: underline; }
.legal-body a:hover { color: var(--primary-hover); }

/* ============ ROOM DETAIL PAGE ============ */
.site-header--solid { background: rgba(28, 27, 25, 0.95); border-bottom: 0; }
.site-header--solid.is-stuck { background: rgba(28, 27, 25, 0.95); }

.room-banner {
  position: relative;
  min-height: 300px;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0 var(--gutter) 32px;
  background:
    linear-gradient(rgba(28, 27, 25, 0.55), rgba(28, 27, 25, 0.65)),
    url("assets/img/tawi/room-x16.jpg") center/cover no-repeat;
}
.room-banner__crumb {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
}
.room-banner__crumb span { color: rgba(255, 255, 255, 0.45); }
.room-banner__crumb a:hover { color: var(--primary); }
.room-banner__crumb strong { color: var(--white); font-weight: 600; }

.room-intro { background: var(--bg-light); text-align: center; padding: 56px 0 40px; }
.room-intro__title { font-size: 54px; }
.room-intro__meta {
  display: flex; justify-content: center; gap: 48px; margin-top: 22px;
}
.room-intro__meta li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-light);
}
.room-intro__meta svg { color: var(--primary); }

.room-gallery {
  position: relative; overflow: hidden;
  background: var(--bg-light); padding: 70px 0;
}
.room-gallery__track {
  display: flex; gap: 24px;
  transition: transform 0.6s var(--ease);
}
.room-gallery__slide {
  flex: 0 0 min(46vw, 720px);
  opacity: 0.4; transform: scale(0.92);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.room-gallery__slide.is-active { opacity: 1; transform: scale(1); }
.room-gallery__slide img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  border-radius: var(--radius-card);
}
.room-gallery__arrow {
  position: absolute; top: calc(50% - 35px); z-index: 3;
  width: 52px; height: 52px; border-radius: 50%;
  border: 0; background: var(--white); color: var(--accent);
  cursor: pointer; font-size: 18px;
  box-shadow: var(--shadow-card);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.room-gallery__arrow:hover { background: var(--primary); color: var(--white); }
.room-gallery__arrow--prev { left: 30px; }
.room-gallery__arrow--next { right: 30px; }
.room-gallery__view {
  position: absolute; right: calc(50% - min(23vw, 360px) + 22px);
  bottom: 92px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--accent);
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 13px 22px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
}
.room-gallery__view:hover { background: var(--primary); color: var(--white); }
.room-gallery__slide img { cursor: zoom-in; }

/* Gallery lightbox slideshow */
body.gallery-lock { overflow: hidden; }
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 4vh 4vw;
  background: rgba(26, 16, 19, 0.93);
  opacity: 0; transition: opacity 0.25s var(--ease);
}
.gallery-lightbox.is-open { opacity: 1; }
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox__stage {
  margin: 0; display: flex; align-items: center; justify-content: center;
  max-width: 100%; max-height: 92vh;
}
.gallery-lightbox__stage img {
  max-width: 100%; max-height: 92vh; width: auto; height: auto;
  object-fit: contain; border-radius: var(--radius-card);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.gallery-lightbox__close {
  position: absolute; top: 22px; right: 26px; z-index: 3;
  width: 46px; height: 46px; border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, 0.12); color: #fff;
  font-size: 26px; line-height: 1; cursor: pointer;
  transition: background 0.25s var(--ease);
}
.gallery-lightbox__close:hover { background: var(--primary); }
.gallery-lightbox__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 54px; height: 54px; border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, 0.12); color: #fff;
  font-size: 20px; cursor: pointer;
  transition: background 0.25s var(--ease);
}
.gallery-lightbox__arrow:hover { background: var(--primary); }
.gallery-lightbox__arrow--prev { left: 26px; }
.gallery-lightbox__arrow--next { right: 26px; }
.gallery-lightbox__count {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85); font-size: 13px; letter-spacing: 1px;
}
@media (max-width: 768px) {
  .gallery-lightbox__arrow { width: 44px; height: 44px; }
  .gallery-lightbox__arrow--prev { left: 10px; }
  .gallery-lightbox__arrow--next { right: 10px; }
  .gallery-lightbox__close { top: 12px; right: 12px; }
}

.room-main {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 70px; align-items: start;
  padding-top: 90px; padding-bottom: 110px;
}
.room-h2 { font-size: 36px; margin-bottom: 28px; }
.room-content .room-h2:not(:first-child) { margin-top: 64px; }
.room-p { color: var(--text-light); margin-bottom: 18px; }

.amen-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
}
.amen-grid li {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
  font-size: 16px;
}
.amen-grid li svg { color: var(--primary); flex-shrink: 0; }

.rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.rule-h {
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.rule-list li {
  position: relative; padding-left: 20px; margin-bottom: 10px;
  color: var(--text-light); font-size: 15px;
}
.rule-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--primary);
}
.rule-block { margin-top: 34px; }
.rule-block p { color: var(--text-light); font-size: 15px; line-height: 1.6; }

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px;
  font-family: "Hedvig Letters Serif", Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--accent);
  cursor: pointer;
  list-style: none;
  transition: color .25s var(--ease);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--maroon); }
.faq-chevron {
  flex: 0 0 auto;
  color: var(--maroon);
  transition: transform .3s var(--ease);
}
.faq-item[open] > .faq-q .faq-chevron { transform: rotate(180deg); }
.faq-a {
  padding: 0 4px 24px;
  color: var(--text-light);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 70ch;
}
.faq-a p { margin: 0; }

.cal { max-width: 560px; }
.cal__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.cal__month { font-size: 22px; color: var(--accent); }
.cal__nav {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border); background: transparent;
  color: var(--accent); cursor: pointer; font-size: 16px;
}
.cal__nav:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.cal__grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 6px; }
.cal__grid--days span {
  text-align: center; font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--text-light);
  padding-bottom: 10px;
}
.cal-cell {
  aspect-ratio: 1; border: 1px solid var(--border); border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; font-size: 14px; color: var(--accent);
}
.cal-cell--muted { color: var(--text-light); opacity: 0.4; border-style: dashed; }
.cal-cell--empty { border: 0; }
.cal-cell small { font-size: 11px; color: var(--primary); font-weight: 500; }

.room-booking { position: sticky; top: 150px; }
.booking-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 30px 28px;
  box-shadow: var(--shadow-card);
}
.booking-card__price { font-size: 14px; color: var(--text-light); margin-bottom: 6px; }
.booking-card__price span { text-transform: uppercase; font-size: 11px; letter-spacing: 1px; }
.booking-card__price strong { font-size: 26px; font-weight: 400; color: var(--primary); }
.booking-card__title { font-size: 26px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.booking-field {
  position: relative; display: flex; flex-direction: column;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.booking-field > span {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 6px;
}
.booking-field > span small { font-weight: 500; color: var(--primary); letter-spacing: 0.5px; }
.booking-field input {
  border: 0; background: none; font: inherit; font-size: 15px;
  color: var(--accent); cursor: pointer;
}
.booking-field input::placeholder { color: var(--accent); opacity: 1; }
.booking-field i { position: absolute; right: 0; bottom: 16px; font-size: 10px; color: var(--text-light); font-style: normal; }
.booking-field--row { flex-direction: row; align-items: center; justify-content: space-between; }
.booking-field--row > span { margin-bottom: 0; }
.booking-step { display: flex; align-items: center; gap: 14px; }
.booking-step button {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white);
  color: var(--accent); cursor: pointer; font-size: 15px; line-height: 1;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.booking-step button:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.booking-step span { min-width: 16px; text-align: center; }
.booking-card__submit { width: 100%; justify-content: center; margin-top: 24px; }
.booking-card__submit span { font-size: 16px; }

.other-rooms { background: var(--bg-light); }
.other-rooms__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 10px; }
@media (max-width: 1024px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); } }
.other-room__img {
  position: relative; display: block;
  border-radius: var(--radius-card); overflow: hidden;
}
.other-room__img img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.other-room__img:hover img { transform: scale(1.05); }
.other-room__price {
  position: absolute; left: 20px; bottom: 20px;
  background: var(--white); border-radius: 8px;
  padding: 8px 14px; font-size: 12px; color: var(--text-light);
}
.other-room__price label { text-transform: uppercase; font-size: 10px; letter-spacing: 1px; }
.other-room__price strong { color: var(--primary); font-size: 15px; font-weight: 600; }
.other-room__name { font-size: 26px; margin: 20px 0 6px; }
.other-room__name a:hover { color: var(--primary); }
.other-room__meta {
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light);
}

/* ===== Airbnb-style villa listing card ===== */
/* Villa filters */
.villa-filters {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 18px 26px;
  padding: 22px 26px; margin-bottom: 8px;
  background: var(--cream-soft);
  border: 1px solid rgba(28, 27, 25, 0.08);
  border-radius: var(--radius-card);
}
.villa-filters__row { display: flex; flex-wrap: wrap; gap: 14px 18px; }
.villa-filters__field { display: flex; flex-direction: column; gap: 7px; }
.villa-filters__label {
  font-size: 11px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: rgba(28, 27, 25, 0.6);
}
.villa-filters__select { position: relative; display: inline-flex; align-items: center; }
.villa-filters__select select {
  appearance: none; -webkit-appearance: none;
  font-family: inherit; font-size: 14px; font-weight: 500; color: var(--maroon);
  padding: 11px 40px 11px 16px; min-width: 150px;
  background: var(--white); border: 1px solid rgba(28, 27, 25, 0.18);
  border-radius: var(--radius-pill); cursor: pointer;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.villa-filters__select select:hover { border-color: rgba(28, 27, 25, 0.4); }
.villa-filters__select select:focus-visible {
  outline: none; border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(28, 27, 25, 0.12);
}
.villa-filters__select svg {
  position: absolute; right: 15px; pointer-events: none; color: var(--maroon);
}
.villa-filters__meta { display: flex; align-items: center; gap: 18px; }
.villa-filters__count { font-size: 14px; font-weight: 500; color: var(--maroon); }
.villa-filters__count b { font-weight: 600; }
.villa-filters__clear {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit; font-size: 13px; font-weight: 500; letter-spacing: 0.3px;
  color: var(--maroon); background: none; border: 0; cursor: pointer; padding: 6px 4px;
  border-bottom: 1px solid transparent; transition: border-color 0.25s var(--ease);
}
.villa-filters__clear:hover { border-bottom-color: var(--maroon); }
.villa-filters__clear[hidden] { display: none; }

.villa-empty {
  text-align: center; padding: 56px 20px 24px; grid-column: 1 / -1;
}
.villa-empty__title {
  font-family: "Hedvig Letters Serif", Georgia, serif;
  font-size: 26px; color: var(--maroon); margin-bottom: 8px;
}
.villa-empty__text {
  font-size: 15px; color: var(--text-light); max-width: 44ch;
  margin: 0 auto 22px; line-height: 1.6;
}
.villa-card.is-hidden { display: none; }

@media (max-width: 700px) {
  .villa-filters { flex-direction: column; align-items: stretch; }
  .villa-filters__row { width: 100%; }
  .villa-filters__field { flex: 1 1 calc(50% - 9px); }
  .villa-filters__select, .villa-filters__select select { width: 100%; min-width: 0; }
  .villa-filters__meta { justify-content: space-between; }
}

.villa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 40px 24px;
  margin-top: 14px;
}
.villa-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 300px);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 10px;
  transition: transform 0.55s var(--ease);
}
.villa-rail::-webkit-scrollbar { display: none; }
.villa-rail .villa-card { scroll-snap-align: start; }

.villa-card { position: relative; display: flex; flex-direction: column; }
.villa-card__media {
  position: relative; display: block;
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 20 / 19; background: var(--cream);
}
.villa-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.villa-card:hover .villa-card__media img { transform: scale(1.05); }

.villa-card__save {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; display: grid; place-items: center;
  border: none; background: transparent; cursor: pointer; padding: 0; z-index: 2;
}
.villa-card__save svg {
  width: 25px; height: 25px;
  fill: rgba(26, 26, 26, 0.4); stroke: #fff; stroke-width: 2;
  transition: transform 0.2s var(--ease), fill 0.2s var(--ease);
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
}
.villa-card__save:hover svg { transform: scale(1.12); }
.villa-card__save.is-saved svg { fill: var(--maroon); }

.villa-card__tag {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: var(--white); color: var(--ink);
  font-size: 12px; font-weight: 600; letter-spacing: 0.2px;
  padding: 6px 12px; border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.villa-card__body { padding: 12px 2px 0; }
.villa-card__name {
  font-family: "Poppins", "Albert Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px; font-weight: 600; line-height: 1.3; letter-spacing: 0;
  margin: 0 0 3px; color: var(--ink);
}
.villa-card__name a { color: inherit; }
.villa-card__name a:hover { color: var(--maroon); }
.villa-card__meta { font-size: 14px; color: var(--text-light); line-height: 1.45; margin: 0; }
.villa-card__price { font-size: 15px; color: var(--ink); margin: 8px 0 0; }
.villa-card__price strong { font-weight: 700; }
.villa-card__price span { color: var(--text-light); font-weight: 400; }
.villa-card__avail { margin: 10px 0 0; }
.villa-card--dimmed { opacity: 0.5; }
.villa-card--dimmed .villa-card__media,
.villa-card--dimmed .villa-card__name a,
.villa-card--dimmed .villa-card__save { pointer-events: none; }

@media (max-width: 767px) {
  .villa-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .villa-rail { grid-auto-columns: 78vw; }
  .villa-card__name { font-size: 15px; }
}
@media (max-width: 460px) {
  .villa-grid { grid-template-columns: 1fr; gap: 30px; }
  .villa-rail { grid-auto-columns: 85vw; }
}

@media (max-width: 1024px) {
  .room-main { grid-template-columns: 1fr; gap: 50px; }
  .room-booking { position: static; }
  .room-intro__title { font-size: 46px; }
  .room-h2 { font-size: 32px; }
  .amen-grid { grid-template-columns: repeat(2, 1fr); column-gap: 36px; }
  .room-gallery__slide { flex-basis: 70vw; }
  .room-gallery__view { right: 30px; }
}
@media (max-width: 767px) {
  .room-intro__meta { gap: 22px; flex-wrap: wrap; }
  .room-intro__title { font-size: 36px; }
  .amen-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; gap: 28px; }
  .room-gallery__slide { flex-basis: 86vw; }
  .room-gallery__arrow--prev { left: 12px; }
  .room-gallery__arrow--next { right: 12px; }
  .other-rooms__grid { grid-template-columns: 1fr; }
}

/* ============ POLISH: ACCESSIBILITY & MOBILE ============ */
html { overflow-x: clip; }
body { overflow-x: hidden; }

/* Visible keyboard focus (mouse clicks unaffected) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Comfortable touch targets */
.site-header__burger { width: 44px; height: 44px; align-items: center; justify-content: center; }
.site-header__burger span { width: 26px; }
.cal__nav { min-width: 44px; min-height: 44px; }

@media (max-width: 767px) {
  .slider__btn { width: 46px; height: 46px; }
  .guests-stepper button,
  .booking-step button { width: 44px; height: 44px; font-size: 17px; }
  .hero-search__submit,
  .footer__form button,
  .booking-card__submit { min-height: 50px; }
  .site-nav a { padding: 14px 0; }
  .footer__social a { padding: 6px 0; }
  .room-gallery__arrow { width: 46px; height: 46px; }
  .section { padding: 70px 0; }
  .cal-cell { aspect-ratio: auto; min-height: 44px; padding: 4px 2px; }
  .cal-cell small { font-size: 10px; }
}

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

/* ============ TOUR / SAFARI PAGE ============ */
.room-banner--tours {
  background:
    linear-gradient(rgba(28, 27, 25, 0.55), rgba(28, 27, 25, 0.65)),
    url("assets/img/tawi/safari-leopard.jpg") center/cover no-repeat;
}
.tours-intro {
  max-width: 60ch; margin: 20px auto 0;
  color: var(--text-light); font-size: 17px;
}
.tour-section--alt { background: var(--bg-light); }
.tour-h2 { font-size: 40px; margin-bottom: 44px; }

.tour-grid { display: grid; gap: 30px; }
.tour-grid--feature { grid-template-columns: repeat(2, 1fr); }
.tour-grid--compact { grid-template-columns: repeat(4, 1fr); }

.tour-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); overflow: hidden;
}
.tour-card__media { display: block; overflow: hidden; }
.tour-card__media img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.tour-card__media:hover img { transform: scale(1.05); }
.tour-card__body { padding: 28px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.tour-card__tag {
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
}
.tour-card__name { font-size: 28px; margin-bottom: 12px; }
.tour-card__detail { color: var(--text-light); font-size: 15px; line-height: 1.6; margin-bottom: 18px; }
.tour-card__link {
  margin-top: auto;
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent);
  transition: color 0.3s var(--ease);
}
.tour-card__link span { color: var(--primary); }
.tour-card__link:hover { color: var(--primary); }

.exc-card { display: flex; flex-direction: column; }
.exc-card__media { display: block; border-radius: var(--radius-card); overflow: hidden; }
.exc-card__media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.exc-card__media:hover img { transform: scale(1.05); }
.exc-card__name { font-size: 20px; margin: 16px 0 6px; }
.exc-card__meta { color: var(--text-light); font-size: 14px; }

.tour-cta {
  background: var(--accent); color: var(--white);
  text-align: center; padding: 90px 0;
}
.tour-cta__title { font-size: 40px; color: var(--white); margin-bottom: 14px; }
.tour-cta__text {
  max-width: 52ch; margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.75); font-size: 16px;
}

@media (max-width: 1024px) {
  .tour-h2 { font-size: 34px; }
  .tour-grid--compact { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .tour-grid--feature { grid-template-columns: 1fr; }
  .tour-grid--compact { grid-template-columns: 1fr; }
  .tour-cta__title { font-size: 32px; }
}

/* ============ ABOUT / CONTACT / FACILITY PAGES ============ */
.facts {
  background: var(--bg-light);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.facts__grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  list-style: none; margin: 0; padding: 0;
}
.fact {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 7px; padding: 4px 14px;
}
.fact + .fact { border-left: 1px solid var(--border); }
.fact__icon { color: var(--primary); line-height: 0; }
.fact__icon svg { width: 24px; height: 24px; }
.fact__body { display: flex; flex-direction: column; }
.fact__num { font-size: 32px; font-weight: 700; line-height: 1; color: var(--accent); }
.fact__label {
  margin-top: 4px;
  font-size: 10.5px; letter-spacing: .8px; text-transform: uppercase;
  color: var(--text-light);
}

/* Facts live-activity ticker */
.facts__live {
  display: flex; align-items: center; gap: 10px;
  width: max-content; max-width: 100%; margin: 18px auto 0;
  padding: 7px 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}
.facts__live-dot {
  position: relative; flex-shrink: 0;
  width: 7px; height: 7px; border-radius: 50%; background: #2bb673;
}
.facts__live-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  animation: facts-pulse 2.2s var(--ease) infinite;
}
@keyframes facts-pulse {
  0% { box-shadow: 0 0 0 0 rgba(43, 182, 115, 0.5); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(43, 182, 115, 0); }
}
.facts__live-label {
  flex-shrink: 0; font-size: 10px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase; color: #2bb673;
}
.facts__live-feed {
  display: flex; align-items: center; gap: 8px; min-width: 0;
  transition: opacity .32s var(--ease);
}
.facts__live.is-fading .facts__live-feed { opacity: 0; }
.facts__live-icon { display: grid; place-items: center; flex-shrink: 0; color: var(--primary); }
.facts__live-icon svg { width: 15px; height: 15px; }
.facts__live-text {
  font-size: 12.5px; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.about-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: 70px; align-items: center;
}
.about-grid__media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-card);
}
.about-grid__body .room-p:last-of-type { margin-bottom: 28px; }

.tour-card__hours {
  margin-top: auto; padding-top: 4px;
  font-size: 12px !important; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--accent) !important;
}

.contact-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.contact-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 34px 28px; text-align: center;
}
.contact-card__icon {
  display: inline-grid; place-items: center;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--bg-light); color: var(--primary); margin-bottom: 18px;
}
.contact-card__title { font-size: 20px; margin-bottom: 10px; }
.contact-card p { color: var(--text-light); font-size: 15px; line-height: 1.6; }
.contact-card a:hover { color: var(--primary); }

.contact-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 50px; align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; }
.field span {
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 8px;
}
.field input, .field textarea {
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--white); font: inherit; font-size: 15px;
  color: var(--accent); padding: 13px 15px; resize: vertical;
  transition: border-color 0.25s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary); }
.contact-form .btn { align-self: flex-start; }
.contact-info { padding-top: 10px; }
.contact-info__title { font-size: 22px; margin-bottom: 24px; }
.contact-info__list { display: flex; flex-direction: column; gap: 18px; list-style: none; }
.contact-info__list li { display: flex; align-items: center; gap: 14px; font-size: 16px; color: var(--text); }
.contact-info__list svg { color: var(--primary); flex-shrink: 0; }
.contact-info__list a:hover { color: var(--primary); }

.contact-map {
  height: 100%; min-height: 420px;
  border-radius: var(--radius-card); overflow: hidden;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 767px) {
  .facts { padding: 24px 0; }
  .fact { padding: 4px 4px; gap: 5px; }
  .fact__icon svg { width: 19px; height: 19px; }
  .fact__num { font-size: 21px; }
  .fact__label { font-size: 8.5px; letter-spacing: .3px; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
}

/* ============ SUB-PAGE HERO ============ */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white);
  padding: 150px var(--gutter) 90px;
}
.page-hero__inner { max-width: 780px; }
.page-hero__eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--sand); margin-bottom: 18px;
}
.page-hero__title {
  font-size: 62px; color: var(--white); letter-spacing: -1.5px; margin-bottom: 18px;
}
.page-hero__text { font-size: 18px; color: rgba(255, 255, 255, 0.85); }
.page-hero__meta {
  display: flex; justify-content: center; gap: 42px; margin-top: 26px;
}
.page-hero__meta li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.page-hero__meta svg { color: var(--sand); }
@media (max-width: 1024px) { .page-hero__title { font-size: 54px; } }
@media (max-width: 767px) {
  .page-hero { min-height: 52vh; padding: 120px var(--gutter) 64px; }
  .page-hero__title { font-size: 38px; }
  .page-hero__meta { gap: 18px; flex-wrap: wrap; }
}

/* ============ TRUST SIGNALS & PARTNERS ============ */
.partners { background: var(--bg-light); text-align: center; padding: 110px 0 96px; }
.partners__title { font-size: 36px; margin-bottom: 12px; }
.partners__intro { color: var(--text-light); max-width: 52ch; margin: 0 auto 44px; }
.trust-row {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 18px;
  margin-bottom: 56px;
}
.trust-badge {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 15px 28px;
  font-size: 14px; font-weight: 500; color: var(--accent);
}
.trust-badge svg { color: var(--primary); flex-shrink: 0; }
.partners__label {
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 22px;
}
.partners__logos {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 940px; margin: 0 auto;
}
.partner-logo {
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 22px;
  aspect-ratio: 3 / 2;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.partner-logo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card); border-color: transparent;
}
.partner-logo img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}
.partner-logo:hover img { transform: scale(1.06); }
@media (max-width: 767px) {
  .partners { padding: 70px 0 60px; }
  .partners__title { font-size: 30px; }
  .partners__logos { grid-template-columns: repeat(2, 1fr); gap: 16px; width: 100%; }
  .partner-logo { min-width: 0; }
  .trust-row {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  }
  .trust-badge {
    flex-direction: column; justify-content: center; align-items: center;
    gap: 8px; padding: 18px 10px; min-height: 110px;
    border-radius: var(--radius-card); font-size: 13px; text-align: center;
  }
}

/* ============ TRAVEL AGENCY PAGE ============ */
.agency-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.agency-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 36px 32px;
}
.agency-card__icon {
  display: inline-grid; place-items: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--bg-light); color: var(--primary); margin-bottom: 20px;
}
.agency-card__title { font-size: 22px; margin-bottom: 10px; }
.agency-card__text { color: var(--text-light); font-size: 15px; line-height: 1.6; }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  counter-reset: step;
}
.step { position: relative; padding-top: 20px; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-size: 40px; font-weight: 300; color: var(--primary);
  display: block; margin-bottom: 12px;
}
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--text-light); font-size: 15px; line-height: 1.6; }
@media (max-width: 1024px) {
  .agency-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 36px 30px; }
}
@media (max-width: 767px) {
  .steps { grid-template-columns: 1fr; }
}

/* ============ RESORT PAGE ============ */
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: 40px; margin-top: 8px; }
.section-head p { color: var(--text-light); margin-top: 14px; font-size: 17px; line-height: 1.6; }

/* Full-screen image-slider hero */
.about-hero {
  position: relative; min-height: 92vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white);
}
.about-hero__slides { position: absolute; inset: 0; }
.about-hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.05);
  transition: opacity 1.2s var(--ease), transform 7s var(--ease);
}
.about-hero__slide.is-active { opacity: 1; transform: scale(1); }
.about-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(rgba(28, 27, 25, 0.2), rgba(28, 27, 25, 0.5));
}
.about-hero__content {
  position: relative; z-index: 2;
  padding: 120px var(--gutter) 0; max-width: 880px;
}
.about-hero__eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.about-hero__eyebrow::before {
  content: ""; display: inline-block; vertical-align: middle;
  width: 38px; height: 1px; background: var(--primary); margin-right: 14px;
}
.about-hero__eyebrow::after {
  content: ""; display: inline-block; vertical-align: middle;
  width: 38px; height: 1px; background: var(--primary); margin-left: 14px;
}
.about-hero__title {
  font-size: clamp(40px, 5.4vw, 76px); line-height: 1.08;
  color: var(--white); letter-spacing: -1.5px;
}
.about-hero__dots {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 10px;
}
.about-hero__dot {
  width: 10px; height: 10px; border-radius: 50%; padding: 0; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.7); background: transparent;
  transition: background 0.3s var(--ease);
}
.about-hero__dot.is-active { background: var(--white); }
@media (prefers-reduced-motion: reduce) {
  .about-hero__slide { transition: opacity 0.4s var(--ease); transform: none; }
  .about-hero__slide.is-active { transform: none; }
}

/* Feature cards — light, white-based */
.rfeature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.rfeature {
  display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-card); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.rfeature:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.rfeature__media { overflow: hidden; aspect-ratio: 3 / 2; }
.rfeature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.rfeature:hover .rfeature__media img { transform: scale(1.06); }
.rfeature__body { display: flex; flex-direction: column; gap: 7px; padding: 24px 26px 26px; flex: 1; }
.rfeature__tag {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--primary);
}
.rfeature__name { font-size: 21px; color: var(--accent); }
.rfeature__meta { font-size: 15px; line-height: 1.6; color: var(--text-light); }
.rfeature__cta {
  margin-top: 10px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); transition: gap .3s var(--ease), color .3s var(--ease);
}
.rfeature:hover .rfeature__cta { gap: 14px; color: var(--primary); }

.resort-gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 248px; gap: 16px;
}
.gallery-tile { overflow: hidden; border-radius: var(--radius-card); margin: 0; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-tile:hover img { transform: scale(1.07); }
.gallery-tile--wide { grid-column: span 2; }
.gallery-tile--tall { grid-row: span 2; }

.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--primary); }
.review-avatar {
  display: inline-grid; place-items: center; flex-shrink: 0;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  font-size: 16px; font-weight: 700; letter-spacing: .5px;
}

/* ── Our Team (about page) ──────────────────────────────────── */
.team-lead {
  display: grid; grid-template-columns: auto 1fr; align-items: center;
  gap: 30px; max-width: 780px; margin: 0 auto 16px;
  padding: 32px 36px; background: var(--bg-light);
  border: 1px solid var(--border); border-radius: var(--radius-card);
}
.team-lead__avatar {
  position: relative; overflow: hidden;
  display: inline-grid; place-items: center;
  width: 94px; height: 94px; border-radius: 50%;
  background: var(--maroon); color: var(--sand);
  font-family: "Hedvig Letters Serif", Georgia, serif;
  font-size: 40px; line-height: 1;
}
.team-lead__avatar img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: inherit;
}
.team-lead__role {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-light);
}
.team-lead__name { font-size: 28px; margin: 6px 0 10px; }
.team-lead .room-p { margin: 0; }

.team-group { margin-top: 56px; }
.team-group__label {
  display: flex; align-items: center; gap: 16px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--maroon);
  margin-bottom: 12px;
}
.team-group__label::after {
  content: ""; flex: 1; height: 1px; background: var(--border);
}
.team-group__intro {
  max-width: 64ch; margin: 0 0 26px;
  color: var(--text-light); font-size: 16px; line-height: 1.6;
}
.team-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}
.team-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 14px; padding: 32px 18px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card); border-color: transparent;
}
.team-card__avatar {
  position: relative; overflow: hidden;
  display: inline-grid; place-items: center;
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--cream); color: var(--maroon);
  font-family: "Hedvig Letters Serif", Georgia, serif;
  font-size: 27px; line-height: 1;
  border: 1px solid var(--border);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.team-card__avatar svg { width: 28px; height: 28px; }
.team-card__avatar img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: inherit;
}
.team-card:hover .team-card__avatar {
  background: var(--maroon); color: var(--sand); border-color: var(--maroon);
}
.team-card__name { font-size: 19px; }
.team-card__role { font-size: 13px; color: var(--text-light); letter-spacing: .3px; line-height: 1.4; }

/* ── Giving back to the community ───────────────────────────── */
.giveback { background: var(--maroon); color: var(--white); }
.giveback .eyebrow { color: var(--sand); }
.giveback .eyebrow::before { background: var(--sand); }
.giveback h2 { color: var(--white); font-size: 40px; margin-top: 8px; }
.giveback__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 58px; align-items: center;
}
.giveback__media { position: relative; }
.giveback__media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-card);
}
.giveback__lead {
  color: rgba(255, 255, 255, 0.82); font-size: 17px; line-height: 1.75;
  margin: 18px 0 30px; max-width: 56ch;
}
.giveback__points {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px;
}
.giveback__point { display: flex; gap: 13px; align-items: flex-start; }
.giveback__point svg { flex: 0 0 auto; color: var(--sand); margin-top: 2px; }
.giveback__point strong { display: block; font-weight: 600; font-size: 15px; color: var(--white); margin-bottom: 3px; }
.giveback__point span { color: rgba(255, 255, 255, 0.68); font-size: 13.5px; line-height: 1.5; }

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .giveback__grid { grid-template-columns: 1fr; gap: 38px; }
  .giveback h2 { font-size: 32px; }
}
@media (max-width: 767px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .team-lead { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 28px 22px; }
  .team-card { padding: 24px 14px; gap: 12px; }
  .team-card__avatar { width: 62px; height: 62px; font-size: 24px; }
  .giveback h2 { font-size: 27px; }
  .giveback__points { grid-template-columns: 1fr; gap: 18px; }
}

/* Footer live-activity widget */
.footer-activity {
  margin-top: 26px; padding: 13px 15px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}
.footer-activity__inner {
  display: flex; align-items: center; gap: 12px;
  transition: opacity .3s var(--ease);
}
.footer-activity.is-fading .footer-activity__inner { opacity: 0; }
.footer-activity__icon {
  position: relative; flex-shrink: 0;
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.09); color: var(--primary);
}
.footer-activity__icon svg { width: 19px; height: 19px; }
.footer-activity__icon::after {
  content: ""; position: absolute; top: 0; right: 0;
  width: 10px; height: 10px; border-radius: 50%;
  background: #2bb673; border: 2px solid var(--accent);
  animation: toast-pulse 2.2s var(--ease) infinite;
}
@keyframes toast-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43, 182, 115, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(43, 182, 115, 0); }
}
.footer-activity__text { min-width: 0; line-height: 1.4; }
.footer-activity__text strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--white); }
.footer-activity__text span { display: block; font-size: 12px; color: rgba(255, 255, 255, 0.6); }

@media (max-width: 767px) {
  .about-hero { min-height: 78vh; }
  .about-hero__content { padding: 100px var(--gutter) 0; }
}
@media (max-width: 1024px) {
  .rfeature-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .resort-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile--wide, .gallery-tile--tall { grid-column: auto; grid-row: auto; }
}
@media (max-width: 767px) {
  .rfeature-grid { grid-template-columns: 1fr; }
  .resort-gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .section-head h2 { font-size: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  .footer-activity__inner { transition: none; }
  .footer-activity__icon::after { animation: none; }
  .fact { transition: none; }
  .facts__live-feed { transition: none; }
  .facts__live-dot::after { animation: none; }
}

/* h2 headings — slightly smaller on mobile */
@media (max-width: 767px) {
  .resort__title { font-size: 34px; }
  .rooms__title { font-size: 30px; }
  .wellness__title { font-size: 30px; }
  .dining__title { font-size: 34px; }
  .testimonials__title { font-size: 34px; }
  .tour-h2 { font-size: 30px; }
  .room-h2 { font-size: 28px; }
  .tour-cta__title { font-size: 28px; }
  .partners__title { font-size: 26px; }
  .section-head h2 { font-size: 26px; }
}

/* ═══════════════════════════════════════════════════════════════
   AVAILABILITY CALENDAR WIDGET  (form_mode=availability)
   ═══════════════════════════════════════════════════════════════ */
.avail-wrap { font-size: 13px; }

.avail-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.avail-nav__label { font-weight: 600; font-size: 13px; }
.avail-nav__btn {
  background: none; border: none; cursor: pointer; font-size: 20px;
  color: #555; padding: 2px 8px; line-height: 1;
  border-radius: 4px; transition: background .15s;
}
.avail-nav__btn:hover { background: rgba(0,0,0,.06); }

.avail-day-names { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 10px; font-weight: 600; color: #888; margin-bottom: 4px; }

.avail-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 8px; }
.avail-cell {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 12px; border-radius: 4px; cursor: pointer;
  transition: background .12s, color .12s;
}
.avail-cell:hover:not(.avail-cell--blocked) { background: rgba(28,27,25,.12); }
.avail-cell--blank   { cursor: default; }
.avail-cell--blocked { color: #bbb; cursor: not-allowed; text-decoration: line-through; }
.avail-cell--start, .avail-cell--end { background: var(--primary); color: #fff; font-weight: 700; }
.avail-cell--range   { background: rgba(28,27,25,.15); }

.avail-hint { font-size: 11px; color: #888; text-align: center; min-height: 16px; margin-bottom: 8px; }
/* Rate-override date — small amber dot at bottom of cell */
.avail-cell--rate { position: relative; }
.avail-cell--rate::after {
  content: ''; position: absolute; bottom: 3px; left: 50%;
  transform: translateX(-50%); width: 4px; height: 4px;
  background: #f59e0b; border-radius: 50%; pointer-events: none;
}
/* Hover range preview while check-in is selected */
.avail-cell--hover { background: rgba(28,27,25,.08) !important; }
/* Price-varies notice in booking step 2 */
.avail-rate-notice {
  background: #fef9c3; border: 1px solid #f59e0b; border-radius: 6px;
  padding: 8px 12px; font-size: 12px; color: #92400e; margin-bottom: 12px;
}

.avail-summary {
  background: #f0f8fa; border-radius: 6px; padding: 8px 10px;
  margin-bottom: 12px; font-size: 12px; color: #1a2830;
  display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap;
}
.avail-change-btn {
  background: none; border: none; cursor: pointer; font-size: 11px;
  color: var(--primary); text-decoration: underline; white-space: nowrap;
}
.avail-hold-note { font-size: 10px; color: #aaa; text-align: center; margin-top: 6px; }

/* ── Search bar ──────────────────────────────────────────────── */
/* ── Rooms search strip — mirrors the homepage "Search Villas" pill ── */
.search-strip {
  position: relative;
  z-index: 5;
  margin-top: -70px;          /* float the bar up over the hero image */
  padding: 0 0 40px;
  background: transparent;
}
.search-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.search-strip__heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
  margin: 0;
  text-align: center;
}

.search-bar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 1040px;
  box-sizing: border-box;
  background: rgba(28, 10, 14, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  padding: 8px 10px;
  box-shadow: 0 18px 50px -22px rgba(0, 0, 0, 0.55);
}
.search-bar__group {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
}
.search-bar__field {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  flex: 1 1 0;
  min-width: 0;
  padding: 10px 22px;
  box-sizing: border-box;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.search-bar__group > .search-bar__field:last-of-type { border-right: 0; }
.search-bar__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.search-bar__date-btn,
.search-bar__guests-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 2px 0;
  background: none;
  border: 0;
  border-radius: 0;
  font: inherit;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  text-align: left;
  box-sizing: border-box;
  transition: color .15s;
}
.search-bar__caret { flex-shrink: 0; color: rgba(255, 255, 255, 0.7); pointer-events: none; }
.search-bar__date-btn:hover,
.search-bar__date-btn:focus,
.search-bar__guests-btn:hover,
.search-bar__guests-btn:focus { outline: none; color: #fff; box-shadow: none; }
.search-bar__date-btn:hover .search-bar__caret,
.search-bar__date-btn:focus .search-bar__caret { color: #fff; }
.search-bar__date-btn--active { color: #fff; font-weight: 600; }
.search-bar__guests-btn { color: #fff; }
.search-bar__field--guests { min-width: 0; }
.search-bar__guests-pop {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  color: var(--accent);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  z-index: 300;
  min-width: 220px;
}
.search-bar__submit {
  flex: 0 0 auto;
  justify-content: center;
  white-space: nowrap;
}

/* ── Availability badges on rooms.php search results ── */
.room-avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
}
.room-avail-badge--available { background: #dcfce7; color: #166534; }
.room-avail-badge--sold_out  { background: #fee2e2; color: #991b1b; }
.room-avail-badge--small     { background: #f3f4f6; color: #6b7280; }

/* ── For Sale — property status badges + listing tweaks ── */
.prop-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.prop-badge--for_sale    { background: #dcfce7; color: #166534; }
.prop-badge--under_offer { background: #fef3c7; color: #92400e; }
.prop-badge--sold        { background: #fee2e2; color: #991b1b; }

/* badge floating over the listing-card image */
.property-card .villa-card__media { position: relative; }
.property-card .prop-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .16);
}
.villa-card__loc {
  font-size: 13px;
  color: var(--text-light);
  margin: 0 0 2px;
}

/* compact enquiry form inside the property sidebar booking card */
.contact-form--compact .field { margin-bottom: 12px; }
.contact-form--compact button { width: 100%; justify-content: center; }

.other-room--dimmed { opacity: .55; pointer-events: none; }
.other-room--dimmed a { pointer-events: none; }

/* ── Mobile sticky action bar (single property page) ───────────── */
.prop-actionbar { display: none; }
@media (max-width: 767px) {
  .prop-actionbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
    display: flex; align-items: center; gap: 14px;
    padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -10px 34px -18px rgba(28, 27, 25, 0.55);
    transform: translateY(0); opacity: 1;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  }
  .prop-actionbar.is-hidden {
    transform: translateY(115%); opacity: 0; pointer-events: none;
  }
  .prop-actionbar__info {
    flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px;
  }
  .prop-actionbar__price {
    font-size: 17px; font-weight: 600; color: var(--maroon); line-height: 1.15;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .prop-actionbar__label {
    font-size: 10px; font-weight: 600; letter-spacing: 1.3px;
    text-transform: uppercase; color: var(--text-light);
  }
  .prop-actionbar__btn {
    position: relative; flex: 0 0 auto;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    height: 52px; padding: 0 26px; border-radius: var(--radius-pill);
    font-size: 15px; font-weight: 600; letter-spacing: 0.2px;
    transition: transform 0.2s var(--ease);
    -webkit-tap-highlight-color: transparent;
  }
  .prop-actionbar__btn:active { transform: scale(0.97); }
  .prop-actionbar__btn svg { flex: 0 0 auto; }
  .prop-actionbar__enquire { background: var(--maroon); color: var(--white); }
  .prop-actionbar__chev { font-size: 18px; line-height: 1; margin-left: -2px; }
  /* Pulse ring — transform + opacity only (GPU-friendly ripple) */
  .prop-actionbar__pulse {
    position: absolute; inset: 0; z-index: -1;
    border-radius: inherit; border: 2px solid var(--maroon);
    animation: propPulse 2.4s var(--ease) infinite;
  }
}
@keyframes propPulse {
  0%   { transform: scale(1);    opacity: 0.6; }
  70%  { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .prop-actionbar__pulse { animation: none; display: none; }
  .prop-actionbar { transition: none; }
}

.search-results-bar {
  background: #e8f4f6;
  border-bottom: 1px solid #b2d8de;
  padding: 11px 0;
}
.search-results-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.search-results-bar__text { font-size: 13px; color: #1a2830; margin: 0; }
.search-results-bar__clear { font-size: 13px; color: var(--primary); text-decoration: none; white-space: nowrap; }
.search-results-bar__clear:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .search-strip { margin-top: 0; padding: 22px 0; }
  .search-strip__heading { color: #374151; text-shadow: none; }
  .search-bar { flex-wrap: wrap; gap: 10px; background: rgba(28, 27, 25, 0.92); }
  .search-bar__group { flex-direction: column; flex: 1 1 100%; }
  .search-bar__field {
    flex: 1 1 auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .search-bar__group > .search-bar__field:last-of-type { border-bottom: 0; }
  .search-bar__submit { flex: 1 1 100%; }
  .search-bar__guests-pop { min-width: 0; right: 0; left: 0; }
  .search-results-bar__inner { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ═══════════════════════════════════════════════════════════════
   AVAILABILITY FORM — compact pill-style booking widget
   (form_mode = availability, replaces .avail-* legacy widget)
   ═══════════════════════════════════════════════════════════════ */
.bk-avail { font-size: 14px; color: var(--accent); }
.bk-form  { display: flex; flex-direction: column; gap: 10px; position: relative; }

/* ── Custom select (cs-wrap) — replaces native <select> ─────────────────── */
.cs-wrap { position: relative; display: inline-block; width: 100%; }
.cs-trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  width: 100%; background: #fff; border: 1px solid var(--border, #d1d5db); border-radius: 8px;
  padding: 9px 12px; font: inherit; font-size: 14px; color: var(--dark, #111827);
  cursor: pointer; text-align: left; box-sizing: border-box; white-space: nowrap;
  transition: border-color .15s, box-shadow .15s;
}
.cs-trigger:focus,
.cs-trigger[aria-expanded="true"] {
  outline: none; border-color: var(--maroon, #47121d);
  box-shadow: 0 0 0 3px rgba(28,27,25,.12);
}
.cs-trigger__val { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cs-caret { flex-shrink: 0; color: #6b7280; display: flex; transition: transform .2s; }
.cs-trigger[aria-expanded="true"] .cs-caret { transform: rotate(180deg); }
.cs-menu {
  position: absolute; z-index: 500; left: 0; right: 0; top: calc(100% + 4px);
  background: #fff; border: 1px solid var(--border, #e5e7eb); border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12); max-height: 280px; overflow-y: auto;
  padding: 4px; list-style: none; margin: 0;
}
.cs-menu[hidden] { display: none; }
.cs-item {
  display: block; width: 100%; border-radius: 6px; padding: 9px 12px;
  font: inherit; font-size: 14px; color: #374151; text-align: left;
  cursor: pointer; white-space: nowrap; transition: background .1s, color .1s;
}
.cs-item:hover { background: rgba(28,27,25,.06); color: var(--maroon, #47121d); }
.cs-item--active { background: rgba(28,27,25,.1); color: var(--maroon, #47121d); font-weight: 600; }

/* Make pills fill their wrapper when used in a 2-col row on tours.php */
.tours-pills > div { display: flex; flex-direction: column; }
.tours-pills .bk-pill { flex: 1; }
.tours-pills .bk-pop { top: calc(100% + 6px); left: 0; }

/* ── Pills (date + guests triggers) ─────────────────────────── */
.bk-pill {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--accent);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .12s var(--ease);
}
.bk-pill:hover    { border-color: var(--primary); }
.bk-pill:focus    { outline: none; }
.bk-pill[aria-expanded="true"] {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(28,27,25,.12);
}
.bk-pill__label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--text-light);
}
.bk-pill__value {
  font-size: 15px; font-weight: 500; color: var(--accent);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-align: right;
}
.bk-pill__value.is-empty { color: var(--text-light); font-weight: 400; }
.bk-pill__chev {
  color: var(--text-light);
  transition: transform .2s var(--ease);
}
.bk-pill[aria-expanded="true"] .bk-pill__chev { transform: rotate(180deg); color: var(--primary); }

/* ── Popover container ──────────────────────────────────────── */
.bk-pop {
  position: absolute;
  left: 0; right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(15, 30, 45, .14), 0 4px 12px rgba(15, 30, 45, .06);
  padding: 16px;
  z-index: 60;
  margin-top: 6px;
  animation: bkPopIn .18s var(--ease);
}
.bk-pop[hidden] { display: none !important; }
.bk-pop--narrow { left: auto; min-width: 280px; }

@keyframes bkPopIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Calendar inside dates popover ──────────────────────────── */
.bk-cal__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.bk-cal__title { font-weight: 600; font-size: 14px; color: var(--accent); }
.bk-cal__nav {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white);
  color: var(--accent); cursor: pointer;
  font-size: 18px; line-height: 1; padding: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s, border-color .15s;
}
.bk-cal__nav:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.bk-cal__dow {
  display: grid; grid-template-columns: repeat(7, 1fr);
  text-align: center; font-size: 11px; font-weight: 600;
  color: var(--text-light); letter-spacing: .5px;
  margin-bottom: 6px;
}
.bk-cal__grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.bk-cell {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; border-radius: 8px;
  cursor: pointer;
  color: var(--accent);
  transition: background .12s, color .12s, transform .08s;
}
.bk-cell:hover:not(.bk-cell--blocked):not(.bk-cell--blank) {
  background: rgba(28, 27, 25, .08);
}
.bk-cell--blank   { cursor: default; }
.bk-cell--blocked {
  color: var(--text-light); cursor: not-allowed;
  text-decoration: line-through; opacity: .5;
}
.bk-cell--start, .bk-cell--end {
  background: var(--primary); color: var(--white);
  font-weight: 700;
}
.bk-cell--start { border-radius: 8px 4px 4px 8px; }
.bk-cell--end   { border-radius: 4px 8px 8px 4px; }
.bk-cell--in-range {
  background: rgba(28, 27, 25, .12);
  border-radius: 0;
}
.bk-cell--hover-range {
  background: rgba(28, 27, 25, .06);
  border-radius: 0;
}

/* ── Popover footer ──────────────────────────────────────────── */
.bk-pop__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--border);
  gap: 12px;
}
.bk-pop__footer--end { justify-content: flex-end; }
.bk-pop__hint { font-size: 12px; color: var(--text-light); }
.bk-pop__cta {
  background: var(--primary); color: var(--white);
  border: 0; border-radius: 8px;
  padding: 9px 18px;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: background .15s, transform .08s;
}
.bk-pop__cta:hover { background: var(--accent); }
.bk-pop__cta:active { transform: scale(.98); }

/* ── dp-btn: datepicker trigger button ───────────────────────── */
.dp-btn {
  display: block; width: 100%; background: none; border: none;
  color: inherit; font: inherit; cursor: pointer; text-align: left;
  padding: 0;
}
.booking-field .dp-btn,
.hero-search__field .dp-btn {
  font-size: 14px; color: var(--accent); width: 100%;
  border: 1px solid #d1d5db; border-radius: 8px;
  padding: 10px 14px;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.booking-field .dp-btn:focus,
.hero-search__field .dp-btn:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(28, 27, 25, .15);
}
.booking-field .dp-btn:not(.dp-btn--active),
.hero-search__field .dp-btn:not(.dp-btn--active) { color: #9ca3af; }

/* ── dp-pop: floating popup (fixed, repositions to trigger) ──── */
.dp-pop {
  position: fixed; z-index: 9999; background: var(--white);
  border-radius: 16px; padding: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,.16);
  width: min(310px, calc(100vw - 32px));
  color: var(--accent);
}
.dp-pop[hidden] { display: none; }

/* ── Guests stepper rows ─────────────────────────────────────── */
.bk-stepper-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; gap: 14px;
}
.bk-stepper-row + .bk-stepper-row { border-top: 1px solid var(--border); }
.bk-stepper-row__label strong { display: block; font-size: 14px; color: var(--accent); }
.bk-stepper-row__label small  { display: block; font-size: 12px; color: var(--text-light); margin-top: 1px; }

.bk-stepper { display: inline-flex; align-items: center; gap: 12px; }
.bk-stepper button {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border); background: var(--white);
  color: var(--accent);
  cursor: pointer; font-size: 16px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s, border-color .15s, opacity .15s;
}
.bk-stepper button:hover:not(:disabled) {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}
.bk-stepper button:disabled { opacity: .35; cursor: not-allowed; }
.bk-stepper span { min-width: 18px; text-align: center; font-weight: 600; }

/* ── Total summary card ──────────────────────────────────────── */
.bk-total {
  background: linear-gradient(135deg, rgba(28,27,25,.06), rgba(28,27,25,.02));
  border: 1px solid rgba(28,27,25,.18);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 4px;
}
.bk-total__row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
}
.bk-total__label { font-size: 13px; color: var(--accent); font-weight: 500; }
.bk-total__price { font-size: 22px; font-weight: 600; color: var(--primary); letter-spacing: -.3px; }
.bk-total__hint  { font-size: 11px; color: var(--text-light); margin-top: 4px; }

/* ── Contact fields ──────────────────────────────────────────── */
.bk-fields { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.bk-field  { display: flex; flex-direction: column; gap: 6px; }
.bk-field > span {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--text-light);
}
.bk-field > span small {
  font-size: 10px; font-weight: 500; letter-spacing: .5px;
  text-transform: none; color: var(--text-light); margin-left: 4px;
}
.bk-field input,
.bk-field textarea {
  font: inherit; font-size: 14px;
  color: var(--accent);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 12px;
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.bk-field input::placeholder,
.bk-field textarea::placeholder { color: #b6bfc4; }
.bk-field input:focus,
.bk-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(28,27,25,.12);
}
.bk-field textarea { resize: vertical; min-height: 60px; }

/* ── Feedback (errors) ───────────────────────────────────────── */
.bk-feedback {
  background: #fef1f1; border: 1px solid #f4c0c0;
  border-radius: 8px; padding: 10px 12px;
  color: #8a1f1f; font-size: 13px;
  margin-top: 4px;
}

/* ── Submit ──────────────────────────────────────────────────── */
.bk-submit {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  background: var(--primary); color: var(--white);
  border: 0; border-radius: 10px;
  padding: 16px 20px;
  font-size: 15px; font-weight: 600; letter-spacing: .3px;
  cursor: pointer;
  margin-top: 8px;
  transition: background .18s var(--ease), transform .08s var(--ease), box-shadow .18s var(--ease);
  box-shadow: 0 6px 18px rgba(28,27,25,.18);
}
.bk-submit:hover  { background: var(--accent); box-shadow: 0 10px 24px rgba(28,27,25,.24); }
.bk-submit:active { transform: scale(.99); }
.bk-submit:disabled { opacity: .65; cursor: wait; }
.bk-submit__arrow { transition: transform .2s var(--ease); }
.bk-submit:hover .bk-submit__arrow { transform: translateX(3px); }

.bk-hold-note {
  font-size: 11px; color: var(--text-light); text-align: center;
  margin: 8px 0 0;
}

/* ── Success state (replaces form on success) ───────────────── */
.bk-success {
  background: linear-gradient(135deg, rgba(28,27,25,.08), rgba(28,27,25,.02));
  border: 1px solid rgba(28,27,25,.25);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.bk-success__icon      { width: 48px; height: 48px; margin: 0 auto 12px; color: var(--primary); }
.bk-success__title     { font-size: 18px; font-weight: 600; color: var(--accent); margin: 0 0 6px; }
.bk-success__body      { font-size: 13px; color: var(--text-light); line-height: 1.5; margin: 0 0 10px; }
.bk-success__countdown { font-size: 12px; color: var(--text-light); margin: 0; }
.bk-success__countdown strong { font-variant-numeric: tabular-nums; color: var(--primary); font-size: 15px; }

/* ── Success Modal (form confirmation popup) ─────────────────── */
.success-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.success-modal[hidden] { display: none; }

.success-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(26, 8, 12, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: smOverlayIn 0.3s var(--ease) both;
}
.success-modal__card {
  position: relative; z-index: 1;
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px 40px;
  max-width: 480px; width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px -20px rgba(28, 27, 25, 0.45);
  animation: smCardIn 0.35s var(--ease) both;
}
.success-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); border: 0; border-radius: 50%;
  cursor: pointer; color: var(--text-light);
  transition: background 0.2s, color 0.2s;
}
.success-modal__close:hover { background: var(--primary); color: var(--white); }
.success-modal__check {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #3e7c59, #2d5c40);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  animation: smCheckIn 0.4s 0.2s var(--ease) both;
}
.success-modal__check svg { color: #fff; }
.success-modal__title {
  font-family: "Hedvig Letters Serif", Georgia, serif;
  font-size: 28px; font-weight: 500;
  color: var(--accent); margin: 0 0 12px;
}
.success-modal__msg {
  font-size: 15px; line-height: 1.7;
  color: var(--text-light); margin: 0 0 32px;
}
.success-modal__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.success-modal__actions .btn { min-width: 140px; justify-content: center; }

/* Form feedback inline (errors) */
.form-feedback {
  padding: 12px 16px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
}
.form-feedback--ok { background: #eaf7f0; color: #1a6640; border: 1px solid #b3dfc8; }
.form-feedback--err { background: #fdf1f2; color: #8b1a28; border: 1px solid #f0c0c6; }

/* Field-level validation */
.field-error {
  display: block; margin-top: 5px;
  font-size: 12px; color: #c0392b; font-weight: 500;
}
.is-invalid { border-color: #c0392b !important; }

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

/* ── Cookie consent banner ───────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8500;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px var(--gutter);
  animation: cookieSlideIn 0.4s var(--ease) both;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1; font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.5; margin: 0;
}
.cookie-banner__text a { color: var(--sand); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__actions .btn { padding: 10px 22px; font-size: 11px; }
.cookie-banner__decline { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.25); }
.cookie-banner__decline:hover { background: rgba(255,255,255,0.1); color: var(--white); }
@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}
@keyframes cookieSlideIn { from { transform: translateY(100%); } to { transform: none; } }

/* ── WhatsApp floating button ────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 8000;
  display: flex; align-items: center; gap: 10px;
  background: #25d366;
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 20px 14px 16px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
  text-decoration: none;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  animation: waFloatIn 0.5s 1s var(--ease) both;
}
.wa-float:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}
.wa-float__icon { flex-shrink: 0; width: 24px; height: 24px; }
.wa-float__label { white-space: nowrap; }
@media (max-width: 600px) {
  .wa-float {
    bottom: 20px; right: 16px;
    padding: 14px;
    border-radius: 50%;
  }
  .wa-float__label { display: none; }
}
/* Push WhatsApp above any fixed bottom bars (property/room sticky enquiry bar) */
@media (max-width: 767px) {
  .has-sticky-bar .wa-float { bottom: 90px; }
}
@keyframes waFloatIn {
  from { opacity: 0; transform: translateY(16px) scale(0.9); }
  to   { opacity: 1; transform: none; }
}
@keyframes smCardIn   { from { opacity: 0; transform: translateY(24px) scale(0.97); } to { opacity: 1; transform: none; } }
@keyframes smCheckIn  { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .bk-pill { padding: 12px 14px; }
  .bk-pop, .bk-pop--narrow { left: 0; right: 0; min-width: auto; }
  .bk-stepper button { width: 36px; height: 36px; }
  .bk-submit { padding: 15px 16px; }
}

/* Availability hint tones inside the dates popover */
.bk-pop__hint[data-tone="ok"]      { color: #1f7a4a; font-weight: 600; }
.bk-pop__hint[data-tone="bad"]     { color: #b91c1c; font-weight: 600; }
.bk-pop__hint[data-tone="loading"] { color: var(--text-light); font-style: italic; }

/* ======================================================================
   TAWI — homepage redesign sections
   ====================================================================== */

/* Shared section helpers */
.section--cream { background: var(--cream); }
.section-head--center { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head--center h2 { font-size: clamp(34px, 4vw, 52px); margin-bottom: 16px; }
.section-head__lead { color: var(--text-light); font-size: 18px; line-height: 1.7; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }
.eyebrow--light { color: rgba(255,255,255,0.78); }
.eyebrow--light::before { background: rgba(255,255,255,0.55); }

/* Hero — TAWI */
.hero__eyebrow {
  text-transform: uppercase; letter-spacing: 4px; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.85); margin-bottom: 22px;
}
/* ============================================================
   Homepage hero — centered over a full-bleed photo
   ============================================================ */
.hero--home {
  text-align: center;
  padding-bottom: 70px;
}
.hero__inner--home {
  align-items: center;
  padding-top: 150px;
  max-width: 940px;
}

/* small live-activity pill */
.hero__pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px 7px 13px; border-radius: var(--radius-pill);
  background: rgba(28, 27, 25, 0.34);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.92); margin-bottom: 26px;
}
.hero__pill-dot {
  width: 8px; height: 8px; border-radius: 50%; flex: none;
  background: #5fcf80;
  animation: pill-pulse 2.4s ease-out infinite;
}
@keyframes pill-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(95, 207, 128, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(95, 207, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(95, 207, 128, 0); }
}
.hero__pill-text strong { font-weight: 600; color: #fff; }

.hero__title--home {
  font-size: clamp(40px, 5vw, 66px); line-height: 1.05; font-weight: 500;
  color: #fff; letter-spacing: -0.01em; max-width: 16ch;
  margin: 0 auto 22px;
}
.hero__sub--home {
  font-size: clamp(16px, 1.3vw, 19px); line-height: 1.7;
  color: rgba(255, 255, 255, 0.9); max-width: 60ch; margin: 0 auto 38px;
}
.hero__cta-row {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}

/* ============================================================
   Trust strip — frosted glass bar, overlaps the hero bottom
   ============================================================ */
.trust-strip {
  background: var(--cream);
  padding: 64px 0;
}
.trust-strip__bar {
  display: flex; flex-wrap: wrap; align-items: stretch;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.trust-item {
  flex: 1 1 0; min-width: 150px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; text-align: center;
  padding: 26px 18px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: 0; }
.trust-item__num {
  font-family: "Hedvig Letters Serif", Georgia, serif;
  font-size: 32px; font-weight: 500; color: var(--maroon); line-height: 1;
}
.trust-item__stars { color: #c2992f; font-size: 16px; letter-spacing: 3px; }
.trust-item__label { font-size: 13px; color: var(--text-light); letter-spacing: 0.3px; }
.trust-item__label strong { color: var(--accent); font-weight: 600; font-size: 14px; }

/* TripAdvisor badge segment */
.trust-item--ta { background: var(--cream-soft); padding: 16px 24px; }
.trust-item--ta a { display: flex; align-items: center; justify-content: center; }
.trust-item__ta-badge { height: 64px; width: auto; object-fit: contain; transition: opacity 0.2s; }
.trust-item__ta-badge:hover { opacity: 0.85; }

/* Airbnb Superhost segment */
.trust-item--airbnb { background: var(--cream-soft); }
.trust-item__airbnb-logo { height: 26px; width: auto; object-fit: contain; }

/* brand segment — powered by KlicKenya */
.trust-item--brand { background: var(--cream-soft); gap: 4px; }
.trust-item__eyebrow {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-light); font-weight: 600;
}
.trust-item__brand {
  font-family: "Hedvig Letters Serif", Georgia, serif;
  font-size: 24px; color: var(--maroon); font-weight: 500; line-height: 1;
}

@media (max-width: 860px) {
  .hero--home { min-height: 84vh; padding-bottom: 44px; }
  .hero__inner--home { padding-top: 108px; }
  .hero__pill { margin-bottom: 20px; }
  .hero__title.hero__title--home { font-size: 34px; margin-bottom: 16px; }
  .hero__sub--home { font-size: 15px; margin-bottom: 26px; }
  /* stacked, equal-width, aligned CTAs */
  .hero__cta-row {
    flex-direction: column; align-items: center;
    width: 100%; max-width: 300px; margin: 0 auto;
  }
  .hero__cta-row .btn { width: 100%; justify-content: center; }
  /* Improve ghost button legibility against any hero image on mobile */
  .hero__cta-row .btn--ghost {
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .hero__cta-row .btn--ghost:hover {
    background: var(--primary);
    border-color: var(--primary);
  }
  .trust-strip { padding: 44px 0; }
  .trust-item { flex-basis: 50%; min-width: 0; border-bottom: 1px solid var(--border); }
  .trust-item:nth-child(2n) { border-right: 0; }
  .trust-item--brand { flex-basis: 100%; border-bottom: 0; }
}

/* Coastal destinations */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.dest-card {
  position: relative; border-radius: var(--radius-card); overflow: hidden;
  display: block; min-height: 420px; box-shadow: var(--shadow-card);
  isolation: isolate; scroll-margin-top: 150px;
}
.dest-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1;
  transition: transform 0.7s var(--ease);
}
.dest-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(26,16,18,0.86) 8%, rgba(26,16,18,0.12) 60%, rgba(26,16,18,0.05));
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card__body { position: absolute; inset: auto 0 0 0; padding: 28px 24px; color: #fff; }
.dest-card__name { color: #fff; font-size: 26px; margin-bottom: 6px; }
.dest-card__meta { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.5; margin-bottom: 14px; }
.dest-card__link { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--sand); }
.dest-card:hover .dest-card__link { color: #fff; }

/* Services overview */
.services__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; align-items: stretch; }
.services__intro { grid-column: 1 / -1; max-width: 620px; margin-bottom: 18px; }
.services__title { font-size: clamp(32px, 4vw, 50px); margin-bottom: 18px; }
.services__text { color: var(--text-light); font-size: 18px; line-height: 1.7; margin-bottom: 26px; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 38px 32px; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.service-card__icon {
  width: 60px; height: 60px; display: grid; place-items: center; border-radius: 16px;
  background: var(--cream); color: var(--maroon); margin-bottom: 22px;
}
.service-card__name { font-size: 24px; margin-bottom: 12px; }
.service-card__text { color: var(--text-light); font-size: 15.5px; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.service-card__link { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--maroon); }
.service-card__link:hover { color: var(--burgundy); }
@media (min-width: 921px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .services__intro { grid-column: 1 / -1; }
}

/* Premium services grid */
.premium-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; }
.premium-item { background: var(--white); padding: 40px 34px; }
.premium-item__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: var(--cream); color: var(--maroon); margin-bottom: 18px; }
.premium-item__name { font-size: 21px; margin-bottom: 8px; }
.premium-item p { color: var(--text-light); font-size: 15px; line-height: 1.65; }

/* Scroll reveal */
[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* Gold button */
.btn--gold {
  background: var(--sand); color: var(--maroon);
  border: 1px solid var(--sand); font-weight: 600;
}
.btn--gold:hover {
  background: #efe3c6; border-color: #efe3c6;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(228, 213, 183, 0.7);
}

/* Safari showcase */
.safari {
  position: relative; overflow: hidden;
  padding: clamp(90px, 11vw, 150px) 0;
  color: #fff; isolation: isolate;
}
.safari__bg {
  position: absolute; inset: -8%; z-index: -2;
  background: url("assets/img/tawi/safari-leopard.jpg") center/cover no-repeat;
  transform: scale(1.06);
  animation: safari-pan 26s ease-in-out infinite alternate;
}
@keyframes safari-pan {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-2%, -2%, 0); }
}
.safari__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(20, 19, 17, 0.92) 0%, rgba(28, 27, 25, 0.78) 42%, rgba(28, 27, 25, 0.45) 100%),
    radial-gradient(120% 90% at 12% 30%, rgba(28, 27, 25, 0.55), transparent 60%);
}
.safari__inner {
  display: grid; grid-template-columns: 1fr 1.04fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.safari__body { max-width: 560px; }
.safari__title {
  color: #fff; line-height: 1.02; margin: 16px 0 22px;
  font-size: clamp(38px, 5.2vw, 68px); letter-spacing: -0.5px;
}
.safari__title span { display: block; }
.safari__title em {
  font-style: italic; color: var(--sand);
}
.safari__text {
  color: rgba(255, 255, 255, 0.88); font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75; margin-bottom: 28px; max-width: 50ch;
}
.safari__chips {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px;
}
.safari__chips li {
  font-size: 13px; font-weight: 500; letter-spacing: 0.4px;
  padding: 9px 16px; border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(228, 213, 183, 0.3);
  backdrop-filter: blur(4px);
}
.safari__actions {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 40px); flex-wrap: wrap;
}
.safari__facts { display: flex; gap: 28px; }
.safari__fact {
  display: flex; align-items: baseline; gap: 5px;
  font-size: 13px; letter-spacing: 0.3px; color: rgba(255, 255, 255, 0.75);
}
.safari__fact .fact__num {
  font-family: "Hedvig Letters Serif", Georgia, serif; font-size: 30px; line-height: 1;
  color: var(--sand); font-weight: 400;
}
.safari__fact .fact__plus { color: var(--sand); font-size: 22px; line-height: 1; margin-left: -3px; }

.safari__gallery {
  position: relative; min-height: 460px;
}
.safari__photo {
  position: absolute; overflow: hidden;
  border-radius: 18px; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
}
.safari__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.safari__photo--main {
  top: 0; right: 0; width: 76%; aspect-ratio: 4 / 5;
  animation: safari-float 7s ease-in-out infinite;
}
.safari__photo--accent {
  bottom: 0; left: 0; width: 48%; aspect-ratio: 4 / 3;
  border: 5px solid #fff;
  animation: safari-float 8.5s ease-in-out infinite reverse;
}
@keyframes safari-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.safari__tag {
  position: absolute; top: 14px; left: 4%; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--radius-pill);
  background: rgba(28, 27, 25, 0.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(228, 213, 183, 0.35);
  font-size: 12px; font-weight: 500; letter-spacing: 0.5px; color: #fff;
}
.safari__tag-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #57d27e;
  box-shadow: 0 0 0 0 rgba(87, 210, 126, 0.6);
  animation: safari-pulse 2s ease-out infinite;
}
@keyframes safari-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(87, 210, 126, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(87, 210, 126, 0); }
  100% { box-shadow: 0 0 0 0 rgba(87, 210, 126, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .safari__bg, .safari__photo--main, .safari__photo--accent, .safari__tag-dot { animation: none; }
}

/* Founder */
.founder__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.founder__media { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); }
.founder__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.founder__quote { font-family: "Hedvig Letters Serif", Georgia, serif; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.4; color: var(--maroon); margin: 14px 0 26px; }
.founder__name { font-weight: 600; font-size: 18px; color: var(--ink); }
.founder__role { color: var(--text-light); font-size: 15px; }

/* Testimonial avatar (replaces stock photo) */
.quote-card__avatar {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--maroon); color: #fff; font-family: "Hedvig Letters Serif", Georgia, serif;
  font-size: 20px; flex-shrink: 0;
}

/* Offices */
.offices__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 880px; margin: 0 auto; }
.offices__layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 30px; max-width: 1040px; margin: 0 auto; align-items: stretch; }
.offices__cards { display: grid; gap: 26px; align-content: center; }
.offices__map { border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--border); min-height: 320px; }
.offices__map iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; }
.office-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 36px 34px; text-align: center; }
.office-card__name { font-size: 23px; margin-bottom: 12px; }
.office-card__addr { color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.office-card__link { font-weight: 600; color: var(--maroon); }
.office-card__link:hover { color: var(--burgundy); }

/* Plan your holiday (enquiry) */
.plan { background: var(--maroon); color: #fff; }
.plan__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.plan__title { color: #fff; font-size: clamp(32px, 3.6vw, 48px); margin-bottom: 18px; }
.plan__text { color: rgba(255,255,255,0.88); font-size: 18px; line-height: 1.7; margin-bottom: 26px; }
.plan__contacts { display: grid; gap: 12px; }
.plan__contacts a { font-weight: 500; color: var(--sand); transition: color 0.3s var(--ease); }
.plan__contacts a:hover { color: #fff; }
.plan-form { width: 100%; }

@media (max-width: 1100px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .services__grid { grid-template-columns: 1fr; }
  .premium-grid { grid-template-columns: repeat(2, 1fr); }
  .founder__grid { grid-template-columns: 1fr; gap: 36px; }
  .plan__inner { grid-template-columns: 1fr; gap: 36px; }
  .offices__layout { grid-template-columns: 1fr; }
  .offices__cards { grid-template-columns: repeat(2, 1fr); }
  .safari__inner { grid-template-columns: 1fr; gap: 48px; }
  .safari__body { max-width: none; }
  .safari__gallery { min-height: 0; max-width: 480px; aspect-ratio: 5 / 4; }
}
@media (max-width: 640px) {
  .dest-grid { grid-template-columns: 1fr; }
  .premium-grid { grid-template-columns: 1fr; }
  .offices__grid { grid-template-columns: 1fr; }
  .offices__layout { grid-template-columns: 1fr; }
  .offices__cards { grid-template-columns: 1fr; }
  .hero__title { font-size: 42px; }
  .hero__cta-row { gap: 10px; }
  .safari { padding: 80px 0; }
  .safari__actions { gap: 22px; }
  .safari__gallery { aspect-ratio: 4 / 4; margin-top: 6px; }
  .safari__photo--accent { border-width: 4px; }
}

/* ============================================================
   Offers & Specials — homepage auto-scroll rows + /offers page
   ============================================================ */
.offers-strip { background: var(--cream-soft, #f5f2ef); }
.offers-strip .section-head { margin-bottom: 30px; }
.offers-strip .section-head__lead a { color: var(--maroon, #47121d); font-weight: 600; text-decoration: none; }
.offers-strip .section-head__lead a:hover { text-decoration: underline; }

.offers-row { margin-top: 26px; }
.offers-row__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 14px;
}
.offers-row__label {
  font-family: "Hedvig Letters Serif", Georgia, serif;
  font-size: 22px; color: var(--maroon, #47121d); margin: 0;
}
.offers-row__all {
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  color: var(--text-light, #7a6e68); text-decoration: none; white-space: nowrap;
}
.offers-row__all:hover { color: var(--maroon, #47121d); }

/* Offers row — 1-2 offers: shown once, centered. 3+: auto-scrolling marquee. */
.offers-marquee { width: 100%; }
.offers-marquee__track {
  display: flex; gap: 22px; flex-wrap: wrap;
  justify-content: center; align-items: stretch;
  padding: 6px var(--gutter, 30px);
}
/* Marquee mode (3+ offers) — single line, auto-scroll, faded edges */
.offers-strip--marquee .offers-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.offers-strip--marquee .offers-marquee__track {
  flex-wrap: nowrap; justify-content: flex-start; width: max-content;
  animation: tawi-offers-marquee calc(var(--n, 4) * 6s) linear infinite;
  will-change: transform;
}
.offers-strip--marquee .offers-marquee:hover .offers-marquee__track { animation-play-state: paused; }
@keyframes tawi-offers-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .offers-strip--marquee .offers-marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .offers-strip--marquee .offers-marquee__track { animation: none; }
}

.offer-slide {
  flex: 0 0 320px; width: 320px;
  background: var(--white, #fff); border: 1px solid var(--border, #e0d9d2);
  border-radius: var(--radius-card, 14px); overflow: hidden;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: transform .35s var(--ease, ease), box-shadow .35s var(--ease, ease);
  /* renders as a <button> on the homepage strip — reset native button look */
  -webkit-appearance: none; appearance: none; padding: 0; margin: 0;
  font: inherit; text-align: left; cursor: pointer;
}
.offer-slide:hover { transform: translateY(-4px); box-shadow: var(--shadow-card, 0 18px 50px -20px rgba(28,27,25,.22)); }
.offer-slide__media { position: relative; aspect-ratio: 16 / 10; background: var(--cream, #edeae7); display: block; }
.offer-slide__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.offer-slide__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--sand, #e4d5b7); color: var(--maroon, #47121d);
  font-size: 12px; font-weight: 700; letter-spacing: .02em;
  padding: 5px 12px; border-radius: var(--radius-pill, 30px);
}
.offer-slide__cat {
  position: absolute; top: 12px; right: 12px;
  background: rgba(28, 27, 25, .92); color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--radius-pill, 30px);
}
.offer-slide__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 4px; }
.offer-slide__title {
  font-family: "Hedvig Letters Serif", Georgia, serif;
  font-size: 18px; color: var(--maroon, #47121d); line-height: 1.25;
}
.offer-slide__sub { font-size: 13.5px; color: var(--text-light, #7a6e68); line-height: 1.45; }
.offer-slide__cta { margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--maroon, #47121d); }

/* /offers page grid + cards */
.offers-page__section .section-head { margin-bottom: 26px; }
.offers-grid {
  display: grid; gap: 26px;
  grid-template-columns: repeat(3, 1fr);
}
.offer-card {
  background: var(--white, #fff); border: 1px solid var(--border, #e0d9d2);
  border-radius: var(--radius-card, 14px); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease, ease), box-shadow .35s var(--ease, ease);
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card, 0 18px 50px -20px rgba(28,27,25,.22)); }
.offer-card__media { position: relative; aspect-ratio: 16 / 10; background: var(--cream, #edeae7); }
.offer-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.offer-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--sand, #e4d5b7); color: var(--maroon, #47121d);
  font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: var(--radius-pill, 30px);
}
.offer-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.offer-card__title { font-family: "Hedvig Letters Serif", Georgia, serif; font-size: 22px; color: var(--maroon, #47121d); }
.offer-card__sub { font-size: 14px; font-weight: 600; color: var(--text, #1a1a1a); }
.offer-card__text { font-size: 14px; color: var(--text-light, #7a6e68); line-height: 1.6; }
.offer-card__valid { font-size: 12.5px; color: var(--text-light, #7a6e68); font-style: italic; }
.offer-card__cta { font-weight: 700; color: var(--maroon, #47121d); text-decoration: none; }
.offer-card__cta:hover { text-decoration: underline; }
.offer-card__actions { margin-top: auto; padding-top: 14px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.offer-card__request {
  appearance: none; border: 0; cursor: pointer;
  background: var(--maroon, #47121d); color: var(--white, #fff);
  font: inherit; font-weight: 700; font-size: 14px;
  padding: 10px 18px; border-radius: var(--radius-pill, 999px);
  transition: opacity .2s, transform .2s;
}
.offer-card__request:hover { opacity: .92; transform: translateY(-1px); }

/* Request-this-offer enquiry modal */
.offer-modal {
  position: fixed; inset: 0; z-index: 8500;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.offer-modal[hidden] { display: none; }
.offer-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(26, 8, 12, 0.65);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: smOverlayIn 0.3s var(--ease) both;
}
.offer-modal__card {
  position: relative; z-index: 1;
  background: var(--white); border-radius: 20px;
  padding: 40px 36px 36px; max-width: 520px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 32px 80px -20px rgba(28, 27, 25, 0.45);
  animation: smCardIn 0.35s var(--ease) both;
}
.offer-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); border: 0; border-radius: 50%;
  cursor: pointer; color: var(--text-light); transition: background .2s, color .2s;
}
.offer-modal__close:hover { background: var(--primary); color: var(--white); }
.offer-modal__title {
  font-family: "Hedvig Letters Serif", Georgia, serif;
  font-size: 26px; font-weight: 500; color: var(--accent);
  margin: 0 0 4px; text-align: center;
}
.offer-modal__offer {
  text-align: center; font-weight: 600; font-size: 14.5px;
  color: var(--maroon, #47121d); margin: 0 0 22px;
}
.offer-form { display: flex; flex-direction: column; gap: 14px; }
.offer-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.offer-form .field { display: flex; flex-direction: column; gap: 5px; }
.offer-form .field span {
  font-size: 12px; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase; color: var(--text-light);
}
.offer-form .field input, .offer-form .field textarea {
  width: 100%; padding: 11px 14px; font: inherit; font-size: 15px;
  border: 1px solid var(--border, #e3dcd7); border-radius: 10px;
  background: var(--cream, #faf8f6); color: var(--text, #1a1a1a);
}
.offer-form .field input:focus, .offer-form .field textarea:focus {
  outline: none; border-color: var(--maroon, #47121d);
}
.offer-form .btn { margin-top: 4px; justify-content: center; }
@media (max-width: 520px) { .offer-form__row { grid-template-columns: 1fr; } }

@media (max-width: 1024px) {
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .offers-grid { grid-template-columns: 1fr; }
  .offer-slide { flex-basis: 260px; width: 260px; }
  .offers-row__label { font-size: 19px; }
}

/* ============================================================
   TAWI — redesigned hero (two-column: story + enquiry form)
   ============================================================ */
.hero--home { text-align: left; }
.hero--home .hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  width: 100%;
  padding: 150px 0 90px;
}
.hero__lead { max-width: 620px; }
.hero__lead .hero__title--home,
.hero__lead .hero__sub--home { margin-left: 0; margin-right: 0; text-align: left; }
.hero__lead .hero__title--home { max-width: 18ch; }
.hero__facts {
  list-style: none; display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 0; padding: 0;
}
.hero__facts li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 18px; border-radius: 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero__facts strong { font-size: 20px; color: #fff; font-weight: 600; letter-spacing: -0.01em; }
.hero__facts span { font-size: 12.5px; color: rgba(255,255,255,0.82); }

/* Enquiry card in the hero */
.hero__form-wrap { justify-self: end; width: 100%; max-width: 440px; }
.hero-enquiry {
  width: 100%;
  background: rgba(28, 27, 25, 0.62);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  padding: 26px 24px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}
.hero-enquiry__head { margin-bottom: 18px; }
.hero-enquiry__title { font-family: "Hedvig Letters Serif", Georgia, serif; font-size: 24px; color: #fff; font-weight: 500; }
.hero-enquiry__sub { font-size: 13.5px; color: rgba(255,255,255,0.8); margin-top: 4px; }
/* re-flow the shared enquiry steps into a vertical card form */
.hero-enquiry.hero-search { border-radius: 22px; overflow: visible; }
.hero-enquiry .hero-step { flex-direction: column; gap: 0; }
.hero-enquiry .hero-search__field {
  border-right: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  padding: 12px 4px;
}
.hero-enquiry .hero-enq-grid { grid-template-columns: 1fr 1fr; gap: 0 16px; }
.hero-enquiry .hero-search__submit { width: 100%; justify-content: center; margin-top: 16px; border-radius: 14px; }
.hero-enquiry .hero-step--enquiry, .hero-enquiry .hero-step--done { width: 100%; max-width: none; }
.hero-enquiry .hero-bk-pop { left: 0; right: 0; }

/* ============================================================
   TAWI — room showcase + gallery (single room)
   ============================================================ */
.room-feature {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center;
  margin-bottom: 46px;
}
.room-feature__main { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); }
.room-feature__main img { width: 100%; height: 100%; max-height: 480px; object-fit: cover; display: block; }
.room-feature__title { font-family: "Hedvig Letters Serif", Georgia, serif; font-size: clamp(26px, 2.6vw, 36px); color: var(--maroon); font-weight: 500; margin-bottom: 14px; }
.room-feature__text { color: var(--text-light); line-height: 1.75; margin-bottom: 22px; }
.room-feature__amenities {
  list-style: none; padding: 0; margin: 0 0 26px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px;
}
.room-feature__amenities li {
  position: relative; padding-left: 24px; font-size: 14.5px; color: var(--text);
}
.room-feature__amenities li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--sand);
  box-shadow: inset 0 0 0 3px var(--primary);
}
.room-gallery-band { padding-top: 26px; padding-bottom: 26px; }
.room-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 14px;
}
.room-gallery__item { margin: 0; overflow: hidden; border-radius: 14px; }
.room-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.room-gallery__item:hover img { transform: scale(1.06); }

/* ============================================================
   TAWI — experiences bento (dark section)
   ============================================================ */
.experiences { background: var(--dark); color: #fff; }
.exp-head {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px 48px; align-items: end;
  margin-bottom: 40px;
}
.exp-head__title { font-family: "Hedvig Letters Serif", Georgia, serif; font-size: clamp(28px, 3.4vw, 46px); font-weight: 500; color: #fff; line-height: 1.1; }
.exp-head__lead { color: rgba(255,255,255,0.72); line-height: 1.7; font-size: 15.5px; }
.experiences .eyebrow--light { color: var(--primary); }

.exp-bento { display: grid; grid-template-columns: 1.35fr 1fr; gap: 16px; }
.exp-col { display: flex; flex-direction: column; gap: 16px; }
.exp-tile { border-radius: 18px; overflow: hidden; position: relative; }

.exp-tile--feature { min-height: 420px; }
.exp-tile--feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.exp-tile--feature:hover img { transform: scale(1.05); }
.exp-tile__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px; z-index: 1;
  background: linear-gradient(to top, rgba(20,19,17,0.92) 0%, rgba(20,19,17,0.35) 55%, transparent 100%);
}
.exp-tile__kicker {
  align-self: flex-start; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--dark); background: var(--primary); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}
.exp-tile__title { font-family: "Hedvig Letters Serif", Georgia, serif; font-size: 26px; font-weight: 500; color: #fff; margin-bottom: 8px; }
.exp-tile__text { color: rgba(255,255,255,0.82); font-size: 14.5px; line-height: 1.6; }

.exp-tile--icon {
  flex: 1; display: flex; align-items: flex-start; gap: 16px; padding: 24px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.exp-tile--icon:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.exp-tile--icon .exp-tile__icon {
  flex: none; width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; color: var(--primary);
  background: rgba(183,146,79,0.14); border: 1px solid rgba(183,146,79,0.3);
}
.exp-tile--icon .exp-tile__title { font-size: 19px; margin-bottom: 4px; }

.exp-foot {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12);
}
.exp-stats { display: flex; gap: 40px; }
.exp-stat { font-size: 14px; color: rgba(255,255,255,0.72); }
.exp-stat .fact__num { font-family: "Hedvig Letters Serif", Georgia, serif; font-size: 34px; color: var(--primary); font-weight: 500; margin-right: 4px; }
.exp-stat .fact__plus { color: var(--primary); font-size: 24px; }

/* ============================================================
   TAWI — responsive for new sections
   ============================================================ */
@media (max-width: 980px) {
  .hero--home .hero__grid { grid-template-columns: 1fr; gap: 34px; padding: 120px 0 70px; }
  .hero__form-wrap { justify-self: stretch; max-width: 520px; }
  .room-feature { grid-template-columns: 1fr; gap: 26px; }
  .exp-bento { grid-template-columns: 1fr; }
  .exp-head { grid-template-columns: 1fr; align-items: start; }
  .room-gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 767px) {
  .hero__facts { gap: 10px; }
  .hero__facts li { padding: 10px 14px; }
  .room-feature__amenities { grid-template-columns: 1fr 1fr; }
  .room-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 42vw; gap: 10px; }
  .exp-stats { gap: 26px; }
  .exp-foot .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   TAWI — offers page slider
   ============================================================ */
.offers-slider { position: relative; display: flex; align-items: center; gap: 14px; }
.offers-slider__rail {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 6px 2px 18px; flex: 1;
  scrollbar-width: none;
}
.offers-slider__rail::-webkit-scrollbar { display: none; }
.offer-slide-card {
  flex: 0 0 clamp(280px, 46%, 460px); scroll-snap-align: start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-card);
}
.offer-slide-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.offer-slide-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.offer-slide-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--primary); color: var(--dark);
  font-size: 12px; font-weight: 600; letter-spacing: .3px;
  padding: 6px 13px; border-radius: 999px;
}
.offer-slide-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.offer-slide-card__title { font-family: "Hedvig Letters Serif", Georgia, serif; font-size: 22px; color: var(--maroon); font-weight: 500; }
.offer-slide-card__sub { font-size: 14.5px; color: var(--text); line-height: 1.55; }
.offer-slide-card__text { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }
.offer-slide-card__valid { font-size: 12.5px; color: var(--text-light); }
.offer-slide-card__actions { margin-top: auto; padding-top: 14px; display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; }
.offer-slide-card__actions .offer-card__cta { font-weight: 600; color: var(--primary); text-decoration: none; font-size: 14px; }
.offers-slider__btn { flex: none; }
@media (max-width: 767px) {
  .offers-slider__btn { display: none; }
  .offer-slide-card { flex-basis: 86%; }
  .offers-slider__rail { gap: 16px; }
}


/* ===== RESPONSIVE TWEAKS — keep at very end so they override ===== */

/* 1) Give the whole hero proper side spacing on mobile
      (fixes the pill, heading, chips AND form all bleeding to the edges) */
@media (max-width: 980px) {
  .hero--home .hero__grid {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

/* 2) Center the enquiry form within that spacing */
@media (max-width: 980px) {
  .hero__form-wrap { margin-left: auto; margin-right: auto; }
}

/* 3) The 3 info chips — even, aligned row on mobile */
@media (max-width: 767px) {
  .hero__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .hero__facts li {
    align-items: center;
    text-align: center;
    padding: 12px 6px;
  }
  .hero__facts strong { font-size: 15px; }
  .hero__facts span   { font-size: 10.5px; }
}

/* 4) Keep WhatsApp button off the CTA on phones */
@media (max-width: 600px) { .wa-float { bottom: 90px; } }