:root {
  --primary: #e49951;
  --primary-hover: #cd8948;
  --accent: #0b6273;
  --cyan: #15b4ca;
  --bg: #ffffff;
  --bg-light: #e9f5f6;
  --border: #d6e6e8;
  --text: #143b44;
  --text-light: #6f8489;
  --white: #ffffff;
  --dark: #000000;
  --container: 1320px;
  --gutter: 30px;
  --radius-pill: 30px;
  --radius-card: 10px;
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.1);
  --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: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.15;
  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(11, 98, 115, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s var(--ease);
}
.site-header.is-stuck { background: rgba(11, 98, 115, 0.92); }

.site-header__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 78px;
}
.site-header__top > * { grid-row: 1; }
.site-header__burger {
  display: none;
  grid-column: 3; justify-self: end;
  flex-direction: column; gap: 6px;
  width: 34px; background: none; border: 0; cursor: pointer; padding: 0;
  color: var(--white);
}
.site-header__burger span { width: 100%; height: 2px; background: currentColor; }

.site-header__logo {
  grid-column: 2; justify-self: center;
  display: flex; align-items: center; gap: 12px;
  color: var(--white);
}
.site-header__logo-img { height: 46px; width: auto; display: block; }
@media (max-width: 600px) {
  .site-header__logo-img { height: 34px; }
}

.site-header__actions {
  grid-column: 3; justify-self: end;
  display: flex; align-items: center; gap: 28px;
}
.site-header__phone {
  display: flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 500;
  transition: color 0.3s var(--ease);
}
.site-header__phone:hover { color: var(--primary); }
.site-header__cta { padding: 13px 26px; }

.site-nav {
  display: flex; justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.site-nav ul { display: flex; align-items: center; }
.site-nav li { display: flex; align-items: center; }
.site-nav li:not(:first-child)::before {
  content: "";
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 26px;
}
.site-nav a {
  display: block; padding: 16px 0;
  font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
  transition: color 0.3s var(--ease);
}
.site-nav a:hover, .site-nav a.is-active { color: var(--primary); }

@media (max-width: 1024px) {
  .site-header__burger { display: flex; }
  .site-header__actions { gap: 0; }
  .site-header__phone { display: none; }
  .site-header__cta { display: none; }
  .site-nav {
    position: fixed; inset: 78px 0 auto 0;
    flex-direction: column;
    background: rgba(11, 98, 115, 0.97);
    padding: 16px var(--gutter);
    border-top: 0;
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav ul { flex-direction: column; align-items: stretch; }
  .site-nav li:not(:first-child)::before { display: none; }
  .site-nav a { padding: 12px 0; }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(11, 98, 115, 0.3), rgba(11, 98, 115, 0.45)),
    url("assets/img/7islands_resort_watamu_hero.webp") 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: 78px; color: var(--white); letter-spacing: -2px;
  max-width: 14ch; margin-bottom: 56px;
}

/* 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; }
.hero-step[hidden] { display: none; }
.hero-search__field {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 12px 28px;
  min-width: 190px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}
.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;
}
.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; 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: 0 40px; border-radius: var(--radius-pill);
  transition: background 0.3s var(--ease);
}
.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 { 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; left: 50%; bottom: 36px; transform: translateX(-50%);
  width: 48px; height: 48px; border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%; display: grid; place-items: center; font-size: 20px;
}
@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 { 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(11, 98, 115, 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; gap: 10px; color: var(--text-light); font-size: 15px; }
.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(--primary); }
.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(--primary); }
.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: 0; background: none; cursor: pointer;
  font-size: 12px; 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 { color: var(--white); }

.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(--primary); border-color: var(--primary); color: var(--white); }

.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(--primary); }

@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 DETAIL PAGE ============ */
.site-header--solid { background: rgba(11, 98, 115, 0.95); border-bottom: 0; }
.site-header--solid.is-stuck { background: rgba(11, 98, 115, 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(11, 98, 115, 0.55), rgba(11, 98, 115, 0.65)),
    url("assets/img/7islands_resort_watamu6.webp") 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-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; }

.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);
}

@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(11, 98, 115, 0.55), rgba(11, 98, 115, 0.65)),
    url("assets/img/7islands_resort_watamu3.webp") 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(--primary); 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(--primary); }
@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(11, 98, 115, 0.2), rgba(11, 98, 115, 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;
}

/* 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(11,98,115,.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: #0b6273; color: #fff; font-weight: 700; }
.avail-cell--range   { background: rgba(11,98,115,.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(11,98,115,.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: #0b6273; text-decoration: underline; white-space: nowrap;
}
.avail-hold-note { font-size: 10px; color: #aaa; text-align: center; margin-top: 6px; }

/* ── Search bar ──────────────────────────────────────────────── */
.search-strip {
  background: #f0f4f5;
  border-bottom: 1px solid #d1dde0;
  padding: 18px 0;
}
.search-strip__inner {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.search-strip__heading {
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  white-space: nowrap;
  margin: 0 0 4px;
  flex: 0 0 100%;
}

.search-bar {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
}
.search-bar__group {
  display: flex;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
}
.search-bar__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 130px;
  position: relative;
}
.search-bar__label {
  font-size: 10px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.search-bar__input,
.search-bar__guests-btn {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: #1a1a1a;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .15s, box-shadow .15s;
}
.search-bar__input:focus {
  outline: none;
  border-color: #0b6273;
  box-shadow: 0 0 0 3px rgba(11,98,115,.15);
}
/* Flatpickr alt-input inherits these via the class it attaches */
.search-bar__field .flatpickr-input.form-control,
.search-bar__field .flatpickr-input[readonly] {
  cursor: pointer;
}
.search-bar__field--guests { min-width: 160px; }
.search-bar__guests-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  text-align: left;
  height: 100%;
}
.search-bar__guests-btn:focus {
  outline: none;
  border-color: #0b6273;
  box-shadow: 0 0 0 3px rgba(11,98,115,.15);
}
.search-bar__caret { flex-shrink: 0; color: #6b7280; }
.search-bar__guests-pop {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 300;
  min-width: 220px;
}
.search-bar__submit {
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-end;
}

/* ── 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; }

.other-room--dimmed { opacity: .55; pointer-events: none; }
.other-room--dimmed a { pointer-events: 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: #0b6273; text-decoration: none; white-space: nowrap; }
.search-results-bar__clear:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .search-strip { padding: 14px 0; }
  .search-strip__heading { display: none; }
  .search-bar { flex-direction: column; align-items: stretch; }
  .search-bar__group { flex-direction: column; }
  .search-bar__field { min-width: auto; }
  .search-bar__field--guests { min-width: auto; }
  .search-bar__guests-pop { min-width: auto; right: 0; left: 0; }
  .search-bar__submit { width: 100%; text-align: center; }
  .search-results-bar__inner { flex-direction: column; align-items: flex-start; gap: 6px; }
}
