/* ==========================================================================
   Bestway Inn — styles.css
   Mobile-first (designed at 390px), enhanced at 760px.
   Palette + type scale defined as custom properties below.
   ========================================================================== */

:root {
  --navy: #1d2b4d;          /* primary ink / dark sections */
  --navy-soft: #2c3e63;     /* softer navy */
  --paper: #f6f2e9;         /* main background */
  --paper-deep: #efe9dc;    /* alternate sections */
  --amber: #c9893f;         /* accent / primary CTA */
  --amber-deep: #b3742e;
  --sage: #8a97b3;          /* muted blue-sage */
  --ink: #23292a;           /* charcoal ink */
  --ink-soft: #52605a;      /* soft ink */
  --cream-text: #f3efe6;    /* body text on navy */

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 50px -18px rgba(29, 43, 77, 0.35);
  --shadow-card: 0 10px 30px -12px rgba(29, 43, 77, 0.22);
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 0.6em;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 11vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 6.5vw, 2.8rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }
a { color: var(--navy-soft); }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 22px;
}
.container.narrow { max-width: 760px; }

.section { padding-block: 72px; }

.section-head { margin-bottom: 40px; }
.section-sub { color: var(--ink-soft); max-width: 46ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.eyebrow-dark { color: var(--amber-deep); }
.eyebrow-light { color: var(--amber); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
              border-color 0.25s var(--ease), color 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-amber {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(201, 137, 63, 0.65);
}
.btn-amber:hover { background: var(--amber-deep); }

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }

.btn-ghost-light {
  border-color: rgba(243, 239, 230, 0.45);
  color: var(--cream-text);
}
.btn-ghost-light:hover { border-color: var(--cream-text); background: rgba(255, 255, 255, 0.08); }

.btn-ghost-dark {
  border-color: rgba(29, 43, 77, 0.35);
  color: var(--navy);
}
.btn-ghost-dark:hover { border-color: var(--navy); background: rgba(29, 43, 77, 0.06); }

.icon { flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease),
              backdrop-filter 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(246, 242, 233, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(29, 43, 77, 0.08), 0 12px 30px -22px rgba(29, 43, 77, 0.35);
}

.header-inner {
  max-width: 1120px;
  height: 100%;
  margin-inline: auto;
  padding-inline: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.wordmark-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-mark { flex: none; }
.logo-mark-dark { display: none; }
.site-header.scrolled .logo-mark-light,
.site-header.nav-open .logo-mark-light { display: none; }
.site-header.scrolled .logo-mark-dark,
.site-header.nav-open .logo-mark-dark { display: block; }
.wordmark-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: #fff;
  transition: color 0.35s var(--ease);
}
.wordmark-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.35s var(--ease);
}
.site-header.scrolled .wordmark-name { color: var(--navy); }
.site-header.scrolled .wordmark-sub { color: var(--ink-soft); }

.site-nav {
  display: none;
  align-items: center;
  gap: 26px;
}
.site-nav a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.35s var(--ease);
}
.site-nav a:not(.btn):hover { color: var(--amber); }
.site-header.scrolled .site-nav a:not(.btn) { color: var(--navy); }
.site-header.scrolled .site-nav a:not(.btn):hover { color: var(--amber-deep); }

.btn-nav { padding: 11px 22px; font-size: 0.88rem; }

/* Mobile nav toggle */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background-color 0.35s var(--ease);
}
.site-header.scrolled .nav-toggle {
  background: rgba(29, 43, 77, 0.07);
  border-color: rgba(29, 43, 77, 0.2);
}
.site-header.scrolled .nav-toggle-bar { background: var(--navy); }

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Mobile nav open state */
.site-header.nav-open {
  background: rgba(246, 242, 233, 0.97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.site-header.nav-open .wordmark-name { color: var(--navy); }
.site-header.nav-open .wordmark-sub { color: var(--ink-soft); }
.site-header.nav-open .nav-toggle { background: rgba(29, 43, 77, 0.07); border-color: rgba(29, 43, 77, 0.2); }
.site-header.nav-open .nav-toggle-bar { background: var(--navy); }

.site-header.nav-open .site-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  padding: 10px 22px 26px;
  background: rgba(246, 242, 233, 0.97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 40px -24px rgba(29, 43, 77, 0.4);
  border-radius: 0 0 var(--radius) var(--radius);
}
.site-header.nav-open .site-nav a:not(.btn) {
  color: var(--navy);
  font-size: 1.05rem;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(29, 43, 77, 0.1);
}
.site-header.nav-open .btn-nav { margin-top: 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 24px) 0 140px;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

/* Staggered entrance for the hero content */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.hero .eyebrow,
.hero h1,
.hero-sub,
.hero-ctas,
.hero-rating {
  animation: heroRise 0.8s var(--ease) backwards;
}
.hero .eyebrow { animation-delay: 0.15s; }
.hero h1 { animation-delay: 0.25s; }
.hero-sub { animation-delay: 0.35s; }
.hero-ctas { animation-delay: 0.45s; }
.hero-rating { animation-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  .hero-img { animation: none; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(29, 43, 77, 0.62) 0%, rgba(29, 43, 77, 0.45) 45%, rgba(29, 43, 77, 0.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 22px;
}
.hero .eyebrow { color: var(--amber); }
.hero h1 { color: #fff; margin-bottom: 0.4em; }
.hero-sub {
  color: rgba(243, 239, 230, 0.92);
  font-size: 1.06rem;
  max-width: 34ch;
  margin-bottom: 2em;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(243, 239, 230, 0.92);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background-color 0.25s var(--ease);
}
.hero-rating:hover { background: rgba(255, 255, 255, 0.18); }
.hero-rating svg { color: var(--amber); }
.hero-rating strong { color: #fff; }

/* Compact hero variant for inner pages */
.hero-compact { min-height: 76svh; padding-bottom: 90px; }

/* Numbered steps (extended-stays page) */
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(201, 137, 63, 0.16);
  color: var(--amber-deep);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

/* ---------- Booking card ---------- */
.booking {
  position: relative;
  z-index: 2;
  margin-top: -110px;
  padding-inline: 22px;
}
.booking-card {
  max-width: 1120px;
  margin-inline: auto;
  background: #fff;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-soft);
  padding: 34px 26px 28px;
}
.booking-card h2 { margin-bottom: 0.25em; }
.booking-line { color: var(--ink-soft); margin-bottom: 1.6em; max-width: 52ch; }
.booking-line strong { color: var(--navy); }

.booking-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
}
.from-rate[hidden] { display: none; }
.from-rate {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 0.6em;
  border-radius: var(--radius-pill);
  background: rgba(201, 137, 63, 0.14);
  border: 1px solid rgba(201, 137, 63, 0.4);
  color: var(--amber-deep);
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-call {
  width: 100%;
  background: var(--navy);
  color: #fff;
  font-size: 1.02rem;
}
.btn-call:hover { background: var(--navy-soft); }

.booking-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 22px 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.booking-divider::before,
.booking-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(29, 43, 77, 0.14);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid rgba(29, 43, 77, 0.16);
  border-radius: 14px;
  padding: 13px 14px;
  min-height: 50px;
  width: 100%;
  min-width: 0;
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18'%3E%3Cpath fill='%2352605a' d='M7.4 9.4 12 14l4.6-4.6L18 10.8l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(201, 137, 63, 0.25);
}

.field-guests { grid-column: 1 / -1; }
.booking-form .field:nth-child(3) { grid-column: 1 / -1; }
.btn-search { grid-column: 1 / -1; width: 100%; font-size: 1rem; }

/* Very narrow screens: date inputs have a wide intrinsic UI — tighten them */
@media (max-width: 419px) {
  .field input, .field select { font-size: 0.9rem; padding-inline: 10px; }
  .field select { padding-right: 34px; background-position: right 10px center; }
}

.trust-line {
  margin: 18px 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- Welcome / stats ---------- */
.welcome .lede { color: var(--ink-soft); font-size: 1.06rem; }

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 44px;
}
.stat {
  background: var(--paper-deep);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
}
.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.83rem;
  color: var(--ink-soft);
}

/* ---------- Dark sections ---------- */
.section-dark {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--cream-text);
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(243, 239, 230, 0.82); }

/* ---------- Amenities ---------- */
.amenity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.amenity-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.amenity-card:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-3px); }
.amenity-card h3 { font-size: 1.15rem; margin-bottom: 0.4em; }
.amenity-card p { margin: 0; font-size: 0.94rem; }
.amenity-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(201, 137, 63, 0.16);
  color: var(--amber);
}

/* ---------- Rooms ---------- */
.rooms { background: var(--paper-deep); }

.room-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(82%, 330px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 22px 26px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--sage) transparent;
}
.room-card {
  scroll-snap-align: center;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.35s var(--ease);
}
.room-card:hover { box-shadow: var(--shadow-soft); }
.room-card img {
  aspect-ratio: 900 / 650;
  object-fit: cover;
  width: 100%;
  transition: transform 0.6s var(--ease);
}
.room-card:hover img { transform: scale(1.04); }
.room-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-body h3 { margin-bottom: 0.35em; }
.room-body > p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 1.1em; }

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 18px;
}
.tag-list li {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--navy-soft);
  background: var(--paper);
  border: 1px solid rgba(29, 43, 77, 0.12);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
}

.room-cta {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--amber-deep);
  text-decoration: none;
}
.room-cta:hover { text-decoration: underline; }

.rates-note {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- Extended stay ---------- */
.extended-card {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-soft) 70%, #3a4f7d 100%);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  color: var(--cream-text);
}
.extended-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.extended-body { padding: 34px 26px 38px; }
.extended-body h2 { color: #fff; }
.extended-body > p { color: rgba(243, 239, 230, 0.85); }

.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  display: grid;
  gap: 14px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: rgba(243, 239, 230, 0.92);
}
.check-list .icon { color: var(--amber); margin-top: 2px; }

.extended-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 130px;
  gap: 12px;
}
.gallery-item {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  grid-row: span 2;
}
.gallery-item.tall { grid-row: span 4; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.05); }

/* ---------- Lightbox ---------- */
body.lb-open { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: rgba(20, 29, 52, 0.94);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.lightbox[hidden] { display: none; }
.lb-stage {
  margin: 0;
  max-width: min(1000px, calc(100vw - 130px));
  text-align: center;
}
.lb-img {
  max-width: 100%;
  max-height: 78svh;
  width: auto;
  height: auto;
  margin-inline: auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
}
.lb-caption {
  margin-top: 14px;
  color: var(--sage);
  font-size: 0.88rem;
}
.lb-btn {
  flex: none;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.25s var(--ease);
}
.lb-btn:hover { background: rgba(255, 255, 255, 0.2); }
.lb-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.6rem;
}

/* ---------- Testimonial ---------- */
.testimonial {
  padding-block: 84px;
  text-align: center;
}
.stars {
  display: inline-flex;
  gap: 6px;
  color: var(--amber);
  margin-bottom: 26px;
}
.testimonial blockquote { margin: 0; }
.testimonial blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 5vw, 2.2rem);
  line-height: 1.35;
  color: #fff;
  margin-bottom: 0.9em;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--sage);
  letter-spacing: 0.04em;
}
.review-cards {
  display: grid;
  gap: 16px;
  text-align: left;
  margin-top: 6px;
}
@media (min-width: 760px) {
  .review-cards { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.review-card {
  margin: 0;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}
.review-stars {
  display: block;
  color: var(--amber);
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.review-card p {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.45;
  color: #fff;
  margin-bottom: 0.9em;
}
.review-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--sage);
}

.reviews-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--amber);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 137, 63, 0.4);
  padding-bottom: 2px;
}
.reviews-link:hover { border-bottom-color: var(--amber); }

/* ---------- Explore ---------- */
.explore { background: var(--paper-deep); }
.explore-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.explore-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}
.explore-card h3 { margin-bottom: 0.4em; }
.explore-card p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; }
.explore-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(29, 43, 77, 0.07);
  color: var(--navy-soft);
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(29, 43, 77, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 137, 63, 0.14);
  color: var(--amber-deep);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.faq-item a { color: var(--amber-deep); font-weight: 600; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 34px; }

.contact-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 7.5vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 22px;
}
.contact-phone:hover { color: var(--amber-deep); }

.contact-detail {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.contact-detail strong {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 3px;
}
.contact-detail a { color: var(--navy-soft); }

.contact-ctas { display: flex; gap: 14px; margin-top: 26px; }

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

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(243, 239, 230, 0.78);
  padding: 56px 0 110px; /* extra bottom padding clears the mobile action bar */
}
.footer-inner { display: grid; gap: 26px; }
.footer-brand { display: flex; flex-direction: column; line-height: 1.2; }
.footer-logo { margin-bottom: 10px; }
.footer-brand .wordmark-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.footer-nav a {
  color: rgba(243, 239, 230, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
}
.footer-nav a:hover { color: var(--amber); }
.footer-contact { font-size: 0.92rem; margin: 0; }
.footer-contact a { color: #fff; text-decoration: none; font-weight: 600; }
.footer-copy { font-size: 0.8rem; color: var(--sage); margin: 0; }

/* ---------- Sticky mobile action bar ---------- */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(246, 242, 233, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 -8px 30px -14px rgba(29, 43, 77, 0.4);
  transform: translateY(110%);
  visibility: hidden;
  transition: transform 0.35s var(--ease), visibility 0.35s;
}
.mobile-bar.visible { transform: translateY(0); visibility: visible; }

.mobile-bar-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}
.mobile-bar-call { background: var(--navy); color: #fff; }
.mobile-bar-rates { background: var(--amber); color: #fff; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
/* No-JS fallback: reveal everything */
.no-js .reveal { opacity: 1; transform: none; }

/* ==========================================================================
   ≥ 760px — tablet & desktop enhancements
   ========================================================================== */
@media (min-width: 760px) {
  :root { --header-h: 84px; }

  .section { padding-block: 104px; }

  .site-nav { display: flex; }
  .nav-toggle { display: none; }

  .hero-sub { font-size: 1.18rem; max-width: 44ch; }

  .booking { margin-top: -120px; }
  .booking-card { padding: 44px 48px 36px; }

  .btn-call { width: auto; }

  .booking-form {
    grid-template-columns: 1fr 1fr 0.8fr auto;
    align-items: end;
  }
  .booking-form .field:nth-child(3) { grid-column: auto; }
  .btn-search { grid-column: auto; width: auto; white-space: nowrap; }

  .stats { grid-template-columns: repeat(4, 1fr); }

  .amenity-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .room-track {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-columns: unset;
    overflow-x: visible;
    max-width: 1120px;
    margin-inline: auto;
    padding: 6px 22px 20px;
  }

  .extended-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .extended-media img { height: 100%; }
  .extended-body { padding: 56px 54px; }

  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; }
  .lb-stage { max-width: min(1000px, calc(100vw - 180px)); }

  .explore-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .contact-grid { grid-template-columns: 1fr 1.1fr; align-items: center; }
  .contact-map iframe { height: 430px; }

  .site-footer { padding-bottom: 56px; }
  .footer-inner {
    grid-template-columns: auto 1fr auto;
    align-items: start;
  }
  .footer-nav { justify-content: center; }
  .footer-copy { grid-column: 1 / -1; }

  .mobile-bar { display: none; }
}

/* ≥ 1024px */
@media (min-width: 1024px) {
  .amenity-grid { grid-template-columns: repeat(3, 1fr); }
}
