/* ==========================================================================
   Home page: booking bar, trust strip, awards, phone action bar.
   Uses the reservation form pieces (.rsv-dates, .rsv-stepper) from reservation.css.
   ========================================================================== */

/* ---------- Booking bar ---------- */
/* Keep the slider (whose slides use z-index 20) in its own layer, so the booking
   card that overlaps its bottom edge is always drawn on top of it. */
.section-slider { position: relative; z-index: 1; }
.rsv.rsv--embed { padding: 0; }
.rsv.rsv--embed.hb-form { background: #fff; }
.hb { position: relative; z-index: 5; padding: 16px 0 0; background: #f7f4ee; }
.rsv.hb-form {
  padding: 18px 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}
.hb-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font: 600 22px/1.1 var(--font-display);
  color: #115c3f;
  text-transform: none;
}
.hb-fields { display: grid; gap: 12px; }
.hb-guests { margin-top: 0; }
.hb-submit { width: 100%; }
.hb-note { margin: 10px 0 0; font-size: 13px; color: #6b6b6b; text-align: center; }
.hb-note i { color: #115c3f; margin-right: 4px; }

/* ---------- Highlights strip ---------- */
/* A light row of icon + text (no cards), so the eye moves on to the rooms.
   Items fade up one after another when the strip scrolls into view (home.js
   adds .is-in; --d on each <li> is its delay), then the small line reveals. */
.trust { padding: 20px 0 6px; background: #f7f4ee; }
.trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.trust-list li { display: flex; }
.trust-item {
  display: flex;
  flex: 1;
  align-items: flex-start;
  gap: 10px;
  color: #232323;
  text-decoration: none !important;
}
.trust-icon {
  flex: 0 0 22px;
  padding-top: 1px;
  color: #115c3f;
  font-size: 19px;
  line-height: 1;
  text-align: center;
}
.trust-list strong { display: block; font: 700 14px/1.25 var(--font-ui); color: #232323; transition: color .2s; }
.trust-list small { display: block; margin-top: 3px; font-size: 13px; line-height: 1.35; color: #6b6b6b; }
.trust-item:hover strong,
.trust-item:focus-visible strong { color: #115c3f; }
.trust-item:focus-visible { outline: 2px solid rgba(241, 146, 2, .6); outline-offset: 4px; border-radius: 4px; }
.trust-item--book .trust-icon,
.trust-item--book strong { color: #f19202; }
.trust-item--book strong::after { content: ' \203A'; }
.trust-item--book:hover strong { color: #d98300; }

/* Reveal animation (only when home.js has set .trust--anim) */
.trust--anim .trust-list li {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .6s ease var(--d, 0ms), transform .6s ease var(--d, 0ms);
}
.trust--anim .trust-list small {
  clip-path: inset(0 100% 0 0);
  transition: clip-path .8s ease calc(var(--d, 0ms) + 250ms);
}
.trust--anim.is-in .trust-list li { opacity: 1; transform: none; }
.trust--anim.is-in .trust-list small { clip-path: inset(0 0 0 0); }

/* ---------- Awards ---------- */
.awards { padding: 36px 0; background: #f7f4ee; }
.awards-card {
  display: grid;
  gap: 18px;
  padding: 22px 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  text-align: center;
}
.awards-badge img { display: block; width: 120px; height: 120px; margin: 0 auto; }
.awards-eyebrow { margin: 0 0 4px; color: #f19202; font: 600 12px/1.3 var(--font-ui); letter-spacing: .08em; text-transform: uppercase; }
.awards-title { margin: 0 0 8px; font: 600 29px/1.1 var(--font-display); color: #115c3f; text-transform: none; }
.awards-text { margin: 0 0 14px; font-size: 16px; line-height: 1.6; color: #444; }
.awards-rating { margin: 0 0 14px; font-size: 15px; color: #444; }
.awards-rating strong { font: 700 22px var(--font-ui); color: #115c3f; }
.awards-stars { color: #f5b301; }
.awards-years {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
.awards-years li {
  padding: 5px 11px;
  border-radius: 999px;
  background: #eef4f0;
  color: #115c3f;
  font: 600 13px var(--font-ui);
}
.awards-guides { margin: 0 0 16px; font-size: 14px; color: #6b6b6b; }
.awards-guides i { color: #115c3f; margin-right: 4px; }
.awards-actions { display: grid; gap: 10px; }
.awards .rsv-btn { min-height: 48px; padding: 0 22px; border: 2px solid transparent; border-radius: 999px; font: 600 14px/1 var(--font-ui); letter-spacing: .04em; text-transform: uppercase; display: inline-flex; align-items: center; justify-content: center; text-decoration: none !important; }
.awards .rsv-btn--primary { background: #f19202; color: #fff !important; }
.awards .rsv-btn--ghost { background: #fff; border-color: #115c3f; color: #115c3f !important; }

/* ---------- Phone action bar ---------- */
.home-bar { display: none; }
@media (max-width: 991px) {
  .home-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
    padding: 10px 15px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 -4px 18px rgba(0, 0, 0, .1);
    transform: translateY(110%);
    transition: transform .3s ease;
  }
  .home-bar.is-visible { transform: none; }
  .home-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border-radius: 999px;
    font: 600 14px/1 var(--font-ui);
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none !important;
  }
  .home-bar__call { border: 2px solid #115c3f; color: #115c3f !important; background: #fff; }
  .home-bar__book { background: #f19202; color: #fff !important; }
  html.has-home-bar #footer { padding-bottom: 72px; }
}

/* ---------- Tablet / desktop ---------- */
@media (min-width: 768px) {
  .trust-list { grid-template-columns: repeat(3, 1fr); gap: 20px 24px; }
  .awards-card { grid-template-columns: 180px 1fr; align-items: center; padding: 30px; text-align: left; }
  .awards-badge img { width: 160px; height: 160px; }
  .awards-years { justify-content: flex-start; }
  .awards-actions { display: flex; flex-wrap: wrap; }
}
@media (min-width: 992px) {
  /* Booking bar overlaps the bottom of the slider, all fields on one row. */
  .hb { padding: 0; margin-top: -70px; background: transparent; }
  .rsv.hb-form { padding: 20px 22px; }
  .hb-title { margin-bottom: 12px; }
  .hb-fields { grid-template-columns: 1.3fr 1fr auto; align-items: stretch; }
  .hb-guests { display: grid; grid-template-columns: 1fr 1fr; }
  .hb-guests .rsv-stepper + .rsv-stepper { border-top: 0; border-left: 1px solid #e3ded4; }
  .hb-guests .rsv-stepper__label { font-size: 15px; }
  .hb-submit { width: auto; min-width: 200px; }
  .hb-note { text-align: left; }
  .trust { padding-top: 24px; }
  /* One row of six, separated by thin dividers. */
  .trust { padding: 30px 0 14px; }
  .trust-list { grid-template-columns: repeat(6, 1fr); gap: 0; }
  .trust-list li { padding: 2px 16px; border-left: 1px solid #e3ddd2; }
  .trust-list li:first-child { padding-left: 0; border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .home-bar { transition: none; }
  .trust--anim .trust-list li,
  .trust--anim .trust-list small { opacity: 1; transform: none; clip-path: none; transition: none; }
}

/* ---------- Facilities (home) ---------- */
.hf { padding: 36px 0 28px; background: #fff; }
.hf-head { margin-bottom: 18px; text-align: center; }
.hf-title { margin: 0 0 6px; font: 600 31px/1.1 var(--font-display); color: #115c3f; text-transform: none; }
.hf-lead { margin: 0; font-size: 16px; color: #6b6b6b; }
/* Groups are separated by a thin labelled rule, not boxed cards. */
.hf-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 14px;
  font: 600 12px/1.2 var(--font-ui);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #f19202;
}
.hf-divider::before,
.hf-divider::after { content: ""; flex: 1; height: 1px; background: #e8e4dc; }
.hf-head + .hf-divider { margin-top: 6px; }
.hf-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hf-grid li {
  flex: 0 0 33.333%;
  padding: 0 4px;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
  color: #232323;
}
.hf-grid__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: #eef4f0;
  color: #115c3f;
  font-size: 22px;
  transition: background .2s, color .2s;
}
.hf-grid li:hover .hf-grid__icon { background: #115c3f; color: #f7c35f; }
.hf-more { margin-top: 18px; text-align: center; }
.hf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border: 2px solid #115c3f;
  border-radius: 999px;
  color: #115c3f !important;
  font: 600 14px/1 var(--font-ui);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background .2s, color .2s;
}
.hf-btn:hover { background: #115c3f; color: #fff !important; }
@media (min-width: 768px) {
  .hf { padding: 56px 0 44px; }
  .hf-title { font-size: 38px; }
  /* One row per group: items share the width, up to six columns wide. */
  .hf-grid { flex-wrap: nowrap; }
  .hf-grid li { flex: 1 1 0; max-width: 16.666%; }
  .hf-divider { margin: 32px 0 20px; }
  .hf-more { margin-top: 30px; }
}
@media (min-width: 1200px) {
  .hf-grid__icon { width: 60px; height: 60px; font-size: 25px; }
  .hf-grid li { font-size: 15px; }
}

/* ---------- Home slider captions (cinematic style) ----------
   A soft shade keeps white text readable on bright photos. When home.js has
   set .sl-anim, the active slide's caption parts fade up one after another. */
#slider-revolution > ul > li::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(180deg, rgba(8, 18, 12, .10) 0%, rgba(8, 18, 12, .30) 45%, rgba(8, 18, 12, .62) 100%);
  pointer-events: none;
}
.section-slider .contnt-sldr { z-index: 6; text-shadow: 0 2px 18px rgba(0, 0, 0, .35); }
.section-slider .contnt-sldr .sl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: #fff;
  font: 600 12px/1 var(--font-ui);
  letter-spacing: .32em;
  text-transform: uppercase;
}
.section-slider .contnt-sldr .sl-eyebrow::before,
.section-slider .contnt-sldr .sl-eyebrow::after { content: ""; width: 28px; height: 1px; background: rgba(255, 255, 255, .7); }
.section-slider .contnt-sldr h2 {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  font: 600 58px/1.06 var(--font-display);
  text-wrap: balance; /* even line lengths, no single word on the last line */
  letter-spacing: 0;
  text-transform: none;
}
.section-slider .contnt-sldr h2 em { font-style: italic; font-weight: 500; }
.section-slider .contnt-sldr .sl-sub {
  margin: 14px 0 26px;
  color: rgba(255, 255, 255, .92);
  font: 400 18px/1.5 var(--font-body);
  letter-spacing: .01em;
}
.section-slider .contnt-sldr .btn1 {
  display: inline-block;
  padding: 0 30px;
  border-radius: 999px;
  font: 600 14px/52px var(--font-ui);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  transition: background-color .2s, transform .2s;
}
.section-slider .contnt-sldr .btn1:hover { background-color: #d98300; transform: translateY(-1px); }
@media (max-width: 767px) {
  .section-slider .contnt-sldr .sl-eyebrow { margin-bottom: 10px; font-size: 11px; letter-spacing: .26em; }
  .section-slider .contnt-sldr .sl-eyebrow::before,
  .section-slider .contnt-sldr .sl-eyebrow::after { width: 18px; }
  .section-slider .contnt-sldr h2 { width: auto; font-size: 34px; }
  .section-slider .contnt-sldr .sl-sub { margin: 10px 0 18px; font-size: 15px; }
  /* style-new.css forces .btn1 size on phones with !important */
  .section-slider .contnt-sldr .btn1 { padding: 0 24px !important; font-size: 13px !important; line-height: 46px; }
}

.section-slider.sl-anim .contnt-sldr > * { opacity: 0; }
.section-slider.sl-anim li.is-live .contnt-sldr > * { animation: sl-up .9s cubic-bezier(.2, .7, .2, 1) forwards; }
.section-slider.sl-anim li.is-live .contnt-sldr > :nth-child(1) { animation-delay: .35s; }
.section-slider.sl-anim li.is-live .contnt-sldr > :nth-child(2) { animation-delay: .6s; }
.section-slider.sl-anim li.is-live .contnt-sldr > :nth-child(3) { animation-delay: .9s; }
.section-slider.sl-anim li.is-live .contnt-sldr > :nth-child(4) { animation-delay: 1.15s; }
@keyframes sl-up {
  from { opacity: 0; transform: translateY(18px); filter: blur(4px); }
  to   { opacity: 1; transform: none; filter: none; }
}
@media (prefers-reduced-motion: reduce) {
  .section-slider.sl-anim li.is-live .contnt-sldr > * { animation: sl-fade .6s ease forwards; animation-delay: 0s; }
  @keyframes sl-fade { to { opacity: 1; } }
}

/* About us: the second block is text only (no photo, no repeated heading),
   laid out full width in two columns under the first block. */
.about-item.about-more { margin-top: 30px; }
.about-item.about-more .text { float: none; width: 100%; margin-top: 0; padding: 0; }
.about-item.about-more .desc { margin-top: 0; }
@media (min-width: 768px) {
  .about-item.about-more .desc { column-count: 2; column-gap: 40px; }
  .about-item.about-more .desc p { break-inside: avoid; }
}
