/* ═══════════════════════════════════════════════════════
   Microtel Inn & Suites by Wyndham — Williston, ND
   home.css  |  LANDING PAGE STYLES ONLY
═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; padding-top: 68px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://res.cloudinary.com/djcgfqesd/image/upload/v1778711126/outside_hero_image_o0qocr.avif') center/cover no-repeat;
  transform-origin: center; will-change: transform;
}
.hero-tint {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(14,30,42,0.88) 0%, rgba(14,30,42,0.55) 55%, rgba(14,30,42,0.2) 100%);
}
.hero-layout {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 320px;
  gap: 3vw; align-items: center;
  padding: 80px 8vw; max-width: 1280px; margin: 0 auto; width: 100%;
}
.hero-chip-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,127,110,0.2); border: 1px solid rgba(58,170,150,0.35);
  border-radius: 999px; padding: 5px 14px; margin-bottom: 0;
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--teal-l);
  opacity: 0; transform: translateY(12px);
}
.chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-l); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:0.35;} 50%{opacity:1;} }

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.01em;
  color: #fff; margin-bottom: 1.4rem;
  opacity: 0; transform: translateY(20px);
}
.hero-h1 em { font-style: italic; color: var(--teal-l); }
.hero-p {
  font-size: 0.95rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.58); margin-bottom: 2.5rem; max-width: 460px;
  opacity: 0; transform: translateY(16px);
}
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; opacity: 0; transform: translateY(12px); }

/* Hero floating card */
.hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px; padding: 1.6rem;
  opacity: 0; transform: translateY(20px) scale(0.97);
}
.hcard-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; }
.hcard-label { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }
.hcard-val { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.9); }
.hcard-price { font-family: var(--serif); font-size: 1.4rem; line-height: 1; }
.hcard-price small { font-family: var(--sans); font-size: 0.65rem; font-weight: 300; color: rgba(255,255,255,0.5); margin-left: 2px; }
.hcard-div { height: 1px; background: rgba(255,255,255,0.1); margin: 4px 0; }
.hcard-btn {
  display: block; width: 100%; margin-top: 1.2rem; padding: 11px;
  text-align: center; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--teal); color: #fff; border: none; border-radius: 8px; transition: background 0.22s;
}
.hcard-btn:hover { background: var(--teal-l); }

/* Scroll cue */
.hero-scroll-cue {
  position: absolute; bottom: 32px; left: 8vw; z-index: 2;
  display: flex; align-items: center; gap: 12px; opacity: 0;
}
.scroll-track { width: 44px; height: 1px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden; }
.scroll-track::after {
  content: ''; position: absolute; inset-block: 0; left: -100%; width: 100%;
  background: var(--teal-l); animation: scan 2.4s ease-in-out infinite;
}
@keyframes scan { 0%,100%{left:-100%;} 60%{left:100%;} }
.hero-scroll-cue span { font-size: 0.58rem; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.35); }

/* ═══════════════════════════════════════
   STAT BAR
═══════════════════════════════════════ */
.stat-bar {
  background: var(--slate); display: flex;
  align-items: stretch; overflow-x: auto; overflow-y: hidden; scrollbar-width: none;
}
.stat-bar::-webkit-scrollbar { display: none; }
.stat-item {
  flex: 1; min-width: 120px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 22px 16px; gap: 3px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.22s; opacity: 0; transform: translateY(10px);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(13,127,110,0.1); }
.stat-item strong { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: var(--teal-l); line-height: 1; }
.stat-item span { font-size: 0.58rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.38); }
.stat-sep { width: 1px; background: rgba(255,255,255,0.06); flex-shrink: 0; }

/* ═══════════════════════════════════════
   ANCHOR NAV
═══════════════════════════════════════ */
.home-anchor-nav {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 68px; z-index: 100;
  box-shadow: 0 2px 16px rgba(14,30,42,0.06);
}
.home-anchor-inner {
  display: flex; align-items: center; overflow-x: auto;
  scrollbar-width: none; max-width: 1280px; margin: 0 auto; padding: 0 5vw;
}
.home-anchor-inner::-webkit-scrollbar { display: none; }
.home-anchor-link {
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-l); padding: 14px 16px;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.home-anchor-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.home-anchor-link:hover { color: var(--teal-d); border-bottom-color: var(--teal); }
.home-anchor-link.active { color: var(--teal-d); border-bottom-color: var(--teal); font-weight: 600; }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about-sec { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center; max-width: 1280px; margin: 0 auto; }
.about-visual { position: relative; }
.about-img-main img { aspect-ratio: 4/3; border-radius: 12px; filter: brightness(0.9); }
.about-img-accent {
  position: absolute; width: 52%; right: -6%; bottom: -8%;
  border: 4px solid var(--white); border-radius: 10px; overflow: hidden;
}
.about-img-accent img { aspect-ratio: 4/3; filter: brightness(0.88); }
.about-badge {
  position: absolute; top: -12px; left: -12px;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--teal); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 4px 20px rgba(13,127,110,0.35);
}
.badge-num { font-family: var(--serif); font-size: 1.4rem; color: #fff; line-height: 1; }
.badge-lbl { font-size: 0.44rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 2px; }
.about-copy { padding-left: 1vw; }

/* Why Us block */
.why-us { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.why-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem; background: var(--teal-xpale);
  border-radius: 10px; border-left: 3px solid var(--teal);
  transition: background 0.22s;
}
.why-item:hover { background: var(--teal-pale); }
.why-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.why-item strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 0.25rem; }
.why-item p { font-size: 0.76rem; font-weight: 300; line-height: 1.6; color: var(--ink-m); margin: 0; }

/* ═══════════════════════════════════════
   KITCHENETTE SUITE SPOTLIGHT
═══════════════════════════════════════ */
.kitchen-spotlight { background: var(--slate-d); overflow: hidden; }
.ks-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 6vw; align-items: stretch;
  max-width: 1280px; margin: 0 auto;
}
.ks-inner .eyebrow { color: var(--teal-l); }
.ks-inner .sec-h2 { color: var(--white); }
.ks-inner .sec-h2 em { color: var(--teal-l); }
.ks-sub { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(58,170,150,0.7); margin-top: 0.6rem; margin-bottom: 0.2rem; display: block; }
.ks-inner .body-text { color: rgba(248,250,249,0.55); }

.ks-features {
  list-style: none; margin-top: 1.8rem; display: flex; flex-direction: column; gap: 0;
}
.ks-features li {
  font-size: 0.82rem; font-weight: 300; color: rgba(248,250,249,0.55);
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: flex-start; gap: 10px;
}
.ks-features li:last-child { border-bottom: none; }
.ks-features li::before { content: '✦'; color: var(--teal-l); font-size: 0.5rem; flex-shrink: 0; margin-top: 4px; }
.ks-features strong { color: rgba(248,250,249,0.82); font-weight: 500; }

.ks-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 2rem; }
.ks-actions .btn-primary { background: var(--teal-l); color: var(--slate-d); }
.ks-actions .btn-primary:hover { background: #fff; }
.ks-actions .btn-secondary { color: rgba(248,250,249,0.72); border-color: rgba(248,250,249,0.22); }
.ks-actions .btn-secondary:hover { color: #fff; border-color: rgba(248,250,249,0.6); background: rgba(248,250,249,0.06); }

.ks-copy { display: flex; flex-direction: column; justify-content: center; }
.ks-visual { display: flex; flex-direction: column; }

/* 3-photo mosaic: hero left (full height) + 2 wide images stacked right */
.ks-mosaic {
  flex: 1; min-height: 0;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
  border-radius: 14px;
  overflow: hidden;
}
.ks-m-hero { grid-column: 1; grid-row: 1 / 3; position: relative; overflow: hidden; cursor: zoom-in; }
.ks-m-top  { grid-column: 2; grid-row: 1; overflow: hidden; }
.ks-m-bot  { grid-column: 2; grid-row: 2; position: relative; overflow: hidden; cursor: zoom-in; }
.ks-mosaic > div img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.82);
  transition: transform 0.55s var(--ease-out), filter 0.3s;
}
.ks-mosaic > div:hover img { transform: scale(1.05); filter: brightness(0.96); }

.ks-badge {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(11,30,22,0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(58,170,150,0.35); border-radius: 10px; padding: 10px 14px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.ks-badge-num { font-family: var(--serif); font-size: 1.5rem; color: #fff; line-height: 1; }
.ks-badge-lbl { font-size: 0.42rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-top: 3px; }

.ks-view-all {
  position: absolute; bottom: 10px; right: 10px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.59rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.88); border: 1px solid rgba(255,255,255,0.25);
  background: rgba(11,20,30,0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 7px; padding: 7px 13px;
  cursor: pointer; transition: background 0.22s, color 0.22s, border-color 0.22s;
  white-space: nowrap;
}
.ks-view-all:hover { background: rgba(58,170,150,0.88); color: #fff; border-color: transparent; }
.ks-view-all svg { width: 11px; height: 11px; flex-shrink: 0; }

/* ═══════════════════════════════════════
   ROOMS
═══════════════════════════════════════ */
.rooms-sec { background: var(--cream); }
.sec-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 1rem;
  max-width: 1280px; margin-left: auto; margin-right: auto; margin-bottom: 2.8rem;
}
.header-link {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); border-bottom: 1px solid rgba(13,127,110,0.3); padding-bottom: 2px;
  transition: color 0.22s;
}
.header-link:hover { color: var(--teal-d); }
.rooms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; max-width: 1280px; margin: 0 auto; }

.room-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); transition: box-shadow 0.3s, transform 0.3s;
}
.room-card:hover { box-shadow: 0 8px 36px rgba(13,127,110,0.1); transform: translateY(-4px); }
.room-card--featured { border: 2px solid var(--teal); }

.room-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.room-img img { transition: transform 0.65s var(--ease-out); filter: brightness(0.9); }
.room-card:hover .room-img img { transform: scale(1.06); }
.room-tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.55rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--slate); color: #fff; padding: 4px 10px; border-radius: 6px;
}
.room-tag--teal { background: var(--teal); }

.room-body { padding: 1.2rem; }
.room-cat { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.3rem; }
.room-name { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); margin-bottom: 0.4rem; }
.room-desc { font-size: 0.76rem; font-weight: 300; line-height: 1.6; color: var(--ink-m); margin-bottom: 1rem; }
.room-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 0.85rem; }
.room-rate { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); }
.room-rate small { font-family: var(--sans); font-size: 0.6rem; font-weight: 300; color: var(--ink-l); display: block; }
.room-actions { display: flex; gap: 0.5rem; align-items: center; }
.room-btn {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 7px; background: var(--teal); color: #fff; border: none;
  transition: background 0.22s; cursor: pointer;
}
.room-btn:hover { background: var(--teal-l); }
.room-btn--ghost {
  background: transparent; color: var(--teal);
  border: 1px solid rgba(13,127,110,0.35);
}
.room-btn--ghost:hover { background: var(--teal-pale); }

/* ═══════════════════════════════════════
   PARALLAX DIVIDER
═══════════════════════════════════════ */
.par-divider {
  position: relative; height: 50vh; min-height: 320px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.par-bg {
  position: absolute; inset: -25%;
  background: url('https://images.unsplash.com/photo-1445019980597-93fa8acb246c?w=2000&q=80') center/cover no-repeat;
  will-change: transform;
}
.par-overlay { position: absolute; inset: 0; background: rgba(14,30,42,0.7); }
.par-inner { position: relative; z-index: 2; text-align: center; padding: 0 8vw; max-width: 680px; }
.par-quote {
  font-family: var(--serif); font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic; font-weight: 400; color: rgba(255,255,255,0.9); line-height: 1.55;
}
.par-quote cite {
  display: block; font-family: var(--sans); font-style: normal;
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--teal-l); margin-top: 1.4rem;
}

/* ═══════════════════════════════════════
   AMENITIES
═══════════════════════════════════════ */
.amen-sec { background: var(--white); }
.amen-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  max-width: 1280px; margin-left: auto; margin-right: auto; margin-top: 2.8rem;
}
.amen-card { background: var(--white); padding: 2rem 1.6rem; transition: background 0.22s; }
.amen-card:hover { background: var(--teal-pale); }
.amen-icon-wrap {
  width: 42px; height: 42px; border-radius: 10px;
  border: 1.5px solid var(--teal); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; transition: background 0.22s, color 0.22s;
}
.amen-icon-wrap svg { width: 18px; height: 18px; }
.amen-card:hover .amen-icon-wrap { background: var(--teal); color: #fff; }
.amen-name { font-size: 0.9rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.amen-desc { font-size: 0.75rem; font-weight: 300; line-height: 1.6; color: var(--ink-m); }

/* ═══════════════════════════════════════
   CORPORATE & GROUPS
═══════════════════════════════════════ */
.corp-sec { background: var(--white); border-top: 3px solid var(--teal); }
.corp-inner { max-width: 1280px; margin: 0 auto; }
.corp-header { margin-bottom: 2.8rem; }

.corp-operators {
  background: var(--teal-xpale); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.4rem 1.8rem; margin-bottom: 3rem;
}
.corp-op-label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-m); margin-bottom: 0.9rem;
}
.corp-op-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.corp-op-tags span {
  font-size: 0.73rem; font-weight: 500; color: var(--teal-d);
  background: var(--white); border: 1px solid var(--teal);
  border-radius: 999px; padding: 4px 14px;
  transition: background 0.2s, color 0.2s;
}
.corp-op-tags span:hover { background: var(--teal); color: #fff; }

.corp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem; margin-bottom: 2.8rem;
}
.corp-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.8rem 1.5rem;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.corp-card:hover {
  border-color: var(--teal); 
  box-shadow: 0 4px 24px rgba(13,127,110,0.1);
}
.corp-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  border: 1.5px solid var(--teal); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem; transition: background 0.22s, color 0.22s;
}
.corp-card-icon svg { width: 20px; height: 20px; }
.corp-card:hover .corp-card-icon { background: var(--teal); color: #fff; }
.corp-card h3 {
  font-size: 0.9rem; font-weight: 600; color: var(--ink);
  margin-bottom: 0.55rem;
}
.corp-card p {
  font-size: 0.76rem; font-weight: 300; line-height: 1.7; color: var(--ink-m);
}

.corp-cta {
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
  padding-top: 0.5rem; border-top: 1px solid var(--border);
}
.corp-page-links {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem;
}
.corp-page-links a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--teal); border: 1px solid var(--teal);
  border-radius: 8px; padding: 8px 16px;
  transition: background 0.2s, color 0.2s;
}
.corp-page-links a:hover { background: var(--teal); color: #fff; }

/* ═══════════════════════════════════════
   EXPLORE
═══════════════════════════════════════ */
.explore-sec { background: var(--cream); }
.explore-header { margin-bottom: 2.8rem; max-width: 1280px; margin-left: auto; margin-right: auto; }
.explore-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; max-width: 1280px; margin: 0 auto; }
.explore-card { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.explore-img { overflow: hidden; aspect-ratio: 3/2; }
.explore-img img { transition: transform 0.6s var(--ease-out); filter: brightness(0.88); }
.explore-card:hover .explore-img img { transform: scale(1.05); }
.explore-body { padding: 1.2rem; }
.explore-dist {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-pale); padding: 3px 10px; border-radius: 999px;
  display: inline-block; margin-bottom: 0.6rem;
}
.explore-body h3 { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); margin-bottom: 0.5rem; }
.explore-body p { font-size: 0.76rem; font-weight: 300; line-height: 1.6; color: var(--ink-m); }

/* ═══════════════════════════════════════
   LOCATION
═══════════════════════════════════════ */
.loc-sec { background: var(--white); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center; max-width: 1280px; margin: 0 auto; }
.loc-list { margin-top: 1.8rem; list-style: none; display: flex; flex-direction: column; gap: 0; }
.loc-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.82rem; font-weight: 300; color: var(--ink-m);
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.loc-list li:last-child { border-bottom: none; }
.loc-list strong { font-weight: 600; color: var(--ink); min-width: 110px; flex-shrink: 0; font-size: 0.78rem; }
.loc-map { aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; border: 3px solid var(--white); box-shadow: 0 8px 40px rgba(14,30,42,0.1); }
.loc-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(15%); }

/* ═══════════════════════════════════════
   MEETING ROOM BAND
═══════════════════════════════════════ */
.meet-band { background: var(--slate); }
.meet-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 5vw; align-items: center;
  max-width: 1280px; margin: 0 auto;
}
.meet-stats { display: flex; gap: 2.8rem; flex-shrink: 0; }
.meet-stat { text-align: center; }
.meet-stat strong {
  display: block; font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--teal-l); line-height: 1; margin-bottom: 0.3rem;
}
.meet-stat span {
  font-size: 0.62rem; font-weight: 400; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-sec { background: var(--cream); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; max-width: 1280px; margin: 2.8rem auto 0;
  background: var(--border); gap: 1px;
}
.faq-item {
  background: var(--white); padding: 1.6rem 2rem;
  transition: background 0.2s;
}
.faq-item:hover { background: var(--teal-xpale); }
.faq-q {
  font-size: 0.87rem; font-weight: 600; color: var(--ink);
  margin-bottom: 0.55rem;
}
.faq-q::before {
  content: "Q "; color: var(--teal); font-weight: 700;
}
.faq-a {
  font-size: 0.77rem; font-weight: 300; line-height: 1.7;
  color: var(--ink-m);
}

/* ═══════════════════════════════════════
   REVIEWS
═══════════════════════════════════════ */
.reviews-sec { background: var(--slate-d); padding: 96px 8vw; }
.reviews-sec .eyebrow { color: rgba(58,170,150,0.9); }
.reviews-sec .sec-h2 { color: #fff; }
.reviews-sec .sec-h2 em { color: var(--teal-l); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  margin-top: 2.8rem; max-width: 1280px; margin-left: auto; margin-right: auto;
}
.review-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 1.8rem; }
.review-stars { font-size: 0.9rem; color: var(--teal-l); margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { font-family: var(--serif); font-style: italic; font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 1.2rem; }
.review-author { font-size: 0.65rem; font-weight: 400; letter-spacing: 0.12em; color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.cta-sec { position: relative; overflow: hidden; padding: 110px 8vw; text-align: center; }
.cta-bg { position: absolute; inset: -22%; background: url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=2000&q=80') center/cover no-repeat; will-change: transform; }
.cta-overlay { position: absolute; inset: 0; background: rgba(14,30,42,0.8); }
.cta-inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.cta-h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; color: #fff; line-height: 1.12; margin: 0.6rem 0; }
.cta-h2 em { font-style: italic; color: var(--teal-l); }
.cta-sub { font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.75; margin: 0.8rem 0 2.4rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   ROOM DETAIL DIALOG
═══════════════════════════════════════ */
.rd-overlay {
  position: fixed; inset: 0; z-index: 1800;
  background: rgba(11,20,30,0.82);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
  -webkit-overflow-scrolling: touch;
}
.rd-overlay.rd-open { opacity: 1; pointer-events: all; }

/* Flex row on desktop — image left, scrollable content right */
.rd-panel {
  background: var(--white); border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: row;
  max-width: 860px; width: 100%; max-height: 88vh;
  position: relative;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.28s var(--ease-out);
  box-shadow: 0 28px 80px rgba(0,0,0,0.38);
}
.rd-overlay.rd-open .rd-panel { transform: none; }

.rd-close {
  position: absolute; top: 12px; right: 12px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.48); border: none; color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
  /* always above content column on mobile */
}
.rd-close:hover { background: rgba(0,0,0,0.78); }
.rd-close svg { width: 15px; height: 15px; }

/* Image column — fixed width, fills full panel height */
.rd-media { position: relative; flex: 0 0 320px; overflow: hidden; }
.rd-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rd-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.55rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--slate); color: #fff; padding: 4px 10px; border-radius: 6px;
}
.rd-tag--teal { background: var(--teal); }

/* Content column — takes remaining width, scrolls independently */
.rd-content {
  flex: 1; min-width: 0; min-height: 0;
  padding: 1.8rem 1.8rem 1.4rem;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  display: flex; flex-direction: column;
}
.rd-cat {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.25rem;
}
.rd-title {
  font-family: var(--serif); font-size: 1.5rem; color: var(--ink);
  line-height: 1.15; margin-bottom: 0.9rem;
}
.rd-specs {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  margin-bottom: 1rem; flex-shrink: 0;
}
.rd-spec {
  display: flex; flex-direction: column; gap: 2px;
  padding: 0.65rem 0.85rem;
  border-right: 1px solid var(--border);
}
.rd-spec:last-child { border-right: none; }
.rd-spec span { font-size: 0.55rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-l); }
.rd-spec strong { font-size: 0.78rem; font-weight: 600; color: var(--ink); }

.rd-desc {
  font-size: 0.8rem; font-weight: 300; line-height: 1.7; color: var(--ink-m);
  margin-bottom: 1rem;
}
.rd-groups { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.2rem; }
.rd-group-title {
  font-size: 0.57rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.4rem; padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--teal-pale);
}
.rd-group-list { list-style: none; display: flex; flex-direction: column; }
.rd-group-list li {
  font-size: 0.74rem; font-weight: 300; color: var(--ink-m);
  padding: 4px 0 4px 16px; position: relative;
  border-bottom: 1px solid var(--teal-xpale);
}
.rd-group-list li:last-child { border-bottom: none; }
.rd-group-list li::before {
  content: '✦'; color: var(--teal-l); font-size: 0.4rem;
  position: absolute; left: 0; top: 7px;
}
/* Footer always at bottom of content scroll area */
.rd-footer { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border); flex-shrink: 0; }

/* ═══════════════════════════════════════
   RESPONSIVE — HOME PAGE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .rooms-grid   { grid-template-columns: 1fr 1fr; }
  .amen-grid    { grid-template-columns: 1fr 1fr; }
  .explore-grid { grid-template-columns: 1fr 1fr; }
  .ks-inner     { grid-template-columns: 1fr; }
  .ks-visual    { display: none; }
  .enquiry-inner { grid-template-columns: 1fr; gap: 3rem; }
  .enquiry-form-wrap { padding: 1.8rem; }
  .meet-inner   { grid-template-columns: 1fr; gap: 2.4rem; }
  .meet-stats   { justify-content: flex-start; gap: 2rem; }
  .faq-grid     { grid-template-columns: 1fr; }
  .corp-grid    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-layout  { grid-template-columns: 1fr; }
  .hero-card    { display: none; }
  .about-grid   { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .loc-grid     { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  /* Stack image above content */
  .rd-panel     { flex-direction: column; max-height: 92vh; }
  .rd-media     { flex: 0 0 200px; }
  .rd-media img { object-position: center 30%; }
  .rd-content   { padding: 1.3rem 1.3rem 1rem; flex: 1; min-height: 0; }
  .rooms-grid   { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stat-bar     { flex-wrap: wrap; }
  .stat-item    { flex: 1 1 45%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .why-us       { gap: 0.8rem; }
  .enq-form-row--2 { flex-direction: column; gap: 1.1rem; }
}
@media (max-width: 600px) {
  /* Extended-stay promo band — stack vertically */
  .ext-promo-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
}
@media (max-width: 480px) {
  /* Bottom sheet */
  .rd-overlay   { padding: 0; align-items: flex-end; }
  .rd-panel     { flex-direction: column; max-width: 100%; max-height: 90vh;
                  border-radius: 16px 16px 0 0; width: 100%; }
  .rd-media     { flex: 0 0 160px; }
  .rd-content   { padding: 1.1rem 1.1rem 1rem; }
  .hero-actions  { flex-direction: column; align-items: flex-start; }
  .explore-grid  { grid-template-columns: 1fr; }
  .rooms-grid    { grid-template-columns: 1fr; }
  .cta-actions   { flex-direction: column; align-items: center; }
  .ks-actions    { flex-direction: column; }
  .ks-actions .btn-primary, .ks-actions .btn-secondary { width: 100%; justify-content: center; }
  /* Meeting band — wrap 4 stats so they don't overflow narrow screens */
  .meet-stats { flex-wrap: wrap; justify-content: flex-start; gap: 1.2rem 2rem; }
  /* Corp & amenities grids — collapse from 2-col to 1-col */
  .corp-grid  { grid-template-columns: 1fr; }
  .amen-grid  { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   PRICE ANCHORS
───────────────────────────────────────────── */

/* Snippet 1 — Hero Price Badge (text-only, no background) */
.hero-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--sans);
  animation: hpb-appear 0.65s var(--ease-out) 1.5s both;
}
@keyframes hpb-appear {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Two texts share the same grid cell — crossfade between them */
.hpb-cycle {
  display: grid;
  grid-template-areas: 'text';
}
.hpb-c-price,
.hpb-c-rates {
  grid-area: text;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  line-height: 1;
}
/* "FROM" label — small caps, very subtle */
.hpb-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  align-self: center;
}
/* Big serif italic price numeral */
.hpb-c-price strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.75rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.01em;
  text-shadow: 0 0 32px rgba(255,255,255,0.22), 0 0 60px rgba(58,170,150,0.35);
}
/* "/ night" — small caps, subtle */
.hpb-per {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  align-self: center;
}
/* Rates line — wider tracking, mid weight */
.hpb-c-rates {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  align-items: center;
}
/* Blur crossfade — premium, cinematic feel */
.hpb-c-price { animation: hpb-price-in 6s ease-in-out infinite; }
.hpb-c-rates { animation: hpb-rates-in 6s ease-in-out infinite; }
@keyframes hpb-price-in {
  0%, 38%  { opacity: 1; filter: blur(0px); }
  46%, 94% { opacity: 0; filter: blur(5px); }
  100%     { opacity: 1; filter: blur(0px); }
}
@keyframes hpb-rates-in {
  0%, 40%  { opacity: 0; filter: blur(5px); }
  50%, 88% { opacity: 1; filter: blur(0px); }
  96%, 100% { opacity: 0; filter: blur(5px); }
}
/* Arrow link — minimal, no background */
.hpb-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px; height: 18px;
  text-decoration: none;
  opacity: 0.45;
  transition: opacity 0.2s, transform 0.2s;
}
.hpb-link svg { width: 11px; height: 11px; stroke: #fff; flex-shrink: 0; }
.hpb-link:hover { opacity: 1; transform: translateX(2px); }

/* Snippet 2 — Room Card Price Overlay (slides up from image bottom on hover) */
.room-price-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(11,20,30,0.9) 0%, rgba(11,20,30,0.55) 60%, transparent 100%);
  padding: 2.2rem 1rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transform: translateY(30%);
  opacity: 0;
  transition: transform 0.38s ease, opacity 0.32s ease;
  pointer-events: none;
}
.rpo-top {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.rpo-from   { font-size: 0.6rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.07em; }
.rpo-amount { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; color: #fff; line-height: 1; }
.rpo-unit   { font-size: 0.68rem; color: rgba(255,255,255,0.5); }
.rpo-ext    { font-size: 0.62rem; color: rgba(255,255,255,0.42); }
/* Desktop: reveal on hover */
@media (hover: hover) {
  .room-card--featured:hover .room-price-overlay {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Touch devices: always visible */
@media (hover: none) {
  .room-price-overlay {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Snippet 4 — Sticky Mobile Price Bar */
.mobile-price-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 820;
  background: var(--white);
  border-top: 2px solid var(--teal);
  box-shadow: 0 -4px 16px rgba(14,30,42,0.12);
  padding: 0.6rem 1rem;
  font-family: var(--sans);
}
.mpb-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 600px;
  margin: 0 auto;
}
.mpb-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  flex-shrink: 0;
}
.mpb-from   { font-size: 0.62rem; color: var(--ink-l); text-transform: uppercase; letter-spacing: 0.07em; }
.mpb-amount { font-size: 1.3rem; font-weight: 800; color: var(--slate); }
.mpb-unit   { font-size: 0.72rem; color: var(--ink-m); }
.mpb-ctas   { display: flex; gap: 0.45rem; }
.mpb-cta {
  padding: 0.55rem 0.85rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.78rem;
  white-space: nowrap;
}
.mpb-call { background: var(--white); color: var(--teal); border: 1.5px solid var(--teal); }
.mpb-book { background: var(--teal); color: var(--white); }
@media (max-width: 768px) {
  .mobile-price-bar { display: block; }
  body.home-page { padding-bottom: 68px; }
}

/* ── Snippet 6 — Reserve Your Stay (refined + border beam) ── */
/* @property enables smooth conic-gradient rotation for the beam */
@property --be-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.booking-explainer-sec {
  background: var(--white);
  padding: 3.5rem 5vw;
  text-align: center;
  border-top: 1px solid var(--border);
}
.booking-explainer-sec .be-eyebrow {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.55rem;
}
.booking-explainer-sec .be-h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  color: var(--slate);
  font-family: var(--serif);
  font-weight: 400;
  margin: 0 0 2.2rem;
}
.booking-explainer-sec .be-h2 em {
  font-style: italic;
  color: var(--teal-d);
}
/* Separate bordered cards with gap instead of shared-border grid */
.be-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}
.be-card {
  padding: 1.5rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.be-card:hover {
  border-color: rgba(13,127,110,0.35);
  box-shadow: 0 6px 28px rgba(13,127,110,0.09);
}
/* Border beam — rotating conic gradient masked to border strip only */
.be-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1.5px;
  background: conic-gradient(
    from var(--be-angle),
    transparent 0deg,
    transparent 310deg,
    rgba(58,170,150,0.55) 345deg,
    rgba(255,255,255,0.85) 360deg,
    rgba(58,170,150,0.55) 15deg,
    transparent 45deg
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: be-spin 2.5s linear infinite;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: -1;
}
.be-card:hover::after { opacity: 1; }
@keyframes be-spin { to { --be-angle: 360deg; } }

/* Featured card — distinct style, always has subtle beam glow */
.be-card.be-featured {
  background: var(--teal-xpale);
  border-color: rgba(13,127,110,0.28);
  box-shadow: 0 4px 20px rgba(13,127,110,0.07);
}
.be-card.be-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-d), var(--teal-l));
  border-radius: 12px 12px 0 0;
  z-index: 1;
}
.be-card.be-featured::after { opacity: 0.3; }
.be-card.be-featured:hover::after { opacity: 1; }

.be-icon-wrap {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-pale);
  border-radius: 8px;
  margin-bottom: 0.85rem;
  flex-shrink: 0;
  transition: background 0.22s;
}
.be-icon-wrap svg { width: 16px; height: 16px; stroke: var(--teal-d); transition: stroke 0.22s; }
.be-card:hover .be-icon-wrap { background: var(--teal); }
.be-card:hover .be-icon-wrap svg { stroke: #fff; }
.be-card.be-featured .be-icon-wrap { background: rgba(13,127,110,0.14); }
.be-card h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate);
  margin: 0 0 0.35rem;
  letter-spacing: 0.01em;
}
.be-card p {
  font-size: 0.75rem;
  color: var(--ink-m);
  line-height: 1.65;
  margin: 0 0 1rem;
  flex-grow: 1;
}
.be-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: gap 0.2s, color 0.2s;
}
.be-cta svg { width: 12px; height: 12px; flex-shrink: 0; stroke: currentColor; transition: transform 0.2s; }
.be-cta:hover { gap: 0.45rem; color: var(--teal-d); }
.be-cta:hover svg { transform: translateX(2px); }
.be-cta--phone {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 0.01em;
}
.be-cta--phone:hover { color: var(--teal-d); }
@media (max-width: 700px) {
  .be-grid { grid-template-columns: 1fr; gap: 0.75rem; }
}

/* ── SEASONAL PRICING BANNER ── */
.seasonal-banner {
  background: var(--teal-xpale);
  border-top: 1px solid rgba(13,127,110,0.12);
  border-bottom: 1px solid rgba(13,127,110,0.12);
  padding: 0.9rem 5vw;
}
.sb-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}
.sb-label {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal-d); white-space: nowrap; flex-shrink: 0;
}
.sb-label svg { width: 13px; height: 13px; stroke: var(--teal-d); }
.sb-text {
  font-size: 0.79rem; color: var(--ink-m); line-height: 1.55; flex: 1; min-width: 200px;
}
.sb-text strong { color: var(--slate); font-weight: 600; }
.sb-text a { color: var(--teal-d); font-weight: 500; text-decoration: underline; }
.sb-cta {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 16px; background: var(--teal); color: #fff; border-radius: 6px;
  text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: background 0.2s;
}
.sb-cta:hover { background: var(--teal-d); }
@media (max-width: 600px) {
  .sb-inner { gap: 0.6rem; }
  .sb-cta { width: 100%; text-align: center; padding: 10px; }
}
